Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
P
protobuf
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
protobuf
Commits
8ecae34a
Commit
8ecae34a
authored
Jun 21, 2017
by
Paul Yang
Committed by
GitHub
Jun 21, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3255 from TeBoring/3.3.x-3
Cherry-pick bug fixes for php
parents
bf04c832
3b1a8751
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
28 additions
and
7 deletions
+28
-7
def.c
php/ext/google/protobuf/def.c
+2
-2
encode_decode.c
php/ext/google/protobuf/encode_decode.c
+3
-1
message.c
php/ext/google/protobuf/message.c
+0
-1
Message.php
php/src/Google/Protobuf/Internal/Message.php
+7
-0
descriptor.php
php/src/Google/Protobuf/descriptor.php
+1
-1
encode_decode_test.php
php/tests/encode_decode_test.php
+7
-0
generated_class_test.php
php/tests/generated_class_test.php
+1
-0
memory_leak_test.php
php/tests/memory_leak_test.php
+1
-0
test.proto
php/tests/proto/test.proto
+4
-0
php_generator.cc
src/google/protobuf/compiler/php/php_generator.cc
+2
-2
No files found.
php/ext/google/protobuf/def.c
View file @
8ecae34a
...
...
@@ -30,8 +30,8 @@
#include "protobuf.h"
const
char
*
const
kReservedNames
[]
=
{
"Empty"
};
const
int
kReservedNamesSize
=
1
;
const
char
*
const
kReservedNames
[]
=
{
"Empty"
,
"ECHO"
,
"ARRAY"
};
const
int
kReservedNamesSize
=
3
;
// Forward declare.
static
void
descriptor_init_c_instance
(
Descriptor
*
intern
TSRMLS_DC
);
...
...
php/ext/google/protobuf/encode_decode.c
View file @
8ecae34a
...
...
@@ -1167,6 +1167,7 @@ static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
upb_msg_field_next
(
&
i
))
{
upb_fielddef
*
f
=
upb_msg_iter_field
(
&
i
);
uint32_t
offset
=
desc
->
layout
->
fields
[
upb_fielddef_index
(
f
)].
offset
;
bool
containing_oneof
=
false
;
if
(
upb_fielddef_containingoneof
(
f
))
{
uint32_t
oneof_case_offset
=
...
...
@@ -1179,6 +1180,7 @@ static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
}
// Otherwise, fall through to the appropriate singular-field handler
// below.
containing_oneof
=
true
;
}
if
(
is_map_field
(
f
))
{
...
...
@@ -1209,7 +1211,7 @@ static void putrawmsg(MessageHeader* msg, const Descriptor* desc,
#define T(upbtypeconst, upbtype, ctype, default_value) \
case upbtypeconst: { \
ctype value = DEREF(message_data(msg), offset, ctype); \
if (
value != default_value) {
\
if (
containing_oneof || value != default_value) {
\
upb_sink_put##upbtype(sink, sel, value); \
} \
} break;
...
...
php/ext/google/protobuf/message.c
View file @
8ecae34a
...
...
@@ -30,7 +30,6 @@
#include <php.h>
#include <stdlib.h>
#include <ext/json/php_json.h>
#include "protobuf.h"
...
...
php/src/Google/Protobuf/Internal/Message.php
View file @
8ecae34a
...
...
@@ -739,6 +739,13 @@ class Message
*/
private
function
existField
(
$field
)
{
$oneof_index
=
$field
->
getOneofIndex
();
if
(
$oneof_index
!==
-
1
)
{
$oneof
=
$this
->
desc
->
getOneofDecl
()[
$oneof_index
];
$oneof_name
=
$oneof
->
getName
();
return
$this
->
$oneof_name
->
getNumber
()
===
$field
->
getNumber
();
}
$getter
=
$field
->
getGetter
();
$value
=
$this
->
$getter
();
return
$value
!==
$this
->
defaultValue
(
$field
);
...
...
php/src/Google/Protobuf/descriptor.php
View file @
8ecae34a
...
...
@@ -236,7 +236,7 @@ function getClassNamePrefix(
return
$prefix
;
}
$reserved_words
=
array
(
"Empty"
);
$reserved_words
=
array
(
"Empty"
,
"ECHO"
,
"ARRAY"
);
foreach
(
$reserved_words
as
$reserved_word
)
{
if
(
$classname
===
$reserved_word
)
{
if
(
$file_proto
->
getPackage
()
===
"google.protobuf"
)
{
...
...
php/tests/encode_decode_test.php
View file @
8ecae34a
...
...
@@ -88,6 +88,13 @@ class EncodeDecodeTest extends TestBase
$n
=
new
TestMessage
();
$n
->
mergeFromString
(
$data
);
$this
->
assertSame
(
1
,
$n
->
getOneofMessage
()
->
getA
());
// Encode default value
$m
->
setOneofEnum
(
TestEnum
::
ZERO
);
$data
=
$m
->
serializeToString
();
$n
=
new
TestMessage
();
$n
->
mergeFromString
(
$data
);
$this
->
assertSame
(
"oneof_enum"
,
$n
->
getMyOneof
());
}
public
function
testPackedEncode
()
...
...
php/tests/generated_class_test.php
View file @
8ecae34a
...
...
@@ -876,5 +876,6 @@ class GeneratedClassTest extends TestBase
$m
=
new
\Foo\TestMessage_Empty
();
$m
=
new
\Foo\PBEmpty
();
$m
=
new
\PrefixEmpty
();
$m
=
new
\Foo\PBARRAY
();
}
}
php/tests/memory_leak_test.php
View file @
8ecae34a
...
...
@@ -8,6 +8,7 @@ require_once('generated/NoNamespaceMessage_NestedEnum.php');
require_once
(
'generated/PrefixEmpty.php'
);
require_once
(
'generated/PrefixTestPrefix.php'
);
require_once
(
'generated/Bar/TestInclude.php'
);
require_once
(
'generated/Foo/PBARRAY.php'
);
require_once
(
'generated/Foo/PBEmpty.php'
);
require_once
(
'generated/Foo/TestEnum.php'
);
require_once
(
'generated/Foo/TestIncludePrefixMessage.php'
);
...
...
php/tests/proto/test.proto
View file @
8ecae34a
...
...
@@ -127,6 +127,10 @@ message Empty {
int32
a
=
1
;
}
message
ARRAY
{
int32
a
=
1
;
}
message
TestPackedMessage
{
repeated
int32
repeated_int32
=
90
[
packed
=
true
];
repeated
int64
repeated_int64
=
91
[
packed
=
true
];
...
...
src/google/protobuf/compiler/php/php_generator.cc
View file @
8ecae34a
...
...
@@ -49,8 +49,8 @@ const std::string kDescriptorMetadataFile =
"GPBMetadata/Google/Protobuf/Internal/Descriptor.php"
;
const
std
::
string
kDescriptorDirName
=
"Google/Protobuf/Internal"
;
const
std
::
string
kDescriptorPackageName
=
"Google
\\
Protobuf
\\
Internal"
;
const
char
*
const
kReservedNames
[]
=
{
"Empty"
,
"ECHO"
};
const
int
kReservedNamesSize
=
2
;
const
char
*
const
kReservedNames
[]
=
{
"
ARRAY"
,
"
Empty"
,
"ECHO"
};
const
int
kReservedNamesSize
=
3
;
namespace
google
{
namespace
protobuf
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment