// // ext-collections/collections.c // // @Author CismonX // #ifdef HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include "php_collections.h" zend_object_handlers* collection_handlers; zend_class_entry* collections_collection_ce; zend_class_entry* collections_pair_ce; zend_string* collections_pair_first; zend_string* collections_pair_second; PHP_MINIT_FUNCTION(collections) { collections_pair_first = zend_string_init("first", sizeof "first" - 1, 1); collections_pair_second = zend_string_init("second", sizeof "second" - 1, 1); zend_class_entry collection_ce; INIT_CLASS_ENTRY_EX(collection_ce, "Collection", sizeof "Collection" - 1, collection_methods); collections_collection_ce = zend_register_internal_class(&collection_ce); zend_class_implements(collections_collection_ce, #if PHP_VERSION_ID < 70200 1, #else 2, zend_ce_countable, #endif zend_ce_arrayaccess); collection_handlers = (zend_object_handlers*)emalloc(sizeof(zend_object_handlers)); memcpy(collection_handlers, &std_object_handlers, sizeof(zend_object_handlers)); collection_handlers->count_elements = count_collection; collection_handlers->unset_dimension = collection_offset_unset; collection_handlers->write_dimension = collection_offset_set; collection_handlers->read_dimension = collection_offset_get; collection_handlers->has_dimension = collection_offset_exists; zend_class_entry pair_ce; INIT_CLASS_ENTRY_EX(pair_ce, "Pair", sizeof "Pair" - 1, pair_methods); collections_pair_ce = zend_register_internal_class(&pair_ce); return SUCCESS; } PHP_MINFO_FUNCTION(collections) { php_info_print_table_start(); php_info_print_table_header(2, "collections support", "enabled"); php_info_print_table_end(); } zend_module_entry collections_module_entry = { STANDARD_MODULE_HEADER, "collections", NULL, PHP_MINIT(collections), NULL, NULL, NULL, PHP_MINFO(collections), PHP_COLLECTIONS_VERSION, STANDARD_MODULE_PROPERTIES }; #ifdef COMPILE_DL_COLLECTIONS ZEND_GET_MODULE(collections) #endif