aboutsummaryrefslogtreecommitdiffhomepage
path: root/php/ext/google/protobuf/message.c
Commit message (Collapse)AuthorAge
* Fix array constructor in c extension for compatibility (#4667)Gravatar Paul Yang2018-05-24
| | | | | In old generated code, the constructor of message doesn't provide a default null to parent's constructor. Previously, in c extesnion, this case was not handled.
* PHP namespaces for nested messages and enums (#4536)Gravatar Brent Shaffer2018-05-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * uses namespaces for nested messages and enums * fixes namespaces for PHP dist * fixes namespace for Descriptors, adds Cardinality and Kind * fixes nested namespaces for reserved words and adds tests * adds tests and generator fix for php class prefixes * fixes escaping of protobuf packages, enum comments, misc others * nice refactor of generated code * adds class files for backwards compatibility * simplifies code with templates * adds compatibility files to makefile * cleanup of generator and fixes nested namespace bug * regenerates proto types * remove internal BC classes * adds deprecated warning, adds methods back * simplifies if statement * fixes dist files * addresses review comments * adds back TYPE_URL_PREFIX constant * adds @deprecated to old nested class files * skips tests which require a separate process when protobuf.so is enabled * Adds tests for legacy nested classes that do not require separate processes to test * uses legacy names for GPBUtil message check * adds block for IDE @deprecated message * Namespace for nested message/enum in c extension * Remove unused code
* Implement array constructor in php c extension.Gravatar Bo Yang2018-05-24
|
* Throw error if user want to access message properties (#4603)Gravatar Paul Yang2018-05-10
| | | | | | * Throw error if user want to access message properties * Fix typo
* PHP: fixed typo in message.cGravatar Adam Cozzette2018-03-05
|
* Fix more memory leak for php c extension (#4211)Gravatar Paul Yang2018-01-25
| | | | | | * Fix more memory leak for php c extension * Fix memory leak for php5.5
* Well known types are not initialized properly. (#4139)Gravatar Paul Yang2018-01-05
| | | | | | | | | Previously, within the same load period of protobuf module, well known types are not initialized correctly for the second request. The reason is that well known type are only initialized if a method local static variable is not set. However, that variable is not reset after request ends. Therefore, when the second request comes, the method local static variable is still set (by previous request) and well types are not initialized in this case.
* Fix for php5.5Gravatar Bo Yang2017-12-14
|
* Accept DatetimeInterface in fromDatetimeGravatar Bo Yang2017-12-14
|
* Avoid using php_date_get_date_ce() in case date extension is notGravatar Bo Yang2017-12-13
| | | | available.
* Call php method via function name instead of calling directly.Gravatar Bo Yang2017-12-12
| | | | | | | This changes the linking error if php extension is not statically linked to a runtime error. In this way, users who don't need Timestamp can still use protobuf even if date extension is not statically linked in php.
* Replace private timelib_update_ts with public date_timestamp_getGravatar Bo Yang2017-12-12
|
* Add PROTOBUF_ENABLE_TIMESTAMP to let user decide whether timestamp utilGravatar Bo Yang2017-12-12
| | | | can be used at install time.
* Merge branch '3.5.0.1' into 3.5.xGravatar Bo Yang2017-12-11
|\
| * Fix memory leak in php7Gravatar Bo Yang2017-12-06
| |
| * Fix several more memory leakGravatar Bo Yang2017-12-06
| |
* | Provide discardUnknonwnFields API in php (#3976)Gravatar Paul Yang2017-11-30
|/ | | | | | * Provide discardUnknownFields API in php implementation * Provide discardUnknownFields API in php c extension.
* Fix php well known type conformance tests (#3828) (#3840)Gravatar Paul Yang2017-11-04
| | | | | | | | | | | | | | | * Fix php well known type conformance tests * Properly generate code for test.proto * Provide GPBMetadata files in c extensions for generated files to import. * Remove unnecessary test * Clean up code * Add declaration for initOnce. * Refactoring
* Reserve unknown fields in php (#3659)Gravatar Paul Yang2017-10-09
| | | | | | | | | | | | | | | | | | | | | | * Reserve unknown fields in upb 1) For decoding, an unknownfields will be lazily created on message, which contains bytes of unknown fields. 2) For encoding, if the unknownfields is present on message, all bytes contained in it will be serialized. * Register the function to encode unknown field at decode time. * Remove upb_handlers_setaddunknown * Use upb_sink_putunknown in decoder * Remove upb_pb_encoder_encode_unknown * Do not expose encode_unknown * Implement reserve unknown field in php Implement. * Make buffer private to CodedInputStream
* Add well known types to php runtime. (#3697)Gravatar Paul Yang2017-10-05
| | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* Add native php support for Duration. (#3583)Gravatar Paul Yang2017-09-05
|
* Add php support for Timestamp. (#3575)Gravatar Paul Yang2017-08-31
| | | | | | * Add php support for Timestamp. * Fix comments
* Add any support in php runtime. (#3486)Gravatar Paul Yang2017-08-25
| | | | | | | | | | | | * Add any support in php runtime. * Remove unused file in config.m4 * Fix comments * Fix error for tsrmls build * Add newly added file to Makefile.am
* Fix the bug in php c extension that setting one field can change ↵Gravatar Paul Yang2017-08-04
| | | | | | | | | | | | | | | | | | | | | | another field's value. (#3455) * Fix the bug in php c extension that setting one field can change another field's value. The reason is that previously, in c extension, it was assumed that the order that fields were declared in php is the same as the order of fields in upb. This is not true. Now, for every field in upb, we will look up the actual property that is corresponding to the upb field. * Cleanup pull request * Fix indentation * Port to php5 * Port with php7.1 * Port to zts
* Merge 3.3.x into masterGravatar Bo Yang2017-07-18
|\
* | Add json encode/decode for php. (#3226)Gravatar Paul Yang2017-06-30
| | | | | | | | | | | | | | | | | | | | * Add json encode/decode for php. * Fix php conformance test on 32-bit machines. * Fix conformance test for c extension. * Fix comments
| * Remove inclusion of ext/json/php_json.h. (#3241)Gravatar Jeff Ching2017-06-20
| | | | | | | | That implementation of json is not being used - this extension is using a json encoder/decoder provided by 'upb'.
* | Remove inclusion of ext/json/php_json.h. (#3241)Gravatar Jeff Ching2017-06-17
| | | | | | | | That implementation of json is not being used - this extension is using a json encoder/decoder provided by 'upb'.
| * Fix c extension for php7.1. (#3077)Gravatar Paul Yang2017-05-10
|/
* Make PHP c extension work with PHP7 (#2951)Gravatar Paul Yang2017-04-19
|
* Rename encode/decode to serializeToString/mergeFromString (#2795)Gravatar Paul Yang2017-03-08
| | | | | This better shows the semantic of the API. For already setted fields, mergeFromString do replacement for singular fields and appending for repeated fields.
* Add mergeFrom method on Message (#2766)Gravatar Paul Yang2017-03-01
| | | | | | | | This method merges the contents of the specified message into the current message. Singular fields that are set in the specified message overwrite the corresponding fields in the current message. Repeated fields are appended. Map fields key-value pairs are overritten. Singular/Oneof sub-messages are recursively merged. All overritten sub-messages are deep-copied.
* Add clear method to PHP message (#2700)Gravatar Paul Yang2017-02-11
|
* Implement json encoding decoding for php. (#2682)Gravatar Paul Yang2017-02-08
|
* Oneof accessor should return the field name that is actually set. (#2631)Gravatar Paul Yang2017-01-27
|
* Make php generated code conform to PSR-4. (#2435)Gravatar Paul Yang2016-12-08
| | | | 1. Generate single file for each message. 2. Lazily initiate metadata.
* Rename Empty to GPBEmpty in php generated file.Gravatar Paul Yang2016-11-16
| | | | In php, class name cannot be "Empty". Modified code generator to (#2375) generate GPBEmpty instead (for google.protobuf.Empty only). Also change runtime code to work with the new generated code accordingly.
* PHP: fix ZTS tsrm_ls errors (#2189)Gravatar Stanley Cheung2016-10-10
| | | | | | * PHP: fix ZTS tsrm_ls errors * Fix a few more macros
* Some php engine implementation doesn't have return_value_ptr properly set. ↵Gravatar Bo Yang2016-09-15
| | | | Explicitly use &return_value.
* Check in php implementation. (#2052)Gravatar Paul Yang2016-09-15
| | | | | This pull request includes two implementation: C extension and PHP package. Both implementations support encode/decode of singular, repeated and map fields.
* Integrate google internal changes.Gravatar Jisi Liu2016-03-30