aboutsummaryrefslogtreecommitdiff
path: root/javanano/src/main
Commit message (Collapse)AuthorAgeFilesLines
* Remove javanano.Feng Xiao2018-03-2613-4695/+0
|
* Class is final but declares protected fieldwujingchao2016-11-141-2/+2
| | | This class is declared to be final, but declares fields to be protected. Since the class is final, it can not be derived from, and the use of protected is confusing.
* Fix message for InvalidProtocolBufferExceptionMsp2016-11-041-1/+1
|
* Fix spelling in strings and commentsOtto Kekäläinen2016-07-031-1/+1
|
* Update version number and fix javadoc errors.Feng Xiao2016-01-061-2/+2
|
* Speed up little endian int/long writes.Jeff Davidson2015-05-111-12/+10
| | | | | Bug: 20636336 Change-Id: I303d712967f9885f7c3082d00f961f8ab93a6aed
* Handle 0-length byte buffers in micro and nano protobufsAndre Eisenbach2015-05-041-0/+2
| | | | Change-Id: I845ee1ab1005d25c8d77a8c2ed801c0f7b7c847b
* Throw OutOfSpaceException instead of IllegalArgumentException.Charles Munger2015-04-281-1/+10
| | | | | | | | | | | | | When a MessageNano containing a String is serialized into a buffer that is too small to contain it, and the buffer's boundary happens to be where the string field's length delimiting varint is serialized, and the string's length and 3*length have the same length when encoded as a varint, an IllegalArgumentException is thrown rather than an OutOfSpaceException. Github issue: https://github.com/google/protobuf/issues/292 Change-Id: If478d68cf15bfd0662252d008e42b2bf1ff1c75e
* Inline unknownFieldData{Equals,HashCode} to generated code.Brian Duff2015-04-282-33/+11
| | | | | | | | | | It turns out dex (apparently) was inlining these protected final methods from ExtendableMessageNano into every message class. Removing these methods from the base class and inlining their code reduces the method count by 2 methods / message when the store_unknown_fields option is on. Change-Id: I0aa09f2016d39939c4c8b8219601793b8fab301f
* Add reset() and position() to CodedOutputByteBufferNano.Shai Barack2015-04-281-0/+17
| | | | Change-Id: Ie2a9e36276ac35e10b3f8d379b5742d50a0374e9
* DO NOT MERGE Overloading createMessageTyped to accept a tag as an integer.Kweku Adams2015-04-282-13/+13
| | | | | | | | | | | When building, some instances expect createMessageTyped to have the signature (int, Class, long), while others expect (int, Class, int). Simply having the former signature meant that builds expecting the latter would fail. This is a cherrypick of change b2a9d4321578139677c146ce37eba5e27e8f5c79 from master. Change-Id: Ib02dbf66173510f4edea32c7b43e82c1a7a38aa2
* Exclude cachedSize when printing fields.Brian Duff2015-04-281-0/+4
| | | | Change-Id: I85563b74237d38c1e447b7286f5f6e62d57e3d63
* Add clone() method support for nano.Brian Duff2015-04-286-2/+94
| | | | | | Upstreamed from Another Place (cr/57247854). Change-Id: I2aaf59544c0f5ae21a51891d8a5eeda1dc722c90
* Fix comments.Brian Duff2015-04-281-2/+2
| | | | | | Forgot to update these in https://android-review.googlesource.com/#/c/109809/ Change-Id: I53f838e2f134f53964161d9620d5ead00c4a3939
* Optimize measurement and serialization of nano protos.Charles Munger2015-04-281-23/+215
| | | | | | | Measuring the serialized size of nano protos is now a zero-alloc operation, and serializing a proto now allocates no memory (other than the output buffer) instead of O(total length of strings). Change-Id: Id5e2ac3bdc4ac56c0bf13d725472da3a00c9baec Signed-off-by: Charles Munger <clm@google.com>
* Fix bug with large extension field numbers.Brian Duff2015-04-282-8/+27
| | | | | | | | | | | | | | | | | | | Previously, extensions with field numbers greater than 268435455 would result in a compile time error in generated code that looks something like this: Foo.java:3178: error: integer number too large: 3346754610 3346754610); This is because we were trying to represent the tag number (an unsigned int) using a java int constant, but java int constants are signed, and can't exceed Integer.MAX_VALUE. Fixed by declaring it as a long instead, and casting it down to an int in the implementation. This is safe, because the tag value always fits in 32 bis. Change-Id: If2017bacb4e20af667eaeaf9b65ddc2c30a7709f
* Clean up importsTamir Duberstein2015-04-022-3/+1
|
* DRY: Use `Charset` statics to eliminate exceptionsTamir Duberstein2015-04-023-32/+13
|
* Support maps in NanoPrinter.Jisi Liu2015-02-191-0/+14
|
* Use EMPTY_BYTES in WireFormatNanoJisi Liu2015-02-191-2/+1
|
* Mark factory setter API as private for alpha release.Jisi Liu2015-02-171-1/+5
|
* Get the map factory per mergeFrom() call for JavaNano.Jisi Liu2015-02-071-1/+4
|
* implement hashCode() for JavaNano maps.Jisi Liu2015-02-061-0/+19
|
* Implement Equals for nano.Jisi Liu2015-02-061-0/+40
|
* Rename empty bytes in JavaNano.Jisi Liu2015-02-051-3/+3
|
* Rename readData() to readPrimitiveField() in JavaNano.Jisi Liu2015-02-053-4/+4
|
* Fix the behavior when merging conflicting keys, the new value alwaysJisi Liu2015-02-051-33/+7
| | | | override the existing one even for message types.
* Moving internal code to InternalNano and rename MapUtil to MapFactories.Jisi Liu2015-02-043-234/+230
|
* parsing and serialzation for maps in JavaNano.Jisi Liu2015-02-032-28/+289
|
* Parsing for Maps in JavaNanoJisi Liu2015-02-021-0/+97
|
* Add readData(int) to read primitive value.Jisi Liu2015-02-021-0/+40
|
* MOVE TYPE_XXX constants to InternalNano.Jisi Liu2015-02-022-54/+39
|
* Replace links in nano proto code.Feng Xiao2014-11-2612-12/+12
|
* Prepare nano proto code to be merged into protobuf repository.Feng Xiao2014-11-1912-0/+3973