⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
mongodb-1.11.1
/
src
/
MongoDB
/
View File Name :
ReadPreference.c
/* * Copyright 2014-present MongoDB, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <php.h> #include <Zend/zend_interfaces.h> #include <ext/standard/php_var.h> #include <zend_smart_str.h> #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "php_array_api.h" #include "phongo_compat.h" #include "php_phongo.h" #include "php_bson.h" zend_class_entry* php_phongo_readpreference_ce; #define PHONGO_READ_PRIMARY "primary" #define PHONGO_READ_PRIMARY_PREFERRED "primaryPreferred" #define PHONGO_READ_SECONDARY "secondary" #define PHONGO_READ_SECONDARY_PREFERRED "secondaryPreferred" #define PHONGO_READ_NEAREST "nearest" /* Initialize the object from a HashTable and return whether it was successful. * An exception will be thrown on error. */ static bool php_phongo_readpreference_init_from_hash(php_phongo_readpreference_t* intern, HashTable* props) /* {{{ */ { zval *mode, *tagSets, *maxStalenessSeconds, *hedge; if ((mode = zend_hash_str_find(props, "mode", sizeof("mode") - 1)) && Z_TYPE_P(mode) == IS_STRING) { if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_PRIMARY) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_PRIMARY); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_PRIMARY_PREFERRED) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_PRIMARY_PREFERRED); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_SECONDARY) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_SECONDARY); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_SECONDARY_PREFERRED) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_SECONDARY_PREFERRED); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_NEAREST) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_NEAREST); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires specific values for \"mode\" string field", ZSTR_VAL(php_phongo_readpreference_ce->name)); return false; } } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"mode\" field to be string", ZSTR_VAL(php_phongo_readpreference_ce->name)); return false; } if ((tagSets = zend_hash_str_find(props, "tags", sizeof("tags") - 1))) { ZVAL_DEREF(tagSets); if (Z_TYPE_P(tagSets) == IS_ARRAY) { bson_t* tags = bson_new(); /* Separate tagSets as php_phongo_read_preference_prep_tagsets may * modify these tags. */ SEPARATE_ZVAL_NOREF(tagSets); php_phongo_read_preference_prep_tagsets(tagSets); php_phongo_zval_to_bson(tagSets, PHONGO_BSON_NONE, (bson_t*) tags, NULL); if (!php_phongo_read_preference_tags_are_valid(tags)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"tags\" array field to have zero or more documents", ZSTR_VAL(php_phongo_readpreference_ce->name)); bson_destroy(tags); goto failure; } if (!bson_empty(tags) && (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"tags\" array field to not be present with \"primary\" mode", ZSTR_VAL(php_phongo_readpreference_ce->name)); bson_destroy(tags); goto failure; } mongoc_read_prefs_set_tags(intern->read_preference, tags); bson_destroy(tags); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"tags\" field to be array", ZSTR_VAL(php_phongo_readpreference_ce->name)); goto failure; } } if ((maxStalenessSeconds = zend_hash_str_find(props, "maxStalenessSeconds", sizeof("maxStalenessSeconds") - 1))) { if (Z_TYPE_P(maxStalenessSeconds) == IS_LONG) { if (Z_LVAL_P(maxStalenessSeconds) != MONGOC_NO_MAX_STALENESS) { if (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"maxStalenessSeconds\" field to not be present with \"primary\" mode", ZSTR_VAL(php_phongo_readpreference_ce->name)); goto failure; } if (Z_LVAL_P(maxStalenessSeconds) < MONGOC_SMALLEST_MAX_STALENESS_SECONDS) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"maxStalenessSeconds\" integer field to be >= %d", ZSTR_VAL(php_phongo_readpreference_ce->name), MONGOC_SMALLEST_MAX_STALENESS_SECONDS); goto failure; } if (Z_LVAL_P(maxStalenessSeconds) > INT32_MAX) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"maxStalenessSeconds\" integer field to be <= %" PRId32, ZSTR_VAL(php_phongo_readpreference_ce->name), INT32_MAX); goto failure; } } mongoc_read_prefs_set_max_staleness_seconds(intern->read_preference, Z_LVAL_P(maxStalenessSeconds)); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"maxStalenessSeconds\" field to be integer", ZSTR_VAL(php_phongo_readpreference_ce->name)); goto failure; } } if ((hedge = zend_hash_str_find(props, "hedge", sizeof("hedge") - 1))) { if (Z_TYPE_P(hedge) == IS_ARRAY || Z_TYPE_P(hedge) == IS_OBJECT) { bson_t* hedge_doc = bson_new(); if (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"hedge\" field to not be present with \"primary\" mode", ZSTR_VAL(php_phongo_readpreference_ce->name)); bson_destroy(hedge_doc); goto failure; } php_phongo_zval_to_bson(hedge, PHONGO_BSON_NONE, hedge_doc, NULL); if (EG(exception)) { bson_destroy(hedge_doc); goto failure; } mongoc_read_prefs_set_hedge(intern->read_preference, hedge_doc); bson_destroy(hedge_doc); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"hedge\" field to be an array or object", ZSTR_VAL(php_phongo_readpreference_ce->name)); goto failure; } } if (!mongoc_read_prefs_is_valid(intern->read_preference)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Read preference is not valid"); goto failure; } return true; failure: mongoc_read_prefs_destroy(intern->read_preference); intern->read_preference = NULL; return false; } /* }}} */ static const char* php_phongo_readpreference_get_mode_string(mongoc_read_mode_t mode) /* {{{ */ { switch (mode) { case MONGOC_READ_PRIMARY: return PHONGO_READ_PRIMARY; case MONGOC_READ_PRIMARY_PREFERRED: return PHONGO_READ_PRIMARY_PREFERRED; case MONGOC_READ_SECONDARY: return PHONGO_READ_SECONDARY; case MONGOC_READ_SECONDARY_PREFERRED: return PHONGO_READ_SECONDARY_PREFERRED; case MONGOC_READ_NEAREST: return PHONGO_READ_NEAREST; default: /* Should never happen, but if it does: exception */ phongo_throw_exception(PHONGO_ERROR_LOGIC, "Mode '%d' should never have been passed to php_phongo_readpreference_get_mode_string, please file a bug report", mode); break; } return NULL; } /* }}} */ /* {{{ proto void MongoDB\Driver\ReadPreference::__construct(int|string $mode[, array $tagSets = array()[, array $options = array()]]) Constructs a new ReadPreference */ static PHP_METHOD(ReadPreference, __construct) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; zval* mode; zval* tagSets = NULL; zval* options = NULL; intern = Z_READPREFERENCE_OBJ_P(getThis()); /* Separate the tagSets zval, since we may end up modifying it in * php_phongo_read_preference_prep_tagsets() below. */ zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters(ZEND_NUM_ARGS(), "z|a/!a!", &mode, &tagSets, &options) == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); if (Z_TYPE_P(mode) == IS_LONG) { switch (Z_LVAL_P(mode)) { case MONGOC_READ_PRIMARY: case MONGOC_READ_SECONDARY: case MONGOC_READ_PRIMARY_PREFERRED: case MONGOC_READ_SECONDARY_PREFERRED: case MONGOC_READ_NEAREST: intern->read_preference = mongoc_read_prefs_new(Z_LVAL_P(mode)); break; default: phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Invalid mode: %" PHONGO_LONG_FORMAT, Z_LVAL_P(mode)); return; } } else if (Z_TYPE_P(mode) == IS_STRING) { if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_PRIMARY) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_PRIMARY); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_PRIMARY_PREFERRED) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_PRIMARY_PREFERRED); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_SECONDARY) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_SECONDARY); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_SECONDARY_PREFERRED) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_SECONDARY_PREFERRED); } else if (strcasecmp(Z_STRVAL_P(mode), PHONGO_READ_NEAREST) == 0) { intern->read_preference = mongoc_read_prefs_new(MONGOC_READ_NEAREST); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Invalid mode: '%s'", Z_STRVAL_P(mode)); return; } } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Expected mode to be integer or string, %s given", PHONGO_ZVAL_CLASS_OR_TYPE_NAME_P(mode)); return; } if (tagSets) { bson_t* tags = bson_new(); php_phongo_read_preference_prep_tagsets(tagSets); php_phongo_zval_to_bson(tagSets, PHONGO_BSON_NONE, (bson_t*) tags, NULL); if (!php_phongo_read_preference_tags_are_valid(tags)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "tagSets must be an array of zero or more documents"); bson_destroy(tags); return; } if (!bson_empty(tags) && (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "tagSets may not be used with primary mode"); bson_destroy(tags); return; } mongoc_read_prefs_set_tags(intern->read_preference, tags); bson_destroy(tags); } if (options && php_array_exists(options, "maxStalenessSeconds")) { zend_long maxStalenessSeconds = php_array_fetchc_long(options, "maxStalenessSeconds"); if (maxStalenessSeconds != MONGOC_NO_MAX_STALENESS) { if (maxStalenessSeconds < MONGOC_SMALLEST_MAX_STALENESS_SECONDS) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Expected maxStalenessSeconds to be >= %d, %" PHONGO_LONG_FORMAT " given", MONGOC_SMALLEST_MAX_STALENESS_SECONDS, maxStalenessSeconds); return; } if (maxStalenessSeconds > INT32_MAX) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Expected maxStalenessSeconds to be <= %" PRId32 ", %" PHONGO_LONG_FORMAT " given", INT32_MAX, maxStalenessSeconds); return; } if (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "maxStalenessSeconds may not be used with primary mode"); return; } } mongoc_read_prefs_set_max_staleness_seconds(intern->read_preference, maxStalenessSeconds); } if (options && php_array_exists(options, "hedge")) { zval* hedge = php_array_fetchc(options, "hedge"); if (Z_TYPE_P(hedge) == IS_ARRAY || Z_TYPE_P(hedge) == IS_OBJECT) { bson_t* hedge_doc = bson_new(); if (mongoc_read_prefs_get_mode(intern->read_preference) == MONGOC_READ_PRIMARY) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "hedge may not be used with primary mode"); bson_destroy(hedge_doc); return; } php_phongo_zval_to_bson(hedge, PHONGO_BSON_NONE, hedge_doc, NULL); if (EG(exception)) { bson_destroy(hedge_doc); return; } mongoc_read_prefs_set_hedge(intern->read_preference, hedge_doc); bson_destroy(hedge_doc); } else { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "%s initialization requires \"hedge\" field to be an array or object", ZSTR_VAL(php_phongo_readpreference_ce->name)); return; } } if (!mongoc_read_prefs_is_valid(intern->read_preference)) { phongo_throw_exception(PHONGO_ERROR_INVALID_ARGUMENT, "Read preference is not valid"); return; } } /* }}} */ /* {{{ proto MongoDB\Driver\ReadPreference MongoDB\Driver\ReadPreference::__set_state(array $properties) */ static PHP_METHOD(ReadPreference, __set_state) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; HashTable* props; zval* array; /* Separate the zval, since we may end up modifying the "tags" element in * php_phongo_read_preference_prep_tagsets(), which is called from * php_phongo_readpreference_init_from_hash. */ zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters(ZEND_NUM_ARGS(), "a/", &array) == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); object_init_ex(return_value, php_phongo_readpreference_ce); intern = Z_READPREFERENCE_OBJ_P(return_value); props = Z_ARRVAL_P(array); php_phongo_readpreference_init_from_hash(intern, props); } /* }}} */ /* {{{ proto array|null MongoDB\Driver\ReadPreference::getHedge() Returns the ReadPreference hedge document */ static PHP_METHOD(ReadPreference, getHedge) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; const bson_t* hedge; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); hedge = mongoc_read_prefs_get_hedge(intern->read_preference); if (!bson_empty0(hedge)) { php_phongo_bson_state state; PHONGO_BSON_INIT_STATE(state); if (!php_phongo_bson_to_zval_ex(bson_get_data(hedge), hedge->len, &state)) { zval_ptr_dtor(&state.zchild); return; } RETURN_ZVAL(&state.zchild, 0, 1); } else { RETURN_NULL(); } } /* }}} */ /* {{{ proto integer MongoDB\Driver\ReadPreference::getMaxStalenessSeconds() Returns the ReadPreference maxStalenessSeconds value */ static PHP_METHOD(ReadPreference, getMaxStalenessSeconds) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); RETURN_LONG(mongoc_read_prefs_get_max_staleness_seconds(intern->read_preference)); } /* }}} */ /* {{{ proto integer MongoDB\Driver\ReadPreference::getMode() Returns the ReadPreference mode */ static PHP_METHOD(ReadPreference, getMode) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); RETURN_LONG(mongoc_read_prefs_get_mode(intern->read_preference)); } /* }}} */ /* {{{ proto string MongoDB\Driver\ReadPreference::getModeString() Returns the ReadPreference mode as string */ static PHP_METHOD(ReadPreference, getModeString) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; const char* mode_string; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); mode_string = php_phongo_readpreference_get_mode_string(mongoc_read_prefs_get_mode(intern->read_preference)); if (!mode_string) { /* Exception already thrown */ return; } RETURN_STRING(mode_string); } /* }}} */ /* {{{ proto array MongoDB\Driver\ReadPreference::getTagSets() Returns the ReadPreference tag sets */ static PHP_METHOD(ReadPreference, getTagSets) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; const bson_t* tags; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); tags = mongoc_read_prefs_get_tags(intern->read_preference); if (tags->len) { php_phongo_bson_state state; PHONGO_BSON_INIT_DEBUG_STATE(state); if (!php_phongo_bson_to_zval_ex(bson_get_data(tags), tags->len, &state)) { zval_ptr_dtor(&state.zchild); return; } RETURN_ZVAL(&state.zchild, 0, 1); } else { RETURN_NULL(); } } /* }}} */ static HashTable* php_phongo_readpreference_get_properties_hash(phongo_compat_object_handler_type* object, bool is_temp) /* {{{ */ { php_phongo_readpreference_t* intern; HashTable* props; const char* modeString = NULL; const bson_t* tags; const bson_t* hedge; mongoc_read_mode_t mode; intern = Z_OBJ_READPREFERENCE(PHONGO_COMPAT_GET_OBJ(object)); PHONGO_GET_PROPERTY_HASH_INIT_PROPS(is_temp, intern, props, 4); if (!intern->read_preference) { return props; } tags = mongoc_read_prefs_get_tags(intern->read_preference); mode = mongoc_read_prefs_get_mode(intern->read_preference); modeString = php_phongo_readpreference_get_mode_string(mode); hedge = mongoc_read_prefs_get_hedge(intern->read_preference); if (modeString) { zval z_mode; ZVAL_STRING(&z_mode, modeString); zend_hash_str_update(props, "mode", sizeof("mode") - 1, &z_mode); } if (!bson_empty0(tags)) { php_phongo_bson_state state; /* Use PHONGO_TYPEMAP_NATIVE_ARRAY for the root type since tags is an * array; however, inner documents and arrays can use the default. */ PHONGO_BSON_INIT_STATE(state); state.map.root_type = PHONGO_TYPEMAP_NATIVE_ARRAY; if (!php_phongo_bson_to_zval_ex(bson_get_data(tags), tags->len, &state)) { zval_ptr_dtor(&state.zchild); goto done; } zend_hash_str_update(props, "tags", sizeof("tags") - 1, &state.zchild); } if (mongoc_read_prefs_get_max_staleness_seconds(intern->read_preference) != MONGOC_NO_MAX_STALENESS) { /* Note: valid values for maxStalesnessSeconds will not exceed the range * of 32-bit signed integers, so conditional encoding is not necessary. */ long maxStalenessSeconds = mongoc_read_prefs_get_max_staleness_seconds(intern->read_preference); zval z_max_ss; ZVAL_LONG(&z_max_ss, maxStalenessSeconds); zend_hash_str_update(props, "maxStalenessSeconds", sizeof("maxStalenessSeconds") - 1, &z_max_ss); } if (!bson_empty0(hedge)) { php_phongo_bson_state state; PHONGO_BSON_INIT_STATE(state); if (!php_phongo_bson_to_zval_ex(bson_get_data(hedge), hedge->len, &state)) { zval_ptr_dtor(&state.zchild); goto done; } zend_hash_str_update(props, "hedge", sizeof("hedge") - 1, &state.zchild); } done: return props; } /* }}} */ /* {{{ proto array MongoDB\Driver\ReadPreference::bsonSerialize() */ static PHP_METHOD(ReadPreference, bsonSerialize) { zend_error_handling error_handling; zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); ZVAL_ARR(return_value, php_phongo_readpreference_get_properties_hash(PHONGO_COMPAT_OBJ_P(getThis()), true)); convert_to_object(return_value); } /* }}} */ /* {{{ proto string MongoDB\Driver\ReadPreference::serialize() */ static PHP_METHOD(ReadPreference, serialize) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; zval retval; php_serialize_data_t var_hash; smart_str buf = { 0 }; const char* modeString = NULL; const bson_t* tags; const bson_t* hedge; int64_t maxStalenessSeconds; mongoc_read_mode_t mode; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters_none() == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); if (!intern->read_preference) { return; } tags = mongoc_read_prefs_get_tags(intern->read_preference); mode = mongoc_read_prefs_get_mode(intern->read_preference); modeString = php_phongo_readpreference_get_mode_string(mode); maxStalenessSeconds = mongoc_read_prefs_get_max_staleness_seconds(intern->read_preference); hedge = mongoc_read_prefs_get_hedge(intern->read_preference); array_init_size(&retval, 4); if (modeString) { ADD_ASSOC_STRING(&retval, "mode", modeString); } if (!bson_empty0(tags)) { php_phongo_bson_state state; PHONGO_BSON_INIT_DEBUG_STATE(state); if (!php_phongo_bson_to_zval_ex(bson_get_data(tags), tags->len, &state)) { zval_ptr_dtor(&state.zchild); return; } ADD_ASSOC_ZVAL_EX(&retval, "tags", &state.zchild); } if (maxStalenessSeconds != MONGOC_NO_MAX_STALENESS) { ADD_ASSOC_LONG_EX(&retval, "maxStalenessSeconds", maxStalenessSeconds); } if (!bson_empty0(hedge)) { php_phongo_bson_state state; PHONGO_BSON_INIT_STATE(state); if (!php_phongo_bson_to_zval_ex(bson_get_data(hedge), hedge->len, &state)) { zval_ptr_dtor(&state.zchild); return; } ADD_ASSOC_ZVAL_EX(&retval, "hedge", &state.zchild); } PHP_VAR_SERIALIZE_INIT(var_hash); php_var_serialize(&buf, &retval, &var_hash); smart_str_0(&buf); PHP_VAR_SERIALIZE_DESTROY(var_hash); PHONGO_RETVAL_SMART_STR(buf); smart_str_free(&buf); zval_ptr_dtor(&retval); } /* }}} */ /* {{{ proto void MongoDB\Driver\ReadPreference::unserialize(string $serialized) */ static PHP_METHOD(ReadPreference, unserialize) { zend_error_handling error_handling; php_phongo_readpreference_t* intern; char* serialized; size_t serialized_len; zval props; php_unserialize_data_t var_hash; intern = Z_READPREFERENCE_OBJ_P(getThis()); zend_replace_error_handling(EH_THROW, phongo_exception_from_phongo_domain(PHONGO_ERROR_INVALID_ARGUMENT), &error_handling); if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &serialized, &serialized_len) == FAILURE) { zend_restore_error_handling(&error_handling); return; } zend_restore_error_handling(&error_handling); if (!serialized_len) { return; } PHP_VAR_UNSERIALIZE_INIT(var_hash); if (!php_var_unserialize(&props, (const unsigned char**) &serialized, (unsigned char*) serialized + serialized_len, &var_hash)) { zval_ptr_dtor(&props); phongo_throw_exception(PHONGO_ERROR_UNEXPECTED_VALUE, "%s unserialization failed", ZSTR_VAL(php_phongo_readpreference_ce->name)); PHP_VAR_UNSERIALIZE_DESTROY(var_hash); return; } PHP_VAR_UNSERIALIZE_DESTROY(var_hash); php_phongo_readpreference_init_from_hash(intern, HASH_OF(&props)); zval_ptr_dtor(&props); } /* }}} */ /* {{{ proto array MongoDB\Driver\ReadPreference::__serialize() */ static PHP_METHOD(ReadPreference, __serialize) { PHONGO_PARSE_PARAMETERS_NONE(); RETURN_ARR(php_phongo_readpreference_get_properties_hash(PHONGO_COMPAT_OBJ_P(getThis()), true)); } /* }}} */ /* {{{ proto void MongoDB\Driver\ReadPreference::__unserialize(array $data) */ static PHP_METHOD(ReadPreference, __unserialize) { zval* data; PHONGO_PARSE_PARAMETERS_START(1, 1) Z_PARAM_ARRAY(data) PHONGO_PARSE_PARAMETERS_END(); php_phongo_readpreference_init_from_hash(Z_READPREFERENCE_OBJ_P(getThis()), Z_ARRVAL_P(data)); } /* }}} */ /* {{{ MongoDB\Driver\ReadPreference function entries */ ZEND_BEGIN_ARG_INFO_EX(ai_ReadPreference___construct, 0, 0, 1) ZEND_ARG_INFO(0, mode) ZEND_ARG_ARRAY_INFO(0, tagSets, 1) ZEND_ARG_ARRAY_INFO(0, options, 1) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_ReadPreference___set_state, 0, 0, 1) ZEND_ARG_ARRAY_INFO(0, properties, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_ReadPreference___unserialize, 0, 0, 1) ZEND_ARG_ARRAY_INFO(0, data, 0) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_ReadPreference_unserialize, 0, 0, 1) ZEND_ARG_INFO(0, serialized) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(ai_ReadPreference_void, 0, 0, 0) ZEND_END_ARG_INFO() static zend_function_entry php_phongo_readpreference_me[] = { /* clang-format off */ PHP_ME(ReadPreference, __construct, ai_ReadPreference___construct, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, __serialize, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, __set_state, ai_ReadPreference___set_state, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC) PHP_ME(ReadPreference, __unserialize, ai_ReadPreference___unserialize, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, getHedge, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, getMaxStalenessSeconds, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, getMode, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, getModeString, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, getTagSets, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, bsonSerialize, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, serialize, ai_ReadPreference_void, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_ME(ReadPreference, unserialize, ai_ReadPreference_unserialize, ZEND_ACC_PUBLIC | ZEND_ACC_FINAL) PHP_FE_END /* clang-format on */ }; /* }}} */ /* {{{ MongoDB\Driver\ReadPreference object handlers */ static zend_object_handlers php_phongo_handler_readpreference; static void php_phongo_readpreference_free_object(zend_object* object) /* {{{ */ { php_phongo_readpreference_t* intern = Z_OBJ_READPREFERENCE(object); zend_object_std_dtor(&intern->std); if (intern->properties) { zend_hash_destroy(intern->properties); FREE_HASHTABLE(intern->properties); } if (intern->read_preference) { mongoc_read_prefs_destroy(intern->read_preference); } } /* }}} */ static zend_object* php_phongo_readpreference_create_object(zend_class_entry* class_type) /* {{{ */ { php_phongo_readpreference_t* intern = NULL; intern = PHONGO_ALLOC_OBJECT_T(php_phongo_readpreference_t, class_type); zend_object_std_init(&intern->std, class_type); object_properties_init(&intern->std, class_type); intern->std.handlers = &php_phongo_handler_readpreference; return &intern->std; } /* }}} */ static HashTable* php_phongo_readpreference_get_debug_info(phongo_compat_object_handler_type* object, int* is_temp) /* {{{ */ { *is_temp = 1; return php_phongo_readpreference_get_properties_hash(object, true); } /* }}} */ static HashTable* php_phongo_readpreference_get_properties(phongo_compat_object_handler_type* object) /* {{{ */ { return php_phongo_readpreference_get_properties_hash(object, false); } /* }}} */ /* }}} */ void php_phongo_readpreference_init_ce(INIT_FUNC_ARGS) /* {{{ */ { zend_class_entry ce; INIT_NS_CLASS_ENTRY(ce, "MongoDB\\Driver", "ReadPreference", php_phongo_readpreference_me); php_phongo_readpreference_ce = zend_register_internal_class(&ce); php_phongo_readpreference_ce->create_object = php_phongo_readpreference_create_object; PHONGO_CE_FINAL(php_phongo_readpreference_ce); zend_class_implements(php_phongo_readpreference_ce, 1, php_phongo_serializable_ce); zend_class_implements(php_phongo_readpreference_ce, 1, zend_ce_serializable); memcpy(&php_phongo_handler_readpreference, phongo_get_std_object_handlers(), sizeof(zend_object_handlers)); php_phongo_handler_readpreference.get_debug_info = php_phongo_readpreference_get_debug_info; php_phongo_handler_readpreference.get_properties = php_phongo_readpreference_get_properties; php_phongo_handler_readpreference.free_obj = php_phongo_readpreference_free_object; php_phongo_handler_readpreference.offset = XtOffsetOf(php_phongo_readpreference_t, std); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("RP_PRIMARY"), MONGOC_READ_PRIMARY); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("RP_PRIMARY_PREFERRED"), MONGOC_READ_PRIMARY_PREFERRED); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("RP_SECONDARY"), MONGOC_READ_SECONDARY); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("RP_SECONDARY_PREFERRED"), MONGOC_READ_SECONDARY_PREFERRED); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("RP_NEAREST"), MONGOC_READ_NEAREST); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("NO_MAX_STALENESS"), MONGOC_NO_MAX_STALENESS); zend_declare_class_constant_long(php_phongo_readpreference_ce, ZEND_STRL("SMALLEST_MAX_STALENESS_SECONDS"), MONGOC_SMALLEST_MAX_STALENESS_SECONDS); zend_declare_class_constant_string(php_phongo_readpreference_ce, ZEND_STRL("PRIMARY"), PHONGO_READ_PRIMARY); zend_declare_class_constant_string(php_phongo_readpreference_ce, ZEND_STRL("PRIMARY_PREFERRED"), PHONGO_READ_PRIMARY_PREFERRED); zend_declare_class_constant_string(php_phongo_readpreference_ce, ZEND_STRL("SECONDARY"), PHONGO_READ_SECONDARY); zend_declare_class_constant_string(php_phongo_readpreference_ce, ZEND_STRL("SECONDARY_PREFERRED"), PHONGO_READ_SECONDARY_PREFERRED); zend_declare_class_constant_string(php_phongo_readpreference_ce, ZEND_STRL("NEAREST"), PHONGO_READ_NEAREST); } /* }}} */ /* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: * vim600: noet sw=4 ts=4 fdm=marker * vim<600: noet sw=4 ts=4 */