- Aug 03, 2015
-
-
Wouter van Oortmerssen authored
e.g. support generic reading/writing from structs/vectors etc. Change-Id: I2eb6e24db088a72da444d5c8df7e506e53d5bc2d Tested: on Linux. Bug: 22660837
-
- Jul 22, 2015
-
-
Martell Malone authored
-
- Jun 16, 2015
-
-
Amol Deshpande authored
-
- Jun 15, 2015
-
-
Wouter van Oortmerssen authored
Tested: on Linux. Change-Id: I8f7bccf9b1ad87fea788f85e23fa69435758feca
-
Wouter van Oortmerssen authored
--gen-includes is now deprecate but still accepted. --no-includes can be used instead when needed. Change-Id: I2cd46d193032b9b7c31c76c6f655e9333d3a393a Tested: on Linux.
-
- May 28, 2015
-
-
Wouter van Oortmerssen authored
-
- May 12, 2015
-
-
rw authored
Implement code generation and self-contained runtime library for Python. The test suite verifies: - Correctness of generated Python code by comparing output to that of the other language ports. - The exact bytes in the Builder buffer during many scenarios. - Vtable deduplication correctness. - Edge cases for table construction, via a fuzzer derived from the Go implementation. - All code is simultaneously valid in Python 2.6, 2.7, and 3.4. The test suite includes benchmarks for: - Building 'gold' data. - Parsing 'gold' data. - Deduplicating vtables. All tests pass on this author's system for the following Python implementations: - CPython 2.6.7 - CPython 2.7.8 - CPython 3.4.2 - PyPy 2.5.0 (CPython 2.7.8 compatible)
-
- May 04, 2015
-
-
Wouter van Oortmerssen authored
Change-Id: I56392340de4439d05fa8f06a7336ff72c6f9346d Tested: on Linux
-
- Apr 28, 2015
-
-
Jason Sanmiya authored
Change-Id: Ib9d31d08daba7ce54b864417ae93bf479702861b
-
- Apr 15, 2015
-
-
franchuti688 authored
added bii-travis.sh and readme.md files; added build status section with travis and biicode build systems Change-Id: I93acd1ca9497416ade6293d63b5311c4c31b880f
-
- Apr 02, 2015
-
-
Advay Mengle authored
- Add parse handling of .proto struct and field doc comments (enums and their values were already handled) - Add FBS generation handling of doc comments for structs, their fields, enums, and their values (requires linking idl_gen_general in the test binary build) - Tested using test.proto|golden with doc comments added. Xcode run of flattest passes. Change-Id: Idff64dd8064afba227174ab77d2c7be22d006628
-
- Feb 17, 2015
-
-
Alex Ames authored
FlatBuffer schema files can now optionally specify a hash attribute that will allow someone writing json files to enter a string to be hashed rather than a specific value. The hashing algorithm to use is specified by the schema. Currently the only algorithms are fnv1 and fnv1a. There are 32 bit and 64 variatns for each. Additionally, a hashing command line tool was added so that you can see what a string will hash to without needing to inspect the flatbuffer binary blob. Change-Id: I0cb359d0e2dc7d2dc1874b446dc19a17cc77109d
-
- Feb 09, 2015
-
-
franramirez688 authored
Change-Id: Id9750cceaa57aad3c969cf12299aa60f21c29074
-
- Jan 07, 2015
-
-
Leander Bessa Beernaert authored
When FLATBUFFERS_BUILD_FLATC is set to OFF, the flatbuffer compiler and tests will not be build. Change-Id: I42b87b71daab4cb9c06605c813e7e4b62d6bf67a
-
- Oct 24, 2014
-
-
Wouter van Oortmerssen authored
By replacing DIRECTORY by PATH: http://www.cmake.org/cmake/help/v3.0/command/get_filename_component.html Change-Id: I6f5802deeda53dea443b255294235e43e7bb5389 Tested: on Linux.
-
- Oct 16, 2014
-
-
Wouter van Oortmerssen authored
Bug: 15777858 Change-Id: Iabef9b8c8044e593bb89510feebdee00d2f1840b Tested: on Linux and Windows.
-
- Sep 24, 2014
-
-
Wouter van Oortmerssen authored
Accessors and constructors now take enum types rather than ints. Bug: 16570507 Change-Id: I4b50fd64ad2e662ea2481bc0ccea784326fb31c0 Tested: on Linux and Windows.
-
- Sep 22, 2014
-
-
Zbigniew Mandziejewicz authored
Change-Id: I16ddb06e887e618fa871e842054115909fbf235c
-
- Sep 18, 2014
-
-
Wouter van Oortmerssen authored
Also made the C# implementation support unsigned types, and made it more like the Java version. Bug: 17359988 Change-Id: If5305c08cd5c97f35426639516ce05e53bbec36c Tested: on Linux and Windows.
-
- Sep 15, 2014
-
-
evolutional authored
Include C# codegen in flatc and .NET FlatBuffer access via the FlatBufferBuilder class Tested: on Windows. Change-Id: If5228a8df60a10e0751b245c6c64530264ea2d8a
-
- Sep 10, 2014
-
-
Stewart Miles authored
Added FLATBUFFERS_BUILD_TESTS option which can be used to disable the build of flatbuffers tests and samples. Tested: Verified tests and samples are no longer built on Linux when FLATBUFFERS_BUILD_TESTS=OFF. Change-Id: Ic23ab827849ba2c4481de9ca86adc1ab8e6b828c
-
- Aug 25, 2014
-
-
Wouter van Oortmerssen authored
Tested: on Windows & Linux. Change-Id: I90e18c448fc2fafeb83a6cdc3776174479874562
-
- Aug 12, 2014
-
-
Wouter van Oortmerssen authored
Change-Id: Id33cf778caa818c7d3988edee82058e63bfecbf0 Tested: on Linux
-
- Jul 29, 2014
-
-
Wouter van Oortmerssen authored
Change-Id: I88b5993219e10e2dfb60ff98d6594d19871988fc Tested: on Linux
-
- Jul 28, 2014
-
-
Stefan Eilemann authored
Change-Id: If0465b73843ad1a489fa66318a689801def3f0f0
-
- Jul 25, 2014
-
-
Daniel Nachbaur authored
Change-Id: Ie863ddcf73653d1404a1e84109ebdf66af5dff26
-
- Jul 21, 2014
-
-
rw authored
Implement code generation and runtime library for Go, derived from the Java implementation. Additionally, the test suite verifies: - the exact bytes in the Builder buffer during object construction, - vtable deduplication, and - table construction, via a fuzzer derived from the C++ implementation. Change-Id: Ib95a019c684891def2b50281e570b4843fea7baa
-
- Jun 10, 2014
-
-
Wouter van Oortmerssen authored
Change-Id: I4c9f0f722490b374257adb3fec63e44ae93da920 Tested: using VS2010 / Xcode / gcc on Linux.
-