Joshua Haberman
e5debfa1c9
More incremental work; ported some of upbc.
15 years ago
kenton@google.com
5066322074
Allow protoc to output directly to zip/jar/par/war files.
15 years ago
kenton@google.com
45258ff4e2
Fix 32/64-bit confusion on Solaris 10 x86. Patch from Oliver Jowett.
15 years ago
kenton@google.com
bf06bb24bc
Try again to fix build on Sun Studio -- Monty Taylor claims this will do it.
15 years ago
Joshua Haberman
602e093504
Core compiles, though with warnings, and is still incomplete.
15 years ago
kenton@google.com
5f12164f54
Refactor the way output is handled in CommandLineInterface -- now it will be stored in-memory until all code generators have completed, then dumped to disk all at once. While this means that protoc uses more memory, the code is much simpler, and handles insertions much faster. Also, this made it easier to implement a useful feature: insertions will be indented to match the insertion point line. Therefore, when inserting into Python code, you don't have to figure out how much to indent your inserted code. The refactoring should also make it easier to implement output-to-jar at some point.
15 years ago
kenton@google.com
46ed74e8d4
Actually, that last revision can be simpler -- we don't need to parse strings at all, as simply entering 1e1000 as a float literal in Python will be evaluated as infinity.
15 years ago
kenton@google.com
d0047c43d9
In Python, avoid relying on float('inf') and float('nan') as these don't work on Windows with Python pre-2.6.
15 years ago
kenton@google.com
eef5f8396d
Same as r275 except for Python.
15 years ago
kenton@google.com
35d2f017a7
In Java's TextFormat, correcty concatenate adjacent string literals, as C++ does. Also fix a bug in handling of single-quoted strings.
15 years ago
Joshua Haberman
f49f7f94c1
More progress, upb_data and upb_def compile (but are incomplete).
15 years ago
kenton@google.com
6e8b9e4a4a
Make extension identifiers final. This improves security when untrusted code is present in the same class loader. In order to get around initialization ordering issues, I simply made the constructor for extension identifiers take no arguments and deferred initialization to an internalInit() method, which generated code will always call during init.
15 years ago
kenton@google.com
7f4938b244
Mark plugins as experimental for now.
15 years ago
kenton@google.com
25cf9e3153
getExtension() on an empty repeated field should return an empty list, not a singular default value.
15 years ago
kenton@google.com
d6e84b3ed8
When serializing to an ostream, verify that there were no stream-level errors before returning success.
15 years ago
kenton@google.com
28e46df3e9
Clarify that pushLimit() does not limit the number of bytes CodedInputStream will read from the underlying InputStream.
15 years ago
kenton@google.com
6f12e3e29a
Accept form feeds as whitespace.
15 years ago
kenton@google.com
f9c5978f5d
Hopefully fix build on Sun Studio.
15 years ago
Joshua Haberman
a230cf5053
More work.
15 years ago
kenton@google.com
c0ee4d2ed9
Build DLLs on Cygwin and MinGW.
15 years ago
kenton@google.com
94fd2ad771
Make sure test_plugin.vcproj is included in dist.
15 years ago
kenton@google.com
d1ce7a2839
Fix build on MSVC.
15 years ago
Joshua Haberman
7dd113baa8
Added upb_data.*, left out of last commit.
15 years ago
kenton@google.com
f2a732938e
Fix build on GCC 3.3/Linux.
15 years ago
kenton@google.com
0abe9c2143
Argh, this line was not supposed to be submitted.
15 years ago
kenton@google.com
ee7e9420e3
Use unordered_map when available. Changes to stl_hash.m4 provided by Oleg Smolsky.
15 years ago
Joshua Haberman
c241976485
In the midst of a major refactoring.
15 years ago
temporal
8ee1474044
Add a code generator insertion point for Java builders.
15 years ago
kenton@google.com
684d45b2fe
Fix build on MinGW/Win32 (including implementing Subprocess using CreateProcess()).
15 years ago
temporal
bdbb863099
Ensure that 'once' objects are declared using the macro. This is either the third or fourth time I've screwed this up when down-integrating, because our internal code does not require the macro (it's not portable) and on Linux a pthread_once_t that is zero-initialized just happens to work. So, I only discover the problem when I test on Mac, then kick myself for making the same mistake yet again. No more! This time, I have renamed GoogleOnceType to ProtobufOnceType, thus making the type name differ from our internal code. As a result, if you don't update the decls to use the macros, they won't compile. Hah! Take that, future self!
15 years ago
kenton@google.com
91218afc67
Fix Cygwin build.
15 years ago
kenton@google.com
5e744ff961
Commit missing files from r251. Sigh.
15 years ago
kenton@google.com
afd32abb75
Set version to 2.3.0-pre.
15 years ago
kenton@google.com
83ad01e35f
Point test_plugin at the correct gtest headers.
15 years ago
kenton@google.com
fccb146e3f
Massive roll-up of changes. See CHANGES.txt.
15 years ago
kenton@google.com
d5cf7b55a6
Some sort of emacs protobuf mode fix.
15 years ago
kenton@google.com
b221008884
Fix UTF-8 validity checks to not do unaligned reads.
15 years ago
kenton@google.com
de74779454
fix SONAME in trunk
15 years ago
Joshua Haberman
c6cba2af37
Clarified comment.
15 years ago
Joshua Haberman
dc4246db78
Refined interface of upb_symtab.
15 years ago
Joshua Haberman
2a8ba6f3a2
Updated upbc to new dyncasts.
15 years ago
Joshua Haberman
0a6fc5fad3
Truly fixed type cyclic refcounting.
15 years ago
Joshua Haberman
e15f834a91
Circular references truly work now, along with a test.
...
One simplification to come.
15 years ago
Joshua Haberman
08b4a91204
Add a test for circularly-linked descriptors.
...
The test currently triggers valgrind-detected memory errors.
15 years ago
Joshua Haberman
651c92ab33
Scheme for collecting circular refs.
...
"make descriptorgen" is now valgrind-clean again.
15 years ago
Joshua Haberman
18291eedc3
Make defs refcounted, rename upb_context->upbsymtab.
...
There is currently a memory leak when type definitions
form cycles. This will need to be dealt with.
15 years ago
jasonh+personal@google.com
9951233e9a
Fix Issue 136: the memoized serialized size for packed fields may not
...
be properly set. writeTo() may be invoked without a call to
getSerializedSize(), so the generated serialization methods would
write a length of 0 for non-empty packed fields. Just call
getSerializedSize() at the beginning of writeTo(): although this
means that we may compute the byte size needlessly when there
are no packed fields, in practice, getSerializedSize() will
already have been called - all of the writeTo() wrappers in
AbstractMessageLite invoke it.
Tested: new unittest case in WireFormatTest.java now passes
15 years ago
Joshua Haberman
a95ab58e79
Overhaul defs to derive from a common base.
15 years ago
Joshua Haberman
246a36998b
WIP of cleaning up defs.
15 years ago
Joshua Haberman
d160380736
Update upbc to use self-describing upb_msg instead of void*.
15 years ago