// ********************************************************************** // // Copyright (c) 2003 - 2004 // ZeroC, Inc. // North Palm Beach, FL, USA // // All Rights Reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #include #include #include #include #include using namespace std; using namespace Ice; using namespace IceInternal; namespace IceInternal { extern IceUtil::Handle theCollector; } void Ice::collectGarbage() { if(theCollector) { theCollector->collectGarbage(); } } StringSeq Ice::argsToStringSeq(int argc, char* argv[]) { StringSeq result; for(int i = 0; i < argc; i++) { result.push_back(argv[i]); } return result; } void Ice::stringSeqToArgs(const StringSeq& args, int& argc, char* argv[]) { // // Shift all elements in argv which are present in args to the // beginning of argv. // int i = 0; while(i < argc) { if(find(args.begin(), args.end(), argv[i]) == args.end()) { for(int j = i; j < argc - 1; j++) { argv[j] = argv[j + 1]; } --argc; } else { ++i; } } // // Make sure that argv[argc] == 0, the ISO C++ standard requires this. // if(argv) { argv[argc] = 0; } } PropertiesPtr Ice::createProperties() { return new PropertiesI(); } PropertiesPtr Ice::createProperties(StringSeq& args) { return new PropertiesI(args); } PropertiesPtr Ice::createProperties(int& argc, char* argv[]) { StringSeq args = argsToStringSeq(argc, argv); PropertiesPtr properties = createProperties(args); stringSeqToArgs(args, argc, argv); return properties; } static PropertiesPtr defaultProperties; class DefaultPropertiesDestroyer { public: ~DefaultPropertiesDestroyer() { defaultProperties = 0; } }; static DefaultPropertiesDestroyer defaultPropertiesDestroyer; PropertiesPtr Ice::getDefaultProperties() { if(!defaultProperties) { defaultProperties = createProperties(); } return defaultProperties; } PropertiesPtr Ice::getDefaultProperties(StringSeq& args) { if(!defaultProperties) { defaultProperties = createProperties(args); } return defaultProperties; } PropertiesPtr Ice::getDefaultProperties(int& argc, char* argv[]) { StringSeq args = argsToStringSeq(argc, argv); PropertiesPtr properties = getDefaultProperties(args); stringSeqToArgs(args, argc, argv); return properties; } CommunicatorPtr Ice::initialize(int& argc, char* argv[], Int version) { PropertiesPtr properties = getDefaultProperties(argc, argv); return initializeWithProperties(argc, argv, properties, version); } CommunicatorPtr Ice::initializeWithProperties(int& argc, char* argv[], const PropertiesPtr& properties, Int version) { #ifndef ICE_IGNORE_VERSION if(version != ICE_INT_VERSION) { throw VersionMismatchException(__FILE__, __LINE__); } #endif StringSeq args = argsToStringSeq(argc, argv); args = properties->parseIceCommandLineOptions(args); stringSeqToArgs(args, argc, argv); CommunicatorI* communicatorI = new CommunicatorI(properties); CommunicatorPtr result = communicatorI; // For exception safety. communicatorI->finishSetup(argc, argv); return result; } InstancePtr IceInternal::getInstance(const CommunicatorPtr& communicator) { CommunicatorI* p = dynamic_cast(communicator.get()); assert(p); return p->_instance; }