You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(86) |
Dec
(163) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(114) |
Feb
(254) |
Mar
(166) |
Apr
(122) |
May
(131) |
Jun
(59) |
Jul
(201) |
Aug
(85) |
Sep
(80) |
Oct
(64) |
Nov
(103) |
Dec
(36) |
| 2005 |
Jan
(231) |
Feb
(204) |
Mar
(71) |
Apr
(54) |
May
(50) |
Jun
(120) |
Jul
(17) |
Aug
(124) |
Sep
(75) |
Oct
(154) |
Nov
(37) |
Dec
(143) |
| 2006 |
Jan
(346) |
Feb
(170) |
Mar
|
Apr
|
May
(273) |
Jun
(113) |
Jul
(427) |
Aug
(570) |
Sep
(212) |
Oct
(550) |
Nov
(348) |
Dec
(314) |
| 2007 |
Jan
(709) |
Feb
(223) |
Mar
(104) |
Apr
(24) |
May
(11) |
Jun
(3) |
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:14
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/constants In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/constants Removed Files: ConstantGlobal.idl ConstantExpression.idl Makefile Log Message: Refactored test directory --- ConstantGlobal.idl DELETED --- --- Makefile DELETED --- --- ConstantExpression.idl DELETED --- |
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/interface In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/interface Added Files: InterfaceVoidTypeOperation.idl Makefile InterfaceBasicTypeOperation.idl EmptyInterface.idl InterfaceAttributeExceptions.idl InterfaceType.idl InterfaceConstant.idl InterfaceOnewayOperation.idl InterfaceForward.idl InterfaceAbstract.idl InterfaceException.idl InterfaceReadonlyAttributes.idl InterfaceInheritance.idl InterfaceUserTypeOperation.idl InterfaceBasicTypeAttributes.idl InterfaceOperationException.idl InterfaceOperationContext.idl InterfaceUserTypeAttributes.idl InterfaceLocal.idl .cvsignore Log Message: Refactored test directory --- NEW FILE: InterfaceOnewayOperation.idl --- #ifndef __INTERFACE_ONEWAY_OPERATION__IDL__ #define __INTERFACE_ONEWAY_OPERATION__IDL__ interface InterfaceOnewayOperation { oneway void of0(); oneway void of1(in long p1); // oneway long of2(); //!!!!! Should be void !!!! }; #endif // __INTERFACE_ONEWAY_OPERATION__IDL__ --- NEW FILE: InterfaceInheritance.idl --- #ifndef __INTERFACE_INHERITANCE__IDL__ #define __INTERFACE_INHERITANCE__IDL__ #include "EmptyInterface.idl" interface InterfaceSuperTypeOne { attribute long attr1; long op1(in string str); }; interface InterfaceSuperTypeTwo { attribute long attr2; long op2(in string str); }; interface InterfaceSubType : InterfaceSuperTypeOne, InterfaceSuperTypeTwo, EmptyInterface { // attribute long attr1; // Redefinition !!!! attribute long attr3; long op3(in string str); }; #endif // __INTERFACE_INHERITANCE__IDL__ --- NEW FILE: InterfaceOperationContext.idl --- #ifndef __INTERFACE_OPERATION_CONTEXT__IDL__ #define __INTERFACE_OPERATION_CONTEXT__IDL__ interface InterfaceOperationContext { void foo() context ("CCM_LOCAL", "CCM_REMOTE"); }; #endif // __INTERFACE_OPERATION_CONTEXT__IDL__ --- NEW FILE: InterfaceException.idl --- #ifndef __INTERFACE_EXCEPTION__IDL__ #define __INTERFACE_EXCEPTION__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> interface InterfaceException { exception ExceptionEmpty { }; exception ExceptionBasicType { short shortMember; long longMember; long long lLongMember; unsigned short uShortMember; unsigned long uLongMember; unsigned long long uLLongMember; float floatMember; double doubleMember; long double lDoubleMember; char charMember; wchar wcharMember; string stringMember; string<10> stringBoundedMember; wstring wstringMember; wstring<11> wstringBoundedMember; boolean booleanMember; octet octetMember; any anyMember; Object objectMember; fixed<9,2> fixedMember; }; exception ExceptionUserType { LongType typedefMember; Color enumMember; Address structMember; LongArray arrayMember; LongSeq sequencemember; }; void foo() raises (ExceptionEmpty, ExceptionBasicType, ExceptionUserType); }; #endif // __INTERFACE_EXCEPTION__IDL__ --- NEW FILE: InterfaceLocal.idl --- #ifndef __INTERFACE_LOCAL__IDL__ #define __INTERFACE_LOCAL__IDL__ local interface InterfaceLocal { }; #endif // __INTERFACE_LOCAL__IDL__ --- NEW FILE: InterfaceBasicTypeOperation.idl --- #ifndef __INTERFACE_BASIC_TYPE_OPERATION__IDL__ #define __INTERFACE_BASIC_TYPE_OPERATION__IDL__ interface InterfaceBasicTypeOperation { short shortOp(in short p1, inout short p2, out short p3); long longOp(in long p1, inout long p2, out long p3); long long lLongOp(in long long p1, inout long long p2, out long long p3); unsigned short uShortOp(in unsigned short p1, inout unsigned short p2, out unsigned short p3); unsigned long uLongOp(in unsigned long p1, inout unsigned long p2, out unsigned long p3); unsigned long long uLLongOp(in unsigned long long p1, inout unsigned long long p2, out unsigned long long p3); float floatOp(in float p1, inout float p2, out float p3); double doubleOp(in double p1, inout double p2, out double p3); long double lDoubleOp(in long double p1, inout long double p2, out long double p3); char charOp(in char p1, inout char p2, out char p3); wchar wcharOp(in wchar p1, inout wchar p2, out wchar p3); string stringOp(in string p1, inout string p2, out string p3); string<5> bStringOp(in string<5> p1, inout string<5> p2, out string<5> p3); wstring wstringOp(in wstring p1, inout wstring p2, out wstring p3); wstring<5> bWstringOp(in wstring<5> p1, inout wstring<5> p2, out wstring<5> p3); boolean booleanOp(in boolean p1, inout boolean p2, out boolean p3); octet octetOp(in octet p1, inout octet p2, out octet p3); any anyOp(in any p1, inout any p2, out any p3); Object objectOp(in Object p1, inout Object p2, out Object p3); }; #endif // __INTERFACE_BASIC_TYPE_OPERATION__IDL__ --- NEW FILE: InterfaceOperationException.idl --- #ifndef __INTERFACE_OPERATION_EXCEPTION__IDL__ #define __INTERFACE_OPERATION_EXCEPTION__IDL__ #include <exception/ExceptionEmpty.idl> #include <exception/ExceptionBasicType.idl> #include <exception/ExceptionUserType.idl> interface InterfaceOperationException { void foo() raises (ExceptionEmpty, ExceptionBasicType, ExceptionUserType); }; #endif // __INTERFACE_OPERATION_EXCEPTION__IDL__ --- NEW FILE: Makefile --- INCLUDE= -I../ all: idl3 idl3: ccmparser EmptyInterface.idl ccmparser InterfaceConstant.idl ccmparser InterfaceBasicTypeAttributes.idl ccmparser ${INCLUDE} InterfaceUserTypeAttributes.idl ccmparser ${INCLUDE} InterfaceReadonlyAttributes.idl ccmparser InterfaceVoidTypeOperation.idl ccmparser InterfaceBasicTypeOperation.idl ccmparser ${INCLUDE} InterfaceUserTypeOperation.idl ccmparser InterfaceOnewayOperation.idl ccmparser InterfaceOperationContext.idl ccmparser ${INCLUDE} InterfaceOperationException.idl ccmparser ${INCLUDE} InterfaceException.idl ccmparser InterfaceType.idl # ccmparser InterfaceForward.idl ccmparser InterfaceInheritance.idl --- NEW FILE: InterfaceAttributeExceptions.idl --- #ifndef __INTERFACE_ATTRIBUTE_EXCEPTIONS__IDL__ #define __INTERFACE_ATTRIBUTE_EXCEPTIONS__IDL__ #include<exception/ExceptionEmpty.idl> #include<exception/ExceptionBasicType.idl> #include<exception/ExceptionUserType.idl> #include<struct/Person.idl> interface InterfaceAttributeExceptions { attribute long longValue getraises(ExceptionEmpty) setraises(ExceptionBasicType, ExceptionUserType); attribute Person structValue getraises(ExceptionEmpty) setraises(ExceptionBasicType); }; #endif // __INTERFACE_ATTRIBUTE_EXCEPTIONS__IDL__ --- NEW FILE: InterfaceConstant.idl --- #ifndef __INTERFACE_CONSTANT__IDL__ #define __INTERFACE_CONSTANT__IDL__ interface InterfaceConstant { const boolean BOOLEAN_CONST = TRUE; const octet OCTET_CONST = 255; const short SHORT_CONST = -10; const unsigned short USHORT_CONST = 7; const long LONG_CONST = -7777; const unsigned long ULONG_CONST = 7777; const char CHAR_CONST = 'c'; const string STRING_CONST = "1234567890"; const float FLOAT_CONST = 3.14; const double DOUBLE_CONST = 3.1415926; }; #endif // __INTERFACE_CONSTANT__IDL__ --- NEW FILE: InterfaceBasicTypeAttributes.idl --- #ifndef __INTERFACE_BASIC_TYPE_ATTRIBUTE__IDL__ #define __INTERFACE_BASIC_TYPE_ATTRIBUTE__IDL__ interface InterfaceBasicTypeAttributes { // Here we define interface attributes which causes the // generation of a pair of getter und setter methods for // each attribute. attribute short shortValue; attribute long longValue; attribute long long lLongValue; attribute unsigned short uShortValue; attribute unsigned long uLongValue; attribute unsigned long long uLLongValue; attribute float floatValue; attribute double doubleValue; attribute long double lDoubleValue; attribute char charValue; attribute wchar wcharValue; attribute string stringValue; attribute string<5> bStringValue; attribute wstring wstringValue; attribute wstring<5> bWstringValue; attribute boolean booleanValue; attribute octet octetValue; attribute any anyValue; attribute Object objectValue; attribute fixed<9,2> fixedValue; }; #endif // __INTERFACE_BASIC_TYPE_ATTRIBUTE__IDL__ --- NEW FILE: InterfaceAbstract.idl --- #ifndef __INTERFACE_ABSTRACT__IDL__ #define __INTERFACE_ABSTRACT__IDL__ abstract interface InterfaceAbstract { }; #endif // __INTERFACE_ABSTRACT__IDL__ --- NEW FILE: InterfaceReadonlyAttributes.idl --- #ifndef __INTERFACE_READONLY_ATTRIBUTE__IDL__ #define __INTERFACE_READONLY_ATTRIBUTE__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include "InterfaceBasicTypeAttributes.idl" interface InterfaceReadonlyAttribute { // Here we define a readonly attribute which causes only a getter // access method. readonly attribute short roShortValue; readonly attribute long roLongValue; readonly attribute long long roLLongValue; readonly attribute unsigned short roUShortValue; readonly attribute unsigned long roULongValue; readonly attribute unsigned long long roULLongValue; readonly attribute float roFloatValue; readonly attribute double roDoubleValue; readonly attribute long double roLDoubleValue; readonly attribute char roCharValue; readonly attribute wchar roWcharValue; readonly attribute string roStringValue; readonly attribute string<5> roBStringValue; readonly attribute wstring roWstringValue; readonly attribute wstring<5> roBWstringValue; readonly attribute boolean roBooleanValue; readonly attribute octet roOctetValue; readonly attribute any roAnyValue; readonly attribute Object roObjectValue; // Here we define a readonly attribute which causes only a getter // access method. readonly attribute LongType roTypedefValue; readonly attribute Color roEnumValue; readonly attribute Address roStructValue; readonly attribute LongArray roArrayValue; readonly attribute LongSeq roSequenceValue; readonly attribute InterfaceBasicTypeAttributes roInterfaceValue; }; #endif // __INTERFACE_READONLY_ATTRIBUTE__IDL__ --- NEW FILE: EmptyInterface.idl --- #ifndef __EMPTY_INTERFACE__IDL__ #define __EMPTY_INTERFACE__IDL__ interface EmptyInterface { }; #endif // __EMPTY_INTERFACE__IDL__ --- NEW FILE: InterfaceVoidTypeOperation.idl --- #ifndef __INTERFACE_VOID_TYPE_OPERATIONS__IDL__ #define __INTERFACE_VOID_TYPE_OPERATIONS__IDL__ interface InterfaceVoidTypeOperation { void f0(); void f1(in long p1); long f2(); }; #endif // __INTERFACE_VOID_TYPE_OPERATIONS__IDL__ --- NEW FILE: InterfaceForward.idl --- #ifndef __INTERFACE_FORWARD__IDL__ #define __INTERFACE_FORWARD__IDL__ interface Husband; // Forward declaration interface Wife { Husband getSpouse(); }; interface Husband { void getSpouse(); }; #endif // __INTERFACE_FORWARD__IDL__ --- NEW FILE: InterfaceUserTypeOperation.idl --- #ifndef __INTERFACE_USER_TYPE_OPERSTION__IDL__ #define __INTERFACE_USER_TYPE_OPERATION__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include "InterfaceBasicTypeOperation.idl" interface InterfaceUserTypeOperation { LongType typedefOp(in LongType p1, inout LongType p2, out LongType p3); Color enumOp(in Color p1, inout Color p2, out Color p3); Address structOp(in Address p1, inout Address p2, out Address p3); LongArray arrayOp(in LongArray p1, inout LongArray p2, out LongArray p3); LongSeq sequenceOp(in LongSeq p1, inout LongSeq p2, out LongSeq p3); InterfaceBasicTypeOperation interfaceOp(in InterfaceBasicTypeOperation p1, inout InterfaceBasicTypeOperation p2, out InterfaceBasicTypeOperation p3); }; #endif // __INTERFACE_USER_TYPE_OPERATION__IDL__ --- NEW FILE: InterfaceUserTypeAttributes.idl --- #ifndef __INTERFACE_USER_TYPE_ATTRIBUTES__IDL__ #define __INTERFACE_USER_TYPE_ATTRIBUTES__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include "InterfaceBasicTypeAttributes.idl" interface InterfaceUserTypeAttributes { // Here we define interface attributes which causes the // generation of a pair of getter und setter methods for // each attribute. attribute LongType typedefValue; attribute Color enumValue; attribute Address structValue; attribute LongArray arrayValue; attribute LongSeq sequenceValue; attribute InterfaceBasicTypeAttributes interfaceValue; }; #endif // __INTERFACE_USER_TYPE_ATTRIBUTES__IDL__ --- NEW FILE: .cvsignore --- _CCM_InterfaceBasicTypeOperation --- NEW FILE: InterfaceType.idl --- #ifndef __INTERFACE_TYPE__IDL__ #define __INTERFACE_TYPE__IDL__ interface InterfaceTypes { typedef long LongType; enum Color { red, green, blue, black, orange }; struct Person { long id; string name; }; typedef long LongArray[10]; typedef sequence<long> LongSeq; void foo(in LongType p1, in Color p2, in Person p3, in LongArray p4, in LongSeq p5); }; /* interface InterfaceType2 { void foo(in InterfaceTypes::LongType p1, in InterfaceTypes::Color p2, in InterfaceTypes::Person p3, in InterfaceTypes::LongArray p4, in InterfaceTypes::LongSeq p5); }; */ #endif // __INTERFACE_TYPE__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:03
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/module In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/module Added Files: ModuleNested.idl Names.idl ModuleReopened.idl Makefile Log Message: Refactored test directory --- NEW FILE: Names.idl --- #ifndef __NAMES__IDL__ #define __NAMES__IDL__ /* typedef long LongType; // Within a naming scope, identifiers must be consistently capitalized ! typedef long longType; // should be an Error!!! */ /* // A name in a nested scope cannot be the same as a name in its // immediatela enclosing scope! module world { module world // should be an Error!!! { typedef string StringType; }; // end of module world }; // end of module world */ // An interface cannot define a name that is the same as the name of the interface: interface Name { typedef string Name; // should be an Error!!! }; #endif // __NAMES__IDL__ --- NEW FILE: Makefile --- all: idl3 idl3: ccmparser ModuleNested.idl ccmparser ModuleReopened.idl ccmparser Names.idl --- NEW FILE: ModuleReopened.idl --- #ifndef __MODULE_REOPENED__IDL__ #define __MODULE_REOPENED__IDL__ module world { typedef long LongType; // typedef long longType; !!! enum Color { red, green, blue, black, orange }; struct Person { long id; string name; }; }; // end of module world module america { typedef long LongArray[10]; typedef sequence<long> LongSeq; }; // end of module america module world { module europe { struct Address { string street; long number; Person resident; }; interface InterfaceBasicTypeAttributes { attribute float floatValue; attribute double doubleValue; attribute long double lDoubleValue; }; }; // end of module europe module europe { module austria { interface InterfaceUserType { ::LongType typedefOpAbsolute(in ::LongType p1); LongType typedefOpRelative(in LongType p1); ::world::Color enumOpAbsolute(in ::world::Color p1); Color enumOpRelative(in Color p1); ::world::europe::Address structOpAbsolute(in ::world::europe::Address p1); Address structOpRelative(in Address p1); ::america::LongArray arrayOpAbsolute(in ::america::LongArray p1); ::america::LongSeq sequenceOpAbsolute(in ::america::LongSeq p1); ::world::europe::InterfaceBasicTypeAttributes interfaceOpAbsolute(in ::world::europe::InterfaceBasicTypeAttributes p1); InterfaceBasicTypeAttributes interfaceOpRelative(in InterfaceBasicTypeAttributes p1); }; }; // end of module austria }; // end of module europe }; // end of module world #endif // __MODULE_NESTED__IDL__ --- NEW FILE: ModuleNested.idl --- #ifndef __MODULE_NESTED__IDL__ #define __MODULE_NESTED__IDL__ typedef long LongType; module world { enum Color { red, green, blue, black, orange }; struct Person { long id; string name; }; module america { typedef long LongArray[10]; typedef sequence<long> LongSeq; }; // end of module america module europe { struct Address { string street; long number; Person resident; }; interface InterfaceBasicTypeAttributes { attribute float floatValue; attribute double doubleValue; attribute long double lDoubleValue; }; module austria { interface InterfaceUserType { ::LongType typedefOpAbsolute(in ::LongType p1); LongType typedefOpRelative(in LongType p1); ::world::Color enumOpAbsolute(in ::world::Color p1); Color enumOpRelative(in Color p1); ::world::europe::Address structOpAbsolute(in ::world::europe::Address p1); Address structOpRelative(in Address p1); ::world::america::LongArray arrayOpAbsolute(in ::world::america::LongArray p1); // america::LongArray arrayOpReletive(in america::LongArray p1); !!!!! ::world::america::LongSeq sequenceOpAbsolute(in ::world::america::LongSeq p1); // america::LongSeq sequenceOpRelative(in america::LongSeq p1); !!!!! ::world::europe::InterfaceBasicTypeAttributes interfaceOpAbsolute(in ::world::europe::InterfaceBasicTypeAttributes p1); InterfaceBasicTypeAttributes interfaceOpRelative(in InterfaceBasicTypeAttributes p1); }; }; // end of module austria }; // end of module europe }; // end of module world #endif // __MODULE_NESTED__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:10
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/array In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/array Added Files: Test.idl Makefile BasicTypeArray.idl UserTypeArray.idl Log Message: Refactored test directory --- NEW FILE: BasicTypeArray.idl --- #ifndef __BASIC_TYPE_ARRAY__IDL__ #define __BASIC_TYPE_ARRAY__IDL__ /* * Here we define vectors of basic type values */ typedef short ShortArray[10]; typedef long LongArray[10]; typedef long long LLongArray[10]; typedef unsigned short UShortArray[10]; typedef unsigned long ULongArray[10]; typedef unsigned long long ULLongArray[10]; typedef float FloatArray[10]; typedef double DoubleArray[10]; typedef long double LDoubleArray[10]; typedef char CharArray[10]; typedef wchar WCharArray[10]; typedef string StringArray[10]; typedef wstring WStringArray[10]; typedef boolean BooleanArray[10]; typedef octet OctetArray[10]; typedef any AnyArray[10]; typedef Object ObjectArray[10]; typedef fixed<9,2> FixedArray[10]; /* * Here we define matrices of basic type values */ typedef short ShortMatrix[10][20]; typedef long LongMatrix[10][20]; typedef long long LLongMatrix[10][20]; typedef unsigned short UShortMatrix[10][20]; typedef unsigned long ULongMatrix[10][20]; typedef unsigned long long ULLongMatrix[10][20]; typedef float FloatMatrix[10][20]; typedef double DoubleMatrix[10][20]; typedef long double LDoubleMatrix[10][20]; typedef char CharMatrix[10][20]; typedef wchar WCharMatrix[10][20]; typedef string StringMatrix[10][20]; typedef wstring WStringMatrix[10][20]; typedef boolean BooleanMatrix[10][20]; typedef octet OctetMatrix[10][20]; typedef any AnyMatrix[10][20]; typedef Object ObjectMatrix[10][20]; typedef fixed<9,2> FixedMatrix[10][20]; /* * Here, we define cubes of basic type values */ typedef short ShortCube[10][20][30]; typedef long LongCube[10][20][30]; typedef long long LLongCube[10][20][30]; typedef unsigned short UShortCube[10][20][30]; typedef unsigned long ULongCube[10][20][30]; typedef unsigned long long ULLongCube[10][20][30]; typedef float FloatCube[10][20][30]; typedef double DoubleCube[10][20][30]; typedef long double LDoubleCube[10][20][30]; typedef char CharCube[10][20][30]; typedef wchar WCharCube[10][20][30]; typedef string StringCube[10][20][30]; typedef wstring WStringCube[10][20][30]; typedef boolean BooleanCube[10][20][30]; typedef octet OctetCube[10][20][30]; typedef any AnyCube[10][20][30]; typedef Object ObjectCube[10][20][30]; typedef fixed<9,2> FixedCube[10][20][30]; #endif // __BASIC_TYPE_ARRAY__IDL__ --- NEW FILE: UserTypeArray.idl --- #ifndef __USER_TYPE_ARRAY__IDL__ #define __USER_TYPE_ARRAY__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include "BasicTypeArray.idl" /* * Here we define vectors of user type values */ typedef LongType LongTypeArray[10]; typedef Color EnumArray[10]; typedef Address StructArray[10]; typedef LongArray ArrayArray[10]; /* * Here we define matrices of user type values */ typedef LongType LongTypeMatrix[10][20]; typedef Color EnumTypeMatrix[10][20]; typedef Address StructMatrix[10][20]; typedef LongArray ArrayMatrix[10][20]; /* * Here, we define cubes of user type values */ typedef LongType LongTypeCube[10][20][30]; typedef Color EnumTypeCube[10][20][30]; typedef Address StructCube[10][20][30]; typedef LongArray ArrayCube[10][20][30]; #endif // __USER_TYPE_ARRAY__IDL__ --- NEW FILE: Makefile --- INCLUDE= -I../ all: idl3 idl3: ccmparser BasicTypeArray.idl ccmparser ${INCLUDE} UserTypeArray.idl --- NEW FILE: Test.idl --- typedef long LongArray[10]; typedef LongArray ArrayArray[10]; typedef LongArray ArrayMatrix[10][20]; typedef LongArray ArrayCube[10][20][30]; |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:09
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/union In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/union Removed Files: UnionTest.idl UnionLongDiscriminator.idl Makefile .cvsignore Log Message: Refactored test directory --- UnionLongDiscriminator.idl DELETED --- --- .cvsignore DELETED --- --- UnionTest.idl DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:07
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/HelloWorld In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/HelloWorld Removed Files: Makefile .cvsignore Log Message: Refactored test directory --- .cvsignore DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:05
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login/java/server/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login/java/server/impl Removed Files: ServerloginImpl.java ClientLocal.java Makefile Server.java Log Message: Refactored test directory --- ClientLocal.java DELETED --- --- Makefile DELETED --- --- ServerloginImpl.java DELETED --- --- Server.java DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:02
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login/c++/server In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login/c++/server Removed Files: .cvsignore Makefile Log Message: Refactored test directory --- .cvsignore DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:10:00
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/exception In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/exception Removed Files: ExceptionEmpty.idl ExceptionUserType.idl ExceptionBasicType.idl Makefile Log Message: Refactored test directory --- ExceptionUserType.idl DELETED --- --- ExceptionBasicType.idl DELETED --- --- Makefile DELETED --- --- ExceptionEmpty.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:59
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/exception In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/exception Added Files: ExceptionUserType.idl Makefile ExceptionBasicType.idl ExceptionEmpty.idl Log Message: Refactored test directory --- NEW FILE: ExceptionUserType.idl --- #ifndef __EXCEPTION_USER_TYPE__IDL__ #define __EXCEPTION_USER_TYPE__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> exception ExceptionUserType { LongType typedefMember; Color enumMember; Address structMember; LongArray arrayMember; LongSeq sequencemember; }; #endif // __EXCEPTION_USER_TYPE__IDL__ --- NEW FILE: ExceptionBasicType.idl --- #ifndef __EXCEPTION_BASIC_TYPE__IDL__ #define __EXCEPTION_BASIC_TYPE__IDL__ exception ExceptionBasicType { short shortMember; long longMember; long long lLongMember; unsigned short uShortMember; unsigned long uLongMember; unsigned long long uLLongMember; float floatMember; double doubleMember; long double lDoubleMember; char charMember; wchar wcharMember; string stringMember; string<10> stringBoundedMember; wstring wstringMember; wstring<11> wstringBoundedMember; boolean booleanMember; octet octetMember; any anyMember; Object objectMember; fixed<9,2> fixedMember; }; #endif // __EXCEPTION_BASIC_TYPE__IDL__ --- NEW FILE: Makefile --- IDL_INCLUDE = -I ../ all: idl3 idl3: ccmparser ExceptionEmpty.idl ccmparser ExceptionBasicType.idl ccmparser ${IDL_INCLUDE} ExceptionUserType.idl --- NEW FILE: ExceptionEmpty.idl --- #ifndef __EXCEPTION_EMPTY__IDL__ #define __EXCEPTION_EMPTY__IDL__ exception ExceptionEmpty { }; #endif // __EXCEPTION_EMPTY__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:58
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/array In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/array Removed Files: Makefile UserTypeArray.idl BasicTypeArray.idl Test.idl Log Message: Refactored test directory --- BasicTypeArray.idl DELETED --- --- UserTypeArray.idl DELETED --- --- Makefile DELETED --- --- Test.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:56
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/Login/java/server Added Files: .cvsignore Makefile build.xml Log Message: Refactored test directory --- NEW FILE: .cvsignore --- build lib src src-gen --- NEW FILE: Makefile --- DEST_DIR = . IDL3_DIR = ../../idl3repo IDL2_DIR = ${DEST_DIR}/src-gen/idl2 INCLUDE = -I${IDL3_DIR}/interface -I${IDL3_DIR}/component all: local remote run test: local check clean local: ccmjava -iface -local -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/interface/application/*.idl ccmjava -iface -local -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/component/application/Server*.idl ccmjava -app -o ${DEST_DIR}/src ${INCLUDE} ${IDL3_DIR}/component/application/Server*.idl check: cp impl/ClientLocal.java ${DEST_DIR}/src cp impl/ServerloginImpl.java ${DEST_DIR}/src/application/ ant -f ./build.xml bin/runClientLocal stubs: ccmidl -idl2 ${INCLUDE} -o ${IDL2_DIR} ${IDL3_DIR}/interface/application/*.idl ccmidl -idl2 ${INCLUDE} -o ${IDL2_DIR} ${IDL3_DIR}/component/application/Server*.idl ccmtools-idl -java -o ${DEST_DIR}/src-gen -I${CCMTOOLS_HOME}/idl -I${IDL2_DIR} ${IDL2_DIR}/*.idl remote: stubs ccmjava -remote -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/interface/application/*.idl ccmjava -remote -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/component/application/Server*.idl run: cp impl/Server.java ${DEST_DIR}/src cp impl/ServerloginImpl.java ${DEST_DIR}/src/application/ ant -f ./build.xml bin/runServer clean: ant clean rm -rf ${DEST_DIR}/src rm -rf ${DEST_DIR}/src-gen --- NEW FILE: build.xml --- <project name="LoginServer" default="jar"> <property name="dest" location="." /> <property name="idl2" location="${dest}/idl2" /> <property name="build" location="${dest}/build" /> <property name="src" location="${dest}/src" /> <property name="src-gen" location="${dest}/src-gen" /> <property name="lib" location="${dest}/lib" /> <property name="jarname" location="${lib}/LoginServer" /> <path id="compile.classpath"> <pathelement path="${java.class.path}" /> </path> <!-- Create the build directory--> <target name="init" description="" > <mkdir dir="${build}" /> <mkdir dir="${lib}" /> </target> <!-- Compile generated Java files--> <target name="compile" depends="init" description="" > <javac srcdir="${src-gen}:${src}" destdir="${build}" debug="on" source="1.5" target="1.5"> <classpath refid="compile.classpath" /> </javac> </target> <target name="jar" depends="compile" > <jar jarfile="${jarname}.jar" basedir="${build}" /> </target> <!-- Clean up --> <target name="clean" description="" > <delete dir="${build}" /> <delete dir="${lib}" /> </target> </project> |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/c++ In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/c++ Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/c++ added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/client/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/c++/client/impl Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/client/impl added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/HelloWorld Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server/bin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/java/server/bin Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server/bin added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld/idl3 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/HelloWorld/idl3 Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld/idl3 added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:45
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/HelloWorld/impl Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld/impl added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:44
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/server In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/c++/server Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/server added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:44
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/module In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/IDLParser/module Log Message: Directory /cvsroot/ccmtools/ccmtools/test/IDLParser/module added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:43
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/server/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/c++/server/impl Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/server/impl added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:43
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/component In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/IDLParser/include/idl3/component Log Message: Directory /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/component added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:43
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/interface In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/IDLParser/include/idl3/interface Log Message: Directory /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/interface added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:43
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/manual/Login/java/server/impl Log Message: Directory /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server/impl added to the repository |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:09:43
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv32546/test/IDLParser/include/idl3 Log Message: Directory /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3 added to the repository |