-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Group encoding/decoding source code into
src/runtime
Signed-off-by: Juan Cruz Viotti <[email protected]>
- Loading branch information
Showing
70 changed files
with
212 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
39 changes: 0 additions & 39 deletions
39
src/decoder/include/sourcemeta/jsonbinpack/decoder_varint.h
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
30 changes: 0 additions & 30 deletions
30
src/encoder/include/sourcemeta/jsonbinpack/encoder_varint.h
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
noa_library(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime | ||
FOLDER "JSON BinPack/Runtime" | ||
PRIVATE_HEADERS | ||
decoder.h | ||
decoder_basic.h | ||
decoder_zigzag.h | ||
encoder.h | ||
encoder_basic.h | ||
encoder_context.h | ||
encoder_real.h | ||
encoder_zigzag.h | ||
encoding.h | ||
encoding_tag.h | ||
encoding_wrap.h | ||
varint.h | ||
numeric.h) | ||
|
||
if(JSONBINPACK_INSTALL) | ||
noa_library_install(NAMESPACE sourcemeta PROJECT jsonbinpack NAME runtime) | ||
endif() | ||
|
||
sourcemeta_jsonbinpack_add_compile_options(INTERFACE sourcemeta_jsonbinpack_runtime) | ||
|
||
target_link_libraries(sourcemeta_jsonbinpack_runtime INTERFACE | ||
sourcemeta::jsontoolkit::json) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#ifndef SOURCEMETA_JSONBINPACK_RUNTIME_H_ | ||
#define SOURCEMETA_JSONBINPACK_RUNTIME_H_ | ||
|
||
#include <sourcemeta/jsonbinpack/runtime_decoder.h> | ||
#include <sourcemeta/jsonbinpack/runtime_encoder.h> | ||
#include <sourcemeta/jsonbinpack/runtime_encoding.h> | ||
|
||
#endif |
15 changes: 8 additions & 7 deletions
15
.../include/sourcemeta/jsonbinpack/decoder.h → .../sourcemeta/jsonbinpack/runtime_decoder.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...e/sourcemeta/jsonbinpack/decoder_zigzag.h → ...meta/jsonbinpack/runtime_decoder_zigzag.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 9 additions & 8 deletions
17
.../include/sourcemeta/jsonbinpack/encoder.h → .../sourcemeta/jsonbinpack/runtime_encoder.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.