├── .gitignore ├── CMakeLists.txt ├── README.md ├── README_CN.md ├── demo ├── CMakeLists.txt └── src │ ├── DemoDBConnectionPool.cpp │ └── main.cpp ├── example ├── .gitkeep ├── DFSWriting │ ├── .gitkeep │ ├── DFSWriting.cpp │ ├── Makefile │ └── createDB.dos ├── DFSWritingWithMultiThread │ ├── .gitkeep │ ├── Makefile │ └── MultiThreadDfsWriting.cpp ├── README_CN.md └── streamingData │ ├── Makefile │ ├── StreamingDataWriting.cpp │ └── StreamingThreadedClientSubscriber.cpp ├── include ├── AsynWorker.h ├── BatchTableWriter.h ├── Compress.h ├── Concurrent.h ├── Constant.h ├── ConstantFactory.h ├── ConstantImp.h ├── ConstantMarshall.h ├── DBConnectionPoolImpl.h ├── DFSChunkMeta.h ├── Dictionary.h ├── DictionaryImp.h ├── DolphinDB.h ├── DolphinDBImp.h ├── Domain.h ├── DomainImp.h ├── ErrorCodeInfo.h ├── EventHandler.h ├── Exceptions.h ├── Exports.h ├── FixSTL.h ├── Format.h ├── Guid.h ├── Logger.h ├── Matrix.h ├── MultithreadedTableWriter.h ├── Platform.h ├── ResultSet.h ├── ScalarImp.h ├── Set.h ├── SetImp.h ├── SharedMem.h ├── SmartPointer.h ├── Streaming.h ├── StreamingUtil.h ├── SymbolBase.h ├── SysIO.h ├── Table.h ├── TableImp.h ├── TaskStatusMgmt.h ├── Types.h ├── Util.h ├── Vector.h ├── Version.h ├── absl │ ├── int128.h │ ├── int128_have_intrinsic.inc │ └── int128_no_intrinsic.inc ├── internal │ ├── Crypto.h │ ├── EmbeddedMediaDriver.h │ └── WideInteger.h ├── json │ └── json.h ├── lz4 │ └── lz4.h └── spdlog │ ├── async.h │ ├── async_logger-inl.h │ ├── async_logger.h │ ├── cfg │ ├── argv.h │ ├── env.h │ ├── helpers-inl.h │ └── helpers.h │ ├── common-inl.h │ ├── common.h │ ├── details │ ├── backtracer-inl.h │ ├── backtracer.h │ ├── circular_q.h │ ├── console_globals.h │ ├── file_helper-inl.h │ ├── file_helper.h │ ├── fmt_helper.h │ ├── log_msg-inl.h │ ├── log_msg.h │ ├── log_msg_buffer-inl.h │ ├── log_msg_buffer.h │ ├── mpmc_blocking_q.h │ ├── null_mutex.h │ ├── os-inl.h │ ├── os.h │ ├── periodic_worker-inl.h │ ├── periodic_worker.h │ ├── registry-inl.h │ ├── registry.h │ ├── synchronous_factory.h │ ├── tcp_client-windows.h │ ├── tcp_client.h │ ├── thread_pool-inl.h │ ├── thread_pool.h │ ├── udp_client-windows.h │ ├── udp_client.h │ └── windows_include.h │ ├── fmt │ ├── bin_to_hex.h │ ├── bundled │ │ ├── args.h │ │ ├── base.h │ │ ├── chrono.h │ │ ├── color.h │ │ ├── compile.h │ │ ├── core.h │ │ ├── fmt.license.rst │ │ ├── format-inl.h │ │ ├── format.h │ │ ├── locale.h │ │ ├── os.h │ │ ├── ostream.h │ │ ├── printf.h │ │ ├── ranges.h │ │ ├── std.h │ │ └── xchar.h │ ├── chrono.h │ ├── compile.h │ ├── fmt.h │ ├── ostr.h │ ├── ranges.h │ ├── std.h │ └── xchar.h │ ├── formatter.h │ ├── fwd.h │ ├── logger-inl.h │ ├── logger.h │ ├── mdc.h │ ├── pattern_formatter-inl.h │ ├── pattern_formatter.h │ ├── sinks │ ├── android_sink.h │ ├── ansicolor_sink-inl.h │ ├── ansicolor_sink.h │ ├── base_sink-inl.h │ ├── base_sink.h │ ├── basic_file_sink-inl.h │ ├── basic_file_sink.h │ ├── callback_sink.h │ ├── daily_file_sink.h │ ├── dist_sink.h │ ├── dup_filter_sink.h │ ├── hourly_file_sink.h │ ├── kafka_sink.h │ ├── mongo_sink.h │ ├── msvc_sink.h │ ├── null_sink.h │ ├── ostream_sink.h │ ├── qt_sinks.h │ ├── ringbuffer_sink.h │ ├── rotating_file_sink-inl.h │ ├── rotating_file_sink.h │ ├── sink-inl.h │ ├── sink.h │ ├── stdout_color_sinks-inl.h │ ├── stdout_color_sinks.h │ ├── stdout_sinks-inl.h │ ├── stdout_sinks.h │ ├── syslog_sink.h │ ├── systemd_sink.h │ ├── tcp_sink.h │ ├── udp_sink.h │ ├── win_eventlog_sink.h │ ├── wincolor_sink-inl.h │ └── wincolor_sink.h │ ├── spdlog-inl.h │ ├── spdlog.h │ ├── stopwatch.h │ ├── tweakme.h │ └── version.h ├── lib └── openssl-1.0.2u.zip ├── simpleTest ├── simpleTest.sh ├── simpleTestCase.txt └── test.md ├── src ├── AsynWorker.cpp ├── BatchTableWriter.cpp ├── CMakeLists.txt ├── Compress.cpp ├── Concurrent.cpp ├── ConstantImp.cpp ├── ConstantMarshall.cpp ├── Crypto.cpp ├── DBConnectionPoolImpl.cpp ├── DFSChunkMeta.cpp ├── DictionaryImp.cpp ├── DolphinDB.cpp ├── DolphinDBImp.cpp ├── DomainImp.cpp ├── EventHandler.cpp ├── Format.cpp ├── Guid.cpp ├── Logger.cpp ├── Matrix.cpp ├── MultithreadedTableWriter.cpp ├── ScalarImp.cpp ├── SetImp.cpp ├── Streaming.cpp ├── StreamingUtil.cpp ├── SymbolBase.cpp ├── SysIO.cpp ├── TableImp.cpp ├── TaskStatusMgmt.cpp ├── Types.cpp ├── Util.cpp ├── Vector.cpp ├── int128.cpp ├── lz4 │ ├── CMakeLists.txt │ └── lz4.c ├── meson.build └── platform │ ├── Linux.cpp │ └── Windows.cpp ├── test ├── .dockerfile │ └── linux_x86_64 │ │ └── Dockerfile ├── ArrayVectorTest_gtest.cpp ├── AutoFitTableAppenderTest_gtest.cpp ├── AutoFitTableUpsertTest_gtest.cpp ├── BatchTableWriter_gtest.cpp ├── CMakeLists.txt ├── CompressTest_gtest.cpp ├── ConcurrentTest_gtest.cpp ├── ConstantMarshall_gtest.cpp ├── DBConnectionTest_gtest.cpp ├── DLoggerTest_gtest.cpp ├── DataformDictionaryTest_gtest.cpp ├── DataformMatrixTest_gtest.cpp ├── DataformPairTest_gtest.cpp ├── DataformSetTest_gtest.cpp ├── DataformTableTest_gtest.cpp ├── DataformVectorTest_gtest.cpp ├── DolphinDBTest_gtest.cpp ├── ExceptionTest_gtest.cpp ├── FunctionTest_gtest.cpp ├── HighAvailableTest_gtest.cpp ├── MultithreadedTableWriterNew_gtest.cpp ├── MultithreadedTableWriter_gtest.cpp ├── PartitionedTableAppenderTest_gtest.cpp ├── ScalarTest_gtest.cpp ├── SqlTest_gtest.cpp ├── StreamingCEPEventTest_gtest.cpp ├── StreamingDeserilizerTest_gtest.cpp ├── StreamingIPCinMemTableTest_gtest.cpp ├── StreamingPollingClientTest_gtest.cpp ├── StreamingThreadPooledClientTest_gtest.cpp ├── StreamingThreadedClientTest_gtest.cpp ├── StreamingUDPThreadedClientTest_gtest.cpp ├── SysIOTest_gtest.cpp ├── config.cpp ├── config.h └── gt_main.cpp └── unittest ├── CMakeLists.txt └── unittest.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/README_CN.md -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/src/DemoDBConnectionPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/demo/src/DemoDBConnectionPool.cpp -------------------------------------------------------------------------------- /demo/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/demo/src/main.cpp -------------------------------------------------------------------------------- /example/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/DFSWriting/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/DFSWriting/DFSWriting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/DFSWriting/DFSWriting.cpp -------------------------------------------------------------------------------- /example/DFSWriting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/DFSWriting/Makefile -------------------------------------------------------------------------------- /example/DFSWriting/createDB.dos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/DFSWriting/createDB.dos -------------------------------------------------------------------------------- /example/DFSWritingWithMultiThread/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/DFSWritingWithMultiThread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/DFSWritingWithMultiThread/Makefile -------------------------------------------------------------------------------- /example/DFSWritingWithMultiThread/MultiThreadDfsWriting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/DFSWritingWithMultiThread/MultiThreadDfsWriting.cpp -------------------------------------------------------------------------------- /example/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/README_CN.md -------------------------------------------------------------------------------- /example/streamingData/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/streamingData/Makefile -------------------------------------------------------------------------------- /example/streamingData/StreamingDataWriting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/streamingData/StreamingDataWriting.cpp -------------------------------------------------------------------------------- /example/streamingData/StreamingThreadedClientSubscriber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/example/streamingData/StreamingThreadedClientSubscriber.cpp -------------------------------------------------------------------------------- /include/AsynWorker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/AsynWorker.h -------------------------------------------------------------------------------- /include/BatchTableWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/BatchTableWriter.h -------------------------------------------------------------------------------- /include/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Compress.h -------------------------------------------------------------------------------- /include/Concurrent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Concurrent.h -------------------------------------------------------------------------------- /include/Constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Constant.h -------------------------------------------------------------------------------- /include/ConstantFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ConstantFactory.h -------------------------------------------------------------------------------- /include/ConstantImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ConstantImp.h -------------------------------------------------------------------------------- /include/ConstantMarshall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ConstantMarshall.h -------------------------------------------------------------------------------- /include/DBConnectionPoolImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DBConnectionPoolImpl.h -------------------------------------------------------------------------------- /include/DFSChunkMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DFSChunkMeta.h -------------------------------------------------------------------------------- /include/Dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Dictionary.h -------------------------------------------------------------------------------- /include/DictionaryImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DictionaryImp.h -------------------------------------------------------------------------------- /include/DolphinDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DolphinDB.h -------------------------------------------------------------------------------- /include/DolphinDBImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DolphinDBImp.h -------------------------------------------------------------------------------- /include/Domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Domain.h -------------------------------------------------------------------------------- /include/DomainImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/DomainImp.h -------------------------------------------------------------------------------- /include/ErrorCodeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ErrorCodeInfo.h -------------------------------------------------------------------------------- /include/EventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/EventHandler.h -------------------------------------------------------------------------------- /include/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Exceptions.h -------------------------------------------------------------------------------- /include/Exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Exports.h -------------------------------------------------------------------------------- /include/FixSTL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/FixSTL.h -------------------------------------------------------------------------------- /include/Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Format.h -------------------------------------------------------------------------------- /include/Guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Guid.h -------------------------------------------------------------------------------- /include/Logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Logger.h -------------------------------------------------------------------------------- /include/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Matrix.h -------------------------------------------------------------------------------- /include/MultithreadedTableWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/MultithreadedTableWriter.h -------------------------------------------------------------------------------- /include/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Platform.h -------------------------------------------------------------------------------- /include/ResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ResultSet.h -------------------------------------------------------------------------------- /include/ScalarImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/ScalarImp.h -------------------------------------------------------------------------------- /include/Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Set.h -------------------------------------------------------------------------------- /include/SetImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/SetImp.h -------------------------------------------------------------------------------- /include/SharedMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/SharedMem.h -------------------------------------------------------------------------------- /include/SmartPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/SmartPointer.h -------------------------------------------------------------------------------- /include/Streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Streaming.h -------------------------------------------------------------------------------- /include/StreamingUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/StreamingUtil.h -------------------------------------------------------------------------------- /include/SymbolBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/SymbolBase.h -------------------------------------------------------------------------------- /include/SysIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/SysIO.h -------------------------------------------------------------------------------- /include/Table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Table.h -------------------------------------------------------------------------------- /include/TableImp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/TableImp.h -------------------------------------------------------------------------------- /include/TaskStatusMgmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/TaskStatusMgmt.h -------------------------------------------------------------------------------- /include/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Types.h -------------------------------------------------------------------------------- /include/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Util.h -------------------------------------------------------------------------------- /include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Vector.h -------------------------------------------------------------------------------- /include/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/Version.h -------------------------------------------------------------------------------- /include/absl/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/absl/int128.h -------------------------------------------------------------------------------- /include/absl/int128_have_intrinsic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/absl/int128_have_intrinsic.inc -------------------------------------------------------------------------------- /include/absl/int128_no_intrinsic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/absl/int128_no_intrinsic.inc -------------------------------------------------------------------------------- /include/internal/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/internal/Crypto.h -------------------------------------------------------------------------------- /include/internal/EmbeddedMediaDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/internal/EmbeddedMediaDriver.h -------------------------------------------------------------------------------- /include/internal/WideInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/internal/WideInteger.h -------------------------------------------------------------------------------- /include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/json/json.h -------------------------------------------------------------------------------- /include/lz4/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/lz4/lz4.h -------------------------------------------------------------------------------- /include/spdlog/async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/async.h -------------------------------------------------------------------------------- /include/spdlog/async_logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/async_logger-inl.h -------------------------------------------------------------------------------- /include/spdlog/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/async_logger.h -------------------------------------------------------------------------------- /include/spdlog/cfg/argv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/cfg/argv.h -------------------------------------------------------------------------------- /include/spdlog/cfg/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/cfg/env.h -------------------------------------------------------------------------------- /include/spdlog/cfg/helpers-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/cfg/helpers-inl.h -------------------------------------------------------------------------------- /include/spdlog/cfg/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/cfg/helpers.h -------------------------------------------------------------------------------- /include/spdlog/common-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/common-inl.h -------------------------------------------------------------------------------- /include/spdlog/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/common.h -------------------------------------------------------------------------------- /include/spdlog/details/backtracer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/backtracer-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/backtracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/backtracer.h -------------------------------------------------------------------------------- /include/spdlog/details/circular_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/circular_q.h -------------------------------------------------------------------------------- /include/spdlog/details/console_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/console_globals.h -------------------------------------------------------------------------------- /include/spdlog/details/file_helper-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/file_helper-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/file_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/file_helper.h -------------------------------------------------------------------------------- /include/spdlog/details/fmt_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/fmt_helper.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/log_msg-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/log_msg.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg_buffer-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/log_msg_buffer-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/log_msg_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/log_msg_buffer.h -------------------------------------------------------------------------------- /include/spdlog/details/mpmc_blocking_q.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/mpmc_blocking_q.h -------------------------------------------------------------------------------- /include/spdlog/details/null_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/null_mutex.h -------------------------------------------------------------------------------- /include/spdlog/details/os-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/os-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/os.h -------------------------------------------------------------------------------- /include/spdlog/details/periodic_worker-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/periodic_worker-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/periodic_worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/periodic_worker.h -------------------------------------------------------------------------------- /include/spdlog/details/registry-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/registry-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/registry.h -------------------------------------------------------------------------------- /include/spdlog/details/synchronous_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/synchronous_factory.h -------------------------------------------------------------------------------- /include/spdlog/details/tcp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/tcp_client-windows.h -------------------------------------------------------------------------------- /include/spdlog/details/tcp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/tcp_client.h -------------------------------------------------------------------------------- /include/spdlog/details/thread_pool-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/thread_pool-inl.h -------------------------------------------------------------------------------- /include/spdlog/details/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/thread_pool.h -------------------------------------------------------------------------------- /include/spdlog/details/udp_client-windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/udp_client-windows.h -------------------------------------------------------------------------------- /include/spdlog/details/udp_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/udp_client.h -------------------------------------------------------------------------------- /include/spdlog/details/windows_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/details/windows_include.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bin_to_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bin_to_hex.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/args.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/base.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/chrono.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/color.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/compile.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/core.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/fmt.license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/fmt.license.rst -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/format-inl.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/format.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/locale.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/os.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/ostream.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/printf.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/ranges.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/std.h -------------------------------------------------------------------------------- /include/spdlog/fmt/bundled/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/bundled/xchar.h -------------------------------------------------------------------------------- /include/spdlog/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/chrono.h -------------------------------------------------------------------------------- /include/spdlog/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/compile.h -------------------------------------------------------------------------------- /include/spdlog/fmt/fmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/fmt.h -------------------------------------------------------------------------------- /include/spdlog/fmt/ostr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/ostr.h -------------------------------------------------------------------------------- /include/spdlog/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/ranges.h -------------------------------------------------------------------------------- /include/spdlog/fmt/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/std.h -------------------------------------------------------------------------------- /include/spdlog/fmt/xchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fmt/xchar.h -------------------------------------------------------------------------------- /include/spdlog/formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/formatter.h -------------------------------------------------------------------------------- /include/spdlog/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/fwd.h -------------------------------------------------------------------------------- /include/spdlog/logger-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/logger-inl.h -------------------------------------------------------------------------------- /include/spdlog/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/logger.h -------------------------------------------------------------------------------- /include/spdlog/mdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/mdc.h -------------------------------------------------------------------------------- /include/spdlog/pattern_formatter-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/pattern_formatter-inl.h -------------------------------------------------------------------------------- /include/spdlog/pattern_formatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/pattern_formatter.h -------------------------------------------------------------------------------- /include/spdlog/sinks/android_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/android_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ansicolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/ansicolor_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ansicolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/ansicolor_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/base_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/base_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/base_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/base_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/basic_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/basic_file_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/basic_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/basic_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/callback_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/callback_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/daily_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/daily_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/dist_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/dist_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/dup_filter_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/dup_filter_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/hourly_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/hourly_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/kafka_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/kafka_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/mongo_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/mongo_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/msvc_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/msvc_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/null_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/null_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ostream_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/ostream_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/qt_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/qt_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/ringbuffer_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/ringbuffer_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/rotating_file_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/rotating_file_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/rotating_file_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/rotating_file_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_color_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/stdout_color_sinks-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_color_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/stdout_color_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_sinks-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/stdout_sinks-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/stdout_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/stdout_sinks.h -------------------------------------------------------------------------------- /include/spdlog/sinks/syslog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/syslog_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/systemd_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/systemd_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/tcp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/tcp_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/udp_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/udp_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/win_eventlog_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/win_eventlog_sink.h -------------------------------------------------------------------------------- /include/spdlog/sinks/wincolor_sink-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/wincolor_sink-inl.h -------------------------------------------------------------------------------- /include/spdlog/sinks/wincolor_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/sinks/wincolor_sink.h -------------------------------------------------------------------------------- /include/spdlog/spdlog-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/spdlog-inl.h -------------------------------------------------------------------------------- /include/spdlog/spdlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/spdlog.h -------------------------------------------------------------------------------- /include/spdlog/stopwatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/stopwatch.h -------------------------------------------------------------------------------- /include/spdlog/tweakme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/tweakme.h -------------------------------------------------------------------------------- /include/spdlog/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/include/spdlog/version.h -------------------------------------------------------------------------------- /lib/openssl-1.0.2u.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/lib/openssl-1.0.2u.zip -------------------------------------------------------------------------------- /simpleTest/simpleTest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/simpleTest/simpleTest.sh -------------------------------------------------------------------------------- /simpleTest/simpleTestCase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/simpleTest/simpleTestCase.txt -------------------------------------------------------------------------------- /simpleTest/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/simpleTest/test.md -------------------------------------------------------------------------------- /src/AsynWorker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/AsynWorker.cpp -------------------------------------------------------------------------------- /src/BatchTableWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/BatchTableWriter.cpp -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Compress.cpp -------------------------------------------------------------------------------- /src/Concurrent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Concurrent.cpp -------------------------------------------------------------------------------- /src/ConstantImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/ConstantImp.cpp -------------------------------------------------------------------------------- /src/ConstantMarshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/ConstantMarshall.cpp -------------------------------------------------------------------------------- /src/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Crypto.cpp -------------------------------------------------------------------------------- /src/DBConnectionPoolImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DBConnectionPoolImpl.cpp -------------------------------------------------------------------------------- /src/DFSChunkMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DFSChunkMeta.cpp -------------------------------------------------------------------------------- /src/DictionaryImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DictionaryImp.cpp -------------------------------------------------------------------------------- /src/DolphinDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DolphinDB.cpp -------------------------------------------------------------------------------- /src/DolphinDBImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DolphinDBImp.cpp -------------------------------------------------------------------------------- /src/DomainImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/DomainImp.cpp -------------------------------------------------------------------------------- /src/EventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/EventHandler.cpp -------------------------------------------------------------------------------- /src/Format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Format.cpp -------------------------------------------------------------------------------- /src/Guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Guid.cpp -------------------------------------------------------------------------------- /src/Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Logger.cpp -------------------------------------------------------------------------------- /src/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Matrix.cpp -------------------------------------------------------------------------------- /src/MultithreadedTableWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/MultithreadedTableWriter.cpp -------------------------------------------------------------------------------- /src/ScalarImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/ScalarImp.cpp -------------------------------------------------------------------------------- /src/SetImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/SetImp.cpp -------------------------------------------------------------------------------- /src/Streaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Streaming.cpp -------------------------------------------------------------------------------- /src/StreamingUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/StreamingUtil.cpp -------------------------------------------------------------------------------- /src/SymbolBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/SymbolBase.cpp -------------------------------------------------------------------------------- /src/SysIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/SysIO.cpp -------------------------------------------------------------------------------- /src/TableImp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/TableImp.cpp -------------------------------------------------------------------------------- /src/TaskStatusMgmt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/TaskStatusMgmt.cpp -------------------------------------------------------------------------------- /src/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Types.cpp -------------------------------------------------------------------------------- /src/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Util.cpp -------------------------------------------------------------------------------- /src/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/Vector.cpp -------------------------------------------------------------------------------- /src/int128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/int128.cpp -------------------------------------------------------------------------------- /src/lz4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/lz4/CMakeLists.txt -------------------------------------------------------------------------------- /src/lz4/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/lz4/lz4.c -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/platform/Linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/platform/Linux.cpp -------------------------------------------------------------------------------- /src/platform/Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/src/platform/Windows.cpp -------------------------------------------------------------------------------- /test/.dockerfile/linux_x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/.dockerfile/linux_x86_64/Dockerfile -------------------------------------------------------------------------------- /test/ArrayVectorTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/ArrayVectorTest_gtest.cpp -------------------------------------------------------------------------------- /test/AutoFitTableAppenderTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/AutoFitTableAppenderTest_gtest.cpp -------------------------------------------------------------------------------- /test/AutoFitTableUpsertTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/AutoFitTableUpsertTest_gtest.cpp -------------------------------------------------------------------------------- /test/BatchTableWriter_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/BatchTableWriter_gtest.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/CompressTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/CompressTest_gtest.cpp -------------------------------------------------------------------------------- /test/ConcurrentTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/ConcurrentTest_gtest.cpp -------------------------------------------------------------------------------- /test/ConstantMarshall_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/ConstantMarshall_gtest.cpp -------------------------------------------------------------------------------- /test/DBConnectionTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DBConnectionTest_gtest.cpp -------------------------------------------------------------------------------- /test/DLoggerTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DLoggerTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformDictionaryTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformDictionaryTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformMatrixTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformMatrixTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformPairTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformPairTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformSetTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformSetTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformTableTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformTableTest_gtest.cpp -------------------------------------------------------------------------------- /test/DataformVectorTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DataformVectorTest_gtest.cpp -------------------------------------------------------------------------------- /test/DolphinDBTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/DolphinDBTest_gtest.cpp -------------------------------------------------------------------------------- /test/ExceptionTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/ExceptionTest_gtest.cpp -------------------------------------------------------------------------------- /test/FunctionTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/FunctionTest_gtest.cpp -------------------------------------------------------------------------------- /test/HighAvailableTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/HighAvailableTest_gtest.cpp -------------------------------------------------------------------------------- /test/MultithreadedTableWriterNew_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/MultithreadedTableWriterNew_gtest.cpp -------------------------------------------------------------------------------- /test/MultithreadedTableWriter_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/MultithreadedTableWriter_gtest.cpp -------------------------------------------------------------------------------- /test/PartitionedTableAppenderTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/PartitionedTableAppenderTest_gtest.cpp -------------------------------------------------------------------------------- /test/ScalarTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/ScalarTest_gtest.cpp -------------------------------------------------------------------------------- /test/SqlTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/SqlTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingCEPEventTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingCEPEventTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingDeserilizerTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingDeserilizerTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingIPCinMemTableTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingIPCinMemTableTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingPollingClientTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingPollingClientTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingThreadPooledClientTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingThreadPooledClientTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingThreadedClientTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingThreadedClientTest_gtest.cpp -------------------------------------------------------------------------------- /test/StreamingUDPThreadedClientTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/StreamingUDPThreadedClientTest_gtest.cpp -------------------------------------------------------------------------------- /test/SysIOTest_gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/SysIOTest_gtest.cpp -------------------------------------------------------------------------------- /test/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/config.cpp -------------------------------------------------------------------------------- /test/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/config.h -------------------------------------------------------------------------------- /test/gt_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/test/gt_main.cpp -------------------------------------------------------------------------------- /unittest/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | target_sources(${UNITTEST} PRIVATE 2 | unittest.cpp 3 | ) 4 | -------------------------------------------------------------------------------- /unittest/unittest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dolphindb/api-cplusplus/HEAD/unittest/unittest.cpp --------------------------------------------------------------------------------