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:12:49
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login/c++/client In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login/c++/client Removed Files: .cvsignore Makefile Log Message: Refactored test directory --- .cvsignore DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:49
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login/java/client/src In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login/java/client/src Removed Files: Client.java Log Message: Refactored test directory --- Client.java DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:48
|
Update of /cvsroot/ccmtools/ccmtools/test/idl/interface-nested In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/idl/interface-nested Removed Files: Makefile Test.idl .cvsignore Log Message: Refactored test directory --- .cvsignore DELETED --- --- Makefile DELETED --- --- Test.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:46
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/enum In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/enum Removed Files: .cvsignore Color.idl Makefile DayOfWeek.idl Log Message: Refactored test directory --- .cvsignore DELETED --- --- Color.idl DELETED --- --- DayOfWeek.idl DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:46
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/component/world In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/include/idl3/component/world Added Files: Test.idl TestHomeMirror.idl TestHome.idl Log Message: Refactored test directory --- NEW FILE: TestHomeMirror.idl --- /* * This file was automatically generated by CCM Tools version 0.8.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WORLD_TESTHOME_MIRROR__IDL__ #define ___WORLD_TESTHOME_MIRROR__IDL__ #include <world/TestMirror.idl> module world { home TestHomeMirror manages ::world::TestMirror { }; }; // /module world #endif /* ___WORLD_TESTHOME_MIRROR__IDL__ */ --- NEW FILE: TestHome.idl --- /* * This file was automatically generated by CCM Tools version 0.8.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WORLD_TESTHOME__IDL__ #define ___WORLD_TESTHOME__IDL__ #include <world/Test.idl> //module world { home TestHome manages Test { }; //}; // /module world #endif /* ___WORLD_TESTHOME__IDL__ */ --- NEW FILE: Test.idl --- /* * This file was automatically generated by CCM Tools version 0.8.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WORLD_TEST__IDL__ #define ___WORLD_TEST__IDL__ #include <world/IFace.idl> //module world { component Test { provides ::world::IFace inPort; uses ::world::IFace singlePort; uses multiple ::world::IFace multiPort; }; //}; // /module world // This is a hack to make the CppGenerator happy !!! #include <world/TestHome.idl> #endif /* ___WORLD_TEST__IDL__ */ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:44
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/omg In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/omg Added Files: CosNaming.idl Log Message: Refactored test directory --- NEW FILE: CosNaming.idl --- // File: CosNaming.idl defined in OMG 01-02-65 #ifndef _COSNAMING_IDL_ #define _COSNAMING_IDL_ //#pragma prefix "omg.org" module CosNaming { typedef string Istring; struct NameComponent { Istring id; Istring kind; }; typedef sequence<NameComponent> Name; enum BindingType { nobject, ncontext }; struct Binding { Name binding_name; BindingType binding_type; }; typedef sequence <Binding> BindingList; interface BindingIterator; interface NamingContext { enum NotFoundReason { missing_node, not_context, not_object }; exception NotFound { NotFoundReason why; Name rest_of_name; }; exception CannotProceed { NamingContext cxt; Name rest_of_name; }; exception InvalidName{}; exception AlreadyBound {}; exception NotEmpty{}; void bind(in Name n, in Object obj) raises( NotFound, CannotProceed, InvalidName, AlreadyBound ); void rebind(in Name n, in Object obj) raises(NotFound, CannotProceed, InvalidName); void bind_context(in Name n, in NamingContext nc) raises(NotFound, CannotProceed, InvalidName, AlreadyBound); void rebind_context(in Name n, in NamingContext nc) raises(NotFound, CannotProceed, InvalidName); Object resolve (in Name n) raises(NotFound, CannotProceed, InvalidName); void unbind(in Name n) raises(NotFound, CannotProceed, InvalidName); NamingContext new_context(); NamingContext bind_new_context(in Name n) raises( NotFound, AlreadyBound, CannotProceed, InvalidName ); void destroy() raises(NotEmpty); void list( in unsigned long how_many, out BindingList bl, out BindingIterator bi ); }; interface BindingIterator { boolean next_one(out Binding b); boolean next_n(in unsigned long how_many, out BindingList bl); void destroy(); }; interface NamingContextExt: NamingContext { typedef string StringName; typedef string Address; typedef string URLString; StringName to_string(in Name n) raises(InvalidName); Name to_name(in StringName sn) raises(InvalidName); exception InvalidAddress {}; URLString to_url(in Address addr, in StringName sn) raises(InvalidAddress, InvalidName); Object resolve_str(in StringName sn) raises( NotFound, CannotProceed, InvalidName, AlreadyBound ); NamingContext resolve_context (in Name n) raises(NotFound, CannotProceed, InvalidName); }; }; #endif // _COSNAMING_IDL_ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:43
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/HelloWorld/impl In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/HelloWorld/impl Removed Files: _check_world_Server.cc Server_hello_impl.cc Log Message: Refactored test directory --- Server_hello_impl.cc DELETED --- --- _check_world_Server.cc DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:41
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/sequence In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/sequence Removed Files: BasicTypeSequence.idl UserTypeSequence.idl Makefile Log Message: Refactored test directory --- UserTypeSequence.idl DELETED --- --- Makefile DELETED --- --- BasicTypeSequence.idl DELETED --- |
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/component In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/component Added Files: ComponentSimple.idl ComponentException.idl HomeFactoryBasicTypes.idl ComponentAttributeUserTypes.idl ComponentReceptacle.idl HomeFactoryException.idl HomeInheritance.idl ComponentAttributeExceptions.idl ComponentFacet.idl ComponentReadonlyAttributes.idl HomeAttributeExceptions.idl .cvsignore ComponentSupportedInterface.idl ComponentInheritance.idl ComponentFacetReceptacle.idl ComponentEmits.idl HomePrimaryKey.idl HomeSupportedInterface.idl HomeException.idl HomeTypes.idl ComponentConsumes.idl HomeFinderMethods.idl HomeSimple.idl HomeAttributeUserTypes.idl ComponentPublishes.idl ComponentAttributeBasicTypes.idl Makefile HomeAttributeBasicTypes.idl HomeFactoryUserTypes.idl Log Message: Refactored test directory --- NEW FILE: HomeAttributeExceptions.idl --- #ifndef __HOME_ATTRIBUTE_EXCEPTIONS__IDL__ #define __HOME_ATTRIBUTE_EXCEPTIONS__IDL__ #include <component/ComponentSimple.idl> #include<exception/ExceptionEmpty.idl> #include<exception/ExceptionBasicType.idl> #include<exception/ExceptionUserType.idl> #include<struct/Person.idl> home HomeAttributeExceptions manages ComponentSimple { attribute long longValue getraises(ExceptionEmpty) setraises(ExceptionBasicType, ExceptionUserType); attribute Person structValue getraises(ExceptionEmpty) setraises(ExceptionBasicType); }; #endif // __HOME_ATTRIBUTE_EXCEPTIONS__IDL__ --- NEW FILE: ComponentEmits.idl --- #ifndef __COMPONENT_EMITS__IDL__ #define __COMPONENT_EMITS__IDL__ #include <events/EventtypeTest.idl> component ComponentEmits { emits Login login; }; home ComponentEmitsHome manages ComponentEmits { }; #endif // __COMPONENT_EMITS__IDL__ --- NEW FILE: Makefile --- INCLUDE= -I../ all: idl3 idl3: component home component: ccmparser ${INCLUDE} ComponentSimple.idl ccmparser ${INCLUDE} ComponentAttributeBasicTypes.idl ccmparser ${INCLUDE} ComponentAttributeUserTypes.idl ccmparser ${INCLUDE} ComponentAttributeExceptions.idl ccmparser ${INCLUDE} ComponentSupportedInterface.idl ccmparser ${INCLUDE} ComponentFacet.idl ccmparser ${INCLUDE} ComponentReceptacle.idl ccmparser ${INCLUDE} ComponentInheritance.idl home: ccmparser ${INCLUDE} HomeAttributeBasicTypes.idl ccmparser ${INCLUDE} HomeAttributeUserTypes.idl ccmparser ${INCLUDE} HomeAttributeExceptions.idl ccmparser ${INCLUDE} HomeFactoryBasicTypes.idl ccmparser ${INCLUDE} HomeFactoryUserTypes.idl ccmparser ${INCLUDE} HomeFactoryException.idl ccmparser ${INCLUDE} HomeFinderMethods.idl ccmparser ${INCLUDE} HomeSupportedInterface.idl ccmparser ${INCLUDE} HomeInheritance.idl --- NEW FILE: HomeInheritance.idl --- #ifndef __HOME_INHERITANCE__IDL__ #define __HOME_INHERITANCE__IDL__ component SimpleComponent { attribute string Id; }; home SuperHome manages SimpleComponent { }; home SubHome : SuperHome manages SimpleComponent { }; #endif // __HOME_INHERITANCE__IDL__ --- NEW FILE: HomeFactoryUserTypes.idl --- #ifndef __HOME_FACTORY_USER_TYPES__IDL__ #define __HOME_FACTORY_USER_TYPES__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include <interface/InterfaceBasicTypeAttributes.idl> component HomeFactoryUserTypes { attribute string Id; }; home HomeFactoryUserTypesHome manages HomeFactoryUserTypes { factory createWithTypedef(in LongType id); factory createWithEnum(in Color id); factory createWithStruct(in Address id); factory createWithArray(in LongArray id); factory createWithSequence(in LongSeq id); factory createWithInterface(in InterfaceBasicTypeAttributes id); }; #endif // __HOME_FACTORY_USER_TYPES__IDL__ --- NEW FILE: HomeSupportedInterface.idl --- #ifndef __HOME_SUPPORTED_INTERFACE__IDL__ #define __HOME_SUPPORTED_INTERFACE__IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component HomeSupportedInterface { attribute string Id; }; home HomeSupportedInterfaceHome supports InterfaceBasicTypeAttributes, InterfaceUserTypeOperation manages HomeSupportedInterface { }; #endif // __HOME_SUPPORTED_INTERFACE__IDL__ --- NEW FILE: HomeException.idl --- #ifndef __HOME_EXCEPTION__IDL__ #define __HOME_EXCEPTION__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> component HomeException { }; home HomeExceptionHome manages HomeException { exception ExceptionEmpty { }; exception ExceptionBasicType { short shortMember; long longMember; long long lLongMember; unsigned short uShortMember; unsigned long uLongMember; }; exception ExceptionUserType { LongType typedefMember; Color enumMember; Address structMember; LongArray arrayMember; LongSeq sequencemember; }; void foo() raises (ExceptionEmpty, ExceptionBasicType, ExceptionUserType); }; #endif // __HOME_EXCEPTION__IDL__ --- NEW FILE: ComponentAttributeExceptions.idl --- #ifndef __COMPONENT_ATTRIBUTE_EXCEPTIONS__IDL__ #define __COMPONENT_ATTRIBUTE_EXCEPTIONS__IDL__ #include<exception/ExceptionEmpty.idl> #include<exception/ExceptionBasicType.idl> #include<exception/ExceptionUserType.idl> #include<struct/Person.idl> component ComponentAttributeExceptions { attribute long longValue getRaises(ExceptionEmpty) setRaises(ExceptionBasicType, ExceptionUserType); attribute Person structValue getRaises(ExceptionEmpty) setRaises(ExceptionBasicType); }; #endif // __COMPONENT_ATTRIBUTE_EXCEPTIONS__IDL__ --- NEW FILE: ComponentSupportedInterface.idl --- #ifndef __COMPONENT_SUPPORTED_INTERFACE__IDL__ #define __COMPONENT_SUPPORTED_INTERFACE__IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component ComponentSupportedInterface supports InterfaceBasicTypeAttributes, InterfaceUserTypeOperation { }; home ComponentSupportedInterfaceHome manages ComponentSupportedInterface { }; #endif // __COMPONENT_SUPPORTED_INTERFACE__IDL__ --- NEW FILE: ComponentReceptacle.idl --- #ifndef __COMPONENT_RECEPTACLE__IDL__ #define __COMPONENT_RECEPTACLE__IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component ComponentReceptacle { uses InterfaceBasicTypeAttributes basicTypes; uses multiple InterfaceUserTypeOperation userTypes; }; home ComponentReceptacleHome manages ComponentReceptacle { }; #endif // __COMPONENT_RECEPTACLE__IDL__ --- NEW FILE: ComponentException.idl --- #ifndef __COMPONENT_EXCEPTION__IDL__ #define __COMPONENT_EXCEPTION__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> component ComponentException { exception ExceptionEmpty { }; exception ExceptionBasicType { short shortMember; long longMember; long long lLongMember; unsigned short uShortMember; unsigned long uLongMember; }; exception ExceptionUserType { LongType typedefMember; Color enumMember; Address structMember; LongArray arrayMember; LongSeq sequencemember; }; void foo() raises (ExceptionEmpty, ExceptionBasicType, ExceptionUserType); }; home ComponentExceptionHome manages ComponentException { }; #endif // __COMPONENT_EXCEPTION__IDL__ --- NEW FILE: ComponentReadonlyAttributes.idl --- #ifndef __COMPONENT_READONLY_ATTRIBUTE__IDL__ #define __COMPONENT_READONLY_ATTRIBUTE__IDL__ component ComponentAttributeBasicTypes { readonly attribute short shortValue; }; #endif // __COMPONENT_READONLY_ATTRIBUTE__IDL__ --- NEW FILE: .cvsignore --- xxx t.idl x.idl --- NEW FILE: ComponentFacetReceptacle.idl --- #ifndef __COMPONENT_FACET_AND_RECEPTACLE_IDL__ #define __COMPONENT_FACET_AND_RECEPTACLE_IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component ComponentFacet { provides InterfaceBasicTypeAttributes basicTypes; provides InterfaceUserTypeOperation userTypes; }; home ComponentFacetHome manages ComponentFacet { }; /** * Here we use the same names for receptacles as we have * used in the other component for receptacles. */ component ComponentReceptacle { uses InterfaceBasicTypeAttributes basicTypes; uses InterfaceUserTypeOperation userTypes; }; home ComponentReceptacleHome manages ComponentReceptacle { }; #endif // __COMPONENT_FACET_AND_RECEPTACLE__IDL__ --- NEW FILE: HomeAttributeUserTypes.idl --- #ifndef __HOME_ATTRIBUTE_USER_TYPES__IDL__ #define __HOME_ATTRIBUTE_USER_TYPES__IDL__ #include <component/ComponentSimple.idl> #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include <interface/InterfaceBasicTypeAttributes.idl> home HomeAttributeUserTypes manages ComponentSimple { attribute LongType typedefValue; attribute Color enumValue; attribute Address structValue; attribute LongArray arrayValue; attribute LongSeq sequenceValue; attribute InterfaceBasicTypeAttributes interfaceValue; }; #endif // __HOME_ATTRIBUTE_USER_TYPES__IDL__ --- NEW FILE: HomeAttributeBasicTypes.idl --- #ifndef __HOME_ATTRIBUTE_BASIC_TYPES__IDL__ #define __HOME_ATTRIBUTE_BASIC_TYPES__IDL__ #include <component/ComponentSimple.idl> home HomeAttributeBasicTypes manages ComponentSimple { 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 // __HOME_ATTRIBUTES_BASIC_TYPES__IDL__ --- NEW FILE: ComponentAttributeUserTypes.idl --- #ifndef __COMPONENT_ATTRIBUTE_USER_TYPES__IDL__ #define __COMPONENT_ATTRIBUTE_USER_TYPES__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include <struct/Address.idl> #include <array/BasicTypeArray.idl> #include <sequence/BasicTypeSequence.idl> #include <interface/InterfaceBasicTypeAttributes.idl> component ComponentAttributeUserTypes { attribute LongType typedefValue; attribute Color enumValue; attribute Address structValue; attribute LongArray arrayValue; attribute LongSeq sequenceValue; attribute InterfaceBasicTypeAttributes interfaceValue; }; #endif // __COMPONENT_ATTRIBUTE_USER_TYPES__IDL__ --- NEW FILE: HomeSimple.idl --- #ifndef __HOME_SIMPLE__IDL__ #define __HOME_SIMPLE__IDL__ component ComponentSimple { attribute long Id; }; home HomeSimple manages ComponentSimple { }; #endif // __HOME_SIMPLE__IDL__ --- NEW FILE: ComponentAttributeBasicTypes.idl --- #ifndef __COMPONENT_ATTRIBUTE_BASIC_TYPE__IDL__ #define __COMPONENT_ATTRIBUTE_BASIC_TYPE__IDL__ component ComponentAttributeBasicTypes { 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 // __COMPONENT_ATTRIBUTE_BASIC_TYPE__IDL__ --- NEW FILE: ComponentPublishes.idl --- #ifndef __COMPONENT_PUBLISHES__IDL__ #define __COMPONENT_PUBLISHES__IDL__ #include <events/EventtypeTest.idl> component ComponentPublishes { publishes Login login; }; home ComponentPublishesHome manages ComponentPublishes { }; #endif // __COMPONENT_PUBLISHES__IDL__ --- NEW FILE: HomeFinderMethods.idl --- #ifndef __HOME_FINDER_METHODS__IDL__ #define __HOME_FINDER_METHODS__IDL__ exception SearchError { }; component HomeFinderMethods { attribute string Id; }; home HomeFinderMethodsHome manages HomeFinderMethods { finder findComponent(in string name) raises(SearchError); }; #endif // __HOME_FINDER_METHODS__IDL__ --- NEW FILE: HomeFactoryBasicTypes.idl --- #ifndef __HOME_FACTORY_BASIC_TYPES__IDL__ #define __HOME_FACTORY_BASIC_TYPES__IDL__ component HomeFactoryBasicTypes { attribute string Id; }; home HomeFactoryBasicTypesHome manages HomeFactoryBasicTypes { factory createWithShort(in short id); factory createWithLong(in long id); factory createWithLongLong(in long long id); factory createWithUShort(in unsigned short id); factory createWithULong(in unsigned long id); //factory createWithULongLong(in unsigned long long id); factory createWithFloat(in float id); factory createWithDouble(in double id); factory createWithLongDouble(in long double id); factory createWithChar(in char id); factory createWithWChar(in wchar id); factory createWithString(in string id); factory createWithBoundedString(in string<7> id); factory createWithWString(in wstring id); factory createWithBoundedWString(in wstring<3> id); factory createWithBoolean(in boolean id); factory createWithOctet(in octet id); factory createWithAny(in any id); factory createWithObject(in Object id); //factory createWithFixed(in fixed<7,3> id); }; #endif // __HOME_FACTORY_BASIC_TYPES__IDL__ --- NEW FILE: ComponentFacet.idl --- #ifndef __COMPONENT_FACET__IDL__ #define __COMPONENT_FACET__IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component ComponentFacet { provides InterfaceBasicTypeAttributes basicTypes; provides InterfaceUserTypeOperation userTypes; }; home ComponentFacetHome manages ComponentFacet { }; #endif // __COMPONENT_FACET__IDL__ --- NEW FILE: ComponentInheritance.idl --- #ifndef __COMPONENT_INHERITANCE__IDL__ #define __COMPONENT_INHERITANCE__IDL__ #include <interface/InterfaceBasicTypeAttributes.idl> #include <interface/InterfaceUserTypeOperation.idl> component SuperComponent { provides InterfaceBasicTypeAttributes basicTypes; }; component SubComponent : SuperComponent { provides InterfaceUserTypeOperation userTypes; }; home SubComponentHome manages SubComponent { }; #endif // __COMPONENT_INHERITANCE__IDL__ --- NEW FILE: HomeFactoryException.idl --- #ifndef __HOME_FACTORY_EXCEPTION__IDL__ #define __HOME_FACTORY_EXCEPTION__IDL__ #include<exception/ExceptionEmpty.idl> #include<exception/ExceptionBasicType.idl> #include<exception/ExceptionUserType.idl> component HomeFactoryException { attribute string Id; }; home HomeFactoryExceptionHome manages HomeFactoryException { factory createWithExceptions() raises(ExceptionEmpty, ExceptionBasicType, ExceptionUserType); }; #endif // __HOME_FACTORY_EXCEPTION__IDL__ --- NEW FILE: HomeTypes.idl --- #ifndef __HOME_TYPES__IDL__ #define __HOME_TYPES__IDL__ component HomeTypes { }; home HomeTypesHome manages HomeTypes { 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); }; #endif // __HOME_TYPES__IDL__ --- NEW FILE: HomePrimaryKey.idl --- #ifndef __HOME_PRIMARY_KEY__IDL__ #define __HOME_PRIMARY_KEY__IDL__ #include <valuetype/ValuetypeTest.idl> component PrimaryKeys { attribute string Id; }; home PrimaryKeysHome manages PrimaryKeys primarykey Login { }; #endif // __HOME_PRIMARY_KEY__IDL__ --- NEW FILE: ComponentSimple.idl --- #ifndef __COMPONENT_SIMPLE__IDL__ #define __COMPONENT_SIMPLE__IDL__ component ComponentSimple { attribute long Id; }; #endif // __COMPONENT_SIMPLE__IDL__ --- NEW FILE: ComponentConsumes.idl --- #ifndef __COMPONENT_CONSUMES__IDL__ #define __COMPONENT_CONSUMES__IDL__ #include <events/EventtypeTest.idl> component ComponentConsumes { consumes Login login; }; home ComponentConsumesHome manages ComponentConsumes { }; #endif // __COMPONENT_CONSUMES__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:40
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/c++/server In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/Login/c++/server Added Files: Makefile .cvsignore Log Message: Refactored test directory --- NEW FILE: .cvsignore --- src-gen src --- NEW FILE: Makefile --- IDL_SOURCE=../../Login.idl DEST_DIR = src IDL3_DIR = ../../idl3repo IDL2_DIR = ${DEST_DIR}/idl2 INCLUDE = -I${IDL3_DIR}/interface -I${IDL3_DIR}/component all: local local: ccmtools c++local ${INCLUDE} -o ${DEST_DIR}/interface ${IDL3_DIR}/interface/application/*.idl ccmtools c++local ${INCLUDE} -a -o ${DEST_DIR}/component/Server ${IDL3_DIR}/component/application/Server.idl ${IDL3_DIR}/component/application/ServerHome.idl check: ccmtools c++local-test ${INCLUDE} -o ${DEST_DIR}/component/Server ${IDL3_DIR}/component/application/Server.idl cp impl/Server_login_impl.cc ${DEST_DIR}/component/Server/ cp impl/_check_application_Server.cc ${DEST_DIR}/component/Server/test/ ccmconfix -confix2 -o ${DEST_DIR} -pname "login" -pversion "1.0.0" confix2.py --packageroot=`pwd`/${DEST_DIR} --bootstrap --configure --make --targets=check mirror: ccmtools c++local ${INCLUDE} -a -o ${DEST_DIR}/component/ServerMirror ${IDL3_DIR}/component/application/ServerMirror.idl ${IDL3_DIR}/component/application/ServerHomeMirror.idl ccmtools c++local-test ${INCLUDE} -o ${DEST_DIR}/component/ServerMirror ${IDL3_DIR}/component/application/Server.idl mirrorcheck: cp impl/Server_login_impl.cc ${DEST_DIR}/component/Server/ cp impl/ServerMirror_impl.cc ${DEST_DIR}/component/ServerMirror/ ccmconfix -confix2 -o ${DEST_DIR} -pname "login" -pversion "1.0.0" confix2.py --packageroot=`pwd`/${DEST_DIR} --bootstrap --configure --make --targets=check stubs: ccmidl -idl2 ${INCLUDE} -o ${DEST_DIR}/component/Server/GEN_ccmtools_corba_stubs ${IDL3_DIR}/interface/application/*.idl ccmidl -idl2 ${INCLUDE} -o ${DEST_DIR}/component/Server/GEN_ccmtools_corba_stubs ${IDL3_DIR}/component/application/Server*.idl cp impl/Makefile ${DEST_DIR}/component/Server/GEN_ccmtools_corba_stubs make -C ${DEST_DIR}/component/Server/GEN_ccmtools_corba_stubs remote: stubs ccmtools c++remote ${INCLUDE} -o ${DEST_DIR}/component/Server/ ${IDL3_DIR}/interface/application/*.idl ccmtools c++remote ${INCLUDE} -o ${DEST_DIR}/component/Server/ ${IDL3_DIR}/component/application/Server*.idl run: ccmtools c++remote-test ${INCLUDE} -o ${DEST_DIR}/component/Server ${IDL3_DIR}/component/application/Server.idl cp impl/Server_login_impl.cc ${DEST_DIR}/component/Server/ cp impl/_check_ccmtools_remote_application_Server.cc ${DEST_DIR}/component/Server/test/ ccmconfix -confix2 -o ${DEST_DIR} -pname "login" -pversion "1.0.0" confix2.py --packageroot=`pwd`/${DEST_DIR} --bootstrap --configure --make --targets=check clean: confix2.py --packageroot=`pwd`/${DEST_DIR} --make --targets=clean rm -rf ${DEST_DIR} |
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/struct In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/struct Removed Files: UserTypeStruct.idl RecursiveStruct.idl Makefile Address.idl .cvsignore Person.idl BasicTypeStruct.idl Log Message: Refactored test directory --- .cvsignore DELETED --- --- RecursiveStruct.idl DELETED --- --- Makefile DELETED --- --- Address.idl DELETED --- --- Person.idl DELETED --- --- BasicTypeStruct.idl DELETED --- --- UserTypeStruct.idl DELETED --- |
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/interface In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/interface Removed Files: InterfaceOperationContext.idl InterfaceVoidTypeOperation.idl .cvsignore InterfaceUserTypeOperation.idl InterfaceBasicTypeOperation.idl InterfaceUserTypeAttributes.idl InterfaceOperationException.idl InterfaceForward.idl InterfaceOnewayOperation.idl InterfaceAbstract.idl Makefile InterfaceBasicTypeAttributes.idl InterfaceInheritance.idl InterfaceException.idl InterfaceReadonlyAttributes.idl EmptyInterface.idl InterfaceType.idl InterfaceConstant.idl InterfaceLocal.idl InterfaceAttributeExceptions.idl Log Message: Refactored test directory --- InterfaceOnewayOperation.idl DELETED --- --- InterfaceInheritance.idl DELETED --- --- InterfaceOperationContext.idl DELETED --- --- InterfaceException.idl DELETED --- --- InterfaceLocal.idl DELETED --- --- InterfaceBasicTypeOperation.idl DELETED --- --- InterfaceOperationException.idl DELETED --- --- Makefile DELETED --- --- InterfaceAttributeExceptions.idl DELETED --- --- InterfaceConstant.idl DELETED --- --- InterfaceBasicTypeAttributes.idl DELETED --- --- InterfaceAbstract.idl DELETED --- --- InterfaceReadonlyAttributes.idl DELETED --- --- EmptyInterface.idl DELETED --- --- InterfaceVoidTypeOperation.idl DELETED --- --- InterfaceForward.idl DELETED --- --- InterfaceUserTypeOperation.idl DELETED --- --- InterfaceUserTypeAttributes.idl DELETED --- --- .cvsignore DELETED --- --- InterfaceType.idl DELETED --- |
Update of /cvsroot/ccmtools/ccmtools/test/idl/fail In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/idl/fail Removed Files: struct-empty.idl enum-empty.idl home-component.idl component-support.idl interface-syntax.idl component-home.idl Log Message: Refactored test directory --- struct-empty.idl DELETED --- --- home-component.idl DELETED --- --- enum-empty.idl DELETED --- --- interface-syntax.idl DELETED --- --- component-home.idl DELETED --- --- component-support.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:04
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/java/server/bin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/Login/java/server/bin Added Files: runClientLocal runServer Log Message: Refactored test directory --- NEW FILE: runClientLocal --- #!/bin/sh if [ -z "$CCMTOOLS_HOME" ]; then echo "ERROR!" echo "Environment variable CCMTOOLS_HOME not found!" exit fi CLASSPATH=$CCMTOOLS_HOME/lib/ccm-runtime.jar:./build:$CLASSPATH $JAVA_HOME/bin/java -enableassertions -cp $CLASSPATH ClientLocal --- NEW FILE: runServer --- #!/bin/sh if [ -z "$CCMTOOLS_HOME" ]; then echo "ERROR!" echo "Environment variable CCMTOOLS_HOME not found!" exit fi CLASSPATH=$CCMTOOLS_HOME/lib/ccm-runtime.jar:./build:$CLASSPATH $JAVA_HOME/bin/java -enableassertions -cp $CLASSPATH Server -ORBInitRef NameService=$CCM_NAME_SERVICE -ORBServerHost ${HOSTNAME} # Note: If a Java application creates a CORBA object reference, we # have to set -ORBServerHost ${HOSTNAME}. This ${HOSTNAME} will be # part of the generated CORBA object reference (or IOR)!! |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:03
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login Removed Files: Makefile .cvsignore Login.idl Log Message: Refactored test directory --- .cvsignore DELETED --- --- Login.idl DELETED --- --- Makefile DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:12:03
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/typedef In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/typedef Removed Files: Makefile BasicTypeTypedef.idl UserTypeTypedef.idl Log Message: Refactored test directory --- BasicTypeTypedef.idl DELETED --- --- Makefile DELETED --- --- UserTypeTypedef.idl DELETED --- |
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/struct In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/struct Added Files: .cvsignore Address.idl BasicTypeStruct.idl UserTypeStruct.idl Makefile RecursiveStruct.idl Person.idl Log Message: Refactored test directory --- NEW FILE: .cvsignore --- xxx Person.idl.tmp Address.idl.tmp --- NEW FILE: RecursiveStruct.idl --- #ifndef __RECURSIVE_STRUCT_TEST__IDL__ #define __RECURSIVE_STRUCT_TEST__IDL__ struct RecursiveStruct { long value; sequence<RecursiveStruct> children; }; #endif // __RECURSIVE_STRUCT_TEST__IDL__ --- NEW FILE: Makefile --- INCLUDE= -I../ all: idl3 idl3: ccmparser Person.idl ccmparser BasicTypeStruct.idl ccmparser Address.idl ccmparser ${INCLUDE} UserTypeStruct.idl # ccmparser RecursiveStruct.idl --- NEW FILE: Address.idl --- #ifndef __ADDRESS__IDL__ #define __ADDRESS__IDL__ #include "Person.idl" struct Address { string street; long number; Person resident; }; #endif // __ADDRESS__IDL__ --- NEW FILE: Person.idl --- #ifndef __PERSON__IDL__ #define __PERSON__IDL__ struct Person { long id; string name; }; #endif // __PERSON__IDL__ --- NEW FILE: BasicTypeStruct.idl --- #ifndef __BASIC_TYPE_STRUCT__IDL__ #define __BASIC_TYPE_STRUCT__IDL__ struct BasicTypeStruct { 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 // __BASIC_TYPE_STRUCT__IDL__ --- NEW FILE: UserTypeStruct.idl --- #ifndef __USER_TYPE_STRUCT__IDL__ #define __USER_TYPE_STRUCT__IDL__ #include <typedef/BasicTypeTypedef.idl> #include <enum/Color.idl> #include "Person.idl" struct UserTypeStruct { MetaLongType typedefMember; Color enumMember; Person structMember; //... }; #endif // __USER_TYPE_STRUCT__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:55
|
Update of /cvsroot/ccmtools/ccmtools/test/tutorial/Login/java/server/bin In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/tutorial/Login/java/server/bin Removed Files: runClientLocal runServer Log Message: Refactored test directory --- runClientLocal DELETED --- --- runServer DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:51
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/HelloWorld In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/HelloWorld Added Files: Makefile .cvsignore Log Message: Refactored test directory --- NEW FILE: .cvsignore --- components java.hprof.txt Hello.ocl --- NEW FILE: Makefile --- CCMTOOLS_CMD = ccmtools DEST_DIR = xxx IDL_INCLUDE=-I${DEST_DIR}/idl/interface -I${DEST_DIR}/idl/component all: local idl: idl3/Hello.idl ccmmodel -validator idl3/Hello.idl ccmidl -idl3 -o ${DEST_DIR}/idl idl3/Hello.idl local: idl ccmtools c++local ${IDL_INCLUDE} -o ${DEST_DIR}/interface ${DEST_DIR}/idl/interface/world/*.idl ccmtools c++local ${IDL_INCLUDE} -a -o ${DEST_DIR}/component/Server ${DEST_DIR}/idl/component/world/Server.idl ${DEST_DIR}/idl/component/world/ServerHome.idl ccmtools c++local-test ${IDL_INCLUDE} -a -o ${DEST_DIR}/component/Server ${DEST_DIR}/idl/component/world/Server.idl check: cp impl/Server_hello_impl.cc ${DEST_DIR}/component/Server/ cp impl/_check_world_Server.cc ${DEST_DIR}/component/Server/test/ ccmconfix -confix2 -o ${DEST_DIR} -pname "hello_world" -pversion "1.0.0" confix2.py --packageroot=`pwd`/${DEST_DIR} --bootstrap --configure --make --targets=check clean: confix2.py --packageroot=`pwd`/${DEST_DIR} --make --targets=clean rm -rf ${DEST_DIR} |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:51
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/typedef In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/typedef Added Files: Makefile BasicTypeTypedef.idl UserTypeTypedef.idl Log Message: Refactored test directory --- NEW FILE: BasicTypeTypedef.idl --- #ifndef __BASIC_TYPE_TYPEDEF__IDL__ #define __BASIC_TYPE_TYPEDEF__IDL__ /** * We can use typedef to create a new name for a type or to rename an * existing type. */ /* * Here we define aliases for basic IDL types */ typedef short ShortType; typedef long LongType; typedef long long LLongType; typedef unsigned short UShortType; typedef unsigned long ULongType; typedef unsigned long long ULLongType; typedef float FloatType; typedef double DoubleType; typedef long double LDoubleType; typedef char CharType; typedef wchar WCharType; typedef string StringType; typedef wstring WStringType; typedef boolean BooleanType; typedef octet OctetType; typedef any AnyType; typedef Object ObjectType; typedef fixed<9,2> FixedType; /* * Here we define aliases for existing typedefs */ typedef ShortType MetaShortType; typedef LongType MetaLongType; typedef LLongType MetaLLongType; typedef UShortType MetaUShortType; typedef ULongType MetaULongType; typedef FloatType MetaFloatType; typedef DoubleType MetaDoubleType; typedef LDoubleType MetaLDoubleType; typedef CharType MetaCharType; typedef WCharType MetaWCharType; typedef StringType MetaStringType; typedef WStringType MetaWStringType; typedef BooleanType MetaBooleanType; typedef OctetType MetaOctetType; typedef AnyType MetaAnyType; typedef ObjectType MetaObjectType; typedef FixedType MetaFixedType; /* * Here we define aliases 2nd order... */ typedef MetaShortType MetaMetaShortType; typedef MetaLongType MetaMetaLongType; typedef MetaLLongType MetaMetaLongLongType; typedef MetaUShortType MetaMetaUShortType; typedef MetaULongType MetaMetaULongType; typedef MetaFloatType MetaMetaFloatType; typedef MetaDoubleType MetaMetaDoubleType; typedef MetaLDoubleType MetaMetaLDoubleType; typedef MetaCharType MetaMetaCharType; typedef MetaWCharType MetaMetaWCharType; typedef MetaStringType MetaMetaStringType; typedef MetaWStringType MetaMetaWStringType; typedef MetaBooleanType MetaMetaBooleanType; typedef MetaOctetType MetaMetaOctetType; typedef MetaAnyType MetaMetaAnyType; typedef MetaObjectType MetaMetaObjectType; typedef MetaFixedType MetaMetaFixedType; #endif // __BASIC_TYPE_TYPEDEF__IDL__ --- NEW FILE: Makefile --- all: idl3 idl3: ccmprinter BasicTypeTypedef.idl --- NEW FILE: UserTypeTypedef.idl --- #ifndef __USER_TYPE_TYPEDEF__IDL__ #define __USER_TYPE_TYPEDEF__IDL__ #include<enum/Color.idl> #include<struct/Person.idl> /* * Here we define aliases for user defined IDL types */ typedef Color EnumType; typedef Person StructType; /* * Here we define aliases for existing typedefs */ typedef EnumType MetaEnumType; typedef StructType MetaStructType; /* * Here we define aliases 2nd order... */ typedef MetaEnumType MetaMetaEnumType; typedef MetaStructType MetaMetaStructType; #endif // __USER_TYPE_TYPEDEF__IDL__ |
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/component In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/component Removed Files: HomeSimple.idl HomeInheritance.idl ComponentAttributeBasicTypes.idl HomeSupportedInterface.idl ComponentAttributeExceptions.idl HomeFactoryBasicTypes.idl ComponentInheritance.idl ComponentSupportedInterface.idl HomeAttributeExceptions.idl HomeTypes.idl ComponentEmits.idl HomeAttributeBasicTypes.idl ComponentPublishes.idl ComponentFacetReceptacle.idl HomeFactoryUserTypes.idl ComponentConsumes.idl ComponentAttributeUserTypes.idl HomeFactoryException.idl HomeAttributeUserTypes.idl HomePrimaryKey.idl Makefile HomeException.idl ComponentReceptacle.idl HomeFinderMethods.idl ComponentFacet.idl ComponentException.idl .cvsignore ComponentReadonlyAttributes.idl ComponentSimple.idl Log Message: Refactored test directory --- HomeAttributeExceptions.idl DELETED --- --- ComponentEmits.idl DELETED --- --- Makefile DELETED --- --- HomeInheritance.idl DELETED --- --- HomeFactoryUserTypes.idl DELETED --- --- HomeSupportedInterface.idl DELETED --- --- HomeException.idl DELETED --- --- ComponentAttributeExceptions.idl DELETED --- --- ComponentSupportedInterface.idl DELETED --- --- ComponentReceptacle.idl DELETED --- --- ComponentException.idl DELETED --- --- ComponentReadonlyAttributes.idl DELETED --- --- .cvsignore DELETED --- --- ComponentFacetReceptacle.idl DELETED --- --- HomeAttributeUserTypes.idl DELETED --- --- HomeAttributeBasicTypes.idl DELETED --- --- ComponentAttributeUserTypes.idl DELETED --- --- HomeSimple.idl DELETED --- --- ComponentAttributeBasicTypes.idl DELETED --- --- ComponentPublishes.idl DELETED --- --- HomeFinderMethods.idl DELETED --- --- HomeFactoryBasicTypes.idl DELETED --- --- ComponentFacet.idl DELETED --- --- ComponentInheritance.idl DELETED --- --- HomeFactoryException.idl DELETED --- --- HomeTypes.idl DELETED --- --- HomePrimaryKey.idl DELETED --- --- ComponentSimple.idl DELETED --- --- ComponentConsumes.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:24
|
Update of /cvsroot/ccmtools/ccmtools/test/IDL3Parser/valuetype In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDL3Parser/valuetype Removed Files: Makefile BoxedValuetype.idl ValuetypeTest.idl Log Message: Refactored test directory --- Makefile DELETED --- --- ValuetypeTest.idl DELETED --- --- BoxedValuetype.idl DELETED --- |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:21
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/Login Added Files: Login.idl .cvsignore Makefile Log Message: Refactored test directory --- NEW FILE: .cvsignore --- orb.db idl3repo --- NEW FILE: Login.idl --- module application { enum Group { GUEST, USER, ADMIN }; struct PersonData { long id; string name; string password; Group group; }; exception InvalidPersonData { string message; }; interface Login { boolean isValidUser(in PersonData person) raises(InvalidPersonData); }; component Server { provides Login login; }; home ServerHome manages Server { }; }; --- NEW FILE: Makefile --- IDL_SOURCE=Login.idl DEST_DIR = . IDL3_DIR = ${DEST_DIR}/idl3repo INCLUDE = -I${IDL3_DIR}/interface -I${IDL3_DIR}/component all: idl3 idl3: ${IDL_SOURCE} ccmidl -idl3 -o ${IDL3_DIR} ${IDL_SOURCE} idl3mirror: ccmidl -idl3mirror ${INCLUDE} -o ${IDL3_DIR} ${IDL3_DIR}/component/application/Server*.idl clean: rm -rf ${IDL3_DIR} |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:21
|
Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/valuetype In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/valuetype Added Files: BoxedValuetype.idl Makefile ValuetypeTest.idl Log Message: Refactored test directory --- NEW FILE: Makefile --- all: idl3 idl3: ccmparser ValuetypeTest.idl --- NEW FILE: ValuetypeTest.idl --- #ifndef __VALUETYPE_TEST__IDL__ #define __VALUETYPE_TEST__IDL__ valuetype Login { public long id; public string name; private string password; boolean hasAccess(); }; valuetype xy : Login { public double time; void login(); }; abstract valuetype EventBase { }; #endif // __VALUETYPE_TEST__IDL__ --- NEW FILE: BoxedValuetype.idl --- #ifndef __BOXED_VALUETYPE_TEST__IDL__ #define __BOXED_VALUETYPE_TEST__IDL__ valuetype LongSequence sequence<long>; #endif // __BOXED_VALUETYPE_TEST__IDL__ |
|
From: Teiniker E. <tei...@us...> - 2007-01-18 10:11:20
|
Update of /cvsroot/ccmtools/ccmtools/test/manual/Login/java/client In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/manual/Login/java/client Added Files: Makefile build.xml Log Message: Refactored test directory --- NEW FILE: Makefile --- IDL_SOURCE=../../Login.idl DEST_DIR = . IDL3_DIR = ${DEST_DIR}/idl3 IDL2_DIR = ${DEST_DIR}/idl2 INCLUDE = -I${IDL3_DIR}/interface -I${IDL3_DIR}/component all: clientlib run idl3: ${IDL_SOURCE} ccmidl -idl3 -o ${IDL3_DIR} ${IDL_SOURCE} stubs: ccmidl -idl2 -o ${IDL2_DIR} ${IDL_SOURCE} ccmtools-idl -java -o ${DEST_DIR}/src-gen -I${CCMTOOLS_HOME}/idl -I${IDL2_DIR} ${IDL2_DIR}/*.idl clientlib: idl3 stubs ccmjava -iface -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/interface/application/*.idl ccmjava -iface -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/component/application/Server*.idl ccmjava -clientlib -remote -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/interface/application/*.idl ccmjava -clientlib -o ${DEST_DIR}/src-gen ${INCLUDE} ${IDL3_DIR}/component/application/Server*.idl run: ant -f ./build.xml bin/runClient clean: ant clean rm -rf ${DEST_DIR}/idl3 rm -rf ${DEST_DIR}/idl2 rm -rf ${DEST_DIR}/src-gen --- NEW FILE: build.xml --- <project name="LoginClient" default="compile"> <property name="dest" location="." /> <property name="server" location="../server" /> <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" /> <path id="compile.classpath"> <pathelement path="${java.class.path}" /> <pathelement location="${server}/lib/LoginServer.jar" /> </path> <!-- Create the build directory--> <target name="init" description="" > <mkdir dir="${build}" /> </target> <!-- Compile generated Java files--> <target name="compile" depends="init" description="" > <javac srcdir="${src}:${src-gen}" destdir="${build}" debug="on" source="1.5" target="1.5"> <classpath refid="compile.classpath" /> </javac> </target> <!-- Clean up --> <target name="clean" description="" > <delete dir="${build}" /> </target> </project> |