This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a change to branch iotdb
in repository https://gitbox.apache.org/repos/asf/tsfile.git
from 127a79f6 change version to 1.2.0-20a94fb3-SNAPSHOT
new efba28a5 Feature/support aligned ts (#192)
new efc8f71d Fix allSatisfy bug in InFilter
new 999a6a21 change version
The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
cpp/examples/c_examples/c_examples.c | 1 -
cpp/examples/cpp_examples/cpp_examples.h | 10 +-
cpp/examples/cpp_examples/demo_read.cpp | 80 ++-
cpp/examples/cpp_examples/demo_write.cpp | 26 +-
cpp/examples/examples.cc | 2 +-
cpp/pom.xml | 2 +-
cpp/src/common/allocator/byte_stream.h | 19 +
cpp/src/common/allocator/my_string.h | 24 +
cpp/src/common/config/config.h | 2 +
cpp/src/common/global.cc | 5 +-
cpp/src/common/record.h | 7 +-
cpp/src/common/schema.h | 12 +-
cpp/src/common/statistic.h | 99 +++-
cpp/src/common/tsfile_common.cc | 94 ++-
cpp/src/common/tsfile_common.h | 68 ++-
cpp/src/compress/compressor_factory.h | 3 +-
cpp/src/encoding/bitpack_encoder.h | 3 +-
cpp/src/encoding/dictionary_encoder.h | 3 +-
cpp/src/encoding/plain_encoder.h | 6 +-
cpp/src/encoding/ts2diff_decoder.h | 4 +-
cpp/src/encoding/ts2diff_encoder.h | 4 +-
cpp/src/file/read_file.cc | 8 +-
cpp/src/file/tsfile_io_reader.cc | 63 +-
cpp/src/file/tsfile_io_reader.h | 4 +-
cpp/src/file/tsfile_io_writer.cc | 46 +-
cpp/src/file/tsfile_io_writer.h | 13 +-
cpp/src/file/write_file.cc | 7 +-
cpp/src/reader/aligned_chunk_reader.cc | 631 +++++++++++++++++++++
cpp/src/reader/aligned_chunk_reader.h | 174 ++++++
cpp/src/reader/chunk_reader.cc | 13 +-
cpp/src/reader/chunk_reader.h | 20 +-
cpp/src/reader/ichunk_reader.h | 62 ++
cpp/src/reader/tsfile_series_scan_iterator.cc | 87 ++-
cpp/src/reader/tsfile_series_scan_iterator.h | 33 +-
cpp/src/writer/chunk_writer.cc | 10 +-
cpp/src/writer/page_writer.cc | 28 +-
cpp/src/writer/page_writer.h | 1 -
.../{chunk_writer.cc => time_chunk_writer.cc} | 83 +--
.../writer/{chunk_writer.h => time_chunk_writer.h} | 79 +--
.../writer/{page_writer.cc => time_page_writer.cc} | 98 +---
cpp/src/writer/time_page_writer.h | 127 +++++
cpp/src/writer/tsfile_writer.cc | 444 +++++++++++++--
cpp/src/writer/tsfile_writer.h | 68 ++-
.../{chunk_writer.cc => value_chunk_writer.cc} | 71 +--
.../{chunk_writer.h => value_chunk_writer.h} | 79 ++-
.../{page_writer.cc => value_page_writer.cc} | 121 ++--
.../writer/{page_writer.h => value_page_writer.h} | 143 ++---
cpp/test/common/allocator/alloc_base_test.cc | 32 ++
cpp/test/common/statistic_test.cc | 23 +
cpp/test/writer/chunk_writer_test.cc | 46 +-
cpp/test/writer/page_writer_test.cc | 2 -
cpp/test/writer/time_chunk_writer_test.cc | 82 +++
cpp/test/writer/time_page_writer_test.cc | 84 +++
cpp/test/writer/tsfile_writer_test.cc | 426 ++++++++++++--
cpp/test/writer/value_chunk_writer_test.cc | 101 ++++
cpp/test/writer/value_page_writer_test.cc | 107 ++++
java/common/pom.xml | 2 +-
java/examples/pom.xml | 4 +-
java/pom.xml | 4 +-
java/tools/pom.xml | 6 +-
java/tsfile/pom.xml | 4 +-
.../codegen/templates/FilterOperatorsTemplate.ftl | 5 +
pom.xml | 2 +-
python/pom.xml | 2 +-
64 files changed, 3171 insertions(+), 748 deletions(-)
create mode 100644 cpp/src/reader/aligned_chunk_reader.cc
create mode 100644 cpp/src/reader/aligned_chunk_reader.h
create mode 100644 cpp/src/reader/ichunk_reader.h
copy cpp/src/writer/{chunk_writer.cc => time_chunk_writer.cc} (60%)
copy cpp/src/writer/{chunk_writer.h => time_chunk_writer.h} (53%)
copy cpp/src/writer/{page_writer.cc => time_page_writer.cc} (58%)
create mode 100644 cpp/src/writer/time_page_writer.h
copy cpp/src/writer/{chunk_writer.cc => value_chunk_writer.cc} (67%)
copy cpp/src/writer/{chunk_writer.h => value_chunk_writer.h} (57%)
copy cpp/src/writer/{page_writer.cc => value_page_writer.cc} (57%)
copy cpp/src/writer/{page_writer.h => value_page_writer.h} (54%)
create mode 100644 cpp/test/writer/time_chunk_writer_test.cc
create mode 100644 cpp/test/writer/time_page_writer_test.cc
create mode 100644 cpp/test/writer/value_chunk_writer_test.cc
create mode 100644 cpp/test/writer/value_page_writer_test.cc