// ********************************************************************** // // Copyright (c) 2003-2013 ZeroC, Inc. 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 #include #include #include #include using namespace std; using namespace IcePHP; ZEND_DECLARE_MODULE_GLOBALS(ice) ZEND_BEGIN_ARG_INFO_EX(Ice_initialize_arginfo, 1, ZEND_RETURN_VALUE, static_cast(-1)) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(Ice_createProperties_arginfo, 1, ZEND_RETURN_VALUE, static_cast(-1)) ZEND_END_ARG_INFO() #define ICEPHP_COMMUNICATOR_FUNCTIONS \ ZEND_FE(Ice_initialize, Ice_initialize_arginfo) \ ZEND_FE(Ice_register, NULL) \ ZEND_FE(Ice_unregister, NULL) \ ZEND_FE(Ice_find, NULL) \ ZEND_FE(Ice_getProperties, NULL) #ifdef ICEPHP_USE_NAMESPACES # define ICEPHP_COMMUNICATOR_NS_FUNCTIONS \ ZEND_NS_FALIAS("Ice", initialize, Ice_initialize, Ice_initialize_arginfo) \ ZEND_NS_FALIAS("Ice", register, Ice_register, NULL) \ ZEND_NS_FALIAS("Ice", unregister, Ice_unregister, NULL) \ ZEND_NS_FALIAS("Ice", find, Ice_find, NULL) \ ZEND_NS_FALIAS("Ice", getProperties, Ice_getProperties, NULL) #else # define ICEPHP_COMMUNICATOR_NS_FUNCTIONS #endif #define ICEPHP_OPERATION_FUNCTIONS \ ZEND_FE(IcePHP_defineOperation, NULL) #define ICEPHP_PROPERTIES_FUNCTIONS \ ZEND_FE(Ice_createProperties, Ice_createProperties_arginfo) #ifdef ICEPHP_USE_NAMESPACES # define ICEPHP_PROPERTIES_NS_FUNCTIONS \ ZEND_NS_FALIAS("Ice", createProperties, Ice_createProperties, Ice_createProperties_arginfo) #else # define ICEPHP_PROPERTIES_NS_FUNCTIONS #endif #define ICEPHP_TYPE_FUNCTIONS \ ZEND_FE(IcePHP_defineEnum, NULL) \ ZEND_FE(IcePHP_defineStruct, NULL) \ ZEND_FE(IcePHP_defineSequence, NULL) \ ZEND_FE(IcePHP_defineDictionary, NULL) \ ZEND_FE(IcePHP_declareProxy, NULL) \ ZEND_FE(IcePHP_defineProxy, NULL) \ ZEND_FE(IcePHP_declareClass, NULL) \ ZEND_FE(IcePHP_defineClass, NULL) \ ZEND_FE(IcePHP_defineException, NULL) \ ZEND_FE(IcePHP_stringify, NULL) \ ZEND_FE(IcePHP_stringifyException, NULL) #define ICEPHP_UTIL_FUNCTIONS \ ZEND_FE(Ice_stringVersion, NULL) \ ZEND_FE(Ice_intVersion, NULL) \ ZEND_FE(Ice_generateUUID, NULL) \ ZEND_FE(Ice_currentProtocol, NULL) \ ZEND_FE(Ice_currentProtocolEncoding, NULL) \ ZEND_FE(Ice_currentEncoding, NULL) \ ZEND_FE(Ice_protocolVersionToString, NULL) \ ZEND_FE(Ice_stringToProtocolVersion, NULL) \ ZEND_FE(Ice_encodingVersionToString, NULL) \ ZEND_FE(Ice_stringToEncodingVersion, NULL) #ifdef ICEPHP_USE_NAMESPACES # define ICEPHP_UTIL_NS_FUNCTIONS \ ZEND_NS_FALIAS("Ice", stringVersion, Ice_stringVersion, NULL) \ ZEND_NS_FALIAS("Ice", intVersion, Ice_intVersion, NULL) \ ZEND_NS_FALIAS("Ice", generateUUID, Ice_generateUUID, NULL) \ ZEND_NS_FALIAS("Ice", currentProtocol, Ice_currentProtocol, NULL) \ ZEND_NS_FALIAS("Ice", currentProtocolEncoding, Ice_currentProtocolEncoding, NULL) \ ZEND_NS_FALIAS("Ice", currentEncoding, Ice_currentEncoding, NULL) \ ZEND_NS_FALIAS("Ice", protocolVersionToString, Ice_protocolVersionToString, NULL) \ ZEND_NS_FALIAS("Ice", stringToProtocolVersion, Ice_stringToProtocolVersion, NULL) \ ZEND_NS_FALIAS("Ice", encodingVersionToString, Ice_encodingVersionToString, NULL) \ ZEND_NS_FALIAS("Ice", stringToEncodingVersion, Ice_stringToEncodingVersion, NULL) #else # define ICEPHP_UTIL_NS_FUNCTIONS #endif // // Necessary to suppress warnings from zend_function_entry in php-5.2. // #if defined(__GNUC__) # pragma GCC diagnostic ignored "-Wwrite-strings" #endif // // Entries for all global functions. // zend_function_entry ice_functions[] = { ICEPHP_COMMUNICATOR_FUNCTIONS ICEPHP_COMMUNICATOR_NS_FUNCTIONS ICEPHP_OPERATION_FUNCTIONS ICEPHP_PROPERTIES_FUNCTIONS ICEPHP_PROPERTIES_NS_FUNCTIONS ICEPHP_TYPE_FUNCTIONS ICEPHP_UTIL_FUNCTIONS ICEPHP_UTIL_NS_FUNCTIONS {0, 0, 0} }; // // enable warning again // #if defined(__GNUC__) # pragma GCC diagnostic error "-Wwrite-strings" #endif // // The ice_module_entry declaration below generates lots of warnings: // // deprecated conversion from string constant to ‘char*’ // // We disable them with a pragma. // #if defined(__GNUC__) # pragma GCC diagnostic ignored "-Wwrite-strings" #endif zend_module_entry ice_module_entry = { STANDARD_MODULE_HEADER, "ice", ice_functions, ZEND_MINIT(ice), ZEND_MSHUTDOWN(ice), ZEND_RINIT(ice), ZEND_RSHUTDOWN(ice), ZEND_MINFO(ice), NO_VERSION_YET, STANDARD_MODULE_PROPERTIES }; ZEND_GET_MODULE(ice) // // Declare initialization file entries. // PHP_INI_BEGIN() PHP_INI_ENTRY("ice.config", "", PHP_INI_SYSTEM, 0) PHP_INI_ENTRY("ice.options", "", PHP_INI_SYSTEM, 0) PHP_INI_ENTRY("ice.profiles", "", PHP_INI_SYSTEM, 0) PHP_INI_ENTRY("ice.hide_profiles", "1", PHP_INI_SYSTEM, 0) PHP_INI_END() extern "C" int initIceGlobals(zend_ice_globals* g) { g->communicatorMap = 0; g->idToClassInfoMap = 0; g->compactIdToClassInfoMap = 0; g->nameToClassInfoMap = 0; g->proxyInfoMap = 0; g->exceptionInfoMap = 0; g->unset = 0; return SUCCESS; } ZEND_MINIT_FUNCTION(ice) { REGISTER_INI_ENTRIES(); ZEND_INIT_MODULE_GLOBALS(ice, initIceGlobals, 0); if(!communicatorInit(TSRMLS_C)) { return FAILURE; } if(!propertiesInit(TSRMLS_C)) { return FAILURE; } if(!proxyInit(TSRMLS_C)) { return FAILURE; } if(!typesInit(INIT_FUNC_ARGS_PASSTHRU)) { return FAILURE; } if(!loggerInit(TSRMLS_C)) { return FAILURE; } if(!endpointInit(TSRMLS_C)) { return FAILURE; } if(!connectionInit(TSRMLS_C)) { return FAILURE; } return SUCCESS; } ZEND_MSHUTDOWN_FUNCTION(ice) { UNREGISTER_INI_ENTRIES(); int status = SUCCESS; if(!communicatorShutdown(TSRMLS_C)) { status = FAILURE; } return status; } ZEND_RINIT_FUNCTION(ice) { ICE_G(communicatorMap) = 0; if(!communicatorRequestInit(TSRMLS_C)) { return FAILURE; } if(!typesRequestInit(TSRMLS_C)) { return FAILURE; } return SUCCESS; } ZEND_RSHUTDOWN_FUNCTION(ice) { if(!communicatorRequestShutdown(TSRMLS_C)) { return FAILURE; } if(!typesRequestShutdown(TSRMLS_C)) { return FAILURE; } return SUCCESS; } ZEND_MINFO_FUNCTION(ice) { php_info_print_table_start(); php_info_print_table_header(2, "Ice support", "enabled"); php_info_print_table_row(2, "Ice version", ICE_STRING_VERSION); php_info_print_table_end(); DISPLAY_INI_ENTRIES(); }