- 21 Mar, 2014 3 commits
-
-
Wink Saville authored
* commit 'ec0b12c34a6329d2f98003e9102fe2d75726c797': Don't reset cachedSize to 0 in getSerializedSize
-
Wink Saville authored
-
Dave Hawkey authored
This avoids a race-condition when cachedSize is momentarily set to 0 for non-empty messages if multiple threads call getSerializedSize (e.g. during serialization). Change-Id: I15a8ded92edbf41bf1c8d787960c5bbbc8a323c5
-
- 08 Mar, 2014 1 commit
-
-
Wink Saville authored
* commit '51ef8f39de376fe71ce5d2c682abe4f974cf8074': Fix compile error on mac 10.9
-
- 07 Mar, 2014 2 commits
- 17 Feb, 2014 1 commit
-
-
Max Cai authored
-
- 10 Feb, 2014 1 commit
-
-
Max Cai authored
* changes: Fix repeated packed field merging code for non-packed data. Add validation when parsing enum fields.
-
- 16 Jan, 2014 2 commits
-
-
Max Cai authored
Enum fix is already included in the previous commit. Bug: https://code.google.com/p/android/issues/detail?id=64893 Change-Id: I9fecff3c8822918a019028eb57fa39b361a2c960
-
Max Cai authored
Invalid values from the wire are silently ignored. Unlike full/lite, the invalid values are not stored into the unknown fields, because there's no way to get them out from Nano's unknown fields without a matching Extension. Edited README and slightly moved it towards a standalone section for Nano, independent of the Micro section. Change-Id: I2c1eb07f4d6d8f3aea242b8ddd95b9c966f3f177
-
- 14 Jan, 2014 3 commits
- 13 Jan, 2014 4 commits
- 10 Jan, 2014 3 commits
-
-
Max Cai authored
Special values for float and double make it inaccurate to test the equality with ==. The main Java library uses the standard Object.equals() implementation for all fields, which for floating point fields means Float.equals() or Double.equals(). They define equality as bitwise equality, with all NaN representations normalized to the same bit sequence (and therefore equal to each other). This test checks that the nano implementation complies with Object.equals(), so NaN == NaN and +0.0 != -0.0. Change-Id: I97bb4a3687223d8a212c70cd736436b9dd80c1d7
-
Max Cai authored
Change-Id: Ibbe944fff83e44a8f2206e18ee9ec6f10661297a
-
Max Cai authored
- Get rid of TypeLiteral<T>. It was introduced to read the component type of a List<T> at runtime. But we use arrays everywhere else, and we can always read the component type of an array type at runtime. - Properly read/write "minor" types (e.g. sint32, sfixed32). The old implementation could only read/write data as the "typical" types (one per Java type), e.g. java.lang.Integer -> int32, java.lang.Long -> int64. So if e.g. an extension specifies sfixed32 as the type, it would be read/written in the totally incompatible int32 format. - Properly serialize repeated packed fields. The old implementation doesn't do packed serialization. As an added bonus, and to be more aligned with the rest of protobuf nano / main, repeated packable extensions can deserialize both packed and non-packed data. - Split Extension class into a hierarchy so under typical usage a large chunk of code dealing with primitive type extensions can be removed by ProGuard. Bug: https://code.google.com/p/android/issues/detail?id=62586 Change-Id: I0d692f35cc2a8ad3a5a1cb3ce001282b2356b041
-
- 19 Dec, 2013 2 commits
-
-
Andrew Flynn authored
* commit 'e7741c064ee4cdc5fa41e6444ed45131672fed97': Fix MessageNanoPrinter for accessors
-
Andrew Flynn authored
-
- 12 Dec, 2013 1 commit
-
-
Andrew Flynn authored
accessors mode switches proto fields away from being public fields (which is how MessageNanoPrinter found which fields to print via reflection). Add a pass through the methods looking for generated accessor methods to print those as well. Change-Id: I7c47853ecbd5534086f44b25a89dbbe56f63ed03
-
- 10 Dec, 2013 5 commits
-
-
Max Cai authored
* commit '3f9bd9989c79db575b83e2f96b48c695f30ca153': Avoid class initializers to help ProGuard.
-
Max Cai authored
-
Max Cai authored
Class initializers prevent ProGuard from inlining any methods because it thinks the class initializer may have side effects. This is true for static methods, but instance methods can still be inlined, because to have an instance you will have touched the class and any class initializers would have run. But ProGuard only starts inlining instance methods of classes with class initializers from v4.11b6, and Android uses v4.4 now. This change tries to avoid the class initializers as much as possible, by delaying the initialization of the empty array and some fields' saved defaults until when they're needed. However, if the message hosts any extensions, they must be public static final and therefore introducing the class initializer. In that case we won't bother with lazy initialization. Change-Id: I00d8296f6eb0023112b93ee135cdb28dbd52b0b8
-
Max Cai authored
* commit 'cea499acf68b35921b956785c26c0e6f18c241c1': Nano: don't generate accessor methods for nested methods
-
Max Cai authored
-
- 09 Dec, 2013 1 commit
-
-
Andrew Flynn authored
For nested message objects, don't generate accessor methods because they have a default value that is not a valid value (null), so there is no reason to have get/set/has/clear methods for them. Clients and protos (while serializing) can check against the invalid value to see if it's been set. Change-Id: Ic63400889581271b8cbcd9c45c84519d4921fd4b
-
- 06 Dec, 2013 1 commit
-
-
The Android Open Source Project authored
* commit 'b6089cca5248f19832dde54faaad62891ff8bd25':
-
- 05 Dec, 2013 1 commit
-
-
The Android Open Source Project authored
-
- 23 Nov, 2013 1 commit
-
-
The Android Open Source Project authored
* commit 'c4c4a562672068fb89ea4e65408dd53de2ed8f1f':
-
- 22 Nov, 2013 1 commit
-
-
The Android Open Source Project authored
-
- 21 Nov, 2013 1 commit
-
-
Max Cai authored
* commit 'f5271c9ca4a237221c0ba722dc548050ad131064': Align with main: two ways of parsing repeated packable fields.
-
- 18 Nov, 2013 2 commits
-
-
Max Cai authored
-
Max Cai authored
It is a requirement for parsing code to handle packed and unpacked forms on the wire for repeated packable fields. This change aligns the javanano's behavior with the java's. Bonus: optimize array length calculation when parsing repeated fixed-size-element-type fields. Bonus 2: lose "xMemoizedSerializedSize" for repeated enum fields, and make the serialized size calculation match that for repeated int32 fields. Change-Id: I8a06103d9290234adb46b0971b5ed155544fe86a
-
- 15 Nov, 2013 4 commits
-
-
Max Cai authored
* commit '3e0d99fab8c1da2a8f36637b7bf5e8581143e36a': Update MessageNano#toString() to return mostly valid TextFormat.
-
Max Cai authored
-
Nicholas Seckar authored
The output of toString is now aligned with that used by non-nano and C++ runtimes, with the exception of groups. Groups should be serialized using a camelized name (e.g. "FooBar" rather than "foo_bar") however the nano runtime does not have information on which fields are groups. Changes are: - bytes fields are output within double-quotes, non-printable characters are output as octal escape sequences (i.e. \NNN); - field identifiers are output in underscored format; - unset fields are not output (rather than printing "null"); - the type name of the root message is not output. With these changes the nano toString, normal toString, and C++'s DebugString all produce equivalent output when given the same message. (Provided that message uses no deprecated features.) Change-Id: Id4791d73822846db29344db9f7bc3781c3e183a6
-
Max Cai authored
* commit '332076f08a9d46b772fee755832a0e09dd8cb6aa': Fix warnings warnings in header files, hide others.
-