From bc3a104e3f6e47b5611fbd935d6450f8b2ed31a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Lindstr=C3=B6m?= Date: Fri, 21 Jun 2013 09:11:57 +0300 Subject: [PATCH] Added replicaton listener library from https://github.com/SponsorPay/mysql-replication-listener and first prototype implementation for table replication consistency module --- .../CMakeFiles/CMakeCCompiler.cmake | 53 + .../CMakeFiles/CMakeCXXCompiler.cmake | 54 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 8742 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 8755 bytes .../CMakeDirectoryInformation.cmake | 16 + .../CMakeFiles/CMakeOutput.log | 1315 ++++++++++++++ .../CMakeFiles/CMakeSystem.cmake | 15 + .../CMakeFiles/CompilerIdC/CMakeCCompilerId.c | 361 ++++ .../CMakeFiles/CompilerIdC/a.out | Bin 0 -> 8838 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 344 ++++ .../CMakeFiles/CompilerIdCXX/a.out | Bin 0 -> 8847 bytes .../CMakeFiles/Makefile.cmake | 63 + replication_listener/CMakeFiles/Makefile2 | 311 ++++ .../CMakeFiles/TargetDirectories.txt | 6 + .../CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/progress.marks | 1 + replication_listener/CMakeLists.txt | 159 ++ replication_listener/COPYING | 280 +++ replication_listener/CPackConfig.cmake | 65 + replication_listener/CPackSourceConfig.cmake | 72 + replication_listener/Doxyfile | 1551 +++++++++++++++++ replication_listener/Makefile | 273 +++ replication_listener/README | 68 + replication_listener/cmake_install.cmake | 54 + replication_listener/doc/libreplication.odp | Bin 0 -> 83164 bytes .../examples/CMakeFiles/CMakeCCompiler.cmake | 53 + .../CMakeFiles/CMakeCXXCompiler.cmake | 54 + .../CMakeDetermineCompilerABI_C.bin | Bin 0 -> 8742 bytes .../CMakeDetermineCompilerABI_CXX.bin | Bin 0 -> 8755 bytes .../CMakeDirectoryInformation.cmake | 16 + .../examples/CMakeFiles/CMakeOutput.log | 526 ++++++ .../examples/CMakeFiles/CMakeSystem.cmake | 15 + .../CMakeFiles/CompilerIdC/CMakeCCompilerId.c | 361 ++++ .../examples/CMakeFiles/CompilerIdC/a.out | Bin 0 -> 8838 bytes .../CompilerIdCXX/CMakeCXXCompilerId.cpp | 344 ++++ .../examples/CMakeFiles/CompilerIdCXX/a.out | Bin 0 -> 8847 bytes .../examples/CMakeFiles/Makefile.cmake | 65 + .../examples/CMakeFiles/Makefile2 | 215 +++ .../examples/CMakeFiles/TargetDirectories.txt | 4 + .../CMakeFiles/basic-1.dir/CXX.includecache | 206 +++ .../CMakeFiles/basic-1.dir/DependInfo.cmake | 22 + .../CMakeFiles/basic-1.dir/build.make | 102 ++ .../CMakeFiles/basic-1.dir/cmake_clean.cmake | 10 + .../CMakeFiles/basic-1.dir/depend.internal | 21 + .../CMakeFiles/basic-1.dir/depend.make | 21 + .../CMakeFiles/basic-1.dir/flags.make | 8 + .../examples/CMakeFiles/basic-1.dir/link.txt | 1 + .../CMakeFiles/basic-1.dir/progress.make | 2 + .../CMakeFiles/basic-2.dir/CXX.includecache | 212 +++ .../CMakeFiles/basic-2.dir/DependInfo.cmake | 22 + .../CMakeFiles/basic-2.dir/build.make | 102 ++ .../CMakeFiles/basic-2.dir/cmake_clean.cmake | 10 + .../CMakeFiles/basic-2.dir/depend.internal | 21 + .../CMakeFiles/basic-2.dir/depend.make | 21 + .../CMakeFiles/basic-2.dir/flags.make | 8 + .../examples/CMakeFiles/basic-2.dir/link.txt | 1 + .../CMakeFiles/basic-2.dir/progress.make | 2 + .../examples/CMakeFiles/cmake.check_cache | 1 + .../CMakeFiles/jan_test.dir/CXX.includecache | 240 +++ .../CMakeFiles/jan_test.dir/DependInfo.cmake | 22 + .../CMakeFiles/jan_test.dir/build.make | 102 ++ .../CMakeFiles/jan_test.dir/cmake_clean.cmake | 10 + .../CMakeFiles/jan_test.dir/depend.internal | 23 + .../CMakeFiles/jan_test.dir/depend.make | 23 + .../CMakeFiles/jan_test.dir/flags.make | 8 + .../examples/CMakeFiles/jan_test.dir/link.txt | 1 + .../CMakeFiles/jan_test.dir/progress.make | 2 + .../examples/CMakeFiles/progress.marks | 1 + replication_listener/examples/CMakeLists.txt | 13 + replication_listener/examples/Makefile | 315 ++++ replication_listener/examples/basic-1.cpp | 36 + replication_listener/examples/basic-2.cpp | 94 + .../examples/cmake_install.cmake | 39 + replication_listener/examples/jan_test.cpp | 197 +++ .../CMakeDirectoryInformation.cmake | 16 + .../mysql2lucene.dir/CXX.includecache | 244 +++ .../mysql2lucene.dir/DependInfo.cmake | 27 + .../CMakeFiles/mysql2lucene.dir/build.make | 210 +++ .../mysql2lucene.dir/cmake_clean.cmake | 14 + .../mysql2lucene.dir/depend.internal | 88 + .../CMakeFiles/mysql2lucene.dir/depend.make | 88 + .../CMakeFiles/mysql2lucene.dir/flags.make | 8 + .../CMakeFiles/mysql2lucene.dir/link.txt | 1 + .../CMakeFiles/mysql2lucene.dir/progress.make | 6 + .../mysql2lucene/CMakeFiles/progress.marks | 1 + .../examples/mysql2lucene/CMakeLists.txt | 9 + .../examples/mysql2lucene/Makefile | 339 ++++ .../examples/mysql2lucene/cmake_install.cmake | 34 + .../examples/mysql2lucene/globals.h | 34 + .../examples/mysql2lucene/main.cpp | 212 +++ .../examples/mysql2lucene/table_delete.cpp | 96 + .../examples/mysql2lucene/table_delete.h | 35 + .../examples/mysql2lucene/table_index.cpp | 54 + .../examples/mysql2lucene/table_index.h | 49 + .../examples/mysql2lucene/table_insert.cpp | 152 ++ .../examples/mysql2lucene/table_insert.h | 36 + .../examples/mysql2lucene/table_update.cpp | 37 + .../examples/mysql2lucene/table_update.h | 34 + replication_listener/examples/test.sql | 35 + .../homebrew/mysql-replication-listener.rb | 16 + .../include/access_method_factory.h | 36 + .../include/basic_content_handler.h | 81 + .../include/basic_transaction_parser.h | 83 + replication_listener/include/binlog_api.h | 179 ++ replication_listener/include/binlog_driver.h | 104 ++ replication_listener/include/binlog_event.h | 282 +++ replication_listener/include/bounded_buffer.h | 91 + replication_listener/include/field_iterator.h | 196 +++ replication_listener/include/file_driver.h | 92 + replication_listener/include/gtid.h | 79 + .../include/listener_exception.h | 58 + replication_listener/include/protocol.h | 437 +++++ .../include/resultset_iterator.h | 185 ++ replication_listener/include/row_of_fields.h | 47 + replication_listener/include/rowset.h | 55 + replication_listener/include/tcp_driver.h | 291 ++++ replication_listener/include/utilities.h | 53 + replication_listener/include/value.h | 181 ++ replication_listener/install_manifest.txt | 22 + .../mysql-replication-listener.spec | 67 + .../CMakeDirectoryInformation.cmake | 16 + .../src/CMakeFiles/progress.marks | 1 + .../replication_shared.dir/CXX.includecache | 308 ++++ .../replication_shared.dir/DependInfo.cmake | 43 + .../replication_shared.dir/build.make | 474 +++++ .../replication_shared.dir/cmake_clean.cmake | 26 + .../replication_shared.dir/depend.internal | 146 ++ .../replication_shared.dir/depend.make | 146 ++ .../replication_shared.dir/flags.make | 8 + .../replication_shared.dir/link.txt | 1 + .../replication_shared.dir/progress.make | 16 + .../replication_static.dir/CXX.includecache | 308 ++++ .../replication_static.dir/DependInfo.cmake | 36 + .../replication_static.dir/build.make | 467 +++++ .../replication_static.dir/cmake_clean.cmake | 24 + .../cmake_clean_target.cmake | 3 + .../replication_static.dir/depend.internal | 147 ++ .../replication_static.dir/depend.make | 147 ++ .../replication_static.dir/flags.make | 8 + .../replication_static.dir/link.txt | 2 + .../replication_static.dir/progress.make | 16 + replication_listener/src/CMakeLists.txt | 32 + replication_listener/src/Makefile | 669 +++++++ .../src/access_method_factory.cpp | 129 ++ .../src/basic_content_handler.cpp | 108 ++ .../src/basic_transaction_parser.cpp | 172 ++ replication_listener/src/binary_log.cpp | 164 ++ replication_listener/src/binlog_driver.cpp | 80 + replication_listener/src/binlog_event.cpp | 83 + replication_listener/src/cmake_install.cmake | 72 + replication_listener/src/field_iterator.cpp | 103 ++ replication_listener/src/file_driver.cpp | 177 ++ replication_listener/src/gtid.cpp | 60 + replication_listener/src/protocol.cpp | 595 +++++++ .../src/resultset_iterator.cpp | 180 ++ replication_listener/src/row_of_fields.cpp | 51 + replication_listener/src/tcp_driver.cpp | 1149 ++++++++++++ replication_listener/src/utilities.cpp | 154 ++ replication_listener/src/value.cpp | 608 +++++++ replication_listener/tests/CMakeLists.txt | 19 + .../tests/r/binlog_file_reader.result | 533 ++++++ .../tests/r/replication_listener.result | 980 +++++++++++ replication_listener/tests/r/sys_vars.result | 329 ++++ .../tests/replay_sys_vars.cpp | 103 ++ replication_listener/tests/replaybinlog.cpp | 330 ++++ .../tests/std-data/binlog_savepoint.000001 | Bin 0 -> 1014 bytes .../tests/std-data/binlog_transaction.000001 | Bin 0 -> 1670 bytes .../tests/std-data/searchbin.000001 | Bin 0 -> 32739 bytes .../tests/t/binlog_file_reader.test | 12 + .../tests/t/replication_listener-master.opt | 1 + .../tests/t/replication_listener.test | 341 ++++ replication_listener/tests/t/sys_vars.test | 39 + replication_listener/tests/test-basic.cpp | 107 ++ replication_listener/tests/test-transport.cpp | 136 ++ table_replication_consistency/CMakeLists.txt | 44 + .../table_replication_listener.cpp | 488 ++++++ 176 files changed, 23519 insertions(+) create mode 100644 replication_listener/CMakeFiles/CMakeCCompiler.cmake create mode 100644 replication_listener/CMakeFiles/CMakeCXXCompiler.cmake create mode 100755 replication_listener/CMakeFiles/CMakeDetermineCompilerABI_C.bin create mode 100755 replication_listener/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin create mode 100644 replication_listener/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 replication_listener/CMakeFiles/CMakeOutput.log create mode 100644 replication_listener/CMakeFiles/CMakeSystem.cmake create mode 100644 replication_listener/CMakeFiles/CompilerIdC/CMakeCCompilerId.c create mode 100755 replication_listener/CMakeFiles/CompilerIdC/a.out create mode 100644 replication_listener/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 replication_listener/CMakeFiles/CompilerIdCXX/a.out create mode 100644 replication_listener/CMakeFiles/Makefile.cmake create mode 100644 replication_listener/CMakeFiles/Makefile2 create mode 100644 replication_listener/CMakeFiles/TargetDirectories.txt create mode 100644 replication_listener/CMakeFiles/cmake.check_cache create mode 100644 replication_listener/CMakeFiles/progress.marks create mode 100644 replication_listener/CMakeLists.txt create mode 100644 replication_listener/COPYING create mode 100644 replication_listener/CPackConfig.cmake create mode 100644 replication_listener/CPackSourceConfig.cmake create mode 100644 replication_listener/Doxyfile create mode 100644 replication_listener/Makefile create mode 100644 replication_listener/README create mode 100644 replication_listener/cmake_install.cmake create mode 100644 replication_listener/doc/libreplication.odp create mode 100644 replication_listener/examples/CMakeFiles/CMakeCCompiler.cmake create mode 100644 replication_listener/examples/CMakeFiles/CMakeCXXCompiler.cmake create mode 100755 replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_C.bin create mode 100755 replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin create mode 100644 replication_listener/examples/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 replication_listener/examples/CMakeFiles/CMakeOutput.log create mode 100644 replication_listener/examples/CMakeFiles/CMakeSystem.cmake create mode 100644 replication_listener/examples/CMakeFiles/CompilerIdC/CMakeCCompilerId.c create mode 100755 replication_listener/examples/CMakeFiles/CompilerIdC/a.out create mode 100644 replication_listener/examples/CMakeFiles/CompilerIdCXX/CMakeCXXCompilerId.cpp create mode 100755 replication_listener/examples/CMakeFiles/CompilerIdCXX/a.out create mode 100644 replication_listener/examples/CMakeFiles/Makefile.cmake create mode 100644 replication_listener/examples/CMakeFiles/Makefile2 create mode 100644 replication_listener/examples/CMakeFiles/TargetDirectories.txt create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/CXX.includecache create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/DependInfo.cmake create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/build.make create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/cmake_clean.cmake create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/depend.internal create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/depend.make create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/flags.make create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/link.txt create mode 100644 replication_listener/examples/CMakeFiles/basic-1.dir/progress.make create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/CXX.includecache create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/DependInfo.cmake create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/build.make create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/cmake_clean.cmake create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/depend.internal create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/depend.make create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/flags.make create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/link.txt create mode 100644 replication_listener/examples/CMakeFiles/basic-2.dir/progress.make create mode 100644 replication_listener/examples/CMakeFiles/cmake.check_cache create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/CXX.includecache create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/DependInfo.cmake create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/build.make create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/cmake_clean.cmake create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/depend.internal create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/depend.make create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/flags.make create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/link.txt create mode 100644 replication_listener/examples/CMakeFiles/jan_test.dir/progress.make create mode 100644 replication_listener/examples/CMakeFiles/progress.marks create mode 100644 replication_listener/examples/CMakeLists.txt create mode 100644 replication_listener/examples/Makefile create mode 100644 replication_listener/examples/basic-1.cpp create mode 100644 replication_listener/examples/basic-2.cpp create mode 100644 replication_listener/examples/cmake_install.cmake create mode 100644 replication_listener/examples/jan_test.cpp create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/CXX.includecache create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/cmake_clean.cmake create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.internal create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.make create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/link.txt create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/progress.make create mode 100644 replication_listener/examples/mysql2lucene/CMakeFiles/progress.marks create mode 100644 replication_listener/examples/mysql2lucene/CMakeLists.txt create mode 100644 replication_listener/examples/mysql2lucene/Makefile create mode 100644 replication_listener/examples/mysql2lucene/cmake_install.cmake create mode 100644 replication_listener/examples/mysql2lucene/globals.h create mode 100644 replication_listener/examples/mysql2lucene/main.cpp create mode 100644 replication_listener/examples/mysql2lucene/table_delete.cpp create mode 100644 replication_listener/examples/mysql2lucene/table_delete.h create mode 100644 replication_listener/examples/mysql2lucene/table_index.cpp create mode 100644 replication_listener/examples/mysql2lucene/table_index.h create mode 100644 replication_listener/examples/mysql2lucene/table_insert.cpp create mode 100644 replication_listener/examples/mysql2lucene/table_insert.h create mode 100644 replication_listener/examples/mysql2lucene/table_update.cpp create mode 100644 replication_listener/examples/mysql2lucene/table_update.h create mode 100644 replication_listener/examples/test.sql create mode 100644 replication_listener/homebrew/mysql-replication-listener.rb create mode 100644 replication_listener/include/access_method_factory.h create mode 100644 replication_listener/include/basic_content_handler.h create mode 100644 replication_listener/include/basic_transaction_parser.h create mode 100644 replication_listener/include/binlog_api.h create mode 100644 replication_listener/include/binlog_driver.h create mode 100644 replication_listener/include/binlog_event.h create mode 100644 replication_listener/include/bounded_buffer.h create mode 100644 replication_listener/include/field_iterator.h create mode 100644 replication_listener/include/file_driver.h create mode 100644 replication_listener/include/gtid.h create mode 100644 replication_listener/include/listener_exception.h create mode 100644 replication_listener/include/protocol.h create mode 100644 replication_listener/include/resultset_iterator.h create mode 100644 replication_listener/include/row_of_fields.h create mode 100644 replication_listener/include/rowset.h create mode 100644 replication_listener/include/tcp_driver.h create mode 100644 replication_listener/include/utilities.h create mode 100644 replication_listener/include/value.h create mode 100644 replication_listener/install_manifest.txt create mode 100644 replication_listener/mysql-replication-listener.spec create mode 100644 replication_listener/src/CMakeFiles/CMakeDirectoryInformation.cmake create mode 100644 replication_listener/src/CMakeFiles/progress.marks create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/CXX.includecache create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/DependInfo.cmake create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/build.make create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/cmake_clean.cmake create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/depend.internal create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/depend.make create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/flags.make create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/link.txt create mode 100644 replication_listener/src/CMakeFiles/replication_shared.dir/progress.make create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/CXX.includecache create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/build.make create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean.cmake create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean_target.cmake create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/depend.internal create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/depend.make create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/flags.make create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/link.txt create mode 100644 replication_listener/src/CMakeFiles/replication_static.dir/progress.make create mode 100644 replication_listener/src/CMakeLists.txt create mode 100644 replication_listener/src/Makefile create mode 100644 replication_listener/src/access_method_factory.cpp create mode 100644 replication_listener/src/basic_content_handler.cpp create mode 100644 replication_listener/src/basic_transaction_parser.cpp create mode 100644 replication_listener/src/binary_log.cpp create mode 100644 replication_listener/src/binlog_driver.cpp create mode 100644 replication_listener/src/binlog_event.cpp create mode 100644 replication_listener/src/cmake_install.cmake create mode 100644 replication_listener/src/field_iterator.cpp create mode 100644 replication_listener/src/file_driver.cpp create mode 100644 replication_listener/src/gtid.cpp create mode 100644 replication_listener/src/protocol.cpp create mode 100644 replication_listener/src/resultset_iterator.cpp create mode 100644 replication_listener/src/row_of_fields.cpp create mode 100644 replication_listener/src/tcp_driver.cpp create mode 100644 replication_listener/src/utilities.cpp create mode 100644 replication_listener/src/value.cpp create mode 100644 replication_listener/tests/CMakeLists.txt create mode 100644 replication_listener/tests/r/binlog_file_reader.result create mode 100644 replication_listener/tests/r/replication_listener.result create mode 100644 replication_listener/tests/r/sys_vars.result create mode 100644 replication_listener/tests/replay_sys_vars.cpp create mode 100644 replication_listener/tests/replaybinlog.cpp create mode 100644 replication_listener/tests/std-data/binlog_savepoint.000001 create mode 100644 replication_listener/tests/std-data/binlog_transaction.000001 create mode 100644 replication_listener/tests/std-data/searchbin.000001 create mode 100644 replication_listener/tests/t/binlog_file_reader.test create mode 100644 replication_listener/tests/t/replication_listener-master.opt create mode 100644 replication_listener/tests/t/replication_listener.test create mode 100644 replication_listener/tests/t/sys_vars.test create mode 100644 replication_listener/tests/test-basic.cpp create mode 100644 replication_listener/tests/test-transport.cpp create mode 100644 table_replication_consistency/CMakeLists.txt create mode 100644 table_replication_consistency/table_replication_listener.cpp diff --git a/replication_listener/CMakeFiles/CMakeCCompiler.cmake b/replication_listener/CMakeFiles/CMakeCCompiler.cmake new file mode 100644 index 000000000..1472effa2 --- /dev/null +++ b/replication_listener/CMakeFiles/CMakeCCompiler.cmake @@ -0,0 +1,53 @@ +SET(CMAKE_C_COMPILER "/usr/bin/gcc") +SET(CMAKE_C_COMPILER_ARG1 "") +SET(CMAKE_C_COMPILER_ID "GNU") +SET(CMAKE_C_COMPILER_VERSION "4.7.2") +SET(CMAKE_C_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCC 1) +SET(CMAKE_C_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_C_COMPILER_ENV_VAR "CC") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_C_COMPILER_ID_RUN 1) +SET(CMAKE_C_SOURCE_FILE_EXTENSIONS c) +SET(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +SET(CMAKE_C_SIZEOF_DATA_PTR "8") +SET(CMAKE_C_COMPILER_ABI "ELF") +SET(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +IF(CMAKE_C_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_C_SIZEOF_DATA_PTR) + +IF(CMAKE_C_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +ENDIF(CMAKE_C_COMPILER_ABI) + +IF(CMAKE_C_LIBRARY_ARCHITECTURE) + SET(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +ENDIF() + +SET(CMAKE_C_HAS_ISYSROOT "") + + +SET(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c") +SET(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") + + + diff --git a/replication_listener/CMakeFiles/CMakeCXXCompiler.cmake b/replication_listener/CMakeFiles/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..cf7c4df56 --- /dev/null +++ b/replication_listener/CMakeFiles/CMakeCXXCompiler.cmake @@ -0,0 +1,54 @@ +SET(CMAKE_CXX_COMPILER "/usr/bin/c++") +SET(CMAKE_CXX_COMPILER_ARG1 "") +SET(CMAKE_CXX_COMPILER_ID "GNU") +SET(CMAKE_CXX_COMPILER_VERSION "4.7.2") +SET(CMAKE_CXX_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCXX 1) +SET(CMAKE_CXX_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_CXX_COMPILER_ID_RUN 1) +SET(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +SET(CMAKE_CXX_LINKER_PREFERENCE 30) +SET(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +SET(CMAKE_CXX_SIZEOF_DATA_PTR "8") +SET(CMAKE_CXX_COMPILER_ABI "ELF") +SET(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +IF(CMAKE_CXX_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_CXX_SIZEOF_DATA_PTR) + +IF(CMAKE_CXX_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +ENDIF(CMAKE_CXX_COMPILER_ABI) + +IF(CMAKE_CXX_LIBRARY_ARCHITECTURE) + SET(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +ENDIF() + +SET(CMAKE_CXX_HAS_ISYSROOT "") + + +SET(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c") +SET(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") + + + diff --git a/replication_listener/CMakeFiles/CMakeDetermineCompilerABI_C.bin b/replication_listener/CMakeFiles/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..63e954b57e074a718fa6f682d798bd18712e16d5 GIT binary patch literal 8742 zcmb<-^>JfjWMqH=CI&kO5HEnu0W1U|85mXwg1KPAfx&`-lfi*OjzOA%je&uIm4Sf) zrp^J%g3&)fhA}WOz-SJz2@DL(3=9k`3=9kwOb`JJCWr|zS_UG_0HdMCfZYbN4=Rmf zGf2#Z6GSpFz-R^r1+V}}Kgg{Dd|)nv0AB)_0izY5?$ChJFnu5{NS_8&p9WMPjJ^Oe zn1O)-M#KCE@*4<;fDB+@UB8t)Z*4fANjFN7@y-^q;lT|;fW@qn5J|2-r^L9wE?s$FqJv27KPD3F;{)40# z6k&!G1_lNpR3R`=mI0Phz+5;1iXUv|fMOGy_;dya1_1^M1_J>|x`Y`t4=S#JCVmPm zF3DhlCcXgd9tj3?^{W{e7z7#k862SL36^elf&InHuz(%pG6sfDsKra5;;?c6D$H;m zYA?Dw3!&;`pypUZH5>tpb2BJF%M++DLm60{m%#w)9#A}k{D7#hIp z`4~)~;!t4*hIr2q-}sc&qSW-v;*!*&5MSq<{JhkV#H5^5hWPmO-2A-w;*!LolK6Or zc(1bfAgDU$oW$bd)MAKsteSH&lafK{*^D7R9>j(klbe{C2NOvyE{#vi%*$lR%uCCU zFV3t=%}>fL=jot)#1^o;aOA-;u$5hDXG2+DJe3{l`Xg6Jug%H(8VU}Crp;WGT-homo1 z{sHANs4#;BG#!ER8q6M$oJaE;ju*iU3=AI4M>q~MF#I>Y#HqmWU-b&70t3Ii1H*q+ z5I+N?^yP#9|Nk4l_3XSD=h6Adqxs2)fDq5)2S73Gar_`Cfq5K14oV*{j{pDv|4Z5g zkl7yHtc9Ek3?8iqN|^p%09%r#$1mRkGLV5^o?(Z%KmtRkhb}0+c{Kmv^XPn9&J=ri z2S^^I=}YW>kktPN{PLhA!mtCxgQ-9GgW03=sYmA_kAtu5Js2-|bRP4#_^*^H_An^f zGkCOKDuL;L1l8YQE6J(Az)&g}>e2c1Mcx1Z|6`A_vT-UfFn&G^@~=m;?F%*q28I%8 zxDy0J_bc!vFnDx6{eL0$W%d96|6i8<|NlR20?3HY+BY7Zr4Np~{sFnT+x3md4E}8m zpw!L3?*OCgADBoghXVsl8w%t;n5kRa>1kdjfIcqQ^(G~o}J%34*q5K?7aTM`rrTm9<6UnWDIYE-0#!* z%ct|3OXqvX{~~uhnh!I2SiUZO<IqQDF;)dJFjfdKO7pODOkiYS zP+?#Iw+#yZ{{IgyPx%Dg_$0jexyv~k80@92wTxAiK>9%K2ax$C|Nj36mr0I%0&Psr zyliDW?4UXjWDclopYiYie{k6s*u&b!7SHF<%-+w`$K1=p6u}2l2XY6O@a zln*LPK};zS!N9;E0qswL%4v`gO#bV?|M?*P3~0Xz*5^CG0%@m$+AkpaA5eKN5Ql+* z;W?D%hSH$^28ao3M}pWO3~&2D+dZ%{9i|>s-hi};i=5t>w* zS5m6)lbM%Tl&@f-XRc?YYg7srG}MIf8L+D~(=*mJG(b{nre~~RWMF7yU}YDRooQDSatd`3zUf(OwNpIB6sSP9VqV`n87 zft`_HJFff49JWM}q90NAK0d9kV6hbkqe+lI>7^3Mff#%y1sDYq%7)&jQM%NE& z!+rbzKOd@`0ah-|fC@l*HIT6=kbYQx1hGNbkAZ;!R3<=`Gr-D?A5ei4P!EI36%Z4q zAC`Z^pyL%#Ox#%jYYg1)CaFA(RVmRm1Gd zW?*0dl_4-btQ@%j)c^~BboWDzWvGI-w_*BW<<l-v=EJf+~lP2Pi-V&U{~2p`dydB#4C3_1}QHA7($O z#|=`hK&1Y=3=H70YM6dly$2iDg^k}rlLI{c!{Xr?n*FeGlpi2Z;c-9AAFt8$GeFxN z3{VTu(=SXPjQ)bAA2zeH}19E_izvRUC6X7bMTj zzymLrL3|iyX5eLjmA5c45Y5bhWjq&LMj*ziLF!7s=W)Nq9 z=Wmbz6f-kmj?06jm>DE7#{D7UuwD{~2f?6p$-?jvlpP@gP!iNWVq)NBsDajtP+^7; zaJ`SIJ|3K(G5re~g9Dkf0L`362GA%nFT({iaZtSqQjgwWTm?2C;V+Q8L2lX!7RL<# z2T=22{ZEiu5Pkzzj~S2LjG*~LOn=EUg2ur489?KyApOwl0cSX9fYl2!IB-JxaUeY) zYz7v`3?Gmjw(xfXdr$}?T?K>9kzmk(mG>Y67#J85z~Y$cDidlBtbTtN*opm_GLH!jW1}x>Lera(LXi`-_Jvmvw!on=x z%tRM5wVIw+s&ArauCJ#DMHsTlMJ1Vf`3%X4IXOr(UJS`aCB-GBX=!@N4Ds<^&Oz}$ zp1~pU@eGLBviOqR_+-$0Suq1_4h%^sK0YNsK0PNtDKRHLr6j+oI6kqof+0CSw;(6A zBsE3P%-qBTG{uFf2s|qW>F&m-=9LsxGC(@WDW$o&l??IF?lPDc59(K=D0TKt%uaQ7 z&d)8#%tStK_wjdf^ojR(a|?D2i4Spf@^Otvo~r|Q{qapY xf_m`K89bcRf)GQ{rxhI>kf;1m=MItL736PXrV?SEL(C{b<}OK^1qFu|0{~f<)LZ}n literal 0 HcmV?d00001 diff --git a/replication_listener/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin b/replication_listener/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..933ec9f91bc2b236a606a8d401a6ef39b65352b8 GIT binary patch literal 8755 zcmb<-^>JfjWMqH=CI&kO5YK?k0W1U|85mXwg1KPAfx&`-lfi*OjzOA%je&uIm4Sf) zrp^J%g3&)fhA}WOz-SJz2@DL(3=9k`3=9kwOb`JJCWr|zS_UG_0HdMCfZYbN4=Rmf zGe}H@6GSpFz-R^r1+V}}Kgg{Dd|)nv0AB)_0izY5?$ChJFnu5{NS_8&p9WMPjJ^Oe zn1O)-M#KCE@*4<;fDB+@UB8t)9{6w>JtSWU}gK)$Hv3$j2k{Xx{6~@1ZdXb`}Pq!T^hTRH+mO z1_mKiAutaV9*`6U=E4b(yReCaViTKq8v_G_0D}aBfdC|3!VKz#iYuUr?*xlWGFYIA z_k-Op!GNxQ76Su=AOk;x0yI6r(#=Y+zjzrM*g-C1VCaNeJQ*quD+i#$4Evz=qPw#Y zs@?`_jx|)nX0SLn!w*)7`A}hoGO#!=g8On` z%H(8VU}880;WGT-hol=&z5wMNs4#;BG<|^b5X>f!oJaE;ju+7k3=AI4M>r0HL?HOT z=_gJFhX1NxI29Q9x>+Z3DlmAo9w=e@e*tV+njXJ=3&=nQetCu+<^l-} zp&q)R^yJa}gU_S$X*pBu;T<4(kftxO`$1CwAMneAk_N*L5D%vQ;16bx&Zi!ohdd6x zviD%T;L&-^Tj^M0F#=zRL3?*IS)vBy}|I29Ne zKOYA9*Q42%gI$4vp+p+)1i{e#3VaC+9-UABUxJ)HMdg79&U&}6~LfShU=7(D&l{H=;Jt5WmR;!_GrilPlH zVj+TwNtw~EK5nrL42;su)*8@qe$U_k|3P)!i+}(B=YZ<1|NsB@FfcIe`Tzg_76t|e zP(1(&ImW6W2F3~jMrj^)jtPtm44`rtRQDJB{r?|aUh)aJ@kw~`bC+{8FxX33YZ)h2i0*Pb3kSHjDP?CgUhzS9@aLtcs_?__I{>5 z=3W-22tJTHkUK!`V)+06KdO&Gwv6J@5Eu=C(GVE^As_&4zkPuA|6o1_wR1siP#Xk9 z^MD9YzYf~2!I;FkFMu+)x_S-vBX1K?D+pw~?UjBUqUaQxB>SK*~Yw zCJ-$SA{ZDL9zgvI6F&jv!`uzi59*tMw7~fP{zLq;0;>K$ln)En4^Vy`R34<49vIe- zMYl^0E&gHh?#|9u3L2qFrFkW#`aYR?iADJeCVJ+2M!H6&U_nDo2%iDFN;5rUT|)yT zrDl4@3PuKoMh2FK777{#MX5!pIjM=oshSK7dc~EwC5cH4dc`G05IO_K%FHWCEh=Ep z%gZlG)pK<6)GbL&hw{?%O7)UTGjmdOGgBD!K)j5^;tU48l*+u~%3KItQUsAHOD!tS z%+EvN#1}E>6{Y4Rf;2!`1vw=Qdf?W)UP)?234K{K%V3D6 zzXY0ZOP~gV+G#MgAR1jisEzmS|Nnfbat2trFas(O1JVQ?ivlrW`4PkhVLt{222hy* zRn7n_H-10`Hb6ZLDpx>En0{FP4TFwXK$SDV%Apldhr-GokX;}QG6O`za2x{zsA&mz zKP;cuK?^pR|DjxXs~cutHUk3#s0@MeVdcmQs0LX0qq`qwe-*Sn4$}`Sw@yIy!~6;5 zGNAh()L{d86{a6n4nBZtK-Lec8_@OlLC1qY?gP0AHXiT;svmt&24ojV9Snoo?w~M* z=@)>OPXbT@nEzqwLE|qVHjJKvWW5OGAOT~TJ}`%Yf#Da_jWGX%hEYIr z22hRY>e18hf2jQiAWcXZrXN&3Aqj)WenEUto&nLI=>wSEAU+JwhS?8O2$ewNg3W{F z9jFp8r2%bdCO{)jmVto*l$T)sft5?3{E5x}4tcOK46D%$N4FoM3OmWnz{mirPmxtH zGcdu&{ZYl48DRAvsyGY0UPBdUh1XZ8;%xAG2vwY&0am}DigPf)>J3zJP6k+gfGW-f zZ||atV~*#7l1>rYfb1>tPn-MgBi0Ln7M$o(yKLcn47Nj56@3Vx8 zgT`S&;?QaXXZW~*)eABxa6m<3jkId8NKERLBD_b`Iyu`uUd&M;!1_j&;q$4s}M8L`h- z{Q{ehC0{dv?1i}+LCZ5i%z@QsFc}>t?C!BF&m-=9LsxGC(@WDW$o&l??IF?lPDc59(K=D0TKt%uaQVh;Yu& zEy&DCEpl}7)JrZXV2F?MF*M7}OUsW(ntuR^T7U%;lQJ3NS{aiqEgkVp@ z*eLdZrsPtJ^W!rT^HM;wgD#PNj=rAG4Dra$0naru#K(vDI>StK_wjdf^ojR(a|?D2 zi4Spf@^Otvp7H|^4B(rG1oiKs6M?YFM2H^rxkm>Fa12}qb<5c80b S2~J$osIcUKI*AGjLk0lli_zTx literal 0 HcmV?d00001 diff --git a/replication_listener/CMakeFiles/CMakeDirectoryInformation.cmake b/replication_listener/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..592109dfe --- /dev/null +++ b/replication_listener/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jan/skysql/skygateway/replication_listener") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jan/skysql/skygateway/replication_listener") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/replication_listener/CMakeFiles/CMakeOutput.log b/replication_listener/CMakeFiles/CMakeOutput.log new file mode 100644 index 000000000..9a82c165c --- /dev/null +++ b/replication_listener/CMakeFiles/CMakeOutput.log @@ -0,0 +1,1315 @@ +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1698266872/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1698266872.dir/build.make CMakeFiles/cmTryCompileExec1698266872.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1698266872.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec1698266872.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec1698266872 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1698266872.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec1698266872.dir/testCCompiler.c.o -o cmTryCompileExec1698266872 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1274722095/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1274722095.dir/build.make CMakeFiles/cmTryCompileExec1274722095.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec1274722095 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1274722095.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec1274722095 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1274722095' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1274722095 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec1274722095/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec1274722095.dir/build.make CMakeFiles/cmTryCompileExec1274722095.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec1274722095] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1274722095.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec1274722095 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1274722095' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1274722095 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec1274722095] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec1274722095.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1204128431/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1204128431.dir/build.make CMakeFiles/cmTryCompileExec1204128431.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1204128431.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1204128431.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec1204128431 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1204128431.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec1204128431.dir/testCXXCompiler.cxx.o -o cmTryCompileExec1204128431 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1561451566/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1561451566.dir/build.make CMakeFiles/cmTryCompileExec1561451566.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec1561451566 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1561451566.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1561451566 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1561451566' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1561451566 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec1561451566/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec1561451566.dir/build.make CMakeFiles/cmTryCompileExec1561451566.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec1561451566] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1561451566.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1561451566 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1561451566' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1561451566 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec1561451566] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec1561451566.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec3896775290/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3896775290.dir/build.make CMakeFiles/cmTryCompileExec3896775290.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3896775290.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec3896775290.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec3896775290 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3896775290.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec3896775290.dir/testCCompiler.c.o -o cmTryCompileExec3896775290 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec3156426796/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3156426796.dir/build.make CMakeFiles/cmTryCompileExec3156426796.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec3156426796 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3156426796.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3156426796 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3156426796' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3156426796 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec3156426796/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3156426796.dir/build.make CMakeFiles/cmTryCompileExec3156426796.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec3156426796] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3156426796.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3156426796 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3156426796' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3156426796 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3156426796] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec3156426796.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2690149236/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2690149236.dir/build.make CMakeFiles/cmTryCompileExec2690149236.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2690149236.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2690149236.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec2690149236 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2690149236.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec2690149236.dir/testCXXCompiler.cxx.o -o cmTryCompileExec2690149236 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec116321793/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec116321793.dir/build.make CMakeFiles/cmTryCompileExec116321793.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec116321793 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec116321793.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec116321793 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec116321793' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec116321793 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec116321793/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec116321793.dir/build.make CMakeFiles/cmTryCompileExec116321793.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec116321793] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec116321793.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec116321793 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec116321793' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec116321793 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec116321793] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec116321793.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec284927836/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec284927836.dir/build.make CMakeFiles/cmTryCompileExec284927836.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec284927836.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec284927836.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec284927836 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec284927836.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec284927836.dir/testCCompiler.c.o -o cmTryCompileExec284927836 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec3976351290/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3976351290.dir/build.make CMakeFiles/cmTryCompileExec3976351290.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec3976351290 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3976351290.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3976351290 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3976351290' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3976351290 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec3976351290/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3976351290.dir/build.make CMakeFiles/cmTryCompileExec3976351290.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec3976351290] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3976351290.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec3976351290 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3976351290' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3976351290 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3976351290] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec3976351290.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1092028207/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1092028207.dir/build.make CMakeFiles/cmTryCompileExec1092028207.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1092028207.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1092028207.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec1092028207 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1092028207.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec1092028207.dir/testCXXCompiler.cxx.o -o cmTryCompileExec1092028207 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec3064794821/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec3064794821.dir/build.make CMakeFiles/cmTryCompileExec3064794821.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec3064794821 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3064794821.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec3064794821 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3064794821' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3064794821 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec3064794821/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec3064794821.dir/build.make CMakeFiles/cmTryCompileExec3064794821.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec3064794821] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec3064794821.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec3064794821 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec3064794821' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec3064794821 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec3064794821] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec3064794821.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1210336427/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1210336427.dir/build.make CMakeFiles/cmTryCompileExec1210336427.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1210336427.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec1210336427.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec1210336427 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1210336427.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec1210336427.dir/testCCompiler.c.o -o cmTryCompileExec1210336427 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2253613549/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2253613549.dir/build.make CMakeFiles/cmTryCompileExec2253613549.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec2253613549 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2253613549.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2253613549 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2253613549' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2253613549 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec2253613549/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec2253613549.dir/build.make CMakeFiles/cmTryCompileExec2253613549.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec2253613549] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2253613549.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2253613549 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2253613549' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2253613549 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec2253613549] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec2253613549.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2266787895/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2266787895.dir/build.make CMakeFiles/cmTryCompileExec2266787895.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2266787895.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2266787895.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec2266787895 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2266787895.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec2266787895.dir/testCXXCompiler.cxx.o -o cmTryCompileExec2266787895 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1083809017/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1083809017.dir/build.make CMakeFiles/cmTryCompileExec1083809017.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec1083809017 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1083809017.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1083809017 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1083809017' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1083809017 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec1083809017/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec1083809017.dir/build.make CMakeFiles/cmTryCompileExec1083809017.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec1083809017] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1083809017.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1083809017 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1083809017' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1083809017 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec1083809017] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec1083809017.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1547078472/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1547078472.dir/build.make CMakeFiles/cmTryCompileExec1547078472.dir/build +make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec1547078472.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec1547078472.dir/testCCompiler.c.o -c /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec1547078472 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1547078472.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec1547078472.dir/testCCompiler.c.o -o cmTryCompileExec1547078472 -rdynamic +make[1]: Leaving directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec656283090/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec656283090.dir/build.make CMakeFiles/cmTryCompileExec656283090.dir/build +make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec656283090 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec656283090.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec656283090 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec656283090' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec656283090 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec656283090/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec656283090.dir/build.make CMakeFiles/cmTryCompileExec656283090.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec656283090] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec656283090.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec656283090 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec656283090' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec656283090 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec656283090] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec656283090.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1591467853/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1591467853.dir/build.make CMakeFiles/cmTryCompileExec1591467853.dir/build +make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1591467853.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1591467853.dir/testCXXCompiler.cxx.o -c /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec1591467853 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1591467853.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec1591467853.dir/testCXXCompiler.cxx.o -o cmTryCompileExec1591467853 -rdynamic +make[1]: Leaving directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec522770924/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec522770924.dir/build.make CMakeFiles/cmTryCompileExec522770924.dir/build +make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec522770924 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec522770924.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec522770924 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec522770924' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec522770924 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec522770924/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec522770924.dir/build.make CMakeFiles/cmTryCompileExec522770924.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec522770924] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec522770924.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec522770924 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec522770924' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec522770924 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec522770924] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec522770924.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + diff --git a/replication_listener/CMakeFiles/CMakeSystem.cmake b/replication_listener/CMakeFiles/CMakeSystem.cmake new file mode 100644 index 000000000..5a34ce942 --- /dev/null +++ b/replication_listener/CMakeFiles/CMakeSystem.cmake @@ -0,0 +1,15 @@ + + +SET(CMAKE_SYSTEM "Linux-3.5.0-28-generic") +SET(CMAKE_SYSTEM_NAME "Linux") +SET(CMAKE_SYSTEM_VERSION "3.5.0-28-generic") +SET(CMAKE_SYSTEM_PROCESSOR "x86_64") + +SET(CMAKE_HOST_SYSTEM "Linux-3.5.0-28-generic") +SET(CMAKE_HOST_SYSTEM_NAME "Linux") +SET(CMAKE_HOST_SYSTEM_VERSION "3.5.0-28-generic") +SET(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +SET(CMAKE_CROSSCOMPILING "FALSE") + +SET(CMAKE_SYSTEM_LOADED 1) diff --git a/replication_listener/CMakeFiles/CompilerIdC/CMakeCCompilerId.c b/replication_listener/CMakeFiles/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..3583176bf --- /dev/null +++ b/replication_listener/CMakeFiles/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,361 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_C = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMC__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMC__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI_DSP" + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com + Not supported yet by CMake +#elif defined(__IAR_SYSTEMS_ICC__) +# define COMPILER_ID "IAR" */ + +/* sdcc, the small devices C compiler for embedded systems, + http://sdcc.sourceforge.net */ +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif + (void)argv; + return require; +} +#endif diff --git a/replication_listener/CMakeFiles/CompilerIdC/a.out b/replication_listener/CMakeFiles/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..54da221258c56ef64512f705a10fcfd30658bbf7 GIT binary patch literal 8838 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 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMCPP__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMCPP__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI_DSP" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif + (void)argv; + return require; +} diff --git a/replication_listener/CMakeFiles/CompilerIdCXX/a.out b/replication_listener/CMakeFiles/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..aa895a1691e2ee864ea5057d8e3d47d1295cc397 GIT binary patch literal 8847 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 Q1I5SSP=q)HG`YwC0MHqdsQ>@~ literal 0 HcmV?d00001 diff --git a/replication_listener/CMakeFiles/Makefile.cmake b/replication_listener/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..537ddee34 --- /dev/null +++ b/replication_listener/CMakeFiles/Makefile.cmake @@ -0,0 +1,63 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# The generator used is: +SET(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +SET(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/CMakeCCompiler.cmake" + "CMakeFiles/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeSystem.cmake" + "CMakeLists.txt" + "examples/CMakeLists.txt" + "examples/mysql2lucene/CMakeLists.txt" + "src/CMakeLists.txt" + "/usr/share/cmake-2.8/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-2.8/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-2.8/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-2.8/Modules/CPack.cmake" + "/usr/share/cmake-2.8/Modules/CPackComponent.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-2.8/Modules/FindBoost.cmake" + "/usr/share/cmake-2.8/Modules/FindGTest.cmake" + "/usr/share/cmake-2.8/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-2.8/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-2.8/Modules/InstallRequiredSystemLibraries.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux.cmake" + "/usr/share/cmake-2.8/Modules/Platform/UnixPaths.cmake" + "/usr/share/cmake-2.8/Templates/CPackConfig.cmake.in" + ) + +# The corresponding makefile is: +SET(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +SET(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + "src/CMakeFiles/CMakeDirectoryInformation.cmake" + "examples/CMakeFiles/CMakeDirectoryInformation.cmake" + "examples/mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +SET(CMAKE_DEPEND_INFO_FILES + "src/CMakeFiles/replication_shared.dir/DependInfo.cmake" + "src/CMakeFiles/replication_static.dir/DependInfo.cmake" + "examples/CMakeFiles/basic-1.dir/DependInfo.cmake" + "examples/CMakeFiles/basic-2.dir/DependInfo.cmake" + "examples/CMakeFiles/jan_test.dir/DependInfo.cmake" + "examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake" + ) diff --git a/replication_listener/CMakeFiles/Makefile2 b/replication_listener/CMakeFiles/Makefile2 new file mode 100644 index 000000000..6516a10cf --- /dev/null +++ b/replication_listener/CMakeFiles/Makefile2 @@ -0,0 +1,311 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# The main recursive all target +all: +.PHONY : all + +# The main recursive preinstall target +preinstall: +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +#============================================================================= +# Directory level rules for directory src + +# Convenience name for "all" pass in the directory. +src/all: src/CMakeFiles/replication_shared.dir/all +src/all: src/CMakeFiles/replication_static.dir/all +.PHONY : src/all + +# Convenience name for "clean" pass in the directory. +src/clean: src/CMakeFiles/replication_shared.dir/clean +src/clean: src/CMakeFiles/replication_static.dir/clean +.PHONY : src/clean + +# Convenience name for "preinstall" pass in the directory. +src/preinstall: +.PHONY : src/preinstall + +#============================================================================= +# Target rules for target src/CMakeFiles/replication_shared.dir + +# All Build rule for target. +src/CMakeFiles/replication_shared.dir/all: + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/depend + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 + @echo "Built target replication_shared" +.PHONY : src/CMakeFiles/replication_shared.dir/all + +# Include target in all. +all: src/CMakeFiles/replication_shared.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +src/CMakeFiles/replication_shared.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 15 + $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/replication_shared.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : src/CMakeFiles/replication_shared.dir/rule + +# Convenience name for target. +replication_shared: src/CMakeFiles/replication_shared.dir/rule +.PHONY : replication_shared + +# clean rule for target. +src/CMakeFiles/replication_shared.dir/clean: + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/clean +.PHONY : src/CMakeFiles/replication_shared.dir/clean + +# clean rule for target. +clean: src/CMakeFiles/replication_shared.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target src/CMakeFiles/replication_static.dir + +# All Build rule for target. +src/CMakeFiles/replication_static.dir/all: + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/depend + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 + @echo "Built target replication_static" +.PHONY : src/CMakeFiles/replication_static.dir/all + +# Include target in all. +all: src/CMakeFiles/replication_static.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +src/CMakeFiles/replication_static.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 15 + $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/replication_static.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : src/CMakeFiles/replication_static.dir/rule + +# Convenience name for target. +replication_static: src/CMakeFiles/replication_static.dir/rule +.PHONY : replication_static + +# clean rule for target. +src/CMakeFiles/replication_static.dir/clean: + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/clean +.PHONY : src/CMakeFiles/replication_static.dir/clean + +# clean rule for target. +clean: src/CMakeFiles/replication_static.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory examples + +# Convenience name for "all" pass in the directory. +examples/all: examples/CMakeFiles/basic-1.dir/all +examples/all: examples/CMakeFiles/basic-2.dir/all +examples/all: examples/CMakeFiles/jan_test.dir/all +examples/all: examples/mysql2lucene/all +.PHONY : examples/all + +# Convenience name for "clean" pass in the directory. +examples/clean: examples/CMakeFiles/basic-1.dir/clean +examples/clean: examples/CMakeFiles/basic-2.dir/clean +examples/clean: examples/CMakeFiles/jan_test.dir/clean +examples/clean: examples/mysql2lucene/clean +.PHONY : examples/clean + +# Convenience name for "preinstall" pass in the directory. +examples/preinstall: examples/mysql2lucene/preinstall +.PHONY : examples/preinstall + +#============================================================================= +# Target rules for target examples/CMakeFiles/basic-1.dir + +# All Build rule for target. +examples/CMakeFiles/basic-1.dir/all: + $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/depend + $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 1 + @echo "Built target basic-1" +.PHONY : examples/CMakeFiles/basic-1.dir/all + +# Build rule for subdir invocation for target. +examples/CMakeFiles/basic-1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/basic-1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : examples/CMakeFiles/basic-1.dir/rule + +# Convenience name for target. +basic-1: examples/CMakeFiles/basic-1.dir/rule +.PHONY : basic-1 + +# clean rule for target. +examples/CMakeFiles/basic-1.dir/clean: + $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/clean +.PHONY : examples/CMakeFiles/basic-1.dir/clean + +# clean rule for target. +clean: examples/CMakeFiles/basic-1.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target examples/CMakeFiles/basic-2.dir + +# All Build rule for target. +examples/CMakeFiles/basic-2.dir/all: + $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/depend + $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 2 + @echo "Built target basic-2" +.PHONY : examples/CMakeFiles/basic-2.dir/all + +# Build rule for subdir invocation for target. +examples/CMakeFiles/basic-2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/basic-2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : examples/CMakeFiles/basic-2.dir/rule + +# Convenience name for target. +basic-2: examples/CMakeFiles/basic-2.dir/rule +.PHONY : basic-2 + +# clean rule for target. +examples/CMakeFiles/basic-2.dir/clean: + $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/clean +.PHONY : examples/CMakeFiles/basic-2.dir/clean + +# clean rule for target. +clean: examples/CMakeFiles/basic-2.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target examples/CMakeFiles/jan_test.dir + +# All Build rule for target. +examples/CMakeFiles/jan_test.dir/all: + $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/depend + $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 3 + @echo "Built target jan_test" +.PHONY : examples/CMakeFiles/jan_test.dir/all + +# Build rule for subdir invocation for target. +examples/CMakeFiles/jan_test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/jan_test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : examples/CMakeFiles/jan_test.dir/rule + +# Convenience name for target. +jan_test: examples/CMakeFiles/jan_test.dir/rule +.PHONY : jan_test + +# clean rule for target. +examples/CMakeFiles/jan_test.dir/clean: + $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/clean +.PHONY : examples/CMakeFiles/jan_test.dir/clean + +# clean rule for target. +clean: examples/CMakeFiles/jan_test.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory examples/mysql2lucene + +# Convenience name for "all" pass in the directory. +examples/mysql2lucene/all: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/all +.PHONY : examples/mysql2lucene/all + +# Convenience name for "clean" pass in the directory. +examples/mysql2lucene/clean: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : examples/mysql2lucene/clean + +# Convenience name for "preinstall" pass in the directory. +examples/mysql2lucene/preinstall: +.PHONY : examples/mysql2lucene/preinstall + +#============================================================================= +# Target rules for target examples/mysql2lucene/CMakeFiles/mysql2lucene.dir + +# All Build rule for target. +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/all: src/CMakeFiles/replication_static.dir/all + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles 4 5 6 7 8 + @echo "Built target mysql2lucene" +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/all + +# Build rule for subdir invocation for target. +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 20 + $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule + +# Convenience name for target. +mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule +.PHONY : mysql2lucene + +# clean rule for target. +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean: + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean + +# clean rule for target. +clean: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/CMakeFiles/TargetDirectories.txt b/replication_listener/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..9db2046f0 --- /dev/null +++ b/replication_listener/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,6 @@ +/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-1.dir +/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-2.dir +/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/jan_test.dir +/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir +/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir +/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir diff --git a/replication_listener/CMakeFiles/cmake.check_cache b/replication_listener/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..3dccd7317 --- /dev/null +++ b/replication_listener/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/replication_listener/CMakeFiles/progress.marks b/replication_listener/CMakeFiles/progress.marks new file mode 100644 index 000000000..64bb6b746 --- /dev/null +++ b/replication_listener/CMakeFiles/progress.marks @@ -0,0 +1 @@ +30 diff --git a/replication_listener/CMakeLists.txt b/replication_listener/CMakeLists.txt new file mode 100644 index 000000000..ad5c00566 --- /dev/null +++ b/replication_listener/CMakeLists.txt @@ -0,0 +1,159 @@ +project (mysql-5.6-labs-binary-log-api) +cmake_minimum_required (VERSION 2.6) + +set(MySQL_BINLOG_VERSION_MAJOR "0") +set(MySQL_BINLOG_VERSION_MINOR "0.1") +set(MRL_VERSION "${MySQL_BINLOG_VERSION_MAJOR}.${MySQL_BINLOG_VERSION_MINOR}") + +set(CMAKE_VERSION_STRING "${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}") + +# Options for building +option(WITH_SERVER_TESTS + "Build the unit test suite with tests requiring a server" + OFF) + +# GTest download variables +set(GTEST_VERSION "1.5.0") +set(GTEST_PACKAGE_NAME "gtest-${GTEST_VERSION}") +set(GTEST_TARBALL "${GTEST_PACKAGE_NAME}.tar.gz") +set(GTEST_DOWNLOAD_URL "http://googletest.googlecode.com/files/${GTEST_TARBALL}") +if(NOT DOWNLOAD_ROOT) + set(DOWNLOAD_ROOT ${CMAKE_SOURCE_DIR}/source_downloads) +endif() +set(GTEST_SOURCE_DIR ${DOWNLOAD_ROOT}/${GTEST_PACKAGE_NAME}) + +# General settings +set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) +set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib) +include_directories(include) +link_directories(${PROJECT_BINARY_DIR}/lib) + +# ---------- Find Boost Headers/Libraries ----------------------- +SET(Boost_DEBUG FALSE) +SET(Boost_FIND_REQUIRED TRUE) +SET(Boost_FIND_QUIETLY TRUE) +SET(Boost_USE_STATIC_LIBS FALSE) +SET(Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0") +FIND_PACKAGE(Boost REQUIRED system thread) + +# --------- Find crypt +FIND_LIBRARY(LIB_CRYPTO crypto /opt/local/lib /opt/lib /usr/lib /usr/local/lib) +LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) +INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) + +# Locate Google Test package and enable tests if it is found +find_package(GTest ${GTEST_VERSION} QUIET) + +if (NOT GTEST_FOUND) + if (NOT ENABLE_DOWNLOADS) + # Give one-time warning + if (NOT ONETIME_GTEST_WARNING) + message(STATUS + "Googletest was not found. gtest-based unit tests will be disabled. " + "You can run cmake . -DENABLE_DOWNLOADS=1 to automatically download and " + "build required components from source.") + SET(ONETIME_GTEST_WARNING 1 CACHE INTERNAL "") + endif (NOT ONETIME_GTEST_WARNING) + else (NOT ENABLE_DOWNLOADS) + # Download gtest source + if (NOT EXISTS ${GTEST_SOURCE_DIR} AND + NOT EXISTS ${DOWNLOAD_ROOT}/${GTEST_TARBALL}) + if (${CMAKE_VERSION_STRING} LESS "2.8") + # In versions earlier than 2.8, try wget for downloading + find_program(WGET_EXECUTABLE wget) + mark_as_advanced(WGET_EXECUTABLE) + if (WGET_EXECUTABLE) + if (NOT EXISTS ${DOWNLOAD_ROOT}) + make_directory(${DOWNLOAD_ROOT}) + endif (NOT EXISTS ${DOWNLOAD_ROOT}) + execute_process(COMMAND ${WGET_EXECUTABLE} -T 30 ${GTEST_DOWNLOAD_URL} + WORKING_DIRECTORY ${DOWNLOAD_ROOT} RESULT_VARIABLE ERR) + if (ERR EQUAL 0) + SET(DOWNLOAD_SUCCEEDED 1) + endif (ERR EQUAL 0) + endif (WGET_EXECUTABLE) + else (${CMAKE_VERSION_STRING} LESS "2.8") + # Use CMake builtin download capabilities + file(DOWNLOAD ${GTEST_DOWNLOAD_URL} ${DOWNLOAD_ROOT}/${GTEST_TARBALL} + TIMEOUT 30 + STATUS ERR) + if (ERR EQUAL 0) + SET(DOWNLOAD_SUCCEEDED 1) + endif (ERR EQUAL 0) + endif(${CMAKE_VERSION_STRING} LESS "2.8") + + if (NOT DOWNLOAD_SUCCEEDED) + message(STATUS + "To enable google test, please download ${GTEST_DOWNLOAD_URL} " + "to the directory ${DOWNLOAD_ROOT}") + else (NOT DOWNLOAD_SUCCEEDED) + message(STATUS + "Successfully downloaded ${GTEST_DOWNLOAD_URL} to ${DOWNLOAD_ROOT}") + # Unpack tarball + execute_process ( + COMMAND ${CMAKE_COMMAND} -E tar xfz "${DOWNLOAD_ROOT}/${GTEST_TARBALL}" + WORKING_DIRECTORY "${DOWNLOAD_ROOT}" + OUTPUT_QUIET + ERROR_QUIET + ) + set(GTEST_DOWNLOADED 1 CACHE INTERNAL "") + set(GTEST_FOUND 1 CACHE INTERNAL "") + endif (NOT DOWNLOAD_SUCCEEDED) + else(NOT EXISTS ${GTEST_SOURCE_DIR} AND NOT EXISTS ${DOWNLOAD_ROOT}/${GTEST_TARBALL}) + set(GTEST_DOWNLOADED 1 CACHE INTERNAL "") + set(GTEST_FOUND 1 CACHE INTERNAL "") + endif(NOT EXISTS ${GTEST_SOURCE_DIR} AND NOT EXISTS ${DOWNLOAD_ROOT}/${GTEST_TARBALL}) + endif (NOT ENABLE_DOWNLOADS) +endif (NOT GTEST_FOUND) + +if (GTEST_DOWNLOADED) + # Build gtest library + include_directories( + ${GTEST_SOURCE_DIR} + ${GTEST_SOURCE_DIR}/include + ) + add_library(gtest STATIC ${GTEST_SOURCE_DIR}/src/gtest-all.cc) + + # Set CMake variables to make FindPackage(GTest) happy next time. + SET(GTEST_FOUND 1 CACHE INTERNAL "") + SET(GTEST_LIBRARY gtest CACHE INTERNAL "") + SET(GTEST_LIBRARIES gtest CACHE INTERNAL "") + SET(GTEST_MAIN_LIBRARY no_gtest_main_library CACHE INTERNAL "") + SET(GTEST_INCLUDE_DIRS ${GTEST_SOURCE_DIR}/include CACHE INTERNAL "") + SET(GTEST_INCLUDE_DIR "${GTEST_SOURCE_DIR}/include" CACHE INTERNAL "") +endif (GTEST_DOWNLOADED) + +if(GTEST_FOUND) + message(STATUS "Tests from subdirectory 'tests' added") + enable_testing(true) + include_directories(${GTEST_INCLUDE_DIRS}) + add_subdirectory(tests) +endif(GTEST_FOUND) + +add_subdirectory(src) + +# -- Build the examples +add_subdirectory(examples EXCLUDE_FROM_ALL) + +# Configure installation +install(DIRECTORY include DESTINATION . FILES_MATCHING PATTERN "*.h") + +include(InstallRequiredSystemLibraries) + +# Configure packaging +SET(CPACK_PACKAGE_NAME "mysql-5.6-labs-binary-log-api") +SET(CPACK_PACKAGE_VERSION_MAJOR "${MySQL_BINLOG_VERSION_MAJOR}") +SET(CPACK_PACKAGE_VERSION_MINOR "${MySQL_BINLOG_VERSION_MINOR}") +SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY + "mysql-5.6-labs-binary-log-api: a MySQL client library for interfacing with the binary log mechanism.") + +SET(CPACK_GENERATOR "STGZ;TGZ;TZ;DEB;RPM") + +# Get package name correctly formatted with name, version, and platform +execute_process(COMMAND uname -m OUTPUT_VARIABLE SYSTEM_ARCH OUTPUT_STRIP_TRAILING_WHITESPACE) +SET(CPACK_PACKAGE_FILE_NAME + "${CPACK_PACKAGE_NAME}.${MRL_VERSION}.${CMAKE_SYSTEM_NAME}.${SYSTEM_ARCH}") + +SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Oracle Corporation") + +include(CPack) diff --git a/replication_listener/COPYING b/replication_listener/COPYING new file mode 100644 index 000000000..e37680cf1 --- /dev/null +++ b/replication_listener/COPYING @@ -0,0 +1,280 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS diff --git a/replication_listener/CPackConfig.cmake b/replication_listener/CPackConfig.cmake new file mode 100644 index 000000000..dda667004 --- /dev/null +++ b/replication_listener/CPackConfig.cmake @@ -0,0 +1,65 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +SET(CPACK_BINARY_BUNDLE "") +SET(CPACK_BINARY_CYGWIN "") +SET(CPACK_BINARY_DEB "") +SET(CPACK_BINARY_DRAGNDROP "") +SET(CPACK_BINARY_NSIS "") +SET(CPACK_BINARY_OSXX11 "") +SET(CPACK_BINARY_PACKAGEMAKER "") +SET(CPACK_BINARY_RPM "") +SET(CPACK_BINARY_STGZ "") +SET(CPACK_BINARY_TBZ2 "") +SET(CPACK_BINARY_TGZ "") +SET(CPACK_BINARY_TZ "") +SET(CPACK_BINARY_ZIP "") +SET(CPACK_CMAKE_GENERATOR "Unix Makefiles") +SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Oracle Corporation") +SET(CPACK_GENERATOR "STGZ;TGZ;TZ;DEB;RPM") +SET(CPACK_INSTALL_CMAKE_PROJECTS "/home/jan/skysql/skygateway/replication_listener;mysql-5.6-labs-binary-log-api;ALL;/") +SET(CPACK_INSTALL_PREFIX "/usr/local") +SET(CPACK_MODULE_PATH "") +SET(CPACK_NSIS_DISPLAY_NAME "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_NSIS_INSTALLER_ICON_CODE "") +SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +SET(CPACK_NSIS_PACKAGE_NAME "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_OUTPUT_CONFIG_FILE "/home/jan/skysql/skygateway/replication_listener/CPackConfig.cmake") +SET(CPACK_PACKAGE_DEFAULT_LOCATION "/") +SET(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-2.8/Templates/CPack.GenericDescription.txt") +SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "mysql-5.6-labs-binary-log-api: a MySQL client library for interfacing with the binary log mechanism.") +SET(CPACK_PACKAGE_FILE_NAME "mysql-5.6-labs-binary-log-api.0.0.1.Linux.x86_64") +SET(CPACK_PACKAGE_INSTALL_DIRECTORY "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_PACKAGE_NAME "mysql-5.6-labs-binary-log-api") +SET(CPACK_PACKAGE_RELOCATABLE "true") +SET(CPACK_PACKAGE_VENDOR "Humanity") +SET(CPACK_PACKAGE_VERSION "0.0.1.1") +SET(CPACK_PACKAGE_VERSION_MAJOR "0") +SET(CPACK_PACKAGE_VERSION_MINOR "0.1") +SET(CPACK_PACKAGE_VERSION_PATCH "1") +SET(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-2.8/Templates/CPack.GenericLicense.txt") +SET(CPACK_RESOURCE_FILE_README "/usr/share/cmake-2.8/Templates/CPack.GenericDescription.txt") +SET(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-2.8/Templates/CPack.GenericWelcome.txt") +SET(CPACK_SET_DESTDIR "OFF") +SET(CPACK_SOURCE_CYGWIN "") +SET(CPACK_SOURCE_GENERATOR "TGZ;TBZ2;TZ") +SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake") +SET(CPACK_SOURCE_TBZ2 "ON") +SET(CPACK_SOURCE_TGZ "ON") +SET(CPACK_SOURCE_TZ "ON") +SET(CPACK_SOURCE_ZIP "OFF") +SET(CPACK_SYSTEM_NAME "Linux") +SET(CPACK_TOPLEVEL_TAG "Linux") diff --git a/replication_listener/CPackSourceConfig.cmake b/replication_listener/CPackSourceConfig.cmake new file mode 100644 index 000000000..fdfa2a69a --- /dev/null +++ b/replication_listener/CPackSourceConfig.cmake @@ -0,0 +1,72 @@ +# This file will be configured to contain variables for CPack. These variables +# should be set in the CMake list file of the project before CPack module is +# included. The list of available CPACK_xxx variables and their associated +# documentation may be obtained using +# cpack --help-variable-list +# +# Some variables are common to all generators (e.g. CPACK_PACKAGE_NAME) +# and some are specific to a generator +# (e.g. CPACK_NSIS_EXTRA_INSTALL_COMMANDS). The generator specific variables +# usually begin with CPACK__xxxx. + + +SET(CPACK_BINARY_BUNDLE "") +SET(CPACK_BINARY_CYGWIN "") +SET(CPACK_BINARY_DEB "") +SET(CPACK_BINARY_DRAGNDROP "") +SET(CPACK_BINARY_NSIS "") +SET(CPACK_BINARY_OSXX11 "") +SET(CPACK_BINARY_PACKAGEMAKER "") +SET(CPACK_BINARY_RPM "") +SET(CPACK_BINARY_STGZ "") +SET(CPACK_BINARY_TBZ2 "") +SET(CPACK_BINARY_TGZ "") +SET(CPACK_BINARY_TZ "") +SET(CPACK_BINARY_ZIP "") +SET(CPACK_CMAKE_GENERATOR "Unix Makefiles") +SET(CPACK_COMPONENT_UNSPECIFIED_HIDDEN "TRUE") +SET(CPACK_COMPONENT_UNSPECIFIED_REQUIRED "TRUE") +SET(CPACK_DEBIAN_PACKAGE_MAINTAINER "Oracle Corporation") +SET(CPACK_GENERATOR "TGZ;TBZ2;TZ") +SET(CPACK_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp$;\\.#;/#") +SET(CPACK_INSTALLED_DIRECTORIES "/home/jan/skysql/skygateway/replication_listener;/") +SET(CPACK_INSTALL_CMAKE_PROJECTS "") +SET(CPACK_INSTALL_PREFIX "/usr/local") +SET(CPACK_MODULE_PATH "") +SET(CPACK_NSIS_DISPLAY_NAME "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_NSIS_INSTALLER_ICON_CODE "") +SET(CPACK_NSIS_INSTALLER_MUI_ICON_CODE "") +SET(CPACK_NSIS_INSTALL_ROOT "$PROGRAMFILES") +SET(CPACK_NSIS_PACKAGE_NAME "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_OUTPUT_CONFIG_FILE "/home/jan/skysql/skygateway/replication_listener/CPackConfig.cmake") +SET(CPACK_PACKAGE_DEFAULT_LOCATION "/") +SET(CPACK_PACKAGE_DESCRIPTION_FILE "/usr/share/cmake-2.8/Templates/CPack.GenericDescription.txt") +SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "mysql-5.6-labs-binary-log-api: a MySQL client library for interfacing with the binary log mechanism.") +SET(CPACK_PACKAGE_FILE_NAME "mysql-5.6-labs-binary-log-api-0.0.1.1-Source") +SET(CPACK_PACKAGE_INSTALL_DIRECTORY "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_PACKAGE_INSTALL_REGISTRY_KEY "mysql-5.6-labs-binary-log-api 0.0.1.1") +SET(CPACK_PACKAGE_NAME "mysql-5.6-labs-binary-log-api") +SET(CPACK_PACKAGE_RELOCATABLE "true") +SET(CPACK_PACKAGE_VENDOR "Humanity") +SET(CPACK_PACKAGE_VERSION "0.0.1.1") +SET(CPACK_PACKAGE_VERSION_MAJOR "0") +SET(CPACK_PACKAGE_VERSION_MINOR "0.1") +SET(CPACK_PACKAGE_VERSION_PATCH "1") +SET(CPACK_RESOURCE_FILE_LICENSE "/usr/share/cmake-2.8/Templates/CPack.GenericLicense.txt") +SET(CPACK_RESOURCE_FILE_README "/usr/share/cmake-2.8/Templates/CPack.GenericDescription.txt") +SET(CPACK_RESOURCE_FILE_WELCOME "/usr/share/cmake-2.8/Templates/CPack.GenericWelcome.txt") +SET(CPACK_SET_DESTDIR "OFF") +SET(CPACK_SOURCE_CYGWIN "") +SET(CPACK_SOURCE_GENERATOR "TGZ;TBZ2;TZ") +SET(CPACK_SOURCE_IGNORE_FILES "/CVS/;/\\.svn/;/\\.bzr/;/\\.hg/;/\\.git/;\\.swp$;\\.#;/#") +SET(CPACK_SOURCE_INSTALLED_DIRECTORIES "/home/jan/skysql/skygateway/replication_listener;/") +SET(CPACK_SOURCE_OUTPUT_CONFIG_FILE "/home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake") +SET(CPACK_SOURCE_PACKAGE_FILE_NAME "mysql-5.6-labs-binary-log-api-0.0.1.1-Source") +SET(CPACK_SOURCE_TBZ2 "ON") +SET(CPACK_SOURCE_TGZ "ON") +SET(CPACK_SOURCE_TOPLEVEL_TAG "Linux-Source") +SET(CPACK_SOURCE_TZ "ON") +SET(CPACK_SOURCE_ZIP "OFF") +SET(CPACK_STRIP_FILES "") +SET(CPACK_SYSTEM_NAME "Linux") +SET(CPACK_TOPLEVEL_TAG "Linux-Source") diff --git a/replication_listener/Doxyfile b/replication_listener/Doxyfile new file mode 100644 index 000000000..3f67e2759 --- /dev/null +++ b/replication_listener/Doxyfile @@ -0,0 +1,1551 @@ +# Doxyfile 1.6.3 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# http://www.gnu.org/software/libiconv for the list of possible encodings. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = "Replication Listener" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = build/doxygen + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like regular Qt-style comments +# (thus requiring an explicit @brief command for a brief description.) + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then Doxygen will +# interpret the first line (until the first dot) of a Qt-style +# comment as the brief description. If set to NO, the comments +# will behave just like regular Qt-style comments (thus requiring +# an explicit \brief command for a brief description.) + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 8 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified +# scopes will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for +# Fortran. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for +# VHDL. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it parses. +# With this tag you can assign which parser to use for a given extension. +# Doxygen has a built-in mapping, but you can override or extend it using this tag. +# The format is ext=language, where ext is a file extension, and language is one of +# the parsers supported by doxygen: IDL, Java, Javascript, C#, C, C++, D, PHP, +# Objective-C, Python, Fortran, VHDL, C, C++. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is Fortran), +# use: inc=Fortran f=C. Note that for custom extensions you also need to set FILE_PATTERNS otherwise the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. +# Doxygen will parse them like normal C++ but will assume all classes use public +# instead of private inheritance when no explicit protection keyword is present. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate getter +# and setter methods for a property. Setting this option to YES (the default) +# will make doxygen to replace the get and set methods by a property in the +# documentation. This will only work if the methods are indeed getting or +# setting a simple type. If this is not the case, or you want to show the +# methods anyway, you should set this option to NO. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +# When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct, union, or enum +# is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically +# be useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. + +TYPEDEF_HIDES_STRUCT = NO + +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# determine which symbols to keep in memory and which to flush to disk. +# When the cache is full, less often used symbols will be written to disk. +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penality. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will rougly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols + +SYMBOL_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = YES + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base +# name of the file that contains the anonymous namespace. By default +# anonymous namespace are hidden. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then Doxygen +# will list include files with double quotes in the documentation +# rather than with sharp brackets. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the (brief and detailed) documentation of class members so that constructors and destructors are listed first. If set to NO (the default) the constructors will appear in the respective orders defined by SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO and ignored for detailed docs if SORT_MEMBER_DOCS is set to NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the +# hierarchy of group names into alphabetical order. If set to NO (the default) +# the group names will appear in their defined order. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. +# This will remove the Files entry from the Quick Index and from the +# Folder Tree View (if specified). The default is YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the +# Namespaces page. +# This will remove the Namespaces entry from the Quick Index +# and from the Folder Tree View (if specified). The default is YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed by +# doxygen. The layout file controls the global structure of the generated output files +# in an output format independent way. The create the layout file that represents +# doxygen's defaults, run doxygen with the -l option. You can optionally specify a +# file name after the option, if omitted DoxygenLayout.xml will be used as the name +# of the layout file. + +LAYOUT_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = NO + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src include examples tests + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# the list of possible encodings. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. +# If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. +# Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. +# The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. +# Otherwise they will link to the documentation. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = NO + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting +# this to NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = YES + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. For this to work a browser that supports +# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox +# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). + +HTML_DYNAMIC_SECTIONS = NO + +# If the GENERATE_DOCSET tag is set to YES, additional index files +# will be generated that can be used as input for Apple's Xcode 3 +# integrated development environment, introduced with OSX 10.5 (Leopard). +# To create a documentation set, doxygen will generate a Makefile in the +# HTML output directory. Running make will produce the docset in that +# directory and running "make install" will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find +# it at startup. +# See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. + +GENERATE_DOCSET = NO + +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# feed. A documentation feed provides an umbrella under which multiple +# documentation sets from a single provider (such as a company or product suite) +# can be grouped. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# When GENERATE_DOCSET tag is set to YES, this tag specifies a string that +# should uniquely identify the documentation set bundle. This should be a +# reverse domain-name style string, e.g. com.mycompany.MyDocSet. Doxygen +# will append .docset to the name. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING +# is used to encode HtmlHelp index (hhk), content (hhc) and project file +# content. + +CHM_INDEX_ENCODING = + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and QHP_VIRTUAL_FOLDER +# are set, an additional index file will be generated that can be used as input for +# Qt's qhelpgenerator to generate a Qt Compressed Help (.qch) of the generated +# HTML documentation. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can +# be used to specify the file name of the resulting .qch file. +# The path specified is relative to the HTML output folder. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders + +QHP_VIRTUAL_FOLDER = doc + +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. +# For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see +# Qt Help Project / Custom Filters. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this project's +# filter section matches. +# Qt Help Project / Filter Attributes. + +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, the QHG_LOCATION tag can +# be used to specify the location of Qt's qhelpgenerator. +# If non-empty doxygen will try to run qhelpgenerator on the generated +# .qhp file. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, form an Eclipse help +# plugin. To install this plugin and make it available under the help contents +# menu in Eclipse, the contents of the directory containing the HTML and XML +# files needs to be copied into the plugins directory of eclipse. The name of +# the directory within the plugins directory should be the same as +# the ECLIPSE_DOC_ID value. After copying Eclipse needs to be restarted before the help appears. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have +# this name. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = NO + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. +# If the tag value is set to YES, a side panel will be generated +# containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (i.e. any modern browser). +# Windows users are probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# By enabling USE_INLINE_TREES, doxygen will generate the Groups, Directories, +# and Class Hierarchy pages using a tree view instead of an ordered list. + +USE_INLINE_TREES = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# when you change the font size after a successful doxygen run you need +# to manually remove any form_*.png images from the HTML output directory +# to force them to be regenerated. + +FORMULA_FONTSIZE = 10 + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for the HTML output. The underlying search engine uses javascript +# and DHTML and should work on any modern browser. Note that when using HTML help (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) there is already a search function so this one should +# typically be disabled. For large projects the javascript based search engine +# can be slow, then enabling SERVER_BASED_SEARCH may provide a better solution. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be implemented using a PHP enabled web server instead of at the web client using Javascript. Doxygen will generate the search PHP script and index +# file to put on the web server. The advantage of the server based approach is that it scales better to large projects and allows full text search. The disadvances is that it is more difficult to setup +# and does not have live searching capabilities. + +SERVER_BASED_SEARCH = NO + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. +# Note that when enabling USE_PDFLATEX this option is only used for +# generating bitmaps for formulas in the HTML output, but not in the +# Makefile that is written to the output directory. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +# If LATEX_SOURCE_CODE is set to YES then doxygen will include source code with syntax highlighting in the LaTeX output. Note that which sources are shown also depends on other settings such as SOURCE_BROWSER. + +LATEX_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. +# This is useful +# if you want to understand what is going on. +# On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED = + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see +# http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = NO + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = YES + +# By default doxygen will write a font called FreeSans.ttf to the output +# directory and reference it in all dot files that doxygen generates. This +# font does not include all possible unicode characters however, so when you need +# these (or just want a differently looking font) you can specify the font name +# using DOT_FONTNAME. You need need to make sure dot is able to find the font, +# which can be done by putting it in a standard location or by setting the +# DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory +# containing the font. + +DOT_FONTNAME = FreeSans + +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the output directory to look for the +# FreeSans.ttf font (which doxygen will put there itself). If you specify a +# different font using DOT_FONTNAME you can set the path where dot +# can find it using this tag. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT options are set to YES then +# doxygen will generate a call dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable call graphs +# for selected functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then +# doxygen will generate a caller dependency graph for every global function +# or class method. Note that enabling this option will significantly increase +# the time of a run. So in most cases it will be better to enable caller +# graphs for selected functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of +# nodes that will be shown in the graph. If the number of nodes in a graph +# becomes larger than this value, doxygen will truncate the graph, which is +# visualized by representing a node as a red box. Note that doxygen if the +# number of direct children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note +# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not +# seem to support this out of the box. Warning: Depending on the platform used, +# enabling this option may lead to badly anti-aliased labels on the edges of +# a graph (i.e. they become hard to read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = YES + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES diff --git a/replication_listener/Makefile b/replication_listener/Makefile new file mode 100644 index 000000000..00d12e636 --- /dev/null +++ b/replication_listener/Makefile @@ -0,0 +1,273 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." + /usr/bin/cmake -i . +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles /home/jan/skysql/skygateway/replication_listener/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named replication_shared + +# Build rule for target. +replication_shared: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 replication_shared +.PHONY : replication_shared + +# fast build rule for target. +replication_shared/fast: + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/build +.PHONY : replication_shared/fast + +#============================================================================= +# Target rules for targets named replication_static + +# Build rule for target. +replication_static: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 replication_static +.PHONY : replication_static + +# fast build rule for target. +replication_static/fast: + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/build +.PHONY : replication_static/fast + +#============================================================================= +# Target rules for targets named basic-1 + +# Build rule for target. +basic-1: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 basic-1 +.PHONY : basic-1 + +# fast build rule for target. +basic-1/fast: + $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/build +.PHONY : basic-1/fast + +#============================================================================= +# Target rules for targets named basic-2 + +# Build rule for target. +basic-2: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 basic-2 +.PHONY : basic-2 + +# fast build rule for target. +basic-2/fast: + $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/build +.PHONY : basic-2/fast + +#============================================================================= +# Target rules for targets named jan_test + +# Build rule for target. +jan_test: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 jan_test +.PHONY : jan_test + +# fast build rule for target. +jan_test/fast: + $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/build +.PHONY : jan_test/fast + +#============================================================================= +# Target rules for targets named mysql2lucene + +# Build rule for target. +mysql2lucene: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 mysql2lucene +.PHONY : mysql2lucene + +# fast build rule for target. +mysql2lucene/fast: + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build +.PHONY : mysql2lucene/fast + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... replication_shared" + @echo "... replication_static" + @echo "... basic-1" + @echo "... basic-2" + @echo "... jan_test" + @echo "... mysql2lucene" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/README b/replication_listener/README new file mode 100644 index 000000000..bc4954456 --- /dev/null +++ b/replication_listener/README @@ -0,0 +1,68 @@ +This repository was forked from https://launchpad.net/mysql-replication-listener. +--- + +The MySQL Replicant Library is a C++ library for reading MySQL +replication events, either by connecting to a server or by reading +from a file. To handle reading from a server, it includes a very +simple client. + + +Dependencies +------------ + +You need to have CMake version 2.8 or later and Boost version 1.35.0 +or later since Asio is required. + +To be able to run the unit tests, you have to have Google Test +installed. Google Test will be automatically installed if cmake is +called as: + + cmake . -DENABLE_DOWNLOADS=1 + + +Directory structure +------------------- + + . + |-- doc Documentation + |-- examples Examples + | `-- mysql2lucene Example application replicating rows to SOLR + |-- include Include files + |-- src Source files for library + `-- tests Unit test files and directories + + +Building +-------- + +To build the entire package, it is first necessary to run CMake to build all the makefiles. + + cmake . + make -j4 + +Some of the examples are using third-party software, which can require +extra parameters to be given to CMake. + +If you want to perform an out-of-source build, you can just create a +build directory and execute CMake there. + + mkdir build + cd build + cmake + make -j4 + + +Building the mysql2lucene Example +--------------------------------- + +To build the mysql2lucene example, it is necessary to ensure that the +'FindCLucene.cmake' is in the CMAKE_MODULE_PATH, which on my machine +require me to write: + + cmake . -DCMAKE_MODULE_PATH:String=/usr/share/kde4/apps/cmake/modules + +In addition, there is a bug in the packaging of CLucene on Ubuntu in +that the 'clucene-config.h' file is placed in '/usr/lib/CLucene' but +not in '/usr/include/CLucene', causing compiler failure when +attempting to use CLucene. The 'CMakeLists.txt' file hacks around this +by adding the libraries explicitly, but it seems unnecessary. diff --git a/replication_listener/cmake_install.cmake b/replication_listener/cmake_install.cmake new file mode 100644 index 000000000..a6a544891 --- /dev/null +++ b/replication_listener/cmake_install.cmake @@ -0,0 +1,54 @@ +# Install script for directory: /home/jan/skysql/skygateway/replication_listener + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "1") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + +IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/." TYPE DIRECTORY FILES "/home/jan/skysql/skygateway/replication_listener/include" FILES_MATCHING REGEX "/[^/]*\\.h$") +ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + +IF(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + INCLUDE("/home/jan/skysql/skygateway/replication_listener/src/cmake_install.cmake") + +ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) + +IF(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +ELSE(CMAKE_INSTALL_COMPONENT) + SET(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +ENDIF(CMAKE_INSTALL_COMPONENT) + +FILE(WRITE "/home/jan/skysql/skygateway/replication_listener/${CMAKE_INSTALL_MANIFEST}" "") +FOREACH(file ${CMAKE_INSTALL_MANIFEST_FILES}) + FILE(APPEND "/home/jan/skysql/skygateway/replication_listener/${CMAKE_INSTALL_MANIFEST}" "${file}\n") +ENDFOREACH(file) diff --git a/replication_listener/doc/libreplication.odp b/replication_listener/doc/libreplication.odp new file mode 100644 index 0000000000000000000000000000000000000000..8f7c817f6409ad63004e7e49fa960cd1e1b51e49 GIT binary patch literal 83164 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 literal 0 HcmV?d00001 diff --git a/replication_listener/examples/CMakeFiles/CMakeCCompiler.cmake b/replication_listener/examples/CMakeFiles/CMakeCCompiler.cmake new file mode 100644 index 000000000..1472effa2 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CMakeCCompiler.cmake @@ -0,0 +1,53 @@ +SET(CMAKE_C_COMPILER "/usr/bin/gcc") +SET(CMAKE_C_COMPILER_ARG1 "") +SET(CMAKE_C_COMPILER_ID "GNU") +SET(CMAKE_C_COMPILER_VERSION "4.7.2") +SET(CMAKE_C_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCC 1) +SET(CMAKE_C_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_C_COMPILER_ENV_VAR "CC") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_C_COMPILER_ID_RUN 1) +SET(CMAKE_C_SOURCE_FILE_EXTENSIONS c) +SET(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +SET(CMAKE_C_SIZEOF_DATA_PTR "8") +SET(CMAKE_C_COMPILER_ABI "ELF") +SET(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +IF(CMAKE_C_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_C_SIZEOF_DATA_PTR) + +IF(CMAKE_C_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +ENDIF(CMAKE_C_COMPILER_ABI) + +IF(CMAKE_C_LIBRARY_ARCHITECTURE) + SET(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +ENDIF() + +SET(CMAKE_C_HAS_ISYSROOT "") + + +SET(CMAKE_C_IMPLICIT_LINK_LIBRARIES "c") +SET(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") + + + diff --git a/replication_listener/examples/CMakeFiles/CMakeCXXCompiler.cmake b/replication_listener/examples/CMakeFiles/CMakeCXXCompiler.cmake new file mode 100644 index 000000000..cf7c4df56 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CMakeCXXCompiler.cmake @@ -0,0 +1,54 @@ +SET(CMAKE_CXX_COMPILER "/usr/bin/c++") +SET(CMAKE_CXX_COMPILER_ARG1 "") +SET(CMAKE_CXX_COMPILER_ID "GNU") +SET(CMAKE_CXX_COMPILER_VERSION "4.7.2") +SET(CMAKE_CXX_PLATFORM_ID "Linux") + +SET(CMAKE_AR "/usr/bin/ar") +SET(CMAKE_RANLIB "/usr/bin/ranlib") +SET(CMAKE_LINKER "/usr/bin/ld") +SET(CMAKE_COMPILER_IS_GNUCXX 1) +SET(CMAKE_CXX_COMPILER_LOADED 1) +SET(CMAKE_COMPILER_IS_MINGW ) +SET(CMAKE_COMPILER_IS_CYGWIN ) +IF(CMAKE_COMPILER_IS_CYGWIN) + SET(CYGWIN 1) + SET(UNIX 1) +ENDIF(CMAKE_COMPILER_IS_CYGWIN) + +SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +IF(CMAKE_COMPILER_IS_MINGW) + SET(MINGW 1) +ENDIF(CMAKE_COMPILER_IS_MINGW) +SET(CMAKE_CXX_COMPILER_ID_RUN 1) +SET(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +SET(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP) +SET(CMAKE_CXX_LINKER_PREFERENCE 30) +SET(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +SET(CMAKE_CXX_SIZEOF_DATA_PTR "8") +SET(CMAKE_CXX_COMPILER_ABI "ELF") +SET(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +IF(CMAKE_CXX_SIZEOF_DATA_PTR) + SET(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +ENDIF(CMAKE_CXX_SIZEOF_DATA_PTR) + +IF(CMAKE_CXX_COMPILER_ABI) + SET(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +ENDIF(CMAKE_CXX_COMPILER_ABI) + +IF(CMAKE_CXX_LIBRARY_ARCHITECTURE) + SET(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +ENDIF() + +SET(CMAKE_CXX_HAS_ISYSROOT "") + + +SET(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;c") +SET(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") + + + diff --git a/replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_C.bin b/replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000000000000000000000000000000000000..63e954b57e074a718fa6f682d798bd18712e16d5 GIT binary patch literal 8742 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 literal 0 HcmV?d00001 diff --git a/replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin b/replication_listener/examples/CMakeFiles/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000000000000000000000000000000000000..933ec9f91bc2b236a606a8d401a6ef39b65352b8 GIT binary patch literal 8755 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 S2~J$osIcUKI*AGjLk0lli_zTx literal 0 HcmV?d00001 diff --git a/replication_listener/examples/CMakeFiles/CMakeDirectoryInformation.cmake b/replication_listener/examples/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..592109dfe --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jan/skysql/skygateway/replication_listener") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jan/skysql/skygateway/replication_listener") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/replication_listener/examples/CMakeFiles/CMakeOutput.log b/replication_listener/examples/CMakeFiles/CMakeOutput.log new file mode 100644 index 000000000..eeee5a8fe --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CMakeOutput.log @@ -0,0 +1,526 @@ +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2105707460/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2105707460.dir/build.make CMakeFiles/cmTryCompileExec2105707460.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2105707460.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2105707460.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec2105707460 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2105707460.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec2105707460.dir/testCCompiler.c.o -o cmTryCompileExec2105707460 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2521112262/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2521112262.dir/build.make CMakeFiles/cmTryCompileExec2521112262.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec2521112262 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2521112262.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2521112262 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2521112262' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2521112262 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec2521112262/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec2521112262.dir/build.make CMakeFiles/cmTryCompileExec2521112262.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec2521112262] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2521112262.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2521112262 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2521112262' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2521112262 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec2521112262] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec2521112262.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1202011939/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1202011939.dir/build.make CMakeFiles/cmTryCompileExec1202011939.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1202011939.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1202011939.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec1202011939 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1202011939.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec1202011939.dir/testCXXCompiler.cxx.o -o cmTryCompileExec1202011939 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2613189232/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2613189232.dir/build.make CMakeFiles/cmTryCompileExec2613189232.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec2613189232 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2613189232.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec2613189232 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2613189232' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2613189232 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec2613189232/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec2613189232.dir/build.make CMakeFiles/cmTryCompileExec2613189232.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec2613189232] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2613189232.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec2613189232 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2613189232' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2613189232 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec2613189232] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec2613189232.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +The system is: Linux - 3.5.0-28-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/gcc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec783074562/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec783074562.dir/build.make CMakeFiles/cmTryCompileExec783074562.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec783074562.dir/testCCompiler.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec783074562.dir/testCCompiler.c.o -c /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTryCompileExec783074562 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec783074562.dir/link.txt --verbose=1 +/usr/bin/gcc CMakeFiles/cmTryCompileExec783074562.dir/testCCompiler.c.o -o cmTryCompileExec783074562 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2061131830/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2061131830.dir/build.make CMakeFiles/cmTryCompileExec2061131830.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building C object CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o +/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c +Linking C executable cmTryCompileExec2061131830 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2061131830.dir/link.txt --verbose=1 +/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2061131830 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/gcc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2061131830' '-rdynamic' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2061131830 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec2061131830/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec2061131830.dir/build.make CMakeFiles/cmTryCompileExec2061131830.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building C object CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/gcc -o CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTryCompileExec2061131830] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2061131830.dir/link.txt --verbose=1] + ignore line: [/usr/bin/gcc -v CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -o cmTryCompileExec2061131830 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/gcc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec2061131830' '-rdynamic' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec2061131830 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec2061131830] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec2061131830.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec2243505706/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec2243505706.dir/build.make CMakeFiles/cmTryCompileExec2243505706.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec2243505706.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec2243505706.dir/testCXXCompiler.cxx.o -c /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTryCompileExec2243505706 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec2243505706.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTryCompileExec2243505706.dir/testCXXCompiler.cxx.o -o cmTryCompileExec2243505706 -rdynamic +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp + +Run Build Command:/usr/bin/make "cmTryCompileExec1843686029/fast" +/usr/bin/make -f CMakeFiles/cmTryCompileExec1843686029.dir/build.make CMakeFiles/cmTryCompileExec1843686029.dir/build +make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' +/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1 +Building CXX object CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTryCompileExec1843686029 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1843686029.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1843686029 -rdynamic +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1843686029' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1843686029 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:/usr/bin/make "cmTryCompileExec1843686029/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTryCompileExec1843686029.dir/build.make CMakeFiles/cmTryCompileExec1843686029.dir/build] + ignore line: [make[1]: Entering directory `/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp'] + ignore line: [/usr/bin/cmake -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/CMakeTmp/CMakeFiles 1] + ignore line: [Building CXX object CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTryCompileExec1843686029] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTryCompileExec1843686029.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -o cmTryCompileExec1843686029 -rdynamic ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.7/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.7.2-2ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.7/README.Bugs --enable-languages=c,c++,go,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.7 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.7 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 4.7.2 (Ubuntu/Linaro 4.7.2-2ubuntu1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/4.7/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTryCompileExec1843686029' '-rdynamic' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/4.7/collect2 --sysroot=/ --build-id --no-add-needed --as-needed --eh-frame-hdr -m elf_x86_64 --hash-style=gnu -export-dynamic -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTryCompileExec1843686029 /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/4.7 -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../.. CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/collect2] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--no-add-needed] ==> ignore + arg [--as-needed] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [-export-dynamic] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTryCompileExec1843686029] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] + arg [CMakeFiles/cmTryCompileExec1843686029.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7] ==> [/usr/lib/gcc/x86_64-linux-gnu/4.7] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib] ==> [/usr/lib] + collapse dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse dir [/lib/../lib] ==> [/lib] + collapse dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse dir [/usr/lib/../lib] ==> [/usr/lib] + collapse dir [/usr/lib/gcc/x86_64-linux-gnu/4.7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/4.7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + + diff --git a/replication_listener/examples/CMakeFiles/CMakeSystem.cmake b/replication_listener/examples/CMakeFiles/CMakeSystem.cmake new file mode 100644 index 000000000..5a34ce942 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CMakeSystem.cmake @@ -0,0 +1,15 @@ + + +SET(CMAKE_SYSTEM "Linux-3.5.0-28-generic") +SET(CMAKE_SYSTEM_NAME "Linux") +SET(CMAKE_SYSTEM_VERSION "3.5.0-28-generic") +SET(CMAKE_SYSTEM_PROCESSOR "x86_64") + +SET(CMAKE_HOST_SYSTEM "Linux-3.5.0-28-generic") +SET(CMAKE_HOST_SYSTEM_NAME "Linux") +SET(CMAKE_HOST_SYSTEM_VERSION "3.5.0-28-generic") +SET(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + +SET(CMAKE_CROSSCOMPILING "FALSE") + +SET(CMAKE_SYSTEM_LOADED 1) diff --git a/replication_listener/examples/CMakeFiles/CompilerIdC/CMakeCCompilerId.c b/replication_listener/examples/CMakeFiles/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 000000000..3583176bf --- /dev/null +++ b/replication_listener/examples/CMakeFiles/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,361 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_C = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMC__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMC__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI_DSP" + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +/* IAR Systems compiler for embedded systems. + http://www.iar.com + Not supported yet by CMake +#elif defined(__IAR_SYSTEMS_ICC__) +# define COMPILER_ID "IAR" */ + +/* sdcc, the small devices C compiler for embedded systems, + http://sdcc.sourceforge.net */ +#elif defined(SDCC) +# define COMPILER_ID "SDCC" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif + (void)argv; + return require; +} +#endif diff --git a/replication_listener/examples/CMakeFiles/CompilerIdC/a.out b/replication_listener/examples/CMakeFiles/CompilerIdC/a.out new file mode 100755 index 0000000000000000000000000000000000000000..54da221258c56ef64512f705a10fcfd30658bbf7 GIT binary patch literal 8838 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 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH HEX(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC(__WATCOMC__ % 100) + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + +#elif defined(__IBMCPP__) +# if defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" +# else +# if __IBMCPP__ >= 800 +# define COMPILER_ID "XL" +# else +# define COMPILER_ID "VisualAge" +# endif + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) +# endif + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(__PATHSCALE__) +# define COMPILER_ID "PathScale" + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI_DSP" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +/* Analog Devices C++ compiler for Blackfin, TigerSHARC and + SHARC (21000) DSPs */ +# define COMPILER_ID "ADSP" + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 10) +# endif + +/* This compiler is either not known or is too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__sgi) +# define COMPILER_ID "MIPSpro" + +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" + +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU) || defined(__HAIKU__) || defined(_HAIKU) +# define PLATFORM_ID "Haiku" +/* Haiku also defines __BEOS__ so we must + put it prior to the check for __BEOS__ +*/ + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#else /* unknown platform */ +# define PLATFORM_ID "" + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM) +# define ARCHITECTURE_ID "ARM" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#else +# define ARCHITECTURE_ID "" +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif + (void)argv; + return require; +} diff --git a/replication_listener/examples/CMakeFiles/CompilerIdCXX/a.out b/replication_listener/examples/CMakeFiles/CompilerIdCXX/a.out new file mode 100755 index 0000000000000000000000000000000000000000..aa895a1691e2ee864ea5057d8e3d47d1295cc397 GIT binary patch literal 8847 zcmb<-^>JfjWMqH=CI&kO5bpr916T+`GB6wv1arZJ1A_$vCxZin9D_6i8v_FaD+2=q zOq~Oi1*3m}3}awmfYBUa6Brnn85kH?7#J8Vm>>ccOb`=bvq-B%tvw!T?DFAo+Fnb>?AH;@D3dYLM8- z{H97xz33pw9vB82KqMi>z`!7cMJ>oINJ>DHjE_&x&CiQ3E=epZiH~Q<$xKQH`NE7L zJ|4t|O5`SH<}tYYcse=98|fM8nKCdifP4h!b{L2iSHGB9{Fzu|Zh%m88>;W*5|@ZU6vM}gtLY6_161HZfj!+%u} zKLe!v<%9qK{~Nyb?7SG~(fP=u`N@ZX5YOWW4zM~fcpN`y0H%(gVR2x1as2=P|6kH3 zfXw#jW@Y42VDM-?P{Q>8f=BZaj>Bns{PHaz0~z?`8Fu&!Brt?}=z0hwFnBco;PdEw zTFw-Ecn3%xr0GlSevs7v2mJC4Ah8`F9!&kgAIu(|Pdz#hc^rIY@42Pv z<$*`9?sX0Y2A^Kl6CkQHN9Bc2XNk%OpUxVUA0C}CDi=JO-&pu)K6UK;>)H9uDjGiBH7W)k%||Q_L&NX$VQ9R9ViM$KG|UK1r)a`(uBV@yzg2R6 zZb4>FYEiViUuY}?Sg0T;u_P_OC^y;%l)a&XiABj7(Xnv7AO=`5On-b?YEf}!eqOWz z1eoYSXajQ?!w96CQJUFW16mH~{QdtQR0c-;`~N?Ofq`MqzyJSx7#J9Q{{R2Kg@J(q zR8D~GVXO*bV5|^el;&aQn83)upu)fat{Wcw`TrlBulWSr_$0jexyv~k80@92wTxAi zK>9%S2gv*KjV9@yY|9>Y)KCp+ijV+$fp_#p( zsgJprg(-p$R91rA0dm)bfB*j@=VOqTQ9K#~qaiRF0;3@?8UjN-1QxJB`Wp>U8s;BZ z8x_{h<$+2}fc6u4q5LDP5dD%+KCFKw4dsLCQVJPbJ|EORP%7ElTex)N`v|vAf_mYK*FH@CzuOuhr{Z0n0ios50VG9 z&q1^}h+tq~sDRoJ6HkEhVeW?M=Y*<<@&EmY_{RaN{y&rt3)c@&z6Dess-5N(tRIVR z(KcM}fc8g)p|l2+c6WBRQqTxZD$Oe?)%VHFODxJ)FwryDGtxCG1q&K#Lih~WRhsD; z>lzv$DK*nGRxmO!G%~O>v{29}C`v6#%}GrxPSs>!&?~OYElEsb&?_z}g3uW-R%TvF zYEc1$US57ls-B~hr*27NI+T~5SE`p(nwgWLo0-C(2jXQU7H2T%rBvn>SLQl7Wi7#T%D@x5t1ZjY>3UW#q^fL1@OBnP@QY%Ur^wKi(G8y!W@>3E^5*hSTGvd>V z5_41IGg68WJcy3?#G<0aN{9{^J1e;e?2N?R%wz_=^!ySqp$E1FVq#KpF@s)mer|4R zUI}`Pk;ez+OHdkwrGMD?3v4_DmM>wZgVe&8?bQ?aN8WD5Q<^r z6;LjNA)5XYXnrn%8VG9V!_V{kQ-B^P$QaVCBUOr~u6Uu<`?zPeEpZupa{h z1E{QkDrbO|Cp(}59w0>w4B&Atkl$hYVfi`?I*tKV&cFc6H_!sc0;(TIfy{uhL3A7g z0|Tfmfa!0F^B;KCFCkfa-^ZKgb-A-7xoq>;~Z~Xg>_5 zA6A|vK=s4?39}!jA0`eOH~_^7Oh2rAtiYllRA->;?}LsLf!qgj53D|!0M!p2b^}R) zF~}}314@AUY#@KZ^e=#h{{pCfnE#>5!DBTbHmn|-f@VK#-17ibKMTxbAWaMmaQ#p& z!z?uYu=?)^G{9i>08Bl)`xijoA#tv???^-qFngwp8#S%Ib>Hcki|KZK1#LA8U& z=3s0Py$wzO0%&=@02-i6K#GtsEdF3Z2N)O_Kyd^OE~If)hzfM|==?Jb3=I6xJOt7K zYY#|(3}s+oKv$2>zX5eW%zn_w5Xc+_BK6;e=53gMSbYc^?}d%)LW2YD9$5N$hGsu( zyzd9dQ+V7D^T%s6{S46d2rQwY$2UwLjQ)bAUjeFL0qQ`|I14B|U>K$k#{UI%Bh3Gx z;XII>2UI`0di3=BA8Nk=ND~r<=?9fhNW$PTVGtjbXF)V*S^;J^h!4Y?VfMomLM70+ zVDn&k2dV^2IY1kr6QB_%%fP?@awE(?u<{F(Ke5?=K^|-j!+tcw(d~z*!cH23Wa*DlWf^!r8PmU@ zv00Eg0%-lhM(|7sFM|V`IH+C)sYmZet^%8n@E6G4AUEvroWUJL31_y44{#HkbWZ&0h*V?5e_C`^@0oz?2!H}R5^naSR6BaK=Rna z-w*6TA&hht4>kug{bWGZ!}`r2b3wQotR6G{Ok@PjckwcSW_>{FV8zu!M%WA{NECth zg2ge@+X+Tc+eQK-y`2Y}kC`8@g2fT$!dPFR=Afr%Mkeg;5ny6q5M+{I(16xkFmq%< z;tYuV4y$)`z~T}N7EtxD^4y9E5)PngFOV6ab|HxNVgmU~k|6-99wY|B{!sPkk8RFx;oP*+hJcC2x;~7#?i&E1wi%U|A;!ASllXLR(Qi~a|2*t;z zNO#HWT!^nTDBMC4lX6lSK%IQZgfl~YDu}}X)q_42?cjhs z7aboDQVY|F6mwwTq!j1JXC&sOkJE0ke^`* Q1I5SSP=q)HG`YwC0MHqdsQ>@~ literal 0 HcmV?d00001 diff --git a/replication_listener/examples/CMakeFiles/Makefile.cmake b/replication_listener/examples/CMakeFiles/Makefile.cmake new file mode 100644 index 000000000..2b8f05941 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/Makefile.cmake @@ -0,0 +1,65 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# The generator used is: +SET(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +SET(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "CMakeFiles/CMakeCCompiler.cmake" + "CMakeFiles/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeSystem.cmake" + "CMakeLists.txt" + "mysql2lucene/CMakeLists.txt" + "/usr/share/cmake-2.8/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-2.8/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-2.8/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-2.8/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-2.8/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeClDeps.cmake" + "/usr/share/cmake-2.8/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-2.8/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-2.8/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-2.8/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-2.8/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-2.8/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-2.8/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-2.8/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-2.8/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-2.8/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-2.8/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-2.8/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-2.8/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-2.8/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-2.8/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-2.8/Modules/Platform/Linux.cmake" + "/usr/share/cmake-2.8/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +SET(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +SET(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + "mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +SET(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/basic-1.dir/DependInfo.cmake" + "CMakeFiles/basic-2.dir/DependInfo.cmake" + "CMakeFiles/jan_test.dir/DependInfo.cmake" + "mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake" + ) diff --git a/replication_listener/examples/CMakeFiles/Makefile2 b/replication_listener/examples/CMakeFiles/Makefile2 new file mode 100644 index 000000000..258f8bb01 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/Makefile2 @@ -0,0 +1,215 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +# The main recursive all target +all: +.PHONY : all + +# The main recursive preinstall target +preinstall: +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/Downloads/mysql-replication-listener-master/examples + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/Downloads/mysql-replication-listener-master/examples + +#============================================================================= +# Target rules for target CMakeFiles/basic-1.dir + +# All Build rule for target. +CMakeFiles/basic-1.dir/all: + $(MAKE) -f CMakeFiles/basic-1.dir/build.make CMakeFiles/basic-1.dir/depend + $(MAKE) -f CMakeFiles/basic-1.dir/build.make CMakeFiles/basic-1.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 1 + @echo "Built target basic-1" +.PHONY : CMakeFiles/basic-1.dir/all + +# Include target in all. +all: CMakeFiles/basic-1.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/basic-1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/basic-1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 0 +.PHONY : CMakeFiles/basic-1.dir/rule + +# Convenience name for target. +basic-1: CMakeFiles/basic-1.dir/rule +.PHONY : basic-1 + +# clean rule for target. +CMakeFiles/basic-1.dir/clean: + $(MAKE) -f CMakeFiles/basic-1.dir/build.make CMakeFiles/basic-1.dir/clean +.PHONY : CMakeFiles/basic-1.dir/clean + +# clean rule for target. +clean: CMakeFiles/basic-1.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/basic-2.dir + +# All Build rule for target. +CMakeFiles/basic-2.dir/all: + $(MAKE) -f CMakeFiles/basic-2.dir/build.make CMakeFiles/basic-2.dir/depend + $(MAKE) -f CMakeFiles/basic-2.dir/build.make CMakeFiles/basic-2.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 2 + @echo "Built target basic-2" +.PHONY : CMakeFiles/basic-2.dir/all + +# Include target in all. +all: CMakeFiles/basic-2.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/basic-2.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/basic-2.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 0 +.PHONY : CMakeFiles/basic-2.dir/rule + +# Convenience name for target. +basic-2: CMakeFiles/basic-2.dir/rule +.PHONY : basic-2 + +# clean rule for target. +CMakeFiles/basic-2.dir/clean: + $(MAKE) -f CMakeFiles/basic-2.dir/build.make CMakeFiles/basic-2.dir/clean +.PHONY : CMakeFiles/basic-2.dir/clean + +# clean rule for target. +clean: CMakeFiles/basic-2.dir/clean +.PHONY : clean + +#============================================================================= +# Target rules for target CMakeFiles/jan_test.dir + +# All Build rule for target. +CMakeFiles/jan_test.dir/all: + $(MAKE) -f CMakeFiles/jan_test.dir/build.make CMakeFiles/jan_test.dir/depend + $(MAKE) -f CMakeFiles/jan_test.dir/build.make CMakeFiles/jan_test.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 3 + @echo "Built target jan_test" +.PHONY : CMakeFiles/jan_test.dir/all + +# Include target in all. +all: CMakeFiles/jan_test.dir/all +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/jan_test.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 1 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/jan_test.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 0 +.PHONY : CMakeFiles/jan_test.dir/rule + +# Convenience name for target. +jan_test: CMakeFiles/jan_test.dir/rule +.PHONY : jan_test + +# clean rule for target. +CMakeFiles/jan_test.dir/clean: + $(MAKE) -f CMakeFiles/jan_test.dir/build.make CMakeFiles/jan_test.dir/clean +.PHONY : CMakeFiles/jan_test.dir/clean + +# clean rule for target. +clean: CMakeFiles/jan_test.dir/clean +.PHONY : clean + +#============================================================================= +# Directory level rules for directory mysql2lucene + +# Convenience name for "all" pass in the directory. +mysql2lucene/all: mysql2lucene/CMakeFiles/mysql2lucene.dir/all +.PHONY : mysql2lucene/all + +# Convenience name for "clean" pass in the directory. +mysql2lucene/clean: mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : mysql2lucene/clean + +# Convenience name for "preinstall" pass in the directory. +mysql2lucene/preinstall: +.PHONY : mysql2lucene/preinstall + +#============================================================================= +# Target rules for target mysql2lucene/CMakeFiles/mysql2lucene.dir + +# All Build rule for target. +mysql2lucene/CMakeFiles/mysql2lucene.dir/all: + $(MAKE) -f mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make mysql2lucene/CMakeFiles/mysql2lucene.dir/depend + $(MAKE) -f mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make mysql2lucene/CMakeFiles/mysql2lucene.dir/build + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 4 5 6 7 8 + @echo "Built target mysql2lucene" +.PHONY : mysql2lucene/CMakeFiles/mysql2lucene.dir/all + +# Build rule for subdir invocation for target. +mysql2lucene/CMakeFiles/mysql2lucene.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 5 + $(MAKE) -f CMakeFiles/Makefile2 mysql2lucene/CMakeFiles/mysql2lucene.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles 0 +.PHONY : mysql2lucene/CMakeFiles/mysql2lucene.dir/rule + +# Convenience name for target. +mysql2lucene: mysql2lucene/CMakeFiles/mysql2lucene.dir/rule +.PHONY : mysql2lucene + +# clean rule for target. +mysql2lucene/CMakeFiles/mysql2lucene.dir/clean: + $(MAKE) -f mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : mysql2lucene/CMakeFiles/mysql2lucene.dir/clean + +# clean rule for target. +clean: mysql2lucene/CMakeFiles/mysql2lucene.dir/clean +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/examples/CMakeFiles/TargetDirectories.txt b/replication_listener/examples/CMakeFiles/TargetDirectories.txt new file mode 100644 index 000000000..b5e917f47 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,4 @@ +/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/basic-1.dir +/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/basic-2.dir +/home/jan/Downloads/mysql-replication-listener-master/examples/CMakeFiles/jan_test.dir +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/CXX.includecache b/replication_listener/examples/CMakeFiles/basic-1.dir/CXX.includecache new file mode 100644 index 000000000..0103e1cb6 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/CXX.includecache @@ -0,0 +1,206 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/Downloads/mysql-replication-listener-master/examples/basic-1.cpp +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/binlog_api.h + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/DependInfo.cmake b/replication_listener/examples/CMakeFiles/basic-1.dir/DependInfo.cmake new file mode 100644 index 000000000..d739c0184 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/examples/basic-1.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-1.dir/basic-1.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/build.make b/replication_listener/examples/CMakeFiles/basic-1.dir/build.make new file mode 100644 index 000000000..581d52af1 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/build.make @@ -0,0 +1,102 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include examples/CMakeFiles/basic-1.dir/depend.make + +# Include the progress variables for this target. +include examples/CMakeFiles/basic-1.dir/progress.make + +# Include the compile flags for this target's objects. +include examples/CMakeFiles/basic-1.dir/flags.make + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: examples/CMakeFiles/basic-1.dir/flags.make +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: examples/basic-1.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/CMakeFiles/basic-1.dir/basic-1.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/basic-1.dir/basic-1.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/basic-1.cpp + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/basic-1.dir/basic-1.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/basic-1.cpp > CMakeFiles/basic-1.dir/basic-1.cpp.i + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/basic-1.dir/basic-1.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/basic-1.cpp -o CMakeFiles/basic-1.dir/basic-1.cpp.s + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.requires: +.PHONY : examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.requires + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.provides: examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.requires + $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.provides.build +.PHONY : examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.provides + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.provides.build: examples/CMakeFiles/basic-1.dir/basic-1.cpp.o + +# Object files for target basic-1 +basic__1_OBJECTS = \ +"CMakeFiles/basic-1.dir/basic-1.cpp.o" + +# External object files for target basic-1 +basic__1_EXTERNAL_OBJECTS = + +examples/basic-1: examples/CMakeFiles/basic-1.dir/basic-1.cpp.o +examples/basic-1: examples/CMakeFiles/basic-1.dir/build.make +examples/basic-1: examples/CMakeFiles/basic-1.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX executable basic-1" + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/basic-1.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +examples/CMakeFiles/basic-1.dir/build: examples/basic-1 +.PHONY : examples/CMakeFiles/basic-1.dir/build + +examples/CMakeFiles/basic-1.dir/requires: examples/CMakeFiles/basic-1.dir/basic-1.cpp.o.requires +.PHONY : examples/CMakeFiles/basic-1.dir/requires + +examples/CMakeFiles/basic-1.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -P CMakeFiles/basic-1.dir/cmake_clean.cmake +.PHONY : examples/CMakeFiles/basic-1.dir/clean + +examples/CMakeFiles/basic-1.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-1.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : examples/CMakeFiles/basic-1.dir/depend + diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/cmake_clean.cmake b/replication_listener/examples/CMakeFiles/basic-1.dir/cmake_clean.cmake new file mode 100644 index 000000000..90ee1835c --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/basic-1.dir/basic-1.cpp.o" + "basic-1.pdb" + "basic-1" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/basic-1.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/depend.internal b/replication_listener/examples/CMakeFiles/basic-1.dir/depend.internal new file mode 100644 index 000000000..eacf242e3 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/depend.internal @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/basic-1.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/depend.make b/replication_listener/examples/CMakeFiles/basic-1.dir/depend.make new file mode 100644 index 000000000..b186d8a37 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/depend.make @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: examples/basic-1.cpp +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/access_method_factory.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/basic_content_handler.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/basic_transaction_parser.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/binlog_api.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/binlog_driver.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/binlog_event.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/bounded_buffer.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/field_iterator.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/file_driver.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/gtid.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/protocol.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/resultset_iterator.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/row_of_fields.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/rowset.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/tcp_driver.h +examples/CMakeFiles/basic-1.dir/basic-1.cpp.o: include/value.h + diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/flags.make b/replication_listener/examples/CMakeFiles/basic-1.dir/flags.make new file mode 100644 index 000000000..0b9be5256 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -I/home/jan/skysql/skygateway/replication_listener/include -I/include + +CXX_DEFINES = + diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/link.txt b/replication_listener/examples/CMakeFiles/basic-1.dir/link.txt new file mode 100644 index 000000000..ac833cb76 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/basic-1.dir/basic-1.cpp.o -o basic-1 -rdynamic -L/home/jan/skysql/skygateway/replication_listener/lib -lboost_system -lreplication -Wl,-rpath,/home/jan/skysql/skygateway/replication_listener/lib diff --git a/replication_listener/examples/CMakeFiles/basic-1.dir/progress.make b/replication_listener/examples/CMakeFiles/basic-1.dir/progress.make new file mode 100644 index 000000000..781c7de27 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-1.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 1 + diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/CXX.includecache b/replication_listener/examples/CMakeFiles/basic-2.dir/CXX.includecache new file mode 100644 index 000000000..fbf49d6da --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/CXX.includecache @@ -0,0 +1,212 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/Downloads/mysql-replication-listener-master/examples/basic-2.cpp +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/binlog_api.h +iostream +- +map +- +string +- + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/DependInfo.cmake b/replication_listener/examples/CMakeFiles/basic-2.dir/DependInfo.cmake new file mode 100644 index 000000000..c098b1766 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/examples/basic-2.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-2.dir/basic-2.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/build.make b/replication_listener/examples/CMakeFiles/basic-2.dir/build.make new file mode 100644 index 000000000..32f8639ba --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/build.make @@ -0,0 +1,102 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include examples/CMakeFiles/basic-2.dir/depend.make + +# Include the progress variables for this target. +include examples/CMakeFiles/basic-2.dir/progress.make + +# Include the compile flags for this target's objects. +include examples/CMakeFiles/basic-2.dir/flags.make + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: examples/CMakeFiles/basic-2.dir/flags.make +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: examples/basic-2.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/CMakeFiles/basic-2.dir/basic-2.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/basic-2.dir/basic-2.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/basic-2.cpp + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/basic-2.dir/basic-2.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/basic-2.cpp > CMakeFiles/basic-2.dir/basic-2.cpp.i + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/basic-2.dir/basic-2.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/basic-2.cpp -o CMakeFiles/basic-2.dir/basic-2.cpp.s + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.requires: +.PHONY : examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.requires + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.provides: examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.requires + $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.provides.build +.PHONY : examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.provides + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.provides.build: examples/CMakeFiles/basic-2.dir/basic-2.cpp.o + +# Object files for target basic-2 +basic__2_OBJECTS = \ +"CMakeFiles/basic-2.dir/basic-2.cpp.o" + +# External object files for target basic-2 +basic__2_EXTERNAL_OBJECTS = + +examples/basic-2: examples/CMakeFiles/basic-2.dir/basic-2.cpp.o +examples/basic-2: examples/CMakeFiles/basic-2.dir/build.make +examples/basic-2: examples/CMakeFiles/basic-2.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX executable basic-2" + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/basic-2.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +examples/CMakeFiles/basic-2.dir/build: examples/basic-2 +.PHONY : examples/CMakeFiles/basic-2.dir/build + +examples/CMakeFiles/basic-2.dir/requires: examples/CMakeFiles/basic-2.dir/basic-2.cpp.o.requires +.PHONY : examples/CMakeFiles/basic-2.dir/requires + +examples/CMakeFiles/basic-2.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -P CMakeFiles/basic-2.dir/cmake_clean.cmake +.PHONY : examples/CMakeFiles/basic-2.dir/clean + +examples/CMakeFiles/basic-2.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/basic-2.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : examples/CMakeFiles/basic-2.dir/depend + diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/cmake_clean.cmake b/replication_listener/examples/CMakeFiles/basic-2.dir/cmake_clean.cmake new file mode 100644 index 000000000..a48570bbe --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/basic-2.dir/basic-2.cpp.o" + "basic-2.pdb" + "basic-2" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/basic-2.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/depend.internal b/replication_listener/examples/CMakeFiles/basic-2.dir/depend.internal new file mode 100644 index 000000000..428f6c34c --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/depend.internal @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/basic-2.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/depend.make b/replication_listener/examples/CMakeFiles/basic-2.dir/depend.make new file mode 100644 index 000000000..19db089e2 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/depend.make @@ -0,0 +1,21 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: examples/basic-2.cpp +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/access_method_factory.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/basic_content_handler.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/basic_transaction_parser.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/binlog_api.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/binlog_driver.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/binlog_event.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/bounded_buffer.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/field_iterator.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/file_driver.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/gtid.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/protocol.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/resultset_iterator.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/row_of_fields.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/rowset.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/tcp_driver.h +examples/CMakeFiles/basic-2.dir/basic-2.cpp.o: include/value.h + diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/flags.make b/replication_listener/examples/CMakeFiles/basic-2.dir/flags.make new file mode 100644 index 000000000..0b9be5256 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -I/home/jan/skysql/skygateway/replication_listener/include -I/include + +CXX_DEFINES = + diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/link.txt b/replication_listener/examples/CMakeFiles/basic-2.dir/link.txt new file mode 100644 index 000000000..8bfd3208b --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/basic-2.dir/basic-2.cpp.o -o basic-2 -rdynamic -L/home/jan/skysql/skygateway/replication_listener/lib -lboost_system -lreplication -Wl,-rpath,/home/jan/skysql/skygateway/replication_listener/lib diff --git a/replication_listener/examples/CMakeFiles/basic-2.dir/progress.make b/replication_listener/examples/CMakeFiles/basic-2.dir/progress.make new file mode 100644 index 000000000..164e1d26c --- /dev/null +++ b/replication_listener/examples/CMakeFiles/basic-2.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 2 + diff --git a/replication_listener/examples/CMakeFiles/cmake.check_cache b/replication_listener/examples/CMakeFiles/cmake.check_cache new file mode 100644 index 000000000..3dccd7317 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/CXX.includecache b/replication_listener/examples/CMakeFiles/jan_test.dir/CXX.includecache new file mode 100644 index 000000000..a34779bb2 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/CXX.includecache @@ -0,0 +1,240 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/Downloads/mysql-replication-listener-master/examples/jan_test.cpp +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/binlog_api.h +my_pthread.h +/home/jan/Downloads/mysql-replication-listener-master/examples/my_pthread.h +listener_exception.h +/home/jan/Downloads/mysql-replication-listener-master/examples/listener_exception.h +table_replication_consistency.h +/home/jan/Downloads/mysql-replication-listener-master/examples/table_replication_consistency.h +getopt.h +- +iostream +- +iomanip +- +map +- +sstream +- +stdlib.h +- +errno.h +- +string.h +- +regex.h +- +algorithm +- + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/listener_exception.h +sstream +- +boost/system/system_error.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/table_replication_consistency.h + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/DependInfo.cmake b/replication_listener/examples/CMakeFiles/jan_test.dir/DependInfo.cmake new file mode 100644 index 000000000..d7180ca1d --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/examples/jan_test.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/jan_test.dir/jan_test.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/build.make b/replication_listener/examples/CMakeFiles/jan_test.dir/build.make new file mode 100644 index 000000000..441af28ba --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/build.make @@ -0,0 +1,102 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include examples/CMakeFiles/jan_test.dir/depend.make + +# Include the progress variables for this target. +include examples/CMakeFiles/jan_test.dir/progress.make + +# Include the compile flags for this target's objects. +include examples/CMakeFiles/jan_test.dir/flags.make + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: examples/CMakeFiles/jan_test.dir/flags.make +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: examples/jan_test.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/CMakeFiles/jan_test.dir/jan_test.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/jan_test.dir/jan_test.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/jan_test.cpp + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/jan_test.dir/jan_test.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/jan_test.cpp > CMakeFiles/jan_test.dir/jan_test.cpp.i + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/jan_test.dir/jan_test.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/jan_test.cpp -o CMakeFiles/jan_test.dir/jan_test.cpp.s + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.requires: +.PHONY : examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.requires + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.provides: examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.requires + $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.provides.build +.PHONY : examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.provides + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.provides.build: examples/CMakeFiles/jan_test.dir/jan_test.cpp.o + +# Object files for target jan_test +jan_test_OBJECTS = \ +"CMakeFiles/jan_test.dir/jan_test.cpp.o" + +# External object files for target jan_test +jan_test_EXTERNAL_OBJECTS = + +examples/jan_test: examples/CMakeFiles/jan_test.dir/jan_test.cpp.o +examples/jan_test: examples/CMakeFiles/jan_test.dir/build.make +examples/jan_test: examples/CMakeFiles/jan_test.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX executable jan_test" + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/jan_test.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +examples/CMakeFiles/jan_test.dir/build: examples/jan_test +.PHONY : examples/CMakeFiles/jan_test.dir/build + +examples/CMakeFiles/jan_test.dir/requires: examples/CMakeFiles/jan_test.dir/jan_test.cpp.o.requires +.PHONY : examples/CMakeFiles/jan_test.dir/requires + +examples/CMakeFiles/jan_test.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/examples && $(CMAKE_COMMAND) -P CMakeFiles/jan_test.dir/cmake_clean.cmake +.PHONY : examples/CMakeFiles/jan_test.dir/clean + +examples/CMakeFiles/jan_test.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples /home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/jan_test.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : examples/CMakeFiles/jan_test.dir/depend + diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/cmake_clean.cmake b/replication_listener/examples/CMakeFiles/jan_test.dir/cmake_clean.cmake new file mode 100644 index 000000000..de16b6f69 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/jan_test.dir/jan_test.cpp.o" + "jan_test.pdb" + "jan_test" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/jan_test.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/depend.internal b/replication_listener/examples/CMakeFiles/jan_test.dir/depend.internal new file mode 100644 index 000000000..608c9ae93 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/depend.internal @@ -0,0 +1,23 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/jan_test.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/listener_exception.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/table_replication_consistency.h + include/tcp_driver.h + include/value.h diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/depend.make b/replication_listener/examples/CMakeFiles/jan_test.dir/depend.make new file mode 100644 index 000000000..bc6a8680c --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/depend.make @@ -0,0 +1,23 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: examples/jan_test.cpp +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/access_method_factory.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/basic_content_handler.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/basic_transaction_parser.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/binlog_api.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/binlog_driver.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/binlog_event.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/bounded_buffer.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/field_iterator.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/file_driver.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/gtid.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/listener_exception.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/protocol.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/resultset_iterator.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/row_of_fields.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/rowset.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/table_replication_consistency.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/tcp_driver.h +examples/CMakeFiles/jan_test.dir/jan_test.cpp.o: include/value.h + diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/flags.make b/replication_listener/examples/CMakeFiles/jan_test.dir/flags.make new file mode 100644 index 000000000..0b9be5256 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -I/home/jan/skysql/skygateway/replication_listener/include -I/include + +CXX_DEFINES = + diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/link.txt b/replication_listener/examples/CMakeFiles/jan_test.dir/link.txt new file mode 100644 index 000000000..7596c5b05 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/jan_test.dir/jan_test.cpp.o -o jan_test -rdynamic -L/home/jan/skysql/skygateway/replication_listener/lib -lboost_system -lreplication -Wl,-rpath,/home/jan/skysql/skygateway/replication_listener/lib diff --git a/replication_listener/examples/CMakeFiles/jan_test.dir/progress.make b/replication_listener/examples/CMakeFiles/jan_test.dir/progress.make new file mode 100644 index 000000000..822db7508 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/jan_test.dir/progress.make @@ -0,0 +1,2 @@ +CMAKE_PROGRESS_1 = 3 + diff --git a/replication_listener/examples/CMakeFiles/progress.marks b/replication_listener/examples/CMakeFiles/progress.marks new file mode 100644 index 000000000..00750edc0 --- /dev/null +++ b/replication_listener/examples/CMakeFiles/progress.marks @@ -0,0 +1 @@ +3 diff --git a/replication_listener/examples/CMakeLists.txt b/replication_listener/examples/CMakeLists.txt new file mode 100644 index 000000000..e6e6d38a0 --- /dev/null +++ b/replication_listener/examples/CMakeLists.txt @@ -0,0 +1,13 @@ +project(examples) + +link_directories(${PROJECT_BUILD_DIR}/lib) +include_directories(${PROJECT_BUILD_DIR}/include) + +# Create build rules for all the simple examples that only require a +# single file. +foreach(prog basic-1 basic-2 jan_test) + ADD_EXECUTABLE(${prog} ${prog}.cpp) + TARGET_LINK_LIBRARIES(${prog} boost_system replication) +endforeach() + +add_subdirectory(mysql2lucene EXCLUDE_FROM_ALL) diff --git a/replication_listener/examples/Makefile b/replication_listener/examples/Makefile new file mode 100644 index 000000000..e23e1d41c --- /dev/null +++ b/replication_listener/examples/Makefile @@ -0,0 +1,315 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." + /usr/bin/cmake -i . +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles /home/jan/skysql/skygateway/replication_listener/examples/CMakeFiles/progress.marks + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +examples/CMakeFiles/basic-1.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/basic-1.dir/rule +.PHONY : examples/CMakeFiles/basic-1.dir/rule + +# Convenience name for target. +basic-1: examples/CMakeFiles/basic-1.dir/rule +.PHONY : basic-1 + +# fast build rule for target. +basic-1/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/build +.PHONY : basic-1/fast + +# Convenience name for target. +examples/CMakeFiles/basic-2.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/basic-2.dir/rule +.PHONY : examples/CMakeFiles/basic-2.dir/rule + +# Convenience name for target. +basic-2: examples/CMakeFiles/basic-2.dir/rule +.PHONY : basic-2 + +# fast build rule for target. +basic-2/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/build +.PHONY : basic-2/fast + +# Convenience name for target. +examples/CMakeFiles/jan_test.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/CMakeFiles/jan_test.dir/rule +.PHONY : examples/CMakeFiles/jan_test.dir/rule + +# Convenience name for target. +jan_test: examples/CMakeFiles/jan_test.dir/rule +.PHONY : jan_test + +# fast build rule for target. +jan_test/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/build +.PHONY : jan_test/fast + +basic-1.o: basic-1.cpp.o +.PHONY : basic-1.o + +# target to build an object file +basic-1.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/basic-1.cpp.o +.PHONY : basic-1.cpp.o + +basic-1.i: basic-1.cpp.i +.PHONY : basic-1.i + +# target to preprocess a source file +basic-1.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/basic-1.cpp.i +.PHONY : basic-1.cpp.i + +basic-1.s: basic-1.cpp.s +.PHONY : basic-1.s + +# target to generate assembly for a file +basic-1.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-1.dir/build.make examples/CMakeFiles/basic-1.dir/basic-1.cpp.s +.PHONY : basic-1.cpp.s + +basic-2.o: basic-2.cpp.o +.PHONY : basic-2.o + +# target to build an object file +basic-2.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/basic-2.cpp.o +.PHONY : basic-2.cpp.o + +basic-2.i: basic-2.cpp.i +.PHONY : basic-2.i + +# target to preprocess a source file +basic-2.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/basic-2.cpp.i +.PHONY : basic-2.cpp.i + +basic-2.s: basic-2.cpp.s +.PHONY : basic-2.s + +# target to generate assembly for a file +basic-2.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/basic-2.dir/build.make examples/CMakeFiles/basic-2.dir/basic-2.cpp.s +.PHONY : basic-2.cpp.s + +jan_test.o: jan_test.cpp.o +.PHONY : jan_test.o + +# target to build an object file +jan_test.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/jan_test.cpp.o +.PHONY : jan_test.cpp.o + +jan_test.i: jan_test.cpp.i +.PHONY : jan_test.i + +# target to preprocess a source file +jan_test.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/jan_test.cpp.i +.PHONY : jan_test.cpp.i + +jan_test.s: jan_test.cpp.s +.PHONY : jan_test.s + +# target to generate assembly for a file +jan_test.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/CMakeFiles/jan_test.dir/build.make examples/CMakeFiles/jan_test.dir/jan_test.cpp.s +.PHONY : jan_test.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... basic-1" + @echo "... basic-2" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... jan_test" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... basic-1.o" + @echo "... basic-1.i" + @echo "... basic-1.s" + @echo "... basic-2.o" + @echo "... basic-2.i" + @echo "... basic-2.s" + @echo "... jan_test.o" + @echo "... jan_test.i" + @echo "... jan_test.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/examples/basic-1.cpp b/replication_listener/examples/basic-1.cpp new file mode 100644 index 000000000..67a687e4f --- /dev/null +++ b/replication_listener/examples/basic-1.cpp @@ -0,0 +1,36 @@ +#include "binlog_api.h" + +/** + @file basic-1 + @author Mats Kindahl + + This is a basic example that just opens a binary log either from a + file or a server and print out what events are found. It uses a + simple event loop and checks information in the events using a + switch. + */ + +using mysql::Binary_log; +using mysql::system::create_transport; + +int main(int argc, char** argv) { + + if (argc != 2) { + std::cerr << "Usage: basic-2 " << std::endl; + exit(2); + } + + Binary_log binlog(create_transport(argv[1])); + binlog.connect(); + + Binary_log_event *event; + + while (true) { + int result = binlog.wait_for_next_event(&event); + if (result == ERR_EOF) + break; + std::cout << "Found event of type " + << event->get_event_type() + << std::endl; + } +} diff --git a/replication_listener/examples/basic-2.cpp b/replication_listener/examples/basic-2.cpp new file mode 100644 index 000000000..79f724c95 --- /dev/null +++ b/replication_listener/examples/basic-2.cpp @@ -0,0 +1,94 @@ +#include "binlog_api.h" + +#include +#include +#include + +/* + Here is a basic system using the event loop to fetch context events + and store them in an associative array. + */ +using mysql::Binary_log; +using mysql::system::create_transport; +using mysql::system::get_event_type_str; +using mysql::User_var_event; + +/** + * Class to maintain variable values. + */ +template +class Save_variables : public Content_handler { +public: + Save_variables(AssociativeContainer& container) + : m_var(container) + { + } + + Binary_log_event *process_event(User_var_event *event) { + m_var[event->name] = event->value; + return NULL; + } + +private: + AssociativeContainer &m_var; +}; + + +template +class Replace_variables : public Content_handler { +public: + Replace_variables(AssociativeContainer& variables) + : m_var(variables) + { + } + + Binary_log_event *process_event(Query_event *event) { + std::string *query = &event->query; + size_t start, end = 0; + while (true) { + start = query->find_first_of("@", end); + if (start == std::string::npos) + break; + end = query->find_first_not_of("abcdefghijklmnopqrstuvwxyz", start+1); + std::string key = query->substr(start + 1, end - start - 1); + query->replace(start, end - start, "'" + m_var[key] + "'"); + } + return event; + } +private: + AssociativeContainer &m_var; +}; + + +int main(int argc, char** argv) { + typedef std::map Map; + + if (argc != 2) { + std::cerr << "Usage: basic-2 " << std::endl; + exit(2); + } + + Binary_log binlog(create_transport(argv[1])); + binlog.connect(); + + binlog.set_position(4); + + Map variables; + Save_variables save_variables(variables); + binlog.content_handler_pipeline()->push_back(&save_variables); + Replace_variables replace_variables(variables); + binlog.content_handler_pipeline()->push_back(&replace_variables); + + while (true) { + Binary_log_event *event; + int result = binlog.wait_for_next_event(&event); + if (result == ERR_EOF) + break; + switch (event->get_event_type()) { + case QUERY_EVENT: + std::cout << static_cast(event)->query + << std::endl; + break; + } + } +} diff --git a/replication_listener/examples/cmake_install.cmake b/replication_listener/examples/cmake_install.cmake new file mode 100644 index 000000000..fa29ca017 --- /dev/null +++ b/replication_listener/examples/cmake_install.cmake @@ -0,0 +1,39 @@ +# Install script for directory: /home/jan/skysql/skygateway/replication_listener/examples + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "1") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + +IF(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for each subdirectory. + +ENDIF(NOT CMAKE_INSTALL_LOCAL_ONLY) + diff --git a/replication_listener/examples/jan_test.cpp b/replication_listener/examples/jan_test.cpp new file mode 100644 index 000000000..1fcfcff42 --- /dev/null +++ b/replication_listener/examples/jan_test.cpp @@ -0,0 +1,197 @@ +#include "binlog_api.h" +#include "my_pthread.h" +#include "listener_exception.h" +#include "table_replication_consistency.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using mysql::Binary_log; +using mysql::system::create_transport; +using namespace std; +using namespace mysql::system; + +void* binlog_reader(void * arg) +{ + replication_listener_t *rlt = (replication_listener_t*)arg; + char *uri = rlt->server_url; + map tid2tname; + map::iterator tb_it; + pthread_t id = pthread_self(); + string database_dot_table; + const char* server_type; + Gtid gtid(0,1,31); + + try { + Binary_log binlog(create_transport(uri)); + binlog.connect(gtid); + + server_type = binlog.get_mysql_server_type_str(); + + cout << "Server " << uri << " type: " << server_type << endl; + + Binary_log_event *event; + + while (true) { + Log_event_header *lheader; + + int result = binlog.wait_for_next_event(&event); + + if (result == ERR_EOF) + break; + + lheader = event->header(); + + switch(event->get_event_type()) { + + case QUERY_EVENT: { + Query_event *qevent = dynamic_cast(event); + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " query " << qevent->query << " db " << qevent->db_name + << std::endl; + break; + } + + case GTID_EVENT_MARIADB: + case GTID_EVENT_MYSQL: + { + Gtid_event *gevent = dynamic_cast(event); + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " GTID " << gevent->domain_id << "-" << gevent->server_id << "-" << gevent->sequence_number + << std::endl; + + break; + + } + + case TABLE_MAP_EVENT: { + Table_map_event *table_map_event= dynamic_cast(event); + database_dot_table= table_map_event->db_name; + database_dot_table.append("."); + database_dot_table.append(table_map_event->table_name); + tid2tname[table_map_event->table_id]= database_dot_table; + break; + } + + case WRITE_ROWS_EVENT: + case UPDATE_ROWS_EVENT: + case DELETE_ROWS_EVENT: + { + Row_event *revent = dynamic_cast(event); + tb_it= tid2tname.begin(); + tb_it= tid2tname.find(revent->table_id); + if (tb_it != tid2tname.end()) + { + database_dot_table= tb_it->second; + } + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " table " << revent->table_id + << " tb " << database_dot_table + << std::endl; + break; + + } + default: + break; + } // switch + } // while + } // try + catch(ListenerException e) + { + std::cerr << "Listener exception: " << e.what() << std::endl; + } + catch(boost::system::error_code e) + { + std::cerr << "Listener system error: " << e.message() << std::endl; + } + // Try and catch all exceptions + catch(std::exception const& e) + { + std::cerr << "Listener other error: " << e.what() << std::endl; + } + // Rest of them + catch(...) + { + std::cerr << "Unknown exception: " << std::endl; + // Re-Throw this one. + // It was not handled so you want to make sure it is handled correctly by + // the OS. So just allow the exception to keep propagating. + throw; + } + + pthread_exit(NULL); + return NULL; + +} + +int main(int argc, char** argv) { + + int number_of_args = argc; + int i=0,k=0; + pthread_t *tid=NULL; + char *uri; + replication_listener_t *mrl; + int err=0; + + tid = (pthread_t*)malloc(sizeof(pthread_t) * argc); + mrl = (replication_listener_t*)calloc(argc, sizeof(replication_listener_t)); + + if (argc < 2) { + std::cerr << "Usage: basic-2 " << std::endl; + exit(2); + } + argc =0; + while(argc != number_of_args) + { + uri= argv[argc++]; + + if ( strncmp("mysql://", uri, 8) == 0) + { + + mrl[i].server_url = uri; + + if (argc == 1) { + mrl[i].is_master = 1; + } + + err = pthread_create(&(tid[i++]), NULL, &binlog_reader, (void *)&mrl[i]); + + if (err ) { + perror(NULL); + break; + } + + } + }//end of outer while loop + + for(k=0; k < i; k++) + { + err = pthread_join(tid[k], (void **)&(mrl[k])); + + if (err) { + perror(NULL); + } + } + + exit(0); + +} diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake b/replication_listener/examples/mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..592109dfe --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jan/skysql/skygateway/replication_listener") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jan/skysql/skygateway/replication_listener") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/CXX.includecache b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/CXX.includecache new file mode 100644 index 000000000..dd8e13ee7 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/CXX.includecache @@ -0,0 +1,244 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/main.cpp +stdlib.h +- +boost/foreach.hpp +- +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/binlog_api.h +table_update.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_update.h +table_delete.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.h +table_insert.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.h +table_index.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_index.h + +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.h +string +- +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/binlog_api.h + +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_index.h +binlog_event.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/binlog_event.h +map +- +basic_content_handler.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/basic_content_handler.h + +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.h +string +- +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/binlog_api.h + +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_update.h +string +- +binlog_api.h +/home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/binlog_api.h + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake new file mode 100644 index 000000000..fa4972aa1 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake @@ -0,0 +1,27 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/main.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_delete.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_index.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_insert.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_update.cpp" "/home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake" + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make new file mode 100644 index 000000000..a1fddc3f0 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make @@ -0,0 +1,210 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.make + +# Include the progress variables for this target. +include examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/progress.make + +# Include the compile flags for this target's objects. +include examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/main.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/mysql2lucene.dir/main.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/main.cpp + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/mysql2lucene.dir/main.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/main.cpp > CMakeFiles/mysql2lucene.dir/main.cpp.i + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/mysql2lucene.dir/main.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/main.cpp -o CMakeFiles/mysql2lucene.dir/main.cpp.s + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.requires: +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.provides: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.requires + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.provides.build +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.provides + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.provides.build: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: examples/mysql2lucene/table_delete.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/mysql2lucene.dir/table_delete.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_delete.cpp + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/mysql2lucene.dir/table_delete.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_delete.cpp > CMakeFiles/mysql2lucene.dir/table_delete.cpp.i + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/mysql2lucene.dir/table_delete.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_delete.cpp -o CMakeFiles/mysql2lucene.dir/table_delete.cpp.s + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.requires: +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.provides: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.requires + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.provides.build +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.provides + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.provides.build: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: examples/mysql2lucene/table_index.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/mysql2lucene.dir/table_index.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_index.cpp + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/mysql2lucene.dir/table_index.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_index.cpp > CMakeFiles/mysql2lucene.dir/table_index.cpp.i + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/mysql2lucene.dir/table_index.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_index.cpp -o CMakeFiles/mysql2lucene.dir/table_index.cpp.s + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.requires: +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.provides: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.requires + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.provides.build +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.provides + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.provides.build: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: examples/mysql2lucene/table_insert.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/mysql2lucene.dir/table_insert.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_insert.cpp + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/mysql2lucene.dir/table_insert.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_insert.cpp > CMakeFiles/mysql2lucene.dir/table_insert.cpp.i + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/mysql2lucene.dir/table_insert.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_insert.cpp -o CMakeFiles/mysql2lucene.dir/table_insert.cpp.s + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.requires: +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.provides: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.requires + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.provides.build +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.provides + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.provides.build: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/table_update.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/mysql2lucene.dir/table_update.cpp.o -c /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_update.cpp + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/mysql2lucene.dir/table_update.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_update.cpp > CMakeFiles/mysql2lucene.dir/table_update.cpp.i + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/mysql2lucene.dir/table_update.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/table_update.cpp -o CMakeFiles/mysql2lucene.dir/table_update.cpp.s + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.requires: +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.provides: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.requires + $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.provides.build +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.provides + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.provides.build: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o + +# Object files for target mysql2lucene +mysql2lucene_OBJECTS = \ +"CMakeFiles/mysql2lucene.dir/main.cpp.o" \ +"CMakeFiles/mysql2lucene.dir/table_delete.cpp.o" \ +"CMakeFiles/mysql2lucene.dir/table_index.cpp.o" \ +"CMakeFiles/mysql2lucene.dir/table_insert.cpp.o" \ +"CMakeFiles/mysql2lucene.dir/table_update.cpp.o" + +# External object files for target mysql2lucene +mysql2lucene_EXTERNAL_OBJECTS = + +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make +examples/mysql2lucene/mysql2lucene: lib/libreplication.a +examples/mysql2lucene/mysql2lucene: /usr/lib/libboost_system-mt.so +examples/mysql2lucene/mysql2lucene: /usr/lib/libboost_thread-mt.so +examples/mysql2lucene/mysql2lucene: /usr/lib/libmysqlclient_r.so +examples/mysql2lucene/mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX executable mysql2lucene" + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/mysql2lucene.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build: examples/mysql2lucene/mysql2lucene +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o.requires +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o.requires +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o.requires +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o.requires +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o.requires +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/requires + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene && $(CMAKE_COMMAND) -P CMakeFiles/mysql2lucene.dir/cmake_clean.cmake +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/clean + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend + diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/cmake_clean.cmake b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/cmake_clean.cmake new file mode 100644 index 000000000..a2cb3a826 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/cmake_clean.cmake @@ -0,0 +1,14 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/mysql2lucene.dir/main.cpp.o" + "CMakeFiles/mysql2lucene.dir/table_delete.cpp.o" + "CMakeFiles/mysql2lucene.dir/table_index.cpp.o" + "CMakeFiles/mysql2lucene.dir/table_insert.cpp.o" + "CMakeFiles/mysql2lucene.dir/table_update.cpp.o" + "mysql2lucene.pdb" + "mysql2lucene" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/mysql2lucene.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.internal b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.internal new file mode 100644 index 000000000..7e466b24f --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.internal @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/main.cpp + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_index.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_update.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/globals.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.cpp + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_index.cpp + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_index.h + include/basic_content_handler.h + include/binlog_event.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/globals.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.cpp + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_delete.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_insert.h + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_update.cpp + /home/jan/Downloads/mysql-replication-listener-master/examples/mysql2lucene/table_update.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.make b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.make new file mode 100644 index 000000000..6d67802a5 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/depend.make @@ -0,0 +1,88 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/main.cpp +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/table_delete.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/table_index.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/table_insert.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: examples/mysql2lucene/table_update.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/access_method_factory.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/basic_content_handler.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/basic_transaction_parser.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/binlog_api.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/binlog_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/binlog_event.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/bounded_buffer.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/field_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/file_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/gtid.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/protocol.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/resultset_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/row_of_fields.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/rowset.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/tcp_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o: include/value.h + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: examples/mysql2lucene/globals.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: examples/mysql2lucene/table_delete.cpp +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: examples/mysql2lucene/table_delete.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/access_method_factory.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/basic_content_handler.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/basic_transaction_parser.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/binlog_api.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/binlog_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/binlog_event.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/bounded_buffer.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/field_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/file_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/protocol.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/resultset_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/row_of_fields.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/rowset.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/tcp_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o: include/value.h + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: examples/mysql2lucene/table_index.cpp +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: examples/mysql2lucene/table_index.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: include/basic_content_handler.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o: include/binlog_event.h + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: examples/mysql2lucene/globals.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: examples/mysql2lucene/table_insert.cpp +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: examples/mysql2lucene/table_insert.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/access_method_factory.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/basic_content_handler.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/basic_transaction_parser.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/binlog_api.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/binlog_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/binlog_event.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/bounded_buffer.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/field_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/file_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/protocol.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/resultset_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/row_of_fields.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/rowset.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/tcp_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o: include/value.h + +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/table_delete.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/table_insert.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/table_update.cpp +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: examples/mysql2lucene/table_update.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/access_method_factory.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/basic_content_handler.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/basic_transaction_parser.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/binlog_api.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/binlog_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/binlog_event.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/bounded_buffer.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/field_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/file_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/protocol.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/resultset_iterator.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/row_of_fields.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/rowset.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/tcp_driver.h +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o: include/value.h + diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make new file mode 100644 index 000000000..0b9be5256 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -I/home/jan/skysql/skygateway/replication_listener/include -I/include + +CXX_DEFINES = + diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/link.txt b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/link.txt new file mode 100644 index 000000000..1cf98b518 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/mysql2lucene.dir/main.cpp.o CMakeFiles/mysql2lucene.dir/table_delete.cpp.o CMakeFiles/mysql2lucene.dir/table_index.cpp.o CMakeFiles/mysql2lucene.dir/table_insert.cpp.o CMakeFiles/mysql2lucene.dir/table_update.cpp.o -o mysql2lucene -rdynamic -L/home/jan/skysql/skygateway/replication_listener/lib ../../lib/libreplication.a -lcrypto -lboost_system-mt -lboost_thread-mt -lpthread -lmysqlclient_r -Wl,-rpath,/home/jan/skysql/skygateway/replication_listener/lib diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/progress.make b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/progress.make new file mode 100644 index 000000000..c67700f0f --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/progress.make @@ -0,0 +1,6 @@ +CMAKE_PROGRESS_1 = 4 +CMAKE_PROGRESS_2 = 5 +CMAKE_PROGRESS_3 = 6 +CMAKE_PROGRESS_4 = 7 +CMAKE_PROGRESS_5 = 8 + diff --git a/replication_listener/examples/mysql2lucene/CMakeFiles/progress.marks b/replication_listener/examples/mysql2lucene/CMakeFiles/progress.marks new file mode 100644 index 000000000..209e3ef4b --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeFiles/progress.marks @@ -0,0 +1 @@ +20 diff --git a/replication_listener/examples/mysql2lucene/CMakeLists.txt b/replication_listener/examples/mysql2lucene/CMakeLists.txt new file mode 100644 index 000000000..0f40b6763 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/CMakeLists.txt @@ -0,0 +1,9 @@ +project (mysql2lucene) + +find_package(CLucene) + +add_executable(mysql2lucene + main.cpp table_delete.cpp table_index.cpp + table_insert.cpp table_update.cpp) +include_directories(${CLUCENE_INCLUDE_DIR} ${CLUCENE_LIBRARY_DIR}) +target_link_libraries(mysql2lucene ${CLUCENE_LIBRARY} replication_static) diff --git a/replication_listener/examples/mysql2lucene/Makefile b/replication_listener/examples/mysql2lucene/Makefile new file mode 100644 index 000000000..ec1f4d84b --- /dev/null +++ b/replication_listener/examples/mysql2lucene/Makefile @@ -0,0 +1,339 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." + /usr/bin/cmake -i . +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene/CMakeFiles/progress.marks + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule +.PHONY : examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule + +# Convenience name for target. +mysql2lucene: examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/rule +.PHONY : mysql2lucene + +# fast build rule for target. +mysql2lucene/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build +.PHONY : mysql2lucene/fast + +main.o: main.cpp.o +.PHONY : main.o + +# target to build an object file +main.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/main.cpp.s +.PHONY : main.cpp.s + +table_delete.o: table_delete.cpp.o +.PHONY : table_delete.o + +# target to build an object file +table_delete.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.o +.PHONY : table_delete.cpp.o + +table_delete.i: table_delete.cpp.i +.PHONY : table_delete.i + +# target to preprocess a source file +table_delete.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.i +.PHONY : table_delete.cpp.i + +table_delete.s: table_delete.cpp.s +.PHONY : table_delete.s + +# target to generate assembly for a file +table_delete.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_delete.cpp.s +.PHONY : table_delete.cpp.s + +table_index.o: table_index.cpp.o +.PHONY : table_index.o + +# target to build an object file +table_index.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.o +.PHONY : table_index.cpp.o + +table_index.i: table_index.cpp.i +.PHONY : table_index.i + +# target to preprocess a source file +table_index.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.i +.PHONY : table_index.cpp.i + +table_index.s: table_index.cpp.s +.PHONY : table_index.s + +# target to generate assembly for a file +table_index.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_index.cpp.s +.PHONY : table_index.cpp.s + +table_insert.o: table_insert.cpp.o +.PHONY : table_insert.o + +# target to build an object file +table_insert.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.o +.PHONY : table_insert.cpp.o + +table_insert.i: table_insert.cpp.i +.PHONY : table_insert.i + +# target to preprocess a source file +table_insert.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.i +.PHONY : table_insert.cpp.i + +table_insert.s: table_insert.cpp.s +.PHONY : table_insert.s + +# target to generate assembly for a file +table_insert.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_insert.cpp.s +.PHONY : table_insert.cpp.s + +table_update.o: table_update.cpp.o +.PHONY : table_update.o + +# target to build an object file +table_update.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.o +.PHONY : table_update.cpp.o + +table_update.i: table_update.cpp.i +.PHONY : table_update.i + +# target to preprocess a source file +table_update.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.i +.PHONY : table_update.cpp.i + +table_update.s: table_update.cpp.s +.PHONY : table_update.s + +# target to generate assembly for a file +table_update.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/build.make examples/mysql2lucene/CMakeFiles/mysql2lucene.dir/table_update.cpp.s +.PHONY : table_update.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... mysql2lucene" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" + @echo "... table_delete.o" + @echo "... table_delete.i" + @echo "... table_delete.s" + @echo "... table_index.o" + @echo "... table_index.i" + @echo "... table_index.s" + @echo "... table_insert.o" + @echo "... table_insert.i" + @echo "... table_insert.s" + @echo "... table_update.o" + @echo "... table_update.i" + @echo "... table_update.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/examples/mysql2lucene/cmake_install.cmake b/replication_listener/examples/mysql2lucene/cmake_install.cmake new file mode 100644 index 000000000..b9afdb648 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/cmake_install.cmake @@ -0,0 +1,34 @@ +# Install script for directory: /home/jan/skysql/skygateway/replication_listener/examples/mysql2lucene + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "1") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + diff --git a/replication_listener/examples/mysql2lucene/globals.h b/replication_listener/examples/mysql2lucene/globals.h new file mode 100644 index 000000000..fcb847107 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/globals.h @@ -0,0 +1,34 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: globals.h + * Author: thek + * + * Created on den 15 juni 2010, 09:37 + */ + +#ifndef _GLOBALS_H +#define _GLOBALS_H +#include +#include "binlog_api.h" +extern std::string cl_index_file; + +#endif /* _GLOBALS_H */ diff --git a/replication_listener/examples/mysql2lucene/main.cpp b/replication_listener/examples/mysql2lucene/main.cpp new file mode 100644 index 000000000..2f04161d8 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/main.cpp @@ -0,0 +1,212 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: main.cpp + * Author: thek + * + * Created on den 12 maj 2010, 14:47 + */ + +#include +#include +#include "binlog_api.h" + +#include "table_update.h" +#include "table_delete.h" +#include "table_insert.h" + +#include "table_index.h" + +using mysql::system::create_transport; +using mysql::Binary_log; + +std::string cl_index_file; + +class Incident_handler : public mysql::Content_handler +{ +public: + Incident_handler() : mysql::Content_handler() {} + + Binary_log_event *process_event(mysql::Incident_event *incident) + { + std::cout << "Event type: " + << mysql::system::get_event_type_str(incident->get_event_type()) + << " length: " << incident->header()->event_length + << " next pos: " << incident->header()->next_position + << std::endl; + std::cout << "type= " + << (unsigned)incident->type + << " message= " + << incident->message + << std::endl + << std::endl; + /* Consume the event */ + delete incident; + return 0; + } +}; + +class Applier : public mysql::Content_handler +{ +public: + Applier(Table_index *index) + { + m_table_index= index; + } + + mysql::Binary_log_event *process_event(mysql::Row_event *rev) + { + boost::uint64_t table_id= rev->table_id; + Int2event_map::iterator ti_it= m_table_index->find(table_id); + if (ti_it == m_table_index->end ()) + { + std::cout << "Table id " + << table_id + << " was not registered by any preceding table map event." + << std::endl; + return rev; + } + /* + Each row event contains multiple rows and fields. The Row_iterator + allows us to iterate one row at a time. + */ + mysql::Row_event_set rows(rev, ti_it->second); + /* + Create a fuly qualified table name + */ + std::ostringstream os; + os << ti_it->second->db_name << '.' << ti_it->second->table_name; + mysql::Row_event_set::iterator it= rows.begin(); + do { + mysql::Row_of_fields fields= *it; + if (rev->get_event_type() == mysql::WRITE_ROWS_EVENT) + table_insert(os.str(),fields); + if (rev->get_event_type() == mysql::UPDATE_ROWS_EVENT) + { + ++it; + mysql::Row_of_fields fields2= *it; + table_update(os.str(),fields,fields2); + } + if (rev->get_event_type() == mysql::DELETE_ROWS_EVENT) + table_delete(os.str(),fields); + } while (++it != rows.end()); + + /* Consume the event */ + delete rev; + return 0; + } +private: + Table_index *m_table_index; + +}; + +/* + * + */ +int main(int argc, char** argv) +{ + if (argc != 3) + { + fprintf(stderr,"Usage:\n\nmysql2lucene URL\n\nExample:\n\nmysql2lucene mysql://root@127.0.0.1:3306 myindexfile\n\n"); + return (EXIT_FAILURE); + } + + Binary_log binlog(create_transport(argv[1])); + + + cl_index_file.append (argv[2]); + + /* + Attach a custom event content handlers + */ + Incident_handler incident_hndlr; + Table_index table_event_hdlr; + Applier replay_hndlr(&table_event_hdlr); + + binlog.content_handler_pipeline()->push_back(&table_event_hdlr); + binlog.content_handler_pipeline()->push_back(&incident_hndlr); + binlog.content_handler_pipeline()->push_back(&replay_hndlr); + + if (binlog.connect()) + { + fprintf(stderr,"Can't connect to the master.\n"); + return (EXIT_FAILURE); + } + + binlog.set_position("searchbin.000001", 4); + + bool quit= false; + while(!quit) + { + /* + Pull events from the master. This is the heart beat of the event listener. + */ + Binary_log_event *event; + binlog.wait_for_next_event(&event); + + /* + Print the event + */ + std::cout << "Event type: " + << mysql::system::get_event_type_str(event->get_event_type()) + << " length: " << event->header()->event_length + << " next pos: " << event->header()->next_position + << std::endl; + + /* + Perform a special action based on event type + */ + + switch(event->header()->type_code) + { + case mysql::QUERY_EVENT: + { + const mysql::Query_event *qev= static_cast(event); + std::cout << "query= " + << qev->query + << " db= " + << qev->db_name + << std::endl + << std::endl; + if (qev->query.find("DROP TABLE REPLICATION_LISTENER") != std::string::npos) + { + quit= true; + } + } + break; + + case mysql::ROTATE_EVENT: + { + mysql::Rotate_event *rot= static_cast(event); + std::cout << "filename= " + << rot->binlog_file.c_str() + << " pos= " + << rot->binlog_pos + << std::endl + << std::endl; + } + break; + + } // end switch + delete event; + } // end loop + return (EXIT_SUCCESS); +} diff --git a/replication_listener/examples/mysql2lucene/table_delete.cpp b/replication_listener/examples/mysql2lucene/table_delete.cpp new file mode 100644 index 000000000..c5de729c9 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_delete.cpp @@ -0,0 +1,96 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "globals.h" +#include "table_delete.h" + +#include + +CL_NS_USE(index) +CL_NS_USE(util) +CL_NS_USE(store) +CL_NS_USE(search) +CL_NS_USE(document) +CL_NS_USE(queryParser) +CL_NS_USE(analysis) +CL_NS_USE2(analysis,standard) + +void table_delete(std::string table_name, mysql::Row_of_fields &fields) +{ + + mysql::Row_of_fields::iterator field_it= fields.begin(); + /* + * First column must be an integer key value + */ + if (!(field_it->type() == mysql::system::MYSQL_TYPE_LONG || + field_it->type() == mysql::system::MYSQL_TYPE_SHORT || + field_it->type() == mysql::system::MYSQL_TYPE_LONGLONG)) + return; + + int field_id= 0; + std::string key; + std::string combined_key; + mysql::Converter converter; + converter.to(key, *field_it); + combined_key.append (table_name); + combined_key.append ("_"); + combined_key.append (key); + do { + /* + Each row contains a vector of Value objects. The converter + allows us to transform the value into another + representation. + Only index fields which might contain searchable information. + */ + if (field_it->type() == mysql::system::MYSQL_TYPE_VARCHAR || + field_it->type() == mysql::system::MYSQL_TYPE_MEDIUM_BLOB || + field_it->type() == mysql::system::MYSQL_TYPE_BLOB) + { + std::string str; + converter.to(str, *field_it); + StandardAnalyzer an; + IndexReader *reader; + /* + * Create a Lucene index writer + */ + if ( IndexReader::indexExists(cl_index_file.c_str()) ) + { + if ( IndexReader::isLocked(cl_index_file.c_str()) ) + { + std::cout << "Index was locked; unlocking it." + << std::endl; + IndexReader::unlock(cl_index_file.c_str()); + } + reader= IndexReader::open(cl_index_file.c_str()); + } + + std::cout << "Deleting index '" + << combined_key + << "'" << std::endl; + TCHAR *combined_key_w= STRDUP_AtoW(combined_key.c_str ()); + Term uniqueKey(_T("id"),combined_key_w); + reader->deleteDocuments(&uniqueKey); + delete combined_key_w; + reader->close(); + delete reader; + break; + } + } while(++field_it != fields.end()); +} diff --git a/replication_listener/examples/mysql2lucene/table_delete.h b/replication_listener/examples/mysql2lucene/table_delete.h new file mode 100644 index 000000000..68443d4ff --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_delete.h @@ -0,0 +1,35 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: table_delete.h + * Author: thek + * + * Created on den 17 juni 2010, 14:28 + */ + +#ifndef _TABLE_DELETE_H +#define _TABLE_DELETE_H +#include +#include "binlog_api.h" + +void table_delete(std::string table_name, mysql::Row_of_fields &fields); + +#endif /* _TABLE_DELETE_H */ diff --git a/replication_listener/examples/mysql2lucene/table_index.cpp b/replication_listener/examples/mysql2lucene/table_index.cpp new file mode 100644 index 000000000..efe9369d0 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_index.cpp @@ -0,0 +1,54 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "table_index.h" + +mysql::Binary_log_event *Table_index::process_event(mysql::Table_map_event *tm) +{ + if (find(tm->table_id) == end()) + insert(Event_index_element(tm->table_id,tm)); + + /* Consume this event so it won't be deallocated beneith our feet */ + return 0; +} + +Table_index::~Table_index () +{ + Int2event_map::iterator it= begin(); + do + { + delete it->second; + } while( ++it != end()); +} + +int Table_index::get_table_name(int table_id, std::string out) +{ + iterator it; + if ((it= find(table_id)) == end()) + { + std::stringstream os; + os << "unknown_table_" << table_id; + out.append(os.str()); + return 1; + } + + out.append(it->second->table_name); + return 0; +} diff --git a/replication_listener/examples/mysql2lucene/table_index.h b/replication_listener/examples/mysql2lucene/table_index.h new file mode 100644 index 000000000..4b89441d6 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_index.h @@ -0,0 +1,49 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: table_index.h + * Author: thek + * + * Created on den 8 september 2010, 13:47 + */ + +#ifndef TABLE_INDEX_H +#define TABLE_INDEX_H +#include "binlog_event.h" +#include +#include "basic_content_handler.h" + +typedef std::pair Event_index_element; +typedef std::map Int2event_map; + +class Table_index : public mysql::Content_handler, public Int2event_map +{ +public: + mysql::Binary_log_event *process_event(mysql::Table_map_event *tm); + + ~Table_index(); + + int get_table_name(int table_id, std::string out); + +}; + + +#endif /* TABLE_INDEX_H */ diff --git a/replication_listener/examples/mysql2lucene/table_insert.cpp b/replication_listener/examples/mysql2lucene/table_insert.cpp new file mode 100644 index 000000000..22548ea24 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_insert.cpp @@ -0,0 +1,152 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "globals.h" +#include "table_insert.h" + +#include +#include +#include + +CL_NS_USE(index) +CL_NS_USE(util) +CL_NS_USE(store) +CL_NS_USE(search) +CL_NS_USE(document) +CL_NS_USE(queryParser) +CL_NS_USE(analysis) +CL_NS_USE2(analysis,standard) + +void table_insert(std::string table_name, mysql::Row_of_fields &fields) +{ + mysql::Row_of_fields::iterator field_it= fields.begin(); + /* + * First column must be an integer key value + */ + if (!(field_it->type() == mysql::system::MYSQL_TYPE_LONG || + field_it->type() == mysql::system::MYSQL_TYPE_SHORT || + field_it->type() == mysql::system::MYSQL_TYPE_LONGLONG)) + return; + + Document *doc= new Document(); + IndexWriter* writer = NULL; + StandardAnalyzer an; + mysql::Converter converter; + bool found_searchable= false; + int col= 0; + TCHAR *w_table_name; + TCHAR *w_str; + TCHAR *w_key_str; + TCHAR *w_combined_key; + std::string aggstr; + + /* + * Create a Lucene index writer + */ + if ( IndexReader::indexExists(cl_index_file.c_str()) ) + { + if ( IndexReader::isLocked(cl_index_file.c_str()) ) + { + printf("Index was locked... unlocking it.\n"); + IndexReader::unlock(cl_index_file.c_str()); + } + writer = new IndexWriter( cl_index_file.c_str(), &an, false); + }else{ + writer = new IndexWriter( cl_index_file.c_str() ,&an, true); + } + writer->setMaxFieldLength(IndexWriter::DEFAULT_MAX_FIELD_LENGTH); + + /* + * Save the presumed table key for later use when we discover if this row + * should be indexed. + */ + std::string key; + converter.to(key, *field_it); + + do { + /* + Each row contains a vector of Value objects. The converter + allows us to transform the value into another + representation. + Only index fields which might contain searchable information. + */ + if (field_it->type() == mysql::system::MYSQL_TYPE_VARCHAR || + field_it->type() == mysql::system::MYSQL_TYPE_MEDIUM_BLOB || + field_it->type() == mysql::system::MYSQL_TYPE_BLOB) + { + std::string str; + converter.to(str, *field_it); + if (!found_searchable) + { + std::string combined_key; + combined_key.append(table_name); + combined_key.append("_"); + combined_key.append(key); + w_table_name= STRDUP_AtoW(table_name.c_str()); + Field *table_field= new Field(_T("table"),w_table_name, Field::STORE_YES | Field::INDEX_UNTOKENIZED); + doc->add( *table_field ); + found_searchable= true; + w_key_str= STRDUP_AtoW(key.c_str()); + Field *key_field= new Field(_T("row_id"),w_key_str, Field::STORE_YES | Field::INDEX_UNTOKENIZED); + doc->add(*key_field); + w_combined_key= STRDUP_AtoW(combined_key.c_str()); + Field *combined_key_field= new Field(_T("id"),w_combined_key, Field::STORE_YES | Field::INDEX_UNTOKENIZED); + doc->add(*combined_key_field); + } + /* + * Aggregate all searchable information into one string. The key is the + * qualified table name. + */ + aggstr.append(" "); // This separator helps us loosing important tokens. + aggstr.append(str); + ++col; + } + } while(++field_it != fields.end()); + if (found_searchable) + { + std::cout << "Indexing " + << aggstr.length() + << " characters in table '" + << table_name + << "' using key value '" + << key + << "'." + << std::endl; + std::cout.flush (); + w_str= STRDUP_AtoW(aggstr.c_str()); + Field *content_field= new Field(_T("text"),w_str, Field::STORE_YES | Field::INDEX_TOKENIZED); + doc->add( *content_field ); + } + writer->addDocument(doc); + writer->close(); + + /* + * Clean up dynamic allocations during indexing + */ + if (found_searchable) + { + free(w_table_name); + free(w_str); + free(w_key_str); + free(w_combined_key); + } + delete(doc); + delete(writer); +} diff --git a/replication_listener/examples/mysql2lucene/table_insert.h b/replication_listener/examples/mysql2lucene/table_insert.h new file mode 100644 index 000000000..a0a210f36 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_insert.h @@ -0,0 +1,36 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: table_insert.h + * Author: thek + * + * Created on den 15 juni 2010, 09:34 + */ + +#ifndef _TABLE_INSERT_H +#define _TABLE_INSERT_H + +#include +#include "binlog_api.h" + +void table_insert(std::string table_name, mysql::Row_of_fields &fields); + +#endif /* _TABLE_INSERT_H */ diff --git a/replication_listener/examples/mysql2lucene/table_update.cpp b/replication_listener/examples/mysql2lucene/table_update.cpp new file mode 100644 index 000000000..60857a1d0 --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_update.cpp @@ -0,0 +1,37 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "table_update.h" +#include "table_insert.h" +#include "table_delete.h" + +void table_update(std::string table_name, mysql::Row_of_fields &old_fields, mysql::Row_of_fields &new_fields) +{ + /* + Find previous entry and delete it. + */ + table_delete(table_name, old_fields); + + /* + Insert new entry. + */ + table_insert(table_name, new_fields); + +} diff --git a/replication_listener/examples/mysql2lucene/table_update.h b/replication_listener/examples/mysql2lucene/table_update.h new file mode 100644 index 000000000..6ef6c910d --- /dev/null +++ b/replication_listener/examples/mysql2lucene/table_update.h @@ -0,0 +1,34 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +/* + * File: table_update.h + * Author: thek + * + * Created on den 17 juni 2010, 14:27 + */ + +#ifndef _TABLE_UPDATE_H +#define _TABLE_UPDATE_H +#include +#include "binlog_api.h" +void table_update(std::string table_name, mysql::Row_of_fields &old_fields, mysql::Row_of_fields &new_fields); + +#endif /* _TABLE_UPDATE_H */ diff --git a/replication_listener/examples/test.sql b/replication_listener/examples/test.sql new file mode 100644 index 000000000..1e937e44c --- /dev/null +++ b/replication_listener/examples/test.sql @@ -0,0 +1,35 @@ +DROP DATABASE NEW1; +DROP DATABASE NEW2; +CREATE DATABASE NEW1; +CREATE DATABASE NEW2; +USE NEW1; +CREATE TABLE NEW_TEST1(A INT NOT NULL PRIMARY KEY, B INT) ENGINE=INNODB; +CREATE TABLE NEW_TEST2(A INT NOT NULL PRIMARY KEY, B INT) ENGINE=INNODB; +USE NEW2; +CREATE TABLE NEW_TEST3(A INT NOT NULL PRIMARY KEY, B INT) ENGINE=INNODB; +CREATE TABLE NEW_TEST4(A INT NOT NULL PRIMARY KEY, B INT) ENGINE=INNODB; +USE NEW1; +INSERT INTO NEW_TEST1 VALUES (1,1),(2,2)(3,3),(4,4); +INSERT INTO NEW_TEST1 VALUES (5,5),(6,2)(7,3),(8,4); +INSERT INTO NEW_TEST2 VALUES (1,1),(2,2)(3,3),(4,4); +INSERT INTO NEW_TEST2 VALUES (5,5),(6,2)(7,3),(8,4); +INSERT INTO NEW_TEST1 VALUES (9,9); +USE NEW2; +INSERT INTO NEW_TEST3 VALUES (1,1),(2,2)(3,3),(4,4); +INSERT INTO NEW_TEST3 VALUES (5,5),(6,2)(7,3),(8,4); +INSERT INTO NEW_TEST4 VALUES (1,1),(2,2)(3,3),(4,4); +INSERT INTO NEW_TEST4 VALUES (5,5),(6,2)(7,3),(8,4); +INSERT INTO NEW_TEST4 VALUES (9,9); +COMMIT; +USE NEW1; +UPDATE NEW_TEST1 SET B = B + 1; +USE NEW2; +UPDATE NEW_TEST4 SET B = B + 1; +COMMIT; +DELETE FROM NEW1.NEW_TEST2 WHERE A = 3; +DELETE FROM NEW2.NEW_TEST3 WHERE A = 3; +UPDATE NEW1.NEW_TEST1 SET B = B + 5 WHERE A = 4; +UPDATE NEW2.NEW_TEST4 SET B = B + 5 WHERE A = 4; +USE NEW1; +DROP TABLE NEW_TEST1; +DROP TABLE NEW2.NEW_TEST3; diff --git a/replication_listener/homebrew/mysql-replication-listener.rb b/replication_listener/homebrew/mysql-replication-listener.rb new file mode 100644 index 000000000..d8706c2ef --- /dev/null +++ b/replication_listener/homebrew/mysql-replication-listener.rb @@ -0,0 +1,16 @@ +require 'formula' + +class MysqlReplicationListener < Formula + url 'https://bitbucket.org/winebarrel/mysql-replication-listener.git', :tag => '0.0.47-10' + homepage 'https://bitbucket.org/winebarrel/mysql-replication-listener' + + depends_on 'cmake' + depends_on 'boost' + #depends_on 'openssl' + + def install + system 'cmake', '.' + system 'make' + system 'make install' + end +end diff --git a/replication_listener/include/access_method_factory.h b/replication_listener/include/access_method_factory.h new file mode 100644 index 000000000..cc430f378 --- /dev/null +++ b/replication_listener/include/access_method_factory.h @@ -0,0 +1,36 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _ACCESS_METHOD_FACTORY_H +#define _ACCESS_METHOD_FACTORY_H + +#include "binlog_driver.h" + +namespace mysql { +namespace system { +Binary_log_driver *create_transport(const char *url); +Binary_log_driver *parse_mysql_url(char *url, const char + *mysql_access_method); +Binary_log_driver *parse_file_url(char *url, const char + *file_access_method); +} +} + +#endif /* _ACCESS_METHOD_FACTORY_H */ diff --git a/replication_listener/include/basic_content_handler.h b/replication_listener/include/basic_content_handler.h new file mode 100644 index 000000000..72804bab1 --- /dev/null +++ b/replication_listener/include/basic_content_handler.h @@ -0,0 +1,81 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef BASIC_CONTENT_HANDLER_H +#define BASIC_CONTENT_HANDLER_H + +#include "binlog_event.h" + +namespace mysql { + +class Injection_queue : public std::list +{ +public: + Injection_queue() : std::list() {} + ~Injection_queue() {} +}; + +/** + * A content handler accepts an event and returns the same event, + * a new one or 0 (the event was consumed by the content handler). + * The default behaviour is to return the event unaffected. + * The generic event handler is used for events which aren't routed to + * a dedicated member function, user defined events being the most + * common case. + */ + +class Content_handler { +public: + Content_handler(); + Content_handler(const mysql::Content_handler& orig); + virtual ~Content_handler(); + + virtual mysql::Binary_log_event *process_event(mysql::Query_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Row_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Table_map_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Xid *ev); + virtual mysql::Binary_log_event *process_event(mysql::User_var_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Incident_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Rotate_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Int_var_event *ev); + virtual mysql::Binary_log_event *process_event(mysql::Gtid_event *ev); + + /** + Process any event which hasn't been registered yet. + */ + virtual mysql::Binary_log_event *process_event(mysql::Binary_log_event *ev); + +protected: + /** + * The Injection queue is emptied before any new event is pulled from + * the Binary_log_driver. Injected events will pass through all content + * handlers. The Injection_queue is a derived std::list. + */ + Injection_queue *get_injection_queue(); + +private: + Injection_queue *m_reinject_queue; + void set_injection_queue(Injection_queue *injection_queue); + mysql::Binary_log_event *internal_process_event(mysql::Binary_log_event *ev); + + friend class Binary_log; +}; + +} // end namespace +#endif /* BASIC_CONTENT_HANDLER_H */ diff --git a/replication_listener/include/basic_transaction_parser.h b/replication_listener/include/basic_transaction_parser.h new file mode 100644 index 000000000..650cbdf4e --- /dev/null +++ b/replication_listener/include/basic_transaction_parser.h @@ -0,0 +1,83 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef _BASIC_TRANSACTION_PARSER_H +#define _BASIC_TRANSACTION_PARSER_H + +/* + TODO The Transaction_log_event and Basic_transaction_parser will be removed + from this library and replaced with a table map indexer instead which can be + used to retrive table names. +*/ + +#include +#include +#include "binlog_event.h" +#include "basic_content_handler.h" + +#include + +namespace mysql { +typedef std::pair Event_index_element; +typedef std::map Int_to_Event_map; +class Transaction_log_event : public Binary_log_event +{ +public: + Transaction_log_event() : Binary_log_event() {} + Transaction_log_event(Log_event_header *header) : Binary_log_event(header) {} + virtual ~Transaction_log_event(); + + Int_to_Event_map &table_map() { return m_table_map; } + /** + * Index for easier table name look up + */ + Int_to_Event_map m_table_map; + + std::list m_events; +}; + +Transaction_log_event *create_transaction_log_event(void); + +class Basic_transaction_parser : public mysql::Content_handler +{ +public: + Basic_transaction_parser() : mysql::Content_handler() + { + m_transaction_state= NOT_IN_PROGRESS; + } + + mysql::Binary_log_event *process_event(mysql::Query_event *ev); + mysql::Binary_log_event *process_event(mysql::Row_event *ev); + mysql::Binary_log_event *process_event(mysql::Table_map_event *ev); + mysql::Binary_log_event *process_event(mysql::Xid *ev); + mysql::Binary_log_event *process_event(mysql::Binary_log_event *ev) {return ev; } + mysql::Binary_log_event *process_event(mysql::Gtid_event *ev); + +private: + boost::uint32_t m_start_time; + enum Transaction_states { STARTING, IN_PROGRESS, COMMITTING, NOT_IN_PROGRESS } ; + enum Transaction_states m_transaction_state; + std::list m_event_stack; + mysql::Binary_log_event *process_transaction_state(mysql::Binary_log_event *ev); +}; + +} // end namespace + +#endif /* _BASIC_TRANSACTION_PARSER_H */ + diff --git a/replication_listener/include/binlog_api.h b/replication_listener/include/binlog_api.h new file mode 100644 index 000000000..88fbc6641 --- /dev/null +++ b/replication_listener/include/binlog_api.h @@ -0,0 +1,179 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _REPEVENT_H +#define _REPEVENT_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "binlog_event.h" +#include "binlog_driver.h" +#include "tcp_driver.h" +#include "file_driver.h" +#include "basic_content_handler.h" +#include "basic_transaction_parser.h" +#include "field_iterator.h" +#include "rowset.h" +#include "access_method_factory.h" +#include "gtid.h" + +namespace io = boost::iostreams; + +namespace mysql +{ + +/** + * Error codes. + */ +enum Error_code { + ERR_OK = 0, /* All OK */ + ERR_EOF, /* End of file */ + ERR_FAIL, /* Unspecified failure */ + ERROR_CODE_COUNT +}; + +/** + * Returns true if the event is consumed + */ +typedef boost::function< bool (Binary_log_event *& )> Event_content_handler; + +class Dummy_driver : public system::Binary_log_driver +{ +public: + Dummy_driver() : Binary_log_driver("", 0) {} + virtual ~Dummy_driver() {} + + virtual int connect(Gtid gtid = Gtid()) { return 1; } + + virtual int wait_for_next_event(mysql::Binary_log_event **event) { + return ERR_EOF; + } + + virtual int set_position(const std::string &str, unsigned long position) { + return ERR_OK; + } + + virtual int set_position_gtid(const Gtid gtid) { + return ERR_OK; + } + + virtual int get_position(std::string *str, unsigned long *position) { + return ERR_OK; + } + + virtual int fetch_server_version(const std::string& user, + const std::string& passwd, + const std::string& host, + long port) + { + return ERR_OK; + } + + virtual void shutdown() {} + +}; + +class Content_handler; + +typedef std::list Content_handler_pipeline; + +class Binary_log { +private: + system::Binary_log_driver *m_driver; + Dummy_driver m_dummy_driver; + Content_handler_pipeline m_content_handlers; + unsigned long m_binlog_position; + std::string m_binlog_file; + mysql_server_types m_server_type; + std::string m_uri; +public: + Binary_log(system::Binary_log_driver *drv); + Binary_log(system::Binary_log_driver *drv, std::string); + ~Binary_log() {} + + int connect(Gtid gtid = Gtid()); + + /** + * Blocking attempt to get the next binlog event from the stream + */ + int wait_for_next_event(Binary_log_event **event); + + + /** + * Inserts/removes content handlers in and out of the chain + * The Content_handler_pipeline is a derived std::list + */ + Content_handler_pipeline *content_handler_pipeline(); + + /** + * Set the binlog position (filename, position) + * + * @return Error_code + * @retval ERR_OK The position is updated. + * @retval ERR_EOF The position is out-of-range + * @retval >= ERR_CODE_COUNT An unspecified error occurred + */ + int set_position(const std::string &filename, unsigned long position); + + /** + * Set the binlog position using current filename + * @param position Requested position + * + * @return Error_code + * @retval ERR_OK The position is updated. + * @retval ERR_EOF The position is out-of-range + * @retval >= ERR_CODE_COUNT An unspecified error occurred + */ + int set_position(unsigned long position); + + int set_position_gtid(const Gtid gtid); + + /** + * Fetch the binlog position for the current file + */ + unsigned long get_position(void); + + /** + * Fetch the current active binlog file name. + * @param[out] filename + * TODO replace reference with a pointer. + * @return The file position + */ + unsigned long get_position(std::string &filename); + + mysql_server_types get_mysql_server_type() const; + const char *get_mysql_server_type_str() const; + + std::string get_url() const {return m_uri; } + + void shutdown(); + +}; + +} + +#endif /* _REPEVENT_H */ diff --git a/replication_listener/include/binlog_driver.h b/replication_listener/include/binlog_driver.h new file mode 100644 index 000000000..0dca3b187 --- /dev/null +++ b/replication_listener/include/binlog_driver.h @@ -0,0 +1,104 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _BINLOG_DRIVER_H +#define _BINLOG_DRIVER_H +#include "binlog_event.h" +#include "protocol.h" +#include "gtid.h" + +namespace mysql { +namespace system { + +class Binary_log_driver +{ +public: + template + Binary_log_driver(const FilenameT& filename = FilenameT(), unsigned int offset = 0) + : m_binlog_file_name(filename), m_binlog_offset(offset), m_server_type(MYSQL_SERVER_TYPE_NA) + { + } + + ~Binary_log_driver() {} + + /** + * Connect to the binary log using previously declared connection parameters + * @return Success or error code + * @retval 0 Success + * @retval >0 Error code (to be specified) + */ + virtual int connect(Gtid gtid = Gtid())= 0; + + + /** + * Blocking attempt to get the next binlog event from the stream + * @param event [out] Pointer to a binary log event to be fetched. + */ + virtual int wait_for_next_event(mysql::Binary_log_event **event)= 0; + + /** + * Set the reader position + * @param str The file name + * @param position The file position + * + * @return False on success and True if an error occurred. + */ + virtual int set_position(const std::string &str, unsigned long position)= 0; + + virtual int set_position_gtid(const Gtid gtid) = 0; + + /** + * Get the read position. + * + * @param[out] string_ptr Pointer to location where the filename will be stored. + * @param[out] position_ptr Pointer to location where the position will be stored. + * + * @retval 0 Success + * @retval >0 Error code + */ + virtual int get_position(std::string *filename_ptr, unsigned long *position_ptr) = 0; + + virtual int fetch_server_version(const std::string& user, + const std::string& passwd, + const std::string& host, + long port) = 0; + + virtual void shutdown() = 0; + + Binary_log_event* parse_event(std::istream &sbuff, Log_event_header *header); + + mysql_server_types get_mysql_server_type() const + { + return m_server_type; + } + +protected: + /** + * Used each time the client reconnects to the server to specify an + * offset position. + */ + unsigned long m_binlog_offset; + std::string m_binlog_file_name; + mysql_server_types m_server_type; +}; + +} // namespace mysql::system +} // namespace mysql +#endif /* _BINLOG_DRIVER_H */ diff --git a/replication_listener/include/binlog_event.h b/replication_listener/include/binlog_event.h new file mode 100644 index 000000000..59c44e60b --- /dev/null +++ b/replication_listener/include/binlog_event.h @@ -0,0 +1,282 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef _BINLOG_EVENT_H +#define _BINLOG_EVENT_H + +#include +#include +#include +#include +#include + +namespace mysql +{ +/** + @enum Log_event_type + + Enumeration type for the different types of log events. +*/ +enum Log_event_type +{ + /* + Every time you update this enum (when you add a type), you have to + fix Format_description_log_event::Format_description_log_event(). + */ + UNKNOWN_EVENT= 0, + START_EVENT_V3= 1, + QUERY_EVENT= 2, + STOP_EVENT= 3, + ROTATE_EVENT= 4, + INTVAR_EVENT= 5, + LOAD_EVENT= 6, + SLAVE_EVENT= 7, + CREATE_FILE_EVENT= 8, + APPEND_BLOCK_EVENT= 9, + EXEC_LOAD_EVENT= 10, + DELETE_FILE_EVENT= 11, + /* + NEW_LOAD_EVENT is like LOAD_EVENT except that it has a longer + sql_ex, allowing multibyte TERMINATED BY etc; both types share the + same class (Load_log_event) + */ + NEW_LOAD_EVENT= 12, + RAND_EVENT= 13, + USER_VAR_EVENT= 14, + FORMAT_DESCRIPTION_EVENT= 15, + XID_EVENT= 16, + BEGIN_LOAD_QUERY_EVENT= 17, + EXECUTE_LOAD_QUERY_EVENT= 18, + + TABLE_MAP_EVENT = 19, + + /* + These event numbers were used for 5.1.0 to 5.1.15 and are + therefore obsolete. + */ + PRE_GA_WRITE_ROWS_EVENT = 20, + PRE_GA_UPDATE_ROWS_EVENT = 21, + PRE_GA_DELETE_ROWS_EVENT = 22, + + /* + These event numbers are used from 5.1.16 and forward + */ + WRITE_ROWS_EVENT = 23, + UPDATE_ROWS_EVENT = 24, + DELETE_ROWS_EVENT = 25, + + /* + Something out of the ordinary happened on the master + */ + INCIDENT_EVENT= 26, + + /* + * A user defined event + */ + USER_DEFINED= 27, + + /* We have two different implementations of global transaction id */ + GTID_EVENT_MYSQL=33, + GTID_EVENT_MARIADB= 162, + /* + Add new events here - right above this comment! + Existing events (except ENUM_END_EVENT) should never change their numbers + */ + + + ENUM_END_EVENT /* end marker */ +}; + +namespace system { +/** + * Convenience function to get the string representation of a binlog event. + */ +const char* get_event_type_str(Log_event_type type); +} // end namespace system + +#define LOG_EVENT_HEADER_SIZE 20 +class Log_event_header +{ +public: + boost::uint8_t marker; // always 0 or 0xFF + boost::uint32_t timestamp; + boost::uint8_t type_code; + boost::uint32_t server_id; + boost::uint32_t event_length; + boost::uint32_t next_position; + boost::uint16_t flags; +}; + + +class Binary_log_event; + +/** + * TODO Base class for events. Implementation is in body() + */ +class Binary_log_event +{ +public: + Binary_log_event() + { + /* + An event length of 0 indicates that the header isn't initialized + */ + m_header.event_length= 0; + m_header.type_code= 0; + } + + Binary_log_event(Log_event_header *header) + { + m_header= *header; + } + + virtual ~Binary_log_event(); + + /** + * Helper method + */ + enum Log_event_type get_event_type() const + { + return (enum Log_event_type) m_header.type_code; + } + + /** + * Return a pointer to the header of the log event + */ + Log_event_header *header() { return &m_header; } + +private: + Log_event_header m_header; +}; + +class Query_event: public Binary_log_event +{ +public: + Query_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint32_t thread_id; + boost::uint32_t exec_time; + boost::uint16_t error_code; + std::vector variables; + + std::string db_name; + std::string query; +}; + +class Gtid_event: public Binary_log_event +{ +public: + Gtid_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint32_t domain_id; + boost::uint32_t server_id; + boost::uint64_t sequence_number; +}; + +class Rotate_event: public Binary_log_event +{ +public: + Rotate_event(Log_event_header *header) : Binary_log_event(header) {} + std::string binlog_file; + boost::uint64_t binlog_pos; +}; + +class Format_event: public Binary_log_event +{ +public: + Format_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint16_t binlog_version; + std::string master_version; + boost::uint32_t created_ts; + boost::uint8_t log_header_len; +}; + +class User_var_event: public Binary_log_event +{ +public: + enum Value_type { + STRING_TYPE, + REAL_TYPE, + INT_TYPE, + ROW_TYPE, + DECIMAL_TYPE, + VALUE_TYPE_COUNT + }; + + User_var_event(Log_event_header *header) : Binary_log_event(header) {} + std::string name; + boost::uint8_t is_null; + boost::uint8_t type; + boost::uint32_t charset; /* charset of the string */ + std::string value; /* encoded in binary speak, depends on .type */ +}; + +class Table_map_event: public Binary_log_event +{ +public: + Table_map_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint64_t table_id; + boost::uint16_t flags; + std::string db_name; + std::string table_name; + std::vector columns; + std::vector metadata; + std::vector null_bits; +}; + +class Row_event: public Binary_log_event +{ +public: + Row_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint64_t table_id; + boost::uint16_t flags; + boost::uint64_t columns_len; + boost::uint32_t null_bits_len; + std::vector columns_before_image; + std::vector used_columns; + std::vector row; +}; + +class Int_var_event: public Binary_log_event +{ +public: + Int_var_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint8_t type; + boost::uint64_t value; +}; + +class Incident_event: public Binary_log_event +{ +public: + Incident_event() : Binary_log_event() {} + Incident_event(Log_event_header *header) : Binary_log_event(header) {} + boost::uint8_t type; + std::string message; +}; + +class Xid: public Binary_log_event +{ +public: + Xid(Log_event_header *header) : Binary_log_event(header) {} + boost::uint64_t xid_id; +}; + +Binary_log_event *create_incident_event(unsigned int type, const char *message, unsigned long pos= 0); + +} // end namespace mysql + +#endif /* _BINLOG_EVENT_H */ diff --git a/replication_listener/include/bounded_buffer.h b/replication_listener/include/bounded_buffer.h new file mode 100644 index 000000000..55e7e8272 --- /dev/null +++ b/replication_listener/include/bounded_buffer.h @@ -0,0 +1,91 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _BOUNDED_BUFFER_H +#define _BOUNDED_BUFFER_H + +#include +#include +#include +#include +#include +#include + +template +class bounded_buffer +{ +public: + + typedef boost::circular_buffer container_type; + typedef typename container_type::size_type size_type; + typedef typename container_type::value_type value_type; + + explicit bounded_buffer(size_type capacity) : m_unread(0), m_container(capacity) {} + + void push_front(const value_type& item) + { + boost::mutex::scoped_lock lock(m_mutex); + m_not_full.wait(lock, boost::bind(&bounded_buffer::is_not_full, this)); + m_container.push_front(item); + ++m_unread; + lock.unlock(); + m_not_empty.notify_one(); + } + + void pop_back(value_type* pItem) + { + boost::mutex::scoped_lock lock(m_mutex); + m_not_empty.wait(lock, boost::bind(&bounded_buffer::is_not_empty, this)); + *pItem = m_container[--m_unread]; + lock.unlock(); + m_not_full.notify_one(); + } + + bool has_unread() + { + boost::mutex::scoped_lock lock(m_mutex); + return is_not_empty(); + } + + void lock() + { + m_mutex.lock(); + } + + void unlock() + { + m_mutex.unlock(); + } +private: + bounded_buffer(const bounded_buffer&); // Disabled copy constructor + bounded_buffer& operator = (const bounded_buffer&); // Disabled assign operator + + bool is_not_empty() const { return m_unread > 0; } + bool is_not_full() const { return m_unread < m_container.capacity(); } + + size_type m_unread; + container_type m_container; + boost::mutex m_mutex; + boost::condition m_not_empty; + boost::condition m_not_full; +}; + +#endif /* _BOUNDED_BUFFER_H */ + diff --git a/replication_listener/include/field_iterator.h b/replication_listener/include/field_iterator.h new file mode 100644 index 000000000..3e7c01a19 --- /dev/null +++ b/replication_listener/include/field_iterator.h @@ -0,0 +1,196 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _FIELD_ITERATOR_H +#define _FIELD_ITERATOR_H +#include "binlog_event.h" +#include "value.h" +#include "row_of_fields.h" +#include + +using namespace mysql; + +namespace mysql { + +bool is_null(unsigned char *bitmap, int index); + +int lookup_metadata_field_size(enum mysql::system::enum_field_types field_type); +boost::uint32_t extract_metadata(const Table_map_event *map, int col_no); + +template +class Row_event_iterator : public std::iterator +{ +public: + Row_event_iterator() : m_row_event(0), m_table_map(0), + m_new_field_offset_calculated(0), m_field_offset(0) + { } + + Row_event_iterator(const Row_event *row_event, + const Table_map_event *table_map) + : m_row_event(row_event), m_table_map(table_map), + m_new_field_offset_calculated(0) + { + m_field_offset= 0; + } + + Iterator_value_type operator*(); + + Row_event_iterator& operator++(); + + Row_event_iterator operator++(int); + + bool operator==(const Row_event_iterator& x) const; + + bool operator!=(const Row_event_iterator& x) const; + + //Row_iterator end() const; +private: + size_t fields(Iterator_value_type& fields_vector ); + const Row_event *m_row_event; + const Table_map_event *m_table_map; + unsigned long m_new_field_offset_calculated; + unsigned long m_field_offset; +}; + + + +template +size_t Row_event_iterator::fields(Iterator_value_type& fields_vector ) +{ + size_t field_offset= m_field_offset; + int row_field_col_index= 0; + std::vector nullbits(m_row_event->null_bits_len); + std::copy(m_row_event->row.begin()+m_field_offset, + m_row_event->row.begin()+(m_field_offset+m_row_event->null_bits_len), + nullbits.begin()); + + field_offset += m_row_event->null_bits_len; + for(unsigned col_no=0; col_no < m_table_map->columns.size(); ++col_no) + { + ++row_field_col_index; + unsigned int type= m_table_map->columns[col_no]&0xFF; + boost::uint32_t metadata= extract_metadata(m_table_map, col_no); + mysql::Value val((enum mysql::system::enum_field_types)type, + metadata, + (const char *)&m_row_event->row[field_offset]); + if (is_null((unsigned char *)&nullbits[0], col_no )) + { + val.is_null(true); + } + else + { + /* + If the value is null it is not in the list of values and thus we won't + increse the offset. TODO what if all values are null?! + */ + field_offset += val.length(); + } + fields_vector.push_back(val); + } + return field_offset; +} + +template +Iterator_value_type Row_event_iterator::operator*() +{ // dereferencing + Iterator_value_type fields_vector; + /* + * Remember this offset if we need to increate the row pointer + */ + m_new_field_offset_calculated= fields(fields_vector); + + return fields_vector; +} + +template< class Iterator_value_type > +Row_event_iterator< Iterator_value_type >& + Row_event_iterator< Iterator_value_type >::operator++() +{ // prefix + if (m_field_offset < m_row_event->row.size()) + { + /* + * If we requested the fields in a previous operations + * we also calculated the new offset at the same time. + */ + if (m_new_field_offset_calculated != 0) + { + m_field_offset= m_new_field_offset_calculated; + //m_field_offset += m_row_event->null_bits_len; + m_new_field_offset_calculated= 0; + if (m_field_offset >= m_row_event->row.size()) + m_field_offset= 0; + return *this; + } + + /* + * Advance the field offset to the next row + */ + int row_field_col_index= 0; + std::vector nullbits(m_row_event->null_bits_len); + std::copy(m_row_event->row.begin()+m_field_offset, + m_row_event->row.begin()+(m_field_offset+m_row_event->null_bits_len), + nullbits.begin()); + m_field_offset += m_row_event->null_bits_len; + for(unsigned col_no=0; col_no < m_table_map->columns.size(); ++col_no) + { + ++row_field_col_index; + mysql::Value val((enum mysql::system::enum_field_types)m_table_map->columns[col_no], + m_table_map->metadata[col_no], + (const char *)&m_row_event->row[m_field_offset]); + if (!is_null((unsigned char *)&nullbits[0], col_no)) + { + m_field_offset += val.length(); + } + } + + return *this; + } + + m_field_offset= 0; + return *this; + +} + +template +Row_event_iterator< Iterator_value_type > + Row_event_iterator< Iterator_value_type >::operator++(int) +{ // postfix + Row_event_iterator temp = *this; + ++*this; + return temp; +} + +template +bool Row_event_iterator< Iterator_value_type >::operator==(const Row_event_iterator& x) const +{ + return m_field_offset == x.m_field_offset; +} + +template +bool Row_event_iterator< Iterator_value_type >::operator!=(const Row_event_iterator& x) const +{ + return m_field_offset != x.m_field_offset; +} + +} + + +#endif /* _FIELD_ITERATOR_H */ diff --git a/replication_listener/include/file_driver.h b/replication_listener/include/file_driver.h new file mode 100644 index 000000000..d45396519 --- /dev/null +++ b/replication_listener/include/file_driver.h @@ -0,0 +1,92 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _FILE_DRIVER_H +#define _FILE_DRIVER_H + +#include +#include +#include +#include +#include + +#include "binlog_api.h" +#include "binlog_driver.h" +#include "protocol.h" + +#define MAGIC_NUMBER_SIZE 4 + +namespace mysql { +namespace system { + +class Binlog_file_driver + : public Binary_log_driver +{ +public: + template + Binlog_file_driver(const TFilename& filename = TFilename(), + unsigned int offset = 0) + : Binary_log_driver(filename, offset) + { + } + + int connect(Gtid gtid = Gtid()); + int disconnect(); + int wait_for_next_event(mysql::Binary_log_event **event); + int set_position(const std::string &str, unsigned long position); + int get_position(std::string *str, unsigned long *position); + + int set_position_gtid(const Gtid gtid) + { + return 0; // TODO + } + + int fetch_server_version(const std::string& user, + const std::string& passwd, + const std::string& host, + long port) + { + return 0; // TODO + } + + void shutdown() + { + // TODO + } + +private: + + unsigned long m_binlog_file_size; + + /* + Bytes that has been read so for from the file. + Updated after every event is read. + */ + unsigned long m_bytes_read; + + std::ifstream m_binlog_file; + + Log_event_header m_event_log_header; +}; + +} // namespace mysql::system +} // namespace mysql + +#endif /* _FILE_DRIVER_H */ diff --git a/replication_listener/include/gtid.h b/replication_listener/include/gtid.h new file mode 100644 index 000000000..736d7f7ea --- /dev/null +++ b/replication_listener/include/gtid.h @@ -0,0 +1,79 @@ +/* +Copyright (C) 2013, SkySQL Ab + + +This file is distributed as part of the SkySQL Gateway. It is free +software: you can redistribute it and/or modify it under the terms of the +GNU General Public License as published by the Free Software Foundation, +version 2. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 51 +Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Author: Jan Lindström jan.lindstrom@skysql.com + +*/ + +#ifndef REPLICATION_LISTENER_MYSQL_GTID_H +#define REPLICATION_LISTENER_MYSQL_GTID_H + +#include +#include +#include + +namespace mysql +{ + +enum mysql_server_types { + MYSQL_SERVER_TYPE_NA = 0, + MYSQL_SERVER_TYPE_MARIADB = 1, + MYSQL_SERVER_TYPE_MYSQL = 2 +}; + +class Gtid +{ + public: + + Gtid() + : m_real_gtid(false), m_domain_id(0), m_server_id(0), m_sequence_number(0), m_mysql_sid(""), m_server_type(MYSQL_SERVER_TYPE_NA) + {} + + Gtid(const boost::uint32_t domain_id, + const boost::uint32_t server_id, + const boost::uint64_t sequence_number); + + Gtid(const std::string &mysql_sid, + const boost::uint64_t gno); + + ~Gtid() {} + + bool is_real_gtid() const { return m_real_gtid;} + + const std::string& get_mysql_gtid() const { return m_mysql_sid;} + std::string get_string() const; + + boost::uint32_t get_domain_id() const { return m_domain_id; } + boost::uint32_t get_server_id() const { return m_server_id; } + boost::uint32_t get_sequence_number() const { return m_sequence_number; } + + private: + + bool m_real_gtid; + mysql_server_types m_server_type; + + boost::uint32_t m_domain_id; + boost::uint32_t m_server_id; + boost::uint64_t m_sequence_number; + + std::string m_mysql_sid; +}; + +} + +#endif diff --git a/replication_listener/include/listener_exception.h b/replication_listener/include/listener_exception.h new file mode 100644 index 000000000..ead4ff44f --- /dev/null +++ b/replication_listener/include/listener_exception.h @@ -0,0 +1,58 @@ +/* +Copyright (C) 2013, SkySQL Ab + + +This file is distributed as part of the SkySQL Gateway. It is free +software: you can redistribute it and/or modify it under the terms of the +GNU General Public License as published by the Free Software Foundation, +version 2. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 51 +Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Author: Jan Lindström jan.lindstrom@skysql.com + +*/ + +#ifndef REPLICATION_LISTENER_MYSQL_ERROR_EXCEPTION +#define REPLICATION_LISTENER_MYSQL_ERROR_EXCEPTION + +namespace mysql +{ + +// Derive from std::runtime_error rather than std::exception +// runtime_error's constructor can take a string as parameter +// the standard's compliant version of std::exception can not +// (though some compiler provide a non standard constructor). +// + +#include +#include + +// Helper function +template +inline std::string to_string (const T& t) +{ + std::stringstream ss; + ss << t; + return ss.str(); +} + +class ListenerException : public std::runtime_error +{ + public: + + ListenerException(std::string message, const char *file, int line) + : std::runtime_error(std::string("Exception: ") + message + std::string(" file: ") + std::string(file) + std::string(" line: ") + (to_string(line))) {} + +}; + +} + +#endif diff --git a/replication_listener/include/protocol.h b/replication_listener/include/protocol.h new file mode 100644 index 000000000..c13558ee3 --- /dev/null +++ b/replication_listener/include/protocol.h @@ -0,0 +1,437 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef _PROTOCOL_H +#define _PROTOCOL_H + +#include +#include +#include "binlog_event.h" + +using boost::asio::ip::tcp; +namespace mysql { +namespace system { + +/** + Storage structure for the handshake package sent from the server to + the client. +*/ +struct st_handshake_package +{ + boost::uint8_t protocol_version; + std::string server_version_str; + boost::uint32_t thread_id; + boost::uint8_t scramble_buff[8]; + boost::uint16_t server_capabilities; + boost::uint8_t server_language; + boost::uint16_t server_status; + boost::uint8_t scramble_buff2[13]; +}; + +/** + Storage structure for the OK package sent from the server to + the client. +*/ +struct st_ok_package +{ + boost::uint8_t result_type; + boost::uint64_t affected_rows; + boost::uint64_t insert_id; + boost::uint16_t server_status; + boost::uint16_t warning_count; + std::string message; +}; + +struct st_eof_package +{ + boost::uint16_t warning_count; + boost::uint16_t status_flags; +}; + +/** + Storage structure for the Error package sent from the server to + the client. +*/ +struct st_error_package +{ + boost::uint16_t error_code; + boost::uint8_t sql_state[5]; + std::string message; +}; + +#define CLIENT_LONG_PASSWORD 1 /* new more secure passwords */ +#define CLIENT_FOUND_ROWS 2 /* Found instead of affected rows */ +#define CLIENT_LONG_FLAG 4 /* Get all column flags */ +#define CLIENT_CONNECT_WITH_DB 8 /* One can specify db on connect */ +#define CLIENT_NO_SCHEMA 16 /* Don't allow database.table.column */ +#define CLIENT_COMPRESS 32 /* Can use compression protocol */ +#define CLIENT_ODBC 64 /* Odbc client */ +#define CLIENT_LOCAL_FILES 128 /* Can use LOAD DATA LOCAL */ +#define CLIENT_IGNORE_SPACE 256 /* Ignore spaces before '(' */ +#define CLIENT_PROTOCOL_41 512 /* New 4.1 protocol */ +#define CLIENT_INTERACTIVE 1024 /* This is an interactive client */ +#define CLIENT_SSL 2048 /* Switch to SSL after handshake */ +#define CLIENT_IGNORE_SIGPIPE 4096 /* IGNORE sigpipes */ +#define CLIENT_TRANSACTIONS 8192 /* Client knows about transactions */ +#define CLIENT_RESERVED 16384 /* Old flag for 4.1 protocol */ +#define CLIENT_SECURE_CONNECTION 32768 /* New 4.1 authentication */ +#define CLIENT_MULTI_STATEMENTS (1UL << 16) /* Enable/disable multi-stmt support */ +#define CLIENT_MULTI_RESULTS (1UL << 17) /* Enable/disable multi-results */ + +#define CLIENT_SSL_VERIFY_SERVER_CERT (1UL << 30) +#define CLIENT_REMEMBER_OPTIONS (1UL << 31) + +/* Gather all possible capabilites (flags) supported by the server */ +#define CLIENT_ALL_FLAGS (CLIENT_LONG_PASSWORD | \ + CLIENT_FOUND_ROWS | \ + CLIENT_LONG_FLAG | \ + CLIENT_CONNECT_WITH_DB | \ + CLIENT_NO_SCHEMA | \ + CLIENT_COMPRESS | \ + CLIENT_ODBC | \ + CLIENT_LOCAL_FILES | \ + CLIENT_IGNORE_SPACE | \ + CLIENT_PROTOCOL_41 | \ + CLIENT_INTERACTIVE | \ + CLIENT_SSL | \ + CLIENT_IGNORE_SIGPIPE | \ + CLIENT_TRANSACTIONS | \ + CLIENT_RESERVED | \ + CLIENT_SECURE_CONNECTION | \ + CLIENT_MULTI_STATEMENTS | \ + CLIENT_MULTI_RESULTS | \ + CLIENT_SSL_VERIFY_SERVER_CERT | \ + CLIENT_REMEMBER_OPTIONS) + +/* + Switch off the flags that are optional and depending on build flags + If any of the optional flags is supported by the build it will be switched + on before sending to the client during the connection handshake. +*/ +#define CLIENT_BASIC_FLAGS (((CLIENT_ALL_FLAGS & ~CLIENT_SSL) \ + & ~CLIENT_COMPRESS) \ + & ~CLIENT_SSL_VERIFY_SERVER_CERT) +enum enum_server_command +{ + COM_SLEEP, COM_QUIT, COM_INIT_DB, COM_QUERY, COM_FIELD_LIST, + COM_CREATE_DB, COM_DROP_DB, COM_REFRESH, COM_SHUTDOWN, COM_STATISTICS, + COM_PROCESS_INFO, COM_CONNECT, COM_PROCESS_KILL, COM_DEBUG, COM_PING, + COM_TIME, COM_DELAYED_INSERT, COM_CHANGE_USER, COM_BINLOG_DUMP, + COM_TABLE_DUMP, COM_CONNECT_OUT, COM_REGISTER_SLAVE, + COM_STMT_PREPARE, COM_STMT_EXECUTE, COM_STMT_SEND_LONG_DATA, COM_STMT_CLOSE, + COM_STMT_RESET, COM_SET_OPTION, COM_STMT_FETCH, COM_DAEMON, + COM_BINLOG_DUMP_GTID, + /* don't forget to update const char *command_name[] in sql_parse.cc */ + + /* Must be last */ + COM_END +}; + +enum enum_field_types { MYSQL_TYPE_DECIMAL, MYSQL_TYPE_TINY, + MYSQL_TYPE_SHORT, MYSQL_TYPE_LONG, + MYSQL_TYPE_FLOAT, MYSQL_TYPE_DOUBLE, + MYSQL_TYPE_NULL, MYSQL_TYPE_TIMESTAMP, + MYSQL_TYPE_LONGLONG,MYSQL_TYPE_INT24, + MYSQL_TYPE_DATE, MYSQL_TYPE_TIME, + MYSQL_TYPE_DATETIME, MYSQL_TYPE_YEAR, + MYSQL_TYPE_NEWDATE, MYSQL_TYPE_VARCHAR, + MYSQL_TYPE_BIT, + MYSQL_TYPE_NEWDECIMAL=246, + MYSQL_TYPE_ENUM=247, + MYSQL_TYPE_SET=248, + MYSQL_TYPE_TINY_BLOB=249, + MYSQL_TYPE_MEDIUM_BLOB=250, + MYSQL_TYPE_LONG_BLOB=251, + MYSQL_TYPE_BLOB=252, + MYSQL_TYPE_VAR_STRING=253, + MYSQL_TYPE_STRING=254, + MYSQL_TYPE_GEOMETRY=255 + +}; + + +#define int3store(T,A) do { *(T)= (unsigned char) ((A));\ + *(T+1)=(unsigned char) (((unsigned int) (A) >> 8));\ + *(T+2)=(unsigned char) (((A) >> 16)); } while (0) + +/* + * Helper functions + * +static void proto_append_int_len(boost::asio::streambuf &buf, unsigned long long num, int len) +{ + std::ostream os(&buf); + for (int i= 0; i< len; i++) + { + os << (char) (num & 0xFF); + num= num >> 8; + } +} + +static void proto_append_int_len(std::ostream &os, unsigned long long num, int len) +{ + for (int i= 0; i< len; i++) + { + unsigned char shift= (num >> i) & 0xFF; + os << shift; + } +} + +static void proto_append_int_len(char *buff, unsigned long long num, int len) +{ + for (int i= 0; i< len; i++) + { + buff[i]= (unsigned char) (num & 0xFF); + num= num >> 8; + } +} +*/ + +void write_packet_header(char *buff, boost::uint16_t size, boost::uint8_t packet_no); + +class Protocol_validator; +class buffer_source; + +/** + * The Protocol interface is used to describe a grammar consisting of + * chunks of bytes that are read or written in consequtive order. + * Example: + * class Protocol_impl : public Protocol; + * Protocol_impl chunk1(chunk_datastore1); + * Protocol_impl chunk2(chunk_datastore2); + * input_stream >> chunk1 + * >> chunk2; + */ +class Protocol +{ +public: + Protocol() { m_length_encoded_binary= false; } + /** + Return the number of bytes which is read or written by this protocol chunk. + The default size is equal to the underlying storage data type. + */ + virtual unsigned int size()=0; + + /** Return a pointer to the first byte in a linear storage buffer */ + virtual const char *data()=0; + + /** + Change the number of bytes which will be read or written to the storage. + The default size is euqal to the storage type size. This can change if the + protocol is reading a length encoded binary. + The new size must always be less than the size of the underlying storage + type. + */ + virtual void collapse_size(unsigned int new_size)=0; + + /** + The first byte will have a special interpretation which will indicate + how many bytes should be read next. + */ + void set_length_encoded_binary(bool bswitch) { m_length_encoded_binary= bswitch; } + bool is_length_encoded_binary(void) { return m_length_encoded_binary; } + +private: + bool m_length_encoded_binary; + + friend std::istream &operator<<(std::istream &is, Protocol &chunk); + friend std::istream &operator>>(std::istream &is, Protocol &chunk); + friend buffer_source &operator>>(buffer_source &src, Protocol &chunk); + friend std::istream &operator>>(std::istream &is, std::string &str); +}; + +template +class Protocol_chunk : public Protocol +{ +public: + + Protocol_chunk() : Protocol() + { + m_size= 0; + m_data= 0; + } + + Protocol_chunk(T &chunk) : Protocol() + { + m_data= (const char *)&chunk; + m_size= sizeof(T); + } + + Protocol_chunk(const T &chunk) : Protocol () + { + m_data= (const char *) &chunk; + m_size= sizeof(T); + } + + /** + * @param buffer A pointer to the storage + * @param size The size of the storage + * + * @note If size == 0 then the chunk is a + * length coded binary. + */ + Protocol_chunk(T *buffer, unsigned long size) : Protocol () + { + m_data= (const char *)buffer; + m_size= size; + } + + virtual unsigned int size() { return m_size; } + virtual const char *data() { return m_data; } + virtual void collapse_size(unsigned int new_size) + { + //assert(new_size <= m_size); + memset((char *)m_data+new_size,'\0', m_size-new_size); + m_size= new_size; + } +private: + const char *m_data; + unsigned long m_size; +}; + +std::ostream &operator<<(std::ostream &os, Protocol &chunk); + +typedef Protocol_chunk Protocol_chunk_uint8; + +class Protocol_chunk_string //: public Protocol_chunk_uint8 +{ +public: + Protocol_chunk_string(std::string &chunk, unsigned long size) //: Protocol_chunk_uint8() + { + m_str= &chunk; + m_str->assign(size,'*'); + } + + virtual unsigned int size() const { return m_str->size(); } + virtual const char *data() const { return m_str->data(); } + virtual void collapse_size(unsigned int new_size) + { + m_str->resize(new_size); + } +private: + friend std::istream &operator>>(std::istream &is, Protocol_chunk_string &str); + std::string *m_str; +}; + +class Protocol_chunk_vector : public Protocol_chunk_uint8 +{ +public: + Protocol_chunk_vector(std::vector &chunk, unsigned long size) + : Protocol_chunk_uint8() + { + m_vec= &chunk; + m_vec->reserve(size); + m_size= size; + } + + virtual unsigned int size() { return m_vec->size(); } + virtual const char *data() { return reinterpret_cast(&*m_vec->begin()); } + virtual void collapse_size(unsigned int new_size) + { + m_vec->resize(new_size); + } +private: + friend std::istream &operator>>(std::istream &is, Protocol_chunk_vector &chunk); + std::vector *m_vec; + unsigned long m_size; +}; + + +std::istream &operator>>(std::istream &is, Protocol_chunk_vector &chunk); + +class buffer_source +{ +public: + + buffer_source(const char *src, int sz) + { + m_src= src; + m_size= sz; + m_ptr= 0; + } + + friend buffer_source &operator>>(buffer_source &src, Protocol &chunk); +private: + const char *m_src; + int m_size; + int m_ptr; + +}; + +class Protocol_chunk_string_len +{ +public: + Protocol_chunk_string_len(std::string &str) + { + m_storage= &str; + } + +private: + friend std::istream &operator>>(std::istream &is, Protocol_chunk_string_len &lenstr); + std::string *m_storage; +}; + +buffer_source &operator>>(buffer_source &src, Protocol &chunk); +/** TODO assert that the correct endianess is used */ +std::istream &operator>>(std::istream &is, Protocol &chunk); +std::istream &operator>>(std::istream &is, std::string &str); +std::istream &operator>>(std::istream &is, Protocol_chunk_string_len &lenstr); +std::istream &operator>>(std::istream &is, Protocol_chunk_string &str); + +int proto_read_package_header(tcp::socket *socket, unsigned long *packet_length, unsigned char *packet_no); + +/** + * Read a server package header from a stream buffer + * + * @retval 0 Success + * @retval >0 An error occurred + */ +int proto_read_package_header(tcp::socket *socket, boost::asio::streambuf &buff, unsigned long *packet_length, unsigned char *packet_no); + +/** + * Get one complete packet from the server + * + * @param socket Pointer to the active tcp-socket + * @param buff A reference to a stream buffer + * @param packet_no [out] The number of the packet as given by the server + * + * @return the size of the packet or 0 to indicate an error + */ +int proto_get_one_package(tcp::socket *socket, boost::asio::streambuf &buff, boost::uint8_t *packet_no); +void prot_parse_error_message(std::istream &is, struct st_error_package &err, int packet_length); +void prot_parse_ok_message(std::istream &is, struct st_ok_package &ok, int packet_length); +void prot_parse_eof_message(std::istream &is, struct st_eof_package &eof); +void proto_get_handshake_package(std::istream &is, struct st_handshake_package &p, int packet_length); + +/** + Allocates a new event and copy the header. The caller must be responsible for + releasing the allocated memory. +*/ +Query_event *proto_query_event(std::istream &is, Log_event_header *header); +Rotate_event *proto_rotate_event(std::istream &is, Log_event_header *header); +Incident_event *proto_incident_event(std::istream &is, Log_event_header *header); +Row_event *proto_rows_event(std::istream &is, Log_event_header *header); +Table_map_event *proto_table_map_event(std::istream &is, Log_event_header *header); +Int_var_event *proto_intvar_event(std::istream &is, Log_event_header *header); +User_var_event *proto_uservar_event(std::istream &is, Log_event_header *header); +Gtid_event *proto_gtid_event(std::istream &is, Log_event_header *header); + +} // end namespace system +} // end namespace mysql + +#endif /* _PROTOCOL_H */ diff --git a/replication_listener/include/resultset_iterator.h b/replication_listener/include/resultset_iterator.h new file mode 100644 index 000000000..d98e55606 --- /dev/null +++ b/replication_listener/include/resultset_iterator.h @@ -0,0 +1,185 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _RESULTSET_ITERATOR_H +#define _RESULTSET_ITERATOR_H + +#include + +// if error; try #include +#include + +#include +#include "value.h" +#include "rowset.h" +#include "row_of_fields.h" + +using namespace mysql; + +namespace mysql +{ + +struct Field_packet +{ + std::string catalog; // Length Coded String + std::string db; // Length Coded String + std::string table; // Length Coded String + std::string org_table;// Length Coded String + std::string name; // Length Coded String + std::string org_name; // Length Coded String + boost::uint8_t marker; // filler + boost::uint16_t charsetnr; // charsetnr + boost::uint32_t length; // length + boost::uint8_t type; // field type + boost::uint16_t flags; + boost::uint8_t decimals; + boost::uint16_t filler; // filler, always 0x00 + //boost::uint64_t default_value; // Length coded binary; only in table descr. +}; + +typedef std::list String_storage; + +namespace system { + void digest_result_header(std::istream &is, boost::uint64_t &field_count, boost::uint64_t extra); + void digest_field_packet(std::istream &is, Field_packet &field_packet); + void digest_marker(std::istream &is); + void digest_row_content(std::istream &is, int field_count, Row_of_fields &row, String_storage &storage, bool &is_eof); +} + +template +class Result_set_iterator; + +class Result_set +{ +public: + typedef Result_set_iterator iterator; + typedef Result_set_iterator const_iterator; + + Result_set(tcp::socket *socket) { source(socket); } + void source(tcp::socket *socket) { m_socket= socket; digest_row_set(); } + iterator begin(); + iterator end(); + const_iterator begin() const; + const_iterator end() const; + +private: + void digest_row_set(); + friend class Result_set_iterator; + friend class Result_set_iterator; + + std::vector m_field_types; + int m_row_count; + std::vector m_rows; + String_storage m_storage; + tcp::socket *m_socket; + typedef enum { RESULT_HEADER, + FIELD_PACKETS, + MARKER, + ROW_CONTENTS, + EOF_PACKET + } state_t; + state_t m_current_state; + + /** + * The number of fields in the field packets block + */ + boost::uint64_t m_field_count; + /** + * Used for SHOW COLUMNS to return the number of rows in the table + */ + boost::uint64_t m_extra; +}; + +template +class Result_set_iterator : + public boost::iterator_facade, + Iterator_value_type, + boost::forward_traversal_tag > +{ +public: + Result_set_iterator() : m_feeder(0), m_current_row(-1) + {} + + explicit Result_set_iterator(Result_set *feeder) : m_feeder(feeder), + m_current_row(-1) + { + increment(); + } + + private: + friend class boost::iterator_core_access; + + void increment() + { + if (++m_current_row >= m_feeder->m_row_count) + m_current_row= -1; + } + + bool equal(const Result_set_iterator& other) const + { + if (other.m_feeder == 0 && m_feeder == 0) + return true; + if (other.m_feeder == 0) + { + if (m_current_row == -1) + return true; + else + return false; + } + if (m_feeder == 0) + { + if (other.m_current_row == -1) + return true; + else + return false; + } + + if( other.m_feeder->m_field_count != m_feeder->m_field_count) + return false; + + Iterator_value_type *row1= &m_feeder->m_rows[m_current_row]; + Iterator_value_type *row2= &other.m_feeder->m_rows[m_current_row]; + for (unsigned i=0; i< m_feeder->m_field_count; ++i) + { + Value val1= row1->at(i); + Value val2= row2->at(i); + if (val1 != val2) + return false; + } + return true; + } + + Iterator_value_type &dereference() const + { + return m_feeder->m_rows[m_current_row]; + } + +private: + Result_set *m_feeder; + int m_current_row; + +}; + + +} // end namespace mysql + + + +#endif /* _RESULTSET_ITERATOR_H */ diff --git a/replication_listener/include/row_of_fields.h b/replication_listener/include/row_of_fields.h new file mode 100644 index 000000000..e697ef074 --- /dev/null +++ b/replication_listener/include/row_of_fields.h @@ -0,0 +1,47 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef _ROW_OF_FIELDS_H +#define _ROW_OF_FIELDS_H + +#include +#include +#include "value.h" +using namespace mysql; + +namespace mysql +{ + +class Row_of_fields : public std::vector +{ +public: + Row_of_fields() : std::vector(0) { } + Row_of_fields(int field_count) : std::vector(field_count) {} + virtual ~Row_of_fields() {} + + Row_of_fields& operator=(const Row_of_fields &right); + Row_of_fields& operator=(Row_of_fields &right); + +private: + +}; + +} + +#endif /* _ROW_OF_FIELDS_H */ diff --git a/replication_listener/include/rowset.h b/replication_listener/include/rowset.h new file mode 100644 index 000000000..bb008fb08 --- /dev/null +++ b/replication_listener/include/rowset.h @@ -0,0 +1,55 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#ifndef _ROWSET_H +#define _ROWSET_H + +#include "field_iterator.h" +#include "resultset_iterator.h" +#include +#include + +using namespace mysql; + +namespace mysql { + +class Row_event; +class Table_map_event; + +class Row_event_set +{ +public: + typedef Row_event_iterator iterator; + typedef Row_event_iterator const_iterator; + + Row_event_set(Row_event *arg1, Table_map_event *arg2) { source(arg1, arg2); } + + iterator begin() { return iterator(m_row_event, m_table_map_event); } + iterator end() { return iterator(); } + const_iterator begin() const { return const_iterator(m_row_event, m_table_map_event); } + const_iterator end() const { return const_iterator(); } + +private: + void source(Row_event *arg1, Table_map_event *arg2) { m_row_event= arg1; m_table_map_event= arg2; } + Row_event *m_row_event; + Table_map_event *m_table_map_event; +}; + +} +#endif /* _ROWSET_H */ diff --git a/replication_listener/include/tcp_driver.h b/replication_listener/include/tcp_driver.h new file mode 100644 index 000000000..5c1f86ef1 --- /dev/null +++ b/replication_listener/include/tcp_driver.h @@ -0,0 +1,291 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _TCP_DRIVER_H +#define _TCP_DRIVER_H +#include "binlog_driver.h" +#include "bounded_buffer.h" +#include "protocol.h" +#include +#include +#include "gtid.h" + + +#define MAX_PACKAGE_SIZE 0xffffff + +#define GET_NEXT_PACKET_HEADER \ + boost::asio::async_read(*m_socket, boost::asio::buffer(m_net_header, 4), \ + boost::bind(&Binlog_tcp_driver::handle_net_packet_header, this, \ + boost::asio::placeholders::error, boost::asio::placeholders::bytes_transferred)) \ + +using boost::asio::ip::tcp; + +namespace mysql { namespace system { + +class Binlog_tcp_driver : public Binary_log_driver +{ +public: + + Binlog_tcp_driver(const std::string& user, const std::string& passwd, + const std::string& host, unsigned long port) + : Binary_log_driver("", 4), m_host(host), m_user(user), m_passwd(passwd), + m_port(port), m_socket(NULL), m_waiting_event(0), m_event_loop(0), + m_total_bytes_transferred(0), m_shutdown(false), m_packet_no(0), + m_event_queue(new bounded_buffer(50)) + { + } + + ~Binlog_tcp_driver() + { + delete m_event_queue; + delete m_socket; + } + + /** + * Connect using previously declared connection parameters. + */ + int connect(Gtid gtid = Gtid()); + + /** + * Blocking wait for the next binary log event to reach the client + */ + int wait_for_next_event(mysql::Binary_log_event **event); + + /** + * Reconnects to the master with a new binlog dump request. + */ + int set_position(const std::string &str, unsigned long position); + + /** + * Reconnects to the master with a new binlog dump request. + */ + int set_position_gtid(const Gtid gtid); + + + int get_position(std::string *str, unsigned long *position); + + const std::string& user() const { return m_user; } + const std::string& password() const { return m_passwd; } + const std::string& host() const { return m_host; } + unsigned long port() const { return m_port; } + + int fetch_server_version(const std::string& user, + const std::string& passwd, + const std::string& host, + long port); + +protected: + /** + * Connects to a mysql server, authenticates and initiates the event + * request loop. + * + * @param user The user account on the server side + * @param passwd The password used to authenticate the user + * @param host The DNS host name or IP of the server + * @param port The service port number to connect to + * + * + * @return Success or failure code + * @retval 0 Successfully established a connection + * @retval >1 An error occurred. + */ + int connect(const std::string& user, const std::string& passwd, + const std::string& host, long port, + const Gtid gtid = Gtid(), + const std::string& binlog_filename="", size_t offset=4); + + bool send_client_capabilites(tcp::socket *socket); + + bool send_slave_connect_state(tcp::socket *socket,Gtid gtid); + + tcp::socket *sync_connect_and_authenticate(boost::asio::io_service &io_service, + const std::string &user, + const std::string &passwd, + const std::string &host, + long port); + int authenticate(tcp::socket *socket, + const std::string& user, + const std::string& passwd, + const st_handshake_package &handshake_package); + + bool fetch_master_status(tcp::socket *socket, + std::string *filename, + unsigned long *position); + + bool fetch_binlogs_name_and_size(tcp::socket *socket, + std::map &binlog_map); + +private: + + /** + * Request a binlog dump and starts the event loop in a new thread + * @param binlog_file_name The base name of the binlog files to query + * + */ + void start_binlog_dump(const std::string &binlog_file_name, size_t offset); + void start_binlog_dump(const Gtid gtid); + + /** + * Handles a completed mysql server package header and put a + * request for the body in the job queue. + */ + void handle_net_packet_header(const boost::system::error_code& err, std::size_t bytes_transferred); + + /** + * Handles a completed network package with the assumption that it contains + * a binlog event. + * + * TODO rename to handle_event_log_packet? + */ + void handle_net_packet(const boost::system::error_code& err, std::size_t bytes_transferred); + + /** + * Called from handle_net_packet(). The function handle a stream of bytes + * representing event packets which may or may not be complete. + * It uses m_waiting_event and the size of the stream as parameters + * in a state machine. If there is no m_waiting_event then the event + * header must be parsed for the event packet length. This can only + * be done if the accumulated stream of bytes are more than 19. + * Next, if there is a m_waiting_event, it can only be completed if + * event_length bytes are waiting on the stream. + * + * If none of these conditions are fullfilled, the function exits without + * any action. + * + * @param err Not used + * @param bytes_transferred The number of bytes waiting in the event stream + * + */ + void handle_event_packet(const boost::system::error_code& err, std::size_t bytes_transferred); + + /** + * Executes io_service in a loop. + * TODO Checks for connection errors and reconnects to the server + * if necessary. + */ + void start_event_loop(void); + + /** + * Reconnect to the server by first calling disconnect and then connect. + */ + void reconnect(Gtid gtid = Gtid()); + + /** + * Disconnet from the server. The io service must have been stopped before + * this function is called. + * The event queue is emptied. + */ + void disconnect(void); + + /** + * Terminates the io service and sets the shudown flag. + * this causes the event loop to terminate. + */ + void shutdown(void); + + boost::thread *m_event_loop; + boost::asio::io_service m_io_service; + tcp::socket *m_socket; + bool m_shutdown; + + /** + * Temporary storage for a handshake package + */ + st_handshake_package m_handshake_package; + + /** + * Temporary storage for an OK package + */ + st_ok_package m_ok_package; + + /** + * Temporary storage for an error package + */ + st_error_package m_error_package; + + /** + * each bin log event starts with a 19 byte long header + * We use this sturcture every time we initiate an async + * read. + */ + boost::uint8_t m_event_header[19]; + + /** + * + */ + boost::uint8_t m_net_header[4]; + + /** + * + */ + boost::uint8_t m_net_packet[MAX_PACKAGE_SIZE]; + boost::asio::streambuf m_event_stream_buffer; + char * m_event_packet; + + /** + * This pointer points to an object constructed from event + * stream during async communication with + * server. If it is 0 it means that no event has been + * constructed yet. + */ + Log_event_header *m_waiting_event; + Log_event_header m_log_event_header; + /** + * A ring buffer used to dispatch aggregated events to the user application + */ + bounded_buffer *m_event_queue; + + std::string m_user; + std::string m_host; + std::string m_passwd; + long m_port; + boost::uint32_t m_packet_no; + + boost::uint64_t m_total_bytes_transferred; + + +}; + +/** + * Sends a SHOW MASTER STATUS command to the server and retrieve the + * current binlog position. + * + * @return False if the operation succeeded, true if it failed. + */ +bool fetch_master_status(tcp::socket *socket, std::string *filename, unsigned long *position); +/** + * Sends a SHOW BINARY LOGS command to the server and stores the file + * names and sizes in a map. + */ +bool fetch_binlogs_name_and_size(tcp::socket *socket, std::map &binlog_map); + +int authenticate(tcp::socket *socket, const std::string& user, + const std::string& passwd, + const st_handshake_package &handshake_package); + +tcp::socket * +sync_connect_and_authenticate(boost::asio::io_service &io_service, const std::string &user, + const std::string &passwd, const std::string &host, long port); + + +} } + +#endif /* _TCP_DRIVER_H */ diff --git a/replication_listener/include/utilities.h b/replication_listener/include/utilities.h new file mode 100644 index 000000000..76689438d --- /dev/null +++ b/replication_listener/include/utilities.h @@ -0,0 +1,53 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _UTILITIES_H +#define _UTILITIES_H + +#include "value.h" +#include "protocol.h" + + +using namespace mysql; + +namespace mysql { + +typedef enum +{ + Q_FLAGS2_CODE= 0, + Q_SQL_MODE_CODE, + Q_CATALOG_CODE, + Q_AUTO_INCREMENT, + Q_CHARSET_CODE, + Q_TIME_ZONE_CODE, + Q_CATALOG_NZ_CODE, + Q_LC_TIME_NAMES_CODE, + Q_CHARSET_DATABASE_CODE, + Q_TABLE_MAP_FOR_UPDATE_CODE, + Q_MASTER_DATA_WRITTEN_CODE, + Q_INVOKER +} enum_var_types; + +int server_var_decoder (std::map *my_var_map, + std::vector variables); + +} + +#endif /* _UTILITIES_H */ diff --git a/replication_listener/include/value.h b/replication_listener/include/value.h new file mode 100644 index 000000000..c5183fb64 --- /dev/null +++ b/replication_listener/include/value.h @@ -0,0 +1,181 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#ifndef _VALUE_ADAPTER_H +#define _VALUE_ADAPTER_H + +#include +#include "protocol.h" +#include +#include + +using namespace mysql; +namespace mysql { + +/** + This helper function calculates the size in bytes of a particular field in a + row type event as defined by the field_ptr and metadata_ptr arguments. + @param column_type Field type code + @param field_ptr The field data + @param metadata_ptr The field metadata + + @note We need the actual field data because the string field size is not + part of the meta data. :( + + @return The size in bytes of a particular field +*/ +int calc_field_size(unsigned char column_type, const unsigned char *field_ptr, + boost::uint32_t metadata); + + +/** + * A value object class which encapsluate a tuple (value type, metadata, storage) + * and provide for views to this storage through a well defined interface. + * + * Can be used with a Converter to convert between different Values. + */ +class Value +{ +public: + Value(enum system::enum_field_types type, boost::uint32_t metadata, const char *storage) : + m_type(type), m_storage(storage), m_metadata(metadata), m_is_null(false) + { + m_size= calc_field_size((unsigned char)type, + (const unsigned char*)storage, + metadata); + //std::cout << "TYPE: " << type << " SIZE: " << m_size << std::endl; + }; + + Value() + { + m_size= 0; + m_storage= 0; + m_metadata= 0; + m_is_null= false; + } + + /** + * Copy constructor + */ + Value(const Value& val); + + Value &operator=(const Value &val); + bool operator==(const Value &val) const; + bool operator!=(const Value &val) const; + + ~Value() {} + + void is_null(bool s) { m_is_null= s; } + bool is_null(void) const { return m_is_null; } + + const char *storage() const { return m_storage; } + + /** + * Get the length in bytes of the entire storage (any metadata part + + * atual data) + */ + size_t length() const { return m_size; } + enum system::enum_field_types type() const { return m_type; } + boost::uint32_t metadata() const { return m_metadata; } + + /** + * Returns the integer representation of a storage of a pre-specified + * type. + */ + boost::int32_t as_int32() const; + + /** + * Returns the integer representation of a storage of pre-specified + * type. + */ + boost::int64_t as_int64() const; + + /** + * Returns the integer representation of a storage of pre-specified + * type. + */ + boost::int8_t as_int8() const; + + /** + * Returns the integer representation of a storage of pre-specified + * type. + */ + boost::int16_t as_int16() const; + + /** + * Returns a pointer to the character data of a string type stored + * in the pre-defined storage. + * @note The position is an offset of the storage pointer determined + * by the metadata and type. + * + * @param[out] size The size in bytes of the character string. + * + */ + char *as_c_str(unsigned long &size) const; + + /** + * Returns a pointer to the byte data of a blob type stored in the pre- + * defined storage. + * @note The position is an offset of the storage pointer determined + * by the metadata and type. + * + * @param[out] size The size in bytes of the blob data. + */ + unsigned char *as_blob(unsigned long &size) const; + + float as_float() const; + double as_double() const; + +private: + enum system::enum_field_types m_type; + size_t m_size; + const char *m_storage; + boost::uint32_t m_metadata; + bool m_is_null; +}; + +class Converter +{ +public: + /** + * Converts and copies the sql value to a std::string object. + * @param[out] str The target string + * @param[in] val The value object to be converted + */ + void to(std::string &str, const Value &val) const; + + /** + * Converts and copies the sql value to a long integer. + * @param[out] out The target variable + * @param[in] val The value object to be converted + */ + void to(long &out, const Value &val) const; + + /** + * Converts and copies the sql value to a floating point number. + * @param[out] out The target variable + * @param[in] val The value object to be converted + */ + void to(float &out, const Value &val) const; +}; + + +} // end namespace mysql +#endif /* _VALUE_ADAPTER_H */ diff --git a/replication_listener/install_manifest.txt b/replication_listener/install_manifest.txt new file mode 100644 index 000000000..ee39d2da0 --- /dev/null +++ b/replication_listener/install_manifest.txt @@ -0,0 +1,22 @@ +/usr/local/./include/bounded_buffer.h +/usr/local/./include/protocol.h +/usr/local/./include/basic_content_handler.h +/usr/local/./include/resultset_iterator.h +/usr/local/./include/gtid.h +/usr/local/./include/binlog_driver.h +/usr/local/./include/value.h +/usr/local/./include/binlog_event.h +/usr/local/./include/field_iterator.h +/usr/local/./include/basic_transaction_parser.h +/usr/local/./include/utilities.h +/usr/local/./include/access_method_factory.h +/usr/local/./include/listener_exception.h +/usr/local/./include/tcp_driver.h +/usr/local/./include/binlog_api.h +/usr/local/./include/rowset.h +/usr/local/./include/file_driver.h +/usr/local/./include/row_of_fields.h +/usr/local/lib/libreplication.so.0.1 +/usr/local/lib/libreplication.so.1 +/usr/local/lib/libreplication.so +/usr/local/lib/libreplication.a diff --git a/replication_listener/mysql-replication-listener.spec b/replication_listener/mysql-replication-listener.spec new file mode 100644 index 000000000..922d32bb8 --- /dev/null +++ b/replication_listener/mysql-replication-listener.spec @@ -0,0 +1,67 @@ +%define _libdir /usr/lib + +Name: mysql-replication-listener +Version: 0.0.47 +Release: 10%{?dist} +Summary: A STL/Boost based C++ library used for connecting to a MySQL server and process the replication stream as a slave. + +Group: Development/Libraries +License: GNU GPL v2 +URL: https://bitbucket.org/winebarrel/mysql-replication-listener +#URL: https://launchpad.net/mysql-replication-listener +Source0: mysql-replication-listener.tar.gz +# git clone https://bitbucket.org/winebarrel/mysql-replication-listener.git +# cd mysql-replication-listener/ +# git checkout refs/tags/0.0.47-10 +# cd .. +# tar zcf mysql-replication-listener.tar.gz mysql-replication-listener/ +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildRequires: gcc-c++, make, cmake, boost-devel, openssl-devel +Requires: glibc, libstdc++, zlib, boost-devel, openssl + +%description +The MySQL Replicant Library is a C++ library for reading MySQL +replication events, either by connecting to a server or by reading +from a file. To handle reading from a server, it includes a very +simple client. + +%prep +%setup -q -n %{name} + +%build +%cmake +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig +%postun -p /sbin/ldconfig + +%files +%defattr(-,root,root,-) +%{_includedir}/access_method_factory.h +%{_includedir}/basic_content_handler.h +%{_includedir}/basic_transaction_parser.h +%{_includedir}/binlog_api.h +%{_includedir}/binlog_driver.h +%{_includedir}/binlog_event.h +%{_includedir}/bounded_buffer.h +%{_includedir}/field_iterator.h +%{_includedir}/file_driver.h +%{_includedir}/protocol.h +%{_includedir}/resultset_iterator.h +%{_includedir}/row_of_fields.h +%{_includedir}/rowset.h +%{_includedir}/tcp_driver.h +%{_includedir}/utilities.h +%{_includedir}/value.h +%{_libdir}/libreplication.a +%{_libdir}/libreplication.so +%{_libdir}/libreplication.so.0.1 +%{_libdir}/libreplication.so.1 diff --git a/replication_listener/src/CMakeFiles/CMakeDirectoryInformation.cmake b/replication_listener/src/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 000000000..592109dfe --- /dev/null +++ b/replication_listener/src/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Relative path conversion top directories. +SET(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/jan/skysql/skygateway/replication_listener") +SET(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/jan/skysql/skygateway/replication_listener") + +# Force unix paths in dependencies. +SET(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +SET(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +SET(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +SET(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +SET(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/replication_listener/src/CMakeFiles/progress.marks b/replication_listener/src/CMakeFiles/progress.marks new file mode 100644 index 000000000..64bb6b746 --- /dev/null +++ b/replication_listener/src/CMakeFiles/progress.marks @@ -0,0 +1 @@ +30 diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/CXX.includecache b/replication_listener/src/CMakeFiles/replication_shared.dir/CXX.includecache new file mode 100644 index 000000000..b4f59c6cd --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/CXX.includecache @@ -0,0 +1,308 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp +access_method_factory.h +/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.h +tcp_driver.h +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.h +file_driver.h +/home/jan/skysql/skygateway/replication_listener/src/file_driver.h + +/home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp +list +- +binlog_api.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_api.h +boost/foreach.hpp +- + +/home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp +file_driver.h +/home/jan/skysql/skygateway/replication_listener/src/file_driver.h + +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp +binlog_api.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_api.h +iostream +- +tcp_driver.h +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.h +mysql.h +- +fstream +- +time.h +- +boost/cstdint.hpp +- +streambuf +- +stdio.h +- +boost/bind.hpp +- +boost/thread.hpp +- +exception +- +boost/foreach.hpp +- +openssl/evp.h +- +openssl/rand.h +- +boost/lexical_cast.hpp +- +protocol.h +/home/jan/skysql/skygateway/replication_listener/src/protocol.h +binlog_event.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_event.h +rowset.h +/home/jan/skysql/skygateway/replication_listener/src/rowset.h +field_iterator.h +/home/jan/skysql/skygateway/replication_listener/src/field_iterator.h +listener_exception.h +/home/jan/skysql/skygateway/replication_listener/src/listener_exception.h + +/usr/local/include/my_alloc.h + +/usr/local/include/my_list.h + +/usr/local/include/mysql.h +standards.h +- +sys/types.h +- +winsock2.h +- +mysql_version.h +/usr/local/include/mysql_version.h +mysql_com.h +/usr/local/include/mysql_com.h +mysql_time.h +/usr/local/include/mysql_time.h +my_list.h +/usr/local/include/my_list.h +typelib.h +/usr/local/include/typelib.h +my_alloc.h +/usr/local/include/my_alloc.h + +/usr/local/include/mysql_com.h + +/usr/local/include/mysql_time.h + +/usr/local/include/mysql_version.h +custom_conf.h +- + +/usr/local/include/typelib.h +my_alloc.h +/usr/local/include/my_alloc.h + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/listener_exception.h +sstream +- +boost/system/system_error.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/DependInfo.cmake b/replication_listener/src/CMakeFiles/replication_shared.dir/DependInfo.cmake new file mode 100644 index 000000000..ac891d805 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/DependInfo.cmake @@ -0,0 +1,43 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/binary_log.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/file_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/gtid.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/gtid.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/protocol.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/protocol.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/utilities.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/utilities.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/value.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/value.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Pairs of files generated by the same build rule. +SET(CMAKE_MULTIPLE_OUTPUT_PAIRS + "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so" "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so.0.1" + "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so.1" "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so.0.1" + ) + + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/usr/local/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/build.make b/replication_listener/src/CMakeFiles/replication_shared.dir/build.make new file mode 100644 index 000000000..edfdcad85 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/build.make @@ -0,0 +1,474 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include src/CMakeFiles/replication_shared.dir/depend.make + +# Include the progress variables for this target. +include src/CMakeFiles/replication_shared.dir/progress.make + +# Include the compile flags for this target's objects. +include src/CMakeFiles/replication_shared.dir/flags.make + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: src/access_method_factory.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/access_method_factory.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/access_method_factory.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp > CMakeFiles/replication_shared.dir/access_method_factory.cpp.i + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/access_method_factory.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp -o CMakeFiles/replication_shared.dir/access_method_factory.cpp.s + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.provides: src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: src/field_iterator.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/field_iterator.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/field_iterator.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp > CMakeFiles/replication_shared.dir/field_iterator.cpp.i + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/field_iterator.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp -o CMakeFiles/replication_shared.dir/field_iterator.cpp.s + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.provides: src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: src/row_of_fields.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/row_of_fields.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/row_of_fields.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp > CMakeFiles/replication_shared.dir/row_of_fields.cpp.i + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/row_of_fields.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp -o CMakeFiles/replication_shared.dir/row_of_fields.cpp.s + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.provides: src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: src/binlog_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/binlog_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/binlog_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp > CMakeFiles/replication_shared.dir/binlog_driver.cpp.i + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/binlog_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp -o CMakeFiles/replication_shared.dir/binlog_driver.cpp.s + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.provides: src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: src/basic_transaction_parser.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp > CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.i + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp -o CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.s + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.provides: src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: src/tcp_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_6) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/tcp_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/tcp_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp > CMakeFiles/replication_shared.dir/tcp_driver.cpp.i + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/tcp_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp -o CMakeFiles/replication_shared.dir/tcp_driver.cpp.s + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.provides: src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: src/file_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_7) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/file_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/file_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/file_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp > CMakeFiles/replication_shared.dir/file_driver.cpp.i + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/file_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp -o CMakeFiles/replication_shared.dir/file_driver.cpp.s + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.provides: src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/file_driver.cpp.o + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: src/binary_log.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_8) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/binary_log.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/binary_log.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/binary_log.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp > CMakeFiles/replication_shared.dir/binary_log.cpp.i + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/binary_log.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp -o CMakeFiles/replication_shared.dir/binary_log.cpp.s + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.provides: src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/binary_log.cpp.o + +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: src/protocol.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_9) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/protocol.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/protocol.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp + +src/CMakeFiles/replication_shared.dir/protocol.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/protocol.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp > CMakeFiles/replication_shared.dir/protocol.cpp.i + +src/CMakeFiles/replication_shared.dir/protocol.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/protocol.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp -o CMakeFiles/replication_shared.dir/protocol.cpp.s + +src/CMakeFiles/replication_shared.dir/protocol.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/protocol.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/protocol.cpp.o.provides: src/CMakeFiles/replication_shared.dir/protocol.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/protocol.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/protocol.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/protocol.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/protocol.cpp.o + +src/CMakeFiles/replication_shared.dir/value.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/value.cpp.o: src/value.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_10) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/value.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/value.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/value.cpp + +src/CMakeFiles/replication_shared.dir/value.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/value.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/value.cpp > CMakeFiles/replication_shared.dir/value.cpp.i + +src/CMakeFiles/replication_shared.dir/value.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/value.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/value.cpp -o CMakeFiles/replication_shared.dir/value.cpp.s + +src/CMakeFiles/replication_shared.dir/value.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/value.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/value.cpp.o.provides: src/CMakeFiles/replication_shared.dir/value.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/value.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/value.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/value.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/value.cpp.o + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o: src/binlog_event.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_11) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/binlog_event.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/binlog_event.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp > CMakeFiles/replication_shared.dir/binlog_event.cpp.i + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/binlog_event.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp -o CMakeFiles/replication_shared.dir/binlog_event.cpp.s + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.provides: src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: src/resultset_iterator.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_12) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/resultset_iterator.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp > CMakeFiles/replication_shared.dir/resultset_iterator.cpp.i + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/resultset_iterator.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp -o CMakeFiles/replication_shared.dir/resultset_iterator.cpp.s + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.provides: src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o: src/basic_content_handler.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_13) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/basic_content_handler.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp > CMakeFiles/replication_shared.dir/basic_content_handler.cpp.i + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/basic_content_handler.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp -o CMakeFiles/replication_shared.dir/basic_content_handler.cpp.s + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.provides: src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o + +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: src/utilities.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_14) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/utilities.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/utilities.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp + +src/CMakeFiles/replication_shared.dir/utilities.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/utilities.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp > CMakeFiles/replication_shared.dir/utilities.cpp.i + +src/CMakeFiles/replication_shared.dir/utilities.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/utilities.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp -o CMakeFiles/replication_shared.dir/utilities.cpp.s + +src/CMakeFiles/replication_shared.dir/utilities.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/utilities.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/utilities.cpp.o.provides: src/CMakeFiles/replication_shared.dir/utilities.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/utilities.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/utilities.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/utilities.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/utilities.cpp.o + +src/CMakeFiles/replication_shared.dir/gtid.cpp.o: src/CMakeFiles/replication_shared.dir/flags.make +src/CMakeFiles/replication_shared.dir/gtid.cpp.o: src/gtid.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_15) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_shared.dir/gtid.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_shared.dir/gtid.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp + +src/CMakeFiles/replication_shared.dir/gtid.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_shared.dir/gtid.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp > CMakeFiles/replication_shared.dir/gtid.cpp.i + +src/CMakeFiles/replication_shared.dir/gtid.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_shared.dir/gtid.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp -o CMakeFiles/replication_shared.dir/gtid.cpp.s + +src/CMakeFiles/replication_shared.dir/gtid.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_shared.dir/gtid.cpp.o.requires + +src/CMakeFiles/replication_shared.dir/gtid.cpp.o.provides: src/CMakeFiles/replication_shared.dir/gtid.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/gtid.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_shared.dir/gtid.cpp.o.provides + +src/CMakeFiles/replication_shared.dir/gtid.cpp.o.provides.build: src/CMakeFiles/replication_shared.dir/gtid.cpp.o + +# Object files for target replication_shared +replication_shared_OBJECTS = \ +"CMakeFiles/replication_shared.dir/access_method_factory.cpp.o" \ +"CMakeFiles/replication_shared.dir/field_iterator.cpp.o" \ +"CMakeFiles/replication_shared.dir/row_of_fields.cpp.o" \ +"CMakeFiles/replication_shared.dir/binlog_driver.cpp.o" \ +"CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o" \ +"CMakeFiles/replication_shared.dir/tcp_driver.cpp.o" \ +"CMakeFiles/replication_shared.dir/file_driver.cpp.o" \ +"CMakeFiles/replication_shared.dir/binary_log.cpp.o" \ +"CMakeFiles/replication_shared.dir/protocol.cpp.o" \ +"CMakeFiles/replication_shared.dir/value.cpp.o" \ +"CMakeFiles/replication_shared.dir/binlog_event.cpp.o" \ +"CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o" \ +"CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o" \ +"CMakeFiles/replication_shared.dir/utilities.cpp.o" \ +"CMakeFiles/replication_shared.dir/gtid.cpp.o" + +# External object files for target replication_shared +replication_shared_EXTERNAL_OBJECTS = + +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/file_driver.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/binary_log.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/protocol.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/value.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/utilities.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/gtid.cpp.o +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/build.make +lib/libreplication.so.0.1: /usr/lib/libboost_system-mt.so +lib/libreplication.so.0.1: /usr/lib/libboost_thread-mt.so +lib/libreplication.so.0.1: /usr/lib/libmysqlclient_r.so +lib/libreplication.so.0.1: src/CMakeFiles/replication_shared.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX shared library ../lib/libreplication.so" + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/replication_shared.dir/link.txt --verbose=$(VERBOSE) + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -E cmake_symlink_library ../lib/libreplication.so.0.1 ../lib/libreplication.so.1 ../lib/libreplication.so + +lib/libreplication.so.1: lib/libreplication.so.0.1 + +lib/libreplication.so: lib/libreplication.so.0.1 + +# Rule to build all files generated by this target. +src/CMakeFiles/replication_shared.dir/build: lib/libreplication.so +.PHONY : src/CMakeFiles/replication_shared.dir/build + +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/file_driver.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/binary_log.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/protocol.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/value.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/utilities.cpp.o.requires +src/CMakeFiles/replication_shared.dir/requires: src/CMakeFiles/replication_shared.dir/gtid.cpp.o.requires +.PHONY : src/CMakeFiles/replication_shared.dir/requires + +src/CMakeFiles/replication_shared.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -P CMakeFiles/replication_shared.dir/cmake_clean.cmake +.PHONY : src/CMakeFiles/replication_shared.dir/clean + +src/CMakeFiles/replication_shared.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/src /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/src /home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_shared.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : src/CMakeFiles/replication_shared.dir/depend + diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/cmake_clean.cmake b/replication_listener/src/CMakeFiles/replication_shared.dir/cmake_clean.cmake new file mode 100644 index 000000000..bbfb8956c --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/cmake_clean.cmake @@ -0,0 +1,26 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/replication_shared.dir/access_method_factory.cpp.o" + "CMakeFiles/replication_shared.dir/field_iterator.cpp.o" + "CMakeFiles/replication_shared.dir/row_of_fields.cpp.o" + "CMakeFiles/replication_shared.dir/binlog_driver.cpp.o" + "CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o" + "CMakeFiles/replication_shared.dir/tcp_driver.cpp.o" + "CMakeFiles/replication_shared.dir/file_driver.cpp.o" + "CMakeFiles/replication_shared.dir/binary_log.cpp.o" + "CMakeFiles/replication_shared.dir/protocol.cpp.o" + "CMakeFiles/replication_shared.dir/value.cpp.o" + "CMakeFiles/replication_shared.dir/binlog_event.cpp.o" + "CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o" + "CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o" + "CMakeFiles/replication_shared.dir/utilities.cpp.o" + "CMakeFiles/replication_shared.dir/gtid.cpp.o" + "../lib/libreplication.pdb" + "../lib/libreplication.so" + "../lib/libreplication.so.0.1" + "../lib/libreplication.so.1" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/replication_shared.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/depend.internal b/replication_listener/src/CMakeFiles/replication_shared.dir/depend.internal new file mode 100644 index 000000000..90d8f6793 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/depend.internal @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp + include/basic_content_handler.h + include/binlog_event.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp + include/binlog_driver.h + include/binlog_event.h + include/gtid.h + include/protocol.h +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp + include/binlog_event.h +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_shared.dir/gtid.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp + include/gtid.h +src/CMakeFiles/replication_shared.dir/protocol.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp + include/binlog_event.h + include/listener_exception.h + include/protocol.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/value.h +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp + include/binlog_event.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp + /usr/local/include/my_alloc.h + /usr/local/include/my_list.h + /usr/local/include/mysql.h + /usr/local/include/mysql_com.h + /usr/local/include/mysql_time.h + /usr/local/include/mysql_version.h + /usr/local/include/typelib.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/listener_exception.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_shared.dir/utilities.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp + include/binlog_event.h + include/protocol.h + include/utilities.h + include/value.h +src/CMakeFiles/replication_shared.dir/value.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/value.cpp + include/binlog_event.h + include/protocol.h + include/value.h diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/depend.make b/replication_listener/src/CMakeFiles/replication_shared.dir/depend.make new file mode 100644 index 000000000..9003fc2ac --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/depend.make @@ -0,0 +1,146 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: src/access_method_factory.cpp +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/file_driver.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/gtid.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/rowset.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o: src/basic_content_handler.cpp +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o: include/binlog_event.h + +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: src/basic_transaction_parser.cpp +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: src/binary_log.cpp +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/file_driver.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/gtid.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/rowset.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_shared.dir/binary_log.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: src/binlog_driver.cpp +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o: include/protocol.h + +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o: src/binlog_event.cpp +src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o: include/binlog_event.h + +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: src/field_iterator.cpp +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: src/file_driver.cpp +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/file_driver.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/rowset.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_shared.dir/file_driver.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/gtid.cpp.o: src/gtid.cpp +src/CMakeFiles/replication_shared.dir/gtid.cpp.o: include/gtid.h + +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: src/protocol.cpp +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: include/listener_exception.h +src/CMakeFiles/replication_shared.dir/protocol.cpp.o: include/protocol.h + +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: src/resultset_iterator.cpp +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/rowset.h +src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: src/row_of_fields.cpp +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: src/tcp_driver.cpp +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/my_alloc.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/my_list.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/mysql.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/mysql_com.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/mysql_time.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/mysql_version.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: /usr/local/include/typelib.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/file_driver.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/listener_exception.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/rowset.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: src/utilities.cpp +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: include/utilities.h +src/CMakeFiles/replication_shared.dir/utilities.cpp.o: include/value.h + +src/CMakeFiles/replication_shared.dir/value.cpp.o: src/value.cpp +src/CMakeFiles/replication_shared.dir/value.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_shared.dir/value.cpp.o: include/protocol.h +src/CMakeFiles/replication_shared.dir/value.cpp.o: include/value.h + diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/flags.make b/replication_listener/src/CMakeFiles/replication_shared.dir/flags.make new file mode 100644 index 000000000..e4deff29a --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -fPIC -I/home/jan/skysql/skygateway/replication_listener/include -I/usr/local/include + +CXX_DEFINES = -Dreplication_shared_EXPORTS + diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/link.txt b/replication_listener/src/CMakeFiles/replication_shared.dir/link.txt new file mode 100644 index 000000000..ee9df52db --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -fPIC -shared -Wl,-soname,libreplication.so.1 -o ../lib/libreplication.so.0.1 CMakeFiles/replication_shared.dir/access_method_factory.cpp.o CMakeFiles/replication_shared.dir/field_iterator.cpp.o CMakeFiles/replication_shared.dir/row_of_fields.cpp.o CMakeFiles/replication_shared.dir/binlog_driver.cpp.o CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o CMakeFiles/replication_shared.dir/tcp_driver.cpp.o CMakeFiles/replication_shared.dir/file_driver.cpp.o CMakeFiles/replication_shared.dir/binary_log.cpp.o CMakeFiles/replication_shared.dir/protocol.cpp.o CMakeFiles/replication_shared.dir/value.cpp.o CMakeFiles/replication_shared.dir/binlog_event.cpp.o CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o CMakeFiles/replication_shared.dir/utilities.cpp.o CMakeFiles/replication_shared.dir/gtid.cpp.o -L/home/jan/skysql/skygateway/replication_listener/lib -lcrypto -lboost_system-mt -lboost_thread-mt -lpthread -lmysqlclient_r -Wl,-rpath,/home/jan/skysql/skygateway/replication_listener/lib: diff --git a/replication_listener/src/CMakeFiles/replication_shared.dir/progress.make b/replication_listener/src/CMakeFiles/replication_shared.dir/progress.make new file mode 100644 index 000000000..11e55c9ba --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_shared.dir/progress.make @@ -0,0 +1,16 @@ +CMAKE_PROGRESS_1 = 9 +CMAKE_PROGRESS_2 = 10 +CMAKE_PROGRESS_3 = 11 +CMAKE_PROGRESS_4 = 12 +CMAKE_PROGRESS_5 = 13 +CMAKE_PROGRESS_6 = 14 +CMAKE_PROGRESS_7 = 15 +CMAKE_PROGRESS_8 = 16 +CMAKE_PROGRESS_9 = 17 +CMAKE_PROGRESS_10 = 18 +CMAKE_PROGRESS_11 = 19 +CMAKE_PROGRESS_12 = 20 +CMAKE_PROGRESS_13 = 21 +CMAKE_PROGRESS_14 = 22 +CMAKE_PROGRESS_15 = 23 + diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/CXX.includecache b/replication_listener/src/CMakeFiles/replication_static.dir/CXX.includecache new file mode 100644 index 000000000..b4f59c6cd --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/CXX.includecache @@ -0,0 +1,308 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp +access_method_factory.h +/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.h +tcp_driver.h +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.h +file_driver.h +/home/jan/skysql/skygateway/replication_listener/src/file_driver.h + +/home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp +list +- +binlog_api.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_api.h +boost/foreach.hpp +- + +/home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp +file_driver.h +/home/jan/skysql/skygateway/replication_listener/src/file_driver.h + +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp +binlog_api.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_api.h +iostream +- +tcp_driver.h +/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.h +mysql.h +- +fstream +- +time.h +- +boost/cstdint.hpp +- +streambuf +- +stdio.h +- +boost/bind.hpp +- +boost/thread.hpp +- +exception +- +boost/foreach.hpp +- +openssl/evp.h +- +openssl/rand.h +- +boost/lexical_cast.hpp +- +protocol.h +/home/jan/skysql/skygateway/replication_listener/src/protocol.h +binlog_event.h +/home/jan/skysql/skygateway/replication_listener/src/binlog_event.h +rowset.h +/home/jan/skysql/skygateway/replication_listener/src/rowset.h +field_iterator.h +/home/jan/skysql/skygateway/replication_listener/src/field_iterator.h +listener_exception.h +/home/jan/skysql/skygateway/replication_listener/src/listener_exception.h + +/usr/local/include/my_alloc.h + +/usr/local/include/my_list.h + +/usr/local/include/mysql.h +standards.h +- +sys/types.h +- +winsock2.h +- +mysql_version.h +/usr/local/include/mysql_version.h +mysql_com.h +/usr/local/include/mysql_com.h +mysql_time.h +/usr/local/include/mysql_time.h +my_list.h +/usr/local/include/my_list.h +typelib.h +/usr/local/include/typelib.h +my_alloc.h +/usr/local/include/my_alloc.h + +/usr/local/include/mysql_com.h + +/usr/local/include/mysql_time.h + +/usr/local/include/mysql_version.h +custom_conf.h +- + +/usr/local/include/typelib.h +my_alloc.h +/usr/local/include/my_alloc.h + +include/access_method_factory.h +binlog_driver.h +include/binlog_driver.h + +include/basic_content_handler.h +binlog_event.h +include/binlog_event.h + +include/basic_transaction_parser.h +list +- +boost/cstdint.hpp +- +binlog_event.h +include/binlog_event.h +basic_content_handler.h +include/basic_content_handler.h +iostream +- + +include/binlog_api.h +iosfwd +- +boost/iostreams/categories.hpp +- +boost/iostreams/positioning.hpp +- +boost/iostreams/concepts.hpp +- +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- +list +- +cassert +- +binlog_event.h +include/binlog_event.h +binlog_driver.h +include/binlog_driver.h +tcp_driver.h +include/tcp_driver.h +file_driver.h +include/file_driver.h +basic_content_handler.h +include/basic_content_handler.h +basic_transaction_parser.h +include/basic_transaction_parser.h +field_iterator.h +include/field_iterator.h +rowset.h +include/rowset.h +access_method_factory.h +include/access_method_factory.h +gtid.h +include/gtid.h + +include/binlog_driver.h +binlog_event.h +include/binlog_event.h +protocol.h +include/protocol.h +gtid.h +include/gtid.h + +include/binlog_event.h +boost/cstdint.hpp +- +list +- +boost/asio.hpp +- +boost/function.hpp +- +vector +- + +include/bounded_buffer.h +boost/circular_buffer.hpp +- +boost/thread/mutex.hpp +- +boost/thread/condition.hpp +- +boost/thread/thread.hpp +- +boost/progress.hpp +- +boost/bind.hpp +- + +include/field_iterator.h +binlog_event.h +include/binlog_event.h +value.h +include/value.h +row_of_fields.h +include/row_of_fields.h +vector +- + +include/file_driver.h +iostream +- +fstream +- +sys/types.h +- +sys/stat.h +- +unistd.h +- +binlog_api.h +include/binlog_api.h +binlog_driver.h +include/binlog_driver.h +protocol.h +include/protocol.h + +include/gtid.h +boost/asio.hpp +- +boost/function.hpp +- +boost/bind.hpp +- + +include/listener_exception.h +sstream +- +boost/system/system_error.hpp +- + +include/protocol.h +boost/asio.hpp +- +list +- +binlog_event.h +include/binlog_event.h + +include/resultset_iterator.h +iostream +- +boost/iterator/iterator_facade.hpp +- +boost/asio.hpp +- +value.h +include/value.h +rowset.h +include/rowset.h +row_of_fields.h +include/row_of_fields.h + +include/row_of_fields.h +vector +- +iostream +- +value.h +include/value.h + +include/rowset.h +field_iterator.h +include/field_iterator.h +resultset_iterator.h +include/resultset_iterator.h +boost/function.hpp +- +boost/iterator.hpp +- + +include/tcp_driver.h +binlog_driver.h +include/binlog_driver.h +bounded_buffer.h +include/bounded_buffer.h +protocol.h +include/protocol.h +boost/asio.hpp +- +boost/thread.hpp +- +gtid.h +include/gtid.h + +include/value.h +boost/cstdint.hpp +- +protocol.h +include/protocol.h +boost/any.hpp +- +iostream +- + diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake b/replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake new file mode 100644 index 000000000..0c31897be --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake @@ -0,0 +1,36 @@ +# The set of languages for which implicit dependencies are needed: +SET(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +SET(CMAKE_DEPENDS_CHECK_CXX + "/home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/binary_log.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/binlog_event.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/field_iterator.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/file_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/gtid.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/gtid.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/protocol.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/protocol.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/utilities.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/utilities.cpp.o" + "/home/jan/skysql/skygateway/replication_listener/src/value.cpp" "/home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/value.cpp.o" + ) +SET(CMAKE_CXX_COMPILER_ID "GNU") + +# Targets to which this target links. +SET(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# The include file search paths: +SET(CMAKE_C_TARGET_INCLUDE_PATH + "include" + "/usr/local/include" + ) +SET(CMAKE_CXX_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_Fortran_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) +SET(CMAKE_ASM_TARGET_INCLUDE_PATH ${CMAKE_C_TARGET_INCLUDE_PATH}) diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/build.make b/replication_listener/src/CMakeFiles/replication_static.dir/build.make new file mode 100644 index 000000000..c8fd6586b --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/build.make @@ -0,0 +1,467 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +# Include any dependencies generated for this target. +include src/CMakeFiles/replication_static.dir/depend.make + +# Include the progress variables for this target. +include src/CMakeFiles/replication_static.dir/progress.make + +# Include the compile flags for this target's objects. +include src/CMakeFiles/replication_static.dir/flags.make + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: src/access_method_factory.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_1) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/access_method_factory.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/access_method_factory.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp > CMakeFiles/replication_static.dir/access_method_factory.cpp.i + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/access_method_factory.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp -o CMakeFiles/replication_static.dir/access_method_factory.cpp.s + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.requires + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.provides: src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.provides + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: src/field_iterator.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_2) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/field_iterator.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/field_iterator.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/field_iterator.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp > CMakeFiles/replication_static.dir/field_iterator.cpp.i + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/field_iterator.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp -o CMakeFiles/replication_static.dir/field_iterator.cpp.s + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.requires + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.provides: src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.provides + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/field_iterator.cpp.o + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: src/row_of_fields.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_3) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/row_of_fields.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/row_of_fields.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp > CMakeFiles/replication_static.dir/row_of_fields.cpp.i + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/row_of_fields.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp -o CMakeFiles/replication_static.dir/row_of_fields.cpp.s + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.requires + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.provides: src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.provides + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: src/binlog_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_4) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/binlog_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/binlog_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp > CMakeFiles/replication_static.dir/binlog_driver.cpp.i + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/binlog_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp -o CMakeFiles/replication_static.dir/binlog_driver.cpp.s + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.requires + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.provides: src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.provides + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: src/basic_transaction_parser.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_5) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp > CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.i + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp -o CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.s + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.requires + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.provides: src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.provides + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: src/tcp_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_6) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/tcp_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/tcp_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp > CMakeFiles/replication_static.dir/tcp_driver.cpp.i + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/tcp_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp -o CMakeFiles/replication_static.dir/tcp_driver.cpp.s + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.requires + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.provides: src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.provides + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o + +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: src/file_driver.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_7) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/file_driver.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/file_driver.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp + +src/CMakeFiles/replication_static.dir/file_driver.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/file_driver.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp > CMakeFiles/replication_static.dir/file_driver.cpp.i + +src/CMakeFiles/replication_static.dir/file_driver.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/file_driver.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp -o CMakeFiles/replication_static.dir/file_driver.cpp.s + +src/CMakeFiles/replication_static.dir/file_driver.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/file_driver.cpp.o.requires + +src/CMakeFiles/replication_static.dir/file_driver.cpp.o.provides: src/CMakeFiles/replication_static.dir/file_driver.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/file_driver.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/file_driver.cpp.o.provides + +src/CMakeFiles/replication_static.dir/file_driver.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/file_driver.cpp.o + +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: src/binary_log.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_8) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/binary_log.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/binary_log.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp + +src/CMakeFiles/replication_static.dir/binary_log.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/binary_log.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp > CMakeFiles/replication_static.dir/binary_log.cpp.i + +src/CMakeFiles/replication_static.dir/binary_log.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/binary_log.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp -o CMakeFiles/replication_static.dir/binary_log.cpp.s + +src/CMakeFiles/replication_static.dir/binary_log.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/binary_log.cpp.o.requires + +src/CMakeFiles/replication_static.dir/binary_log.cpp.o.provides: src/CMakeFiles/replication_static.dir/binary_log.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binary_log.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/binary_log.cpp.o.provides + +src/CMakeFiles/replication_static.dir/binary_log.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/binary_log.cpp.o + +src/CMakeFiles/replication_static.dir/protocol.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/protocol.cpp.o: src/protocol.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_9) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/protocol.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/protocol.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp + +src/CMakeFiles/replication_static.dir/protocol.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/protocol.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp > CMakeFiles/replication_static.dir/protocol.cpp.i + +src/CMakeFiles/replication_static.dir/protocol.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/protocol.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp -o CMakeFiles/replication_static.dir/protocol.cpp.s + +src/CMakeFiles/replication_static.dir/protocol.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/protocol.cpp.o.requires + +src/CMakeFiles/replication_static.dir/protocol.cpp.o.provides: src/CMakeFiles/replication_static.dir/protocol.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/protocol.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/protocol.cpp.o.provides + +src/CMakeFiles/replication_static.dir/protocol.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/protocol.cpp.o + +src/CMakeFiles/replication_static.dir/value.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/value.cpp.o: src/value.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_10) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/value.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/value.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/value.cpp + +src/CMakeFiles/replication_static.dir/value.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/value.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/value.cpp > CMakeFiles/replication_static.dir/value.cpp.i + +src/CMakeFiles/replication_static.dir/value.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/value.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/value.cpp -o CMakeFiles/replication_static.dir/value.cpp.s + +src/CMakeFiles/replication_static.dir/value.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/value.cpp.o.requires + +src/CMakeFiles/replication_static.dir/value.cpp.o.provides: src/CMakeFiles/replication_static.dir/value.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/value.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/value.cpp.o.provides + +src/CMakeFiles/replication_static.dir/value.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/value.cpp.o + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o: src/binlog_event.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_11) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/binlog_event.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/binlog_event.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/binlog_event.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp > CMakeFiles/replication_static.dir/binlog_event.cpp.i + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/binlog_event.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp -o CMakeFiles/replication_static.dir/binlog_event.cpp.s + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.requires + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.provides: src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.provides + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/binlog_event.cpp.o + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: src/resultset_iterator.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_12) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/resultset_iterator.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/resultset_iterator.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp > CMakeFiles/replication_static.dir/resultset_iterator.cpp.i + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/resultset_iterator.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp -o CMakeFiles/replication_static.dir/resultset_iterator.cpp.s + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.requires + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.provides: src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.provides + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o: src/basic_content_handler.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_13) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/basic_content_handler.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/basic_content_handler.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp > CMakeFiles/replication_static.dir/basic_content_handler.cpp.i + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/basic_content_handler.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp -o CMakeFiles/replication_static.dir/basic_content_handler.cpp.s + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.requires + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.provides: src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.provides + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o + +src/CMakeFiles/replication_static.dir/utilities.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/utilities.cpp.o: src/utilities.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_14) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/utilities.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/utilities.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp + +src/CMakeFiles/replication_static.dir/utilities.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/utilities.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp > CMakeFiles/replication_static.dir/utilities.cpp.i + +src/CMakeFiles/replication_static.dir/utilities.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/utilities.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp -o CMakeFiles/replication_static.dir/utilities.cpp.s + +src/CMakeFiles/replication_static.dir/utilities.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/utilities.cpp.o.requires + +src/CMakeFiles/replication_static.dir/utilities.cpp.o.provides: src/CMakeFiles/replication_static.dir/utilities.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/utilities.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/utilities.cpp.o.provides + +src/CMakeFiles/replication_static.dir/utilities.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/utilities.cpp.o + +src/CMakeFiles/replication_static.dir/gtid.cpp.o: src/CMakeFiles/replication_static.dir/flags.make +src/CMakeFiles/replication_static.dir/gtid.cpp.o: src/gtid.cpp + $(CMAKE_COMMAND) -E cmake_progress_report /home/jan/skysql/skygateway/replication_listener/CMakeFiles $(CMAKE_PROGRESS_15) + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Building CXX object src/CMakeFiles/replication_static.dir/gtid.cpp.o" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -o CMakeFiles/replication_static.dir/gtid.cpp.o -c /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp + +src/CMakeFiles/replication_static.dir/gtid.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/replication_static.dir/gtid.cpp.i" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -E /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp > CMakeFiles/replication_static.dir/gtid.cpp.i + +src/CMakeFiles/replication_static.dir/gtid.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/replication_static.dir/gtid.cpp.s" + cd /home/jan/skysql/skygateway/replication_listener/src && /usr/bin/c++ $(CXX_DEFINES) $(CXX_FLAGS) -S /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp -o CMakeFiles/replication_static.dir/gtid.cpp.s + +src/CMakeFiles/replication_static.dir/gtid.cpp.o.requires: +.PHONY : src/CMakeFiles/replication_static.dir/gtid.cpp.o.requires + +src/CMakeFiles/replication_static.dir/gtid.cpp.o.provides: src/CMakeFiles/replication_static.dir/gtid.cpp.o.requires + $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/gtid.cpp.o.provides.build +.PHONY : src/CMakeFiles/replication_static.dir/gtid.cpp.o.provides + +src/CMakeFiles/replication_static.dir/gtid.cpp.o.provides.build: src/CMakeFiles/replication_static.dir/gtid.cpp.o + +# Object files for target replication_static +replication_static_OBJECTS = \ +"CMakeFiles/replication_static.dir/access_method_factory.cpp.o" \ +"CMakeFiles/replication_static.dir/field_iterator.cpp.o" \ +"CMakeFiles/replication_static.dir/row_of_fields.cpp.o" \ +"CMakeFiles/replication_static.dir/binlog_driver.cpp.o" \ +"CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o" \ +"CMakeFiles/replication_static.dir/tcp_driver.cpp.o" \ +"CMakeFiles/replication_static.dir/file_driver.cpp.o" \ +"CMakeFiles/replication_static.dir/binary_log.cpp.o" \ +"CMakeFiles/replication_static.dir/protocol.cpp.o" \ +"CMakeFiles/replication_static.dir/value.cpp.o" \ +"CMakeFiles/replication_static.dir/binlog_event.cpp.o" \ +"CMakeFiles/replication_static.dir/resultset_iterator.cpp.o" \ +"CMakeFiles/replication_static.dir/basic_content_handler.cpp.o" \ +"CMakeFiles/replication_static.dir/utilities.cpp.o" \ +"CMakeFiles/replication_static.dir/gtid.cpp.o" + +# External object files for target replication_static +replication_static_EXTERNAL_OBJECTS = + +lib/libreplication.a: src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/field_iterator.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/file_driver.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/binary_log.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/protocol.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/value.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/binlog_event.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/utilities.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/gtid.cpp.o +lib/libreplication.a: src/CMakeFiles/replication_static.dir/build.make +lib/libreplication.a: src/CMakeFiles/replication_static.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --red --bold "Linking CXX static library ../lib/libreplication.a" + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -P CMakeFiles/replication_static.dir/cmake_clean_target.cmake + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/replication_static.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +src/CMakeFiles/replication_static.dir/build: lib/libreplication.a +.PHONY : src/CMakeFiles/replication_static.dir/build + +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/field_iterator.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/file_driver.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/binary_log.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/protocol.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/value.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/binlog_event.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/utilities.cpp.o.requires +src/CMakeFiles/replication_static.dir/requires: src/CMakeFiles/replication_static.dir/gtid.cpp.o.requires +.PHONY : src/CMakeFiles/replication_static.dir/requires + +src/CMakeFiles/replication_static.dir/clean: + cd /home/jan/skysql/skygateway/replication_listener/src && $(CMAKE_COMMAND) -P CMakeFiles/replication_static.dir/cmake_clean.cmake +.PHONY : src/CMakeFiles/replication_static.dir/clean + +src/CMakeFiles/replication_static.dir/depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/src /home/jan/skysql/skygateway/replication_listener /home/jan/skysql/skygateway/replication_listener/src /home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/replication_static.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : src/CMakeFiles/replication_static.dir/depend + diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean.cmake b/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean.cmake new file mode 100644 index 000000000..251053088 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean.cmake @@ -0,0 +1,24 @@ +FILE(REMOVE_RECURSE + "CMakeFiles/replication_static.dir/access_method_factory.cpp.o" + "CMakeFiles/replication_static.dir/field_iterator.cpp.o" + "CMakeFiles/replication_static.dir/row_of_fields.cpp.o" + "CMakeFiles/replication_static.dir/binlog_driver.cpp.o" + "CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o" + "CMakeFiles/replication_static.dir/tcp_driver.cpp.o" + "CMakeFiles/replication_static.dir/file_driver.cpp.o" + "CMakeFiles/replication_static.dir/binary_log.cpp.o" + "CMakeFiles/replication_static.dir/protocol.cpp.o" + "CMakeFiles/replication_static.dir/value.cpp.o" + "CMakeFiles/replication_static.dir/binlog_event.cpp.o" + "CMakeFiles/replication_static.dir/resultset_iterator.cpp.o" + "CMakeFiles/replication_static.dir/basic_content_handler.cpp.o" + "CMakeFiles/replication_static.dir/utilities.cpp.o" + "CMakeFiles/replication_static.dir/gtid.cpp.o" + "../lib/libreplication.pdb" + "../lib/libreplication.a" +) + +# Per-language clean rules from dependency scanning. +FOREACH(lang CXX) + INCLUDE(CMakeFiles/replication_static.dir/cmake_clean_${lang}.cmake OPTIONAL) +ENDFOREACH(lang) diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean_target.cmake b/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean_target.cmake new file mode 100644 index 000000000..de29a3959 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/cmake_clean_target.cmake @@ -0,0 +1,3 @@ +FILE(REMOVE_RECURSE + "../lib/libreplication.a" +) diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/depend.internal b/replication_listener/src/CMakeFiles/replication_static.dir/depend.internal new file mode 100644 index 000000000..7d34f0ef9 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/depend.internal @@ -0,0 +1,147 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/access_method_factory.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/basic_content_handler.cpp + include/basic_content_handler.h + include/binlog_event.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/basic_transaction_parser.cpp + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binary_log.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binlog_driver.cpp + include/binlog_driver.h + include/binlog_event.h + include/gtid.h + include/protocol.h +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/binlog_event.cpp + include/binlog_event.h +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/field_iterator.cpp + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/file_driver.cpp + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_static.dir/gtid.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/gtid.cpp + include/gtid.h + include/listener_exception.h +src/CMakeFiles/replication_static.dir/protocol.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/protocol.cpp + include/binlog_event.h + include/listener_exception.h + include/protocol.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/resultset_iterator.cpp + include/binlog_event.h + include/field_iterator.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/value.h +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/row_of_fields.cpp + include/binlog_event.h + include/protocol.h + include/row_of_fields.h + include/value.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/tcp_driver.cpp + /usr/local/include/my_alloc.h + /usr/local/include/my_list.h + /usr/local/include/mysql.h + /usr/local/include/mysql_com.h + /usr/local/include/mysql_time.h + /usr/local/include/mysql_version.h + /usr/local/include/typelib.h + include/access_method_factory.h + include/basic_content_handler.h + include/basic_transaction_parser.h + include/binlog_api.h + include/binlog_driver.h + include/binlog_event.h + include/bounded_buffer.h + include/field_iterator.h + include/file_driver.h + include/gtid.h + include/listener_exception.h + include/protocol.h + include/resultset_iterator.h + include/row_of_fields.h + include/rowset.h + include/tcp_driver.h + include/value.h +src/CMakeFiles/replication_static.dir/utilities.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/utilities.cpp + include/binlog_event.h + include/protocol.h + include/utilities.h + include/value.h +src/CMakeFiles/replication_static.dir/value.cpp.o + /home/jan/skysql/skygateway/replication_listener/src/value.cpp + include/binlog_event.h + include/protocol.h + include/value.h diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/depend.make b/replication_listener/src/CMakeFiles/replication_static.dir/depend.make new file mode 100644 index 000000000..69039c32e --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/depend.make @@ -0,0 +1,147 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: src/access_method_factory.cpp +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/file_driver.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/rowset.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o: src/basic_content_handler.cpp +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o: include/binlog_event.h + +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: src/basic_transaction_parser.cpp +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: src/binary_log.cpp +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/file_driver.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/rowset.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_static.dir/binary_log.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: src/binlog_driver.cpp +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o: include/protocol.h + +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o: src/binlog_event.cpp +src/CMakeFiles/replication_static.dir/binlog_event.cpp.o: include/binlog_event.h + +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: src/field_iterator.cpp +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/field_iterator.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: src/file_driver.cpp +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/file_driver.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/rowset.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_static.dir/file_driver.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/gtid.cpp.o: src/gtid.cpp +src/CMakeFiles/replication_static.dir/gtid.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/gtid.cpp.o: include/listener_exception.h + +src/CMakeFiles/replication_static.dir/protocol.cpp.o: src/protocol.cpp +src/CMakeFiles/replication_static.dir/protocol.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/protocol.cpp.o: include/listener_exception.h +src/CMakeFiles/replication_static.dir/protocol.cpp.o: include/protocol.h + +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: src/resultset_iterator.cpp +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/rowset.h +src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: src/row_of_fields.cpp +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: src/tcp_driver.cpp +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/my_alloc.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/my_list.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/mysql.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/mysql_com.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/mysql_time.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/mysql_version.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: /usr/local/include/typelib.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/access_method_factory.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/basic_content_handler.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/basic_transaction_parser.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/binlog_api.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/binlog_driver.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/bounded_buffer.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/field_iterator.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/file_driver.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/gtid.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/listener_exception.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/resultset_iterator.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/row_of_fields.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/rowset.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/tcp_driver.h +src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/utilities.cpp.o: src/utilities.cpp +src/CMakeFiles/replication_static.dir/utilities.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/utilities.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/utilities.cpp.o: include/utilities.h +src/CMakeFiles/replication_static.dir/utilities.cpp.o: include/value.h + +src/CMakeFiles/replication_static.dir/value.cpp.o: src/value.cpp +src/CMakeFiles/replication_static.dir/value.cpp.o: include/binlog_event.h +src/CMakeFiles/replication_static.dir/value.cpp.o: include/protocol.h +src/CMakeFiles/replication_static.dir/value.cpp.o: include/value.h + diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/flags.make b/replication_listener/src/CMakeFiles/replication_static.dir/flags.make new file mode 100644 index 000000000..d4a4e58ba --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/flags.make @@ -0,0 +1,8 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -I/home/jan/skysql/skygateway/replication_listener/include -I/usr/local/include + +CXX_DEFINES = + diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/link.txt b/replication_listener/src/CMakeFiles/replication_static.dir/link.txt new file mode 100644 index 000000000..c0814cc86 --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/link.txt @@ -0,0 +1,2 @@ +/usr/bin/ar cr ../lib/libreplication.a CMakeFiles/replication_static.dir/access_method_factory.cpp.o CMakeFiles/replication_static.dir/field_iterator.cpp.o CMakeFiles/replication_static.dir/row_of_fields.cpp.o CMakeFiles/replication_static.dir/binlog_driver.cpp.o CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o CMakeFiles/replication_static.dir/tcp_driver.cpp.o CMakeFiles/replication_static.dir/file_driver.cpp.o CMakeFiles/replication_static.dir/binary_log.cpp.o CMakeFiles/replication_static.dir/protocol.cpp.o CMakeFiles/replication_static.dir/value.cpp.o CMakeFiles/replication_static.dir/binlog_event.cpp.o CMakeFiles/replication_static.dir/resultset_iterator.cpp.o CMakeFiles/replication_static.dir/basic_content_handler.cpp.o CMakeFiles/replication_static.dir/utilities.cpp.o CMakeFiles/replication_static.dir/gtid.cpp.o +/usr/bin/ranlib ../lib/libreplication.a diff --git a/replication_listener/src/CMakeFiles/replication_static.dir/progress.make b/replication_listener/src/CMakeFiles/replication_static.dir/progress.make new file mode 100644 index 000000000..8691b552f --- /dev/null +++ b/replication_listener/src/CMakeFiles/replication_static.dir/progress.make @@ -0,0 +1,16 @@ +CMAKE_PROGRESS_1 = 24 +CMAKE_PROGRESS_2 = 25 +CMAKE_PROGRESS_3 = 26 +CMAKE_PROGRESS_4 = 27 +CMAKE_PROGRESS_5 = 28 +CMAKE_PROGRESS_6 = 29 +CMAKE_PROGRESS_7 = 30 +CMAKE_PROGRESS_8 = 31 +CMAKE_PROGRESS_9 = 32 +CMAKE_PROGRESS_10 = 33 +CMAKE_PROGRESS_11 = 34 +CMAKE_PROGRESS_12 = 35 +CMAKE_PROGRESS_13 = 36 +CMAKE_PROGRESS_14 = 37 +CMAKE_PROGRESS_15 = 38 + diff --git a/replication_listener/src/CMakeLists.txt b/replication_listener/src/CMakeLists.txt new file mode 100644 index 000000000..5863b6332 --- /dev/null +++ b/replication_listener/src/CMakeLists.txt @@ -0,0 +1,32 @@ +# This configuration file builds both the static and shared version of +# the library. +set(replication_sources + access_method_factory.cpp field_iterator.cpp row_of_fields.cpp + binlog_driver.cpp basic_transaction_parser.cpp tcp_driver.cpp + file_driver.cpp binary_log.cpp protocol.cpp value.cpp binlog_event.cpp + resultset_iterator.cpp basic_transaction_parser.cpp + basic_content_handler.cpp utilities.cpp gtid.cpp) + +# Find MySQL client library and header files +find_library(MySQL_LIBRARY NAMES mysqlclient_r mysqlclient PATHS +/usr/lib64/mysql /usr/lib/mysql) +find_path(MySQL_INCLUDE_DIR mysql.h + /usr/local/include/mysql /usr/include/mysql) +include_directories(${MySQL_INCLUDE_DIR}) + +# Configure for building static library +add_library(replication_static STATIC ${replication_sources}) +target_link_libraries(replication_static crypto ${Boost_LIBRARIES} ${MySQL_LIBRARY}) +set_target_properties(replication_static PROPERTIES + OUTPUT_NAME "replication") + +# Configure for building shared library +add_library(replication_shared SHARED ${replication_sources}) +target_link_libraries(replication_shared crypto ${Boost_LIBRARIES} ${MySQL_LIBRARY}) + +set_target_properties(replication_shared PROPERTIES + VERSION 0.1 SOVERSION 1 + OUTPUT_NAME "replication") + +install(TARGETS replication_shared LIBRARY DESTINATION lib) +install(TARGETS replication_static ARCHIVE DESTINATION lib) diff --git a/replication_listener/src/Makefile b/replication_listener/src/Makefile new file mode 100644 index 000000000..9f75b1ec6 --- /dev/null +++ b/replication_listener/src/Makefile @@ -0,0 +1,669 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 2.8 + +# Default target executed when no arguments are given to make. +default_target: all +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + +# A target that is always out of date. +cmake_force: +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/jan/skysql/skygateway/replication_listener + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/jan/skysql/skygateway/replication_listener + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running interactive CMake command-line interface..." + /usr/bin/cmake -i . +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache +.PHONY : edit_cache/fast + +# Special rule for the target install +install: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install + +# Special rule for the target install +install/fast: preinstall/fast + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Install the project..." + /usr/bin/cmake -P cmake_install.cmake +.PHONY : install/fast + +# Special rule for the target install/local +install/local: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing only the local directory..." + /usr/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake +.PHONY : install/local + +# Special rule for the target install/local +install/local/fast: install/local +.PHONY : install/local/fast + +# Special rule for the target install/strip +install/strip: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Installing the project stripped..." + /usr/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake +.PHONY : install/strip + +# Special rule for the target install/strip +install/strip/fast: install/strip +.PHONY : install/strip/fast + +# Special rule for the target list_install_components +list_install_components: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Available install components are: \"Unspecified\"" +.PHONY : list_install_components + +# Special rule for the target list_install_components +list_install_components/fast: list_install_components +.PHONY : list_install_components/fast + +# Special rule for the target package +package: preinstall + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackConfig.cmake +.PHONY : package + +# Special rule for the target package +package/fast: package +.PHONY : package/fast + +# Special rule for the target package_source +package_source: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Run CPack packaging tool for source..." + cd /home/jan/skysql/skygateway/replication_listener && /usr/bin/cpack --config ./CPackSourceConfig.cmake /home/jan/skysql/skygateway/replication_listener/CPackSourceConfig.cmake +.PHONY : package_source + +# Special rule for the target package_source +package_source/fast: package_source +.PHONY : package_source/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles /home/jan/skysql/skygateway/replication_listener/src/CMakeFiles/progress.marks + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/jan/skysql/skygateway/replication_listener/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/clean +.PHONY : clean + +# The main clean target +clean/fast: clean +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +# Convenience name for target. +src/CMakeFiles/replication_shared.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/replication_shared.dir/rule +.PHONY : src/CMakeFiles/replication_shared.dir/rule + +# Convenience name for target. +replication_shared: src/CMakeFiles/replication_shared.dir/rule +.PHONY : replication_shared + +# fast build rule for target. +replication_shared/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/build +.PHONY : replication_shared/fast + +# Convenience name for target. +src/CMakeFiles/replication_static.dir/rule: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f CMakeFiles/Makefile2 src/CMakeFiles/replication_static.dir/rule +.PHONY : src/CMakeFiles/replication_static.dir/rule + +# Convenience name for target. +replication_static: src/CMakeFiles/replication_static.dir/rule +.PHONY : replication_static + +# fast build rule for target. +replication_static/fast: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/build +.PHONY : replication_static/fast + +access_method_factory.o: access_method_factory.cpp.o +.PHONY : access_method_factory.o + +# target to build an object file +access_method_factory.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/access_method_factory.cpp.o +.PHONY : access_method_factory.cpp.o + +access_method_factory.i: access_method_factory.cpp.i +.PHONY : access_method_factory.i + +# target to preprocess a source file +access_method_factory.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/access_method_factory.cpp.i +.PHONY : access_method_factory.cpp.i + +access_method_factory.s: access_method_factory.cpp.s +.PHONY : access_method_factory.s + +# target to generate assembly for a file +access_method_factory.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/access_method_factory.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/access_method_factory.cpp.s +.PHONY : access_method_factory.cpp.s + +basic_content_handler.o: basic_content_handler.cpp.o +.PHONY : basic_content_handler.o + +# target to build an object file +basic_content_handler.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.o +.PHONY : basic_content_handler.cpp.o + +basic_content_handler.i: basic_content_handler.cpp.i +.PHONY : basic_content_handler.i + +# target to preprocess a source file +basic_content_handler.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.i +.PHONY : basic_content_handler.cpp.i + +basic_content_handler.s: basic_content_handler.cpp.s +.PHONY : basic_content_handler.s + +# target to generate assembly for a file +basic_content_handler.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_content_handler.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_content_handler.cpp.s +.PHONY : basic_content_handler.cpp.s + +basic_transaction_parser.o: basic_transaction_parser.cpp.o +.PHONY : basic_transaction_parser.o + +# target to build an object file +basic_transaction_parser.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.o +.PHONY : basic_transaction_parser.cpp.o + +basic_transaction_parser.i: basic_transaction_parser.cpp.i +.PHONY : basic_transaction_parser.i + +# target to preprocess a source file +basic_transaction_parser.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.i +.PHONY : basic_transaction_parser.cpp.i + +basic_transaction_parser.s: basic_transaction_parser.cpp.s +.PHONY : basic_transaction_parser.s + +# target to generate assembly for a file +basic_transaction_parser.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/basic_transaction_parser.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/basic_transaction_parser.cpp.s +.PHONY : basic_transaction_parser.cpp.s + +binary_log.o: binary_log.cpp.o +.PHONY : binary_log.o + +# target to build an object file +binary_log.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binary_log.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binary_log.cpp.o +.PHONY : binary_log.cpp.o + +binary_log.i: binary_log.cpp.i +.PHONY : binary_log.i + +# target to preprocess a source file +binary_log.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binary_log.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binary_log.cpp.i +.PHONY : binary_log.cpp.i + +binary_log.s: binary_log.cpp.s +.PHONY : binary_log.s + +# target to generate assembly for a file +binary_log.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binary_log.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binary_log.cpp.s +.PHONY : binary_log.cpp.s + +binlog_driver.o: binlog_driver.cpp.o +.PHONY : binlog_driver.o + +# target to build an object file +binlog_driver.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_driver.cpp.o +.PHONY : binlog_driver.cpp.o + +binlog_driver.i: binlog_driver.cpp.i +.PHONY : binlog_driver.i + +# target to preprocess a source file +binlog_driver.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_driver.cpp.i +.PHONY : binlog_driver.cpp.i + +binlog_driver.s: binlog_driver.cpp.s +.PHONY : binlog_driver.s + +# target to generate assembly for a file +binlog_driver.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_driver.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_driver.cpp.s +.PHONY : binlog_driver.cpp.s + +binlog_event.o: binlog_event.cpp.o +.PHONY : binlog_event.o + +# target to build an object file +binlog_event.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_event.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_event.cpp.o +.PHONY : binlog_event.cpp.o + +binlog_event.i: binlog_event.cpp.i +.PHONY : binlog_event.i + +# target to preprocess a source file +binlog_event.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_event.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_event.cpp.i +.PHONY : binlog_event.cpp.i + +binlog_event.s: binlog_event.cpp.s +.PHONY : binlog_event.s + +# target to generate assembly for a file +binlog_event.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/binlog_event.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/binlog_event.cpp.s +.PHONY : binlog_event.cpp.s + +field_iterator.o: field_iterator.cpp.o +.PHONY : field_iterator.o + +# target to build an object file +field_iterator.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/field_iterator.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/field_iterator.cpp.o +.PHONY : field_iterator.cpp.o + +field_iterator.i: field_iterator.cpp.i +.PHONY : field_iterator.i + +# target to preprocess a source file +field_iterator.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/field_iterator.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/field_iterator.cpp.i +.PHONY : field_iterator.cpp.i + +field_iterator.s: field_iterator.cpp.s +.PHONY : field_iterator.s + +# target to generate assembly for a file +field_iterator.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/field_iterator.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/field_iterator.cpp.s +.PHONY : field_iterator.cpp.s + +file_driver.o: file_driver.cpp.o +.PHONY : file_driver.o + +# target to build an object file +file_driver.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/file_driver.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/file_driver.cpp.o +.PHONY : file_driver.cpp.o + +file_driver.i: file_driver.cpp.i +.PHONY : file_driver.i + +# target to preprocess a source file +file_driver.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/file_driver.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/file_driver.cpp.i +.PHONY : file_driver.cpp.i + +file_driver.s: file_driver.cpp.s +.PHONY : file_driver.s + +# target to generate assembly for a file +file_driver.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/file_driver.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/file_driver.cpp.s +.PHONY : file_driver.cpp.s + +gtid.o: gtid.cpp.o +.PHONY : gtid.o + +# target to build an object file +gtid.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/gtid.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/gtid.cpp.o +.PHONY : gtid.cpp.o + +gtid.i: gtid.cpp.i +.PHONY : gtid.i + +# target to preprocess a source file +gtid.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/gtid.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/gtid.cpp.i +.PHONY : gtid.cpp.i + +gtid.s: gtid.cpp.s +.PHONY : gtid.s + +# target to generate assembly for a file +gtid.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/gtid.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/gtid.cpp.s +.PHONY : gtid.cpp.s + +protocol.o: protocol.cpp.o +.PHONY : protocol.o + +# target to build an object file +protocol.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/protocol.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/protocol.cpp.o +.PHONY : protocol.cpp.o + +protocol.i: protocol.cpp.i +.PHONY : protocol.i + +# target to preprocess a source file +protocol.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/protocol.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/protocol.cpp.i +.PHONY : protocol.cpp.i + +protocol.s: protocol.cpp.s +.PHONY : protocol.s + +# target to generate assembly for a file +protocol.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/protocol.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/protocol.cpp.s +.PHONY : protocol.cpp.s + +resultset_iterator.o: resultset_iterator.cpp.o +.PHONY : resultset_iterator.o + +# target to build an object file +resultset_iterator.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.o +.PHONY : resultset_iterator.cpp.o + +resultset_iterator.i: resultset_iterator.cpp.i +.PHONY : resultset_iterator.i + +# target to preprocess a source file +resultset_iterator.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.i +.PHONY : resultset_iterator.cpp.i + +resultset_iterator.s: resultset_iterator.cpp.s +.PHONY : resultset_iterator.s + +# target to generate assembly for a file +resultset_iterator.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/resultset_iterator.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/resultset_iterator.cpp.s +.PHONY : resultset_iterator.cpp.s + +row_of_fields.o: row_of_fields.cpp.o +.PHONY : row_of_fields.o + +# target to build an object file +row_of_fields.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/row_of_fields.cpp.o +.PHONY : row_of_fields.cpp.o + +row_of_fields.i: row_of_fields.cpp.i +.PHONY : row_of_fields.i + +# target to preprocess a source file +row_of_fields.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/row_of_fields.cpp.i +.PHONY : row_of_fields.cpp.i + +row_of_fields.s: row_of_fields.cpp.s +.PHONY : row_of_fields.s + +# target to generate assembly for a file +row_of_fields.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/row_of_fields.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/row_of_fields.cpp.s +.PHONY : row_of_fields.cpp.s + +tcp_driver.o: tcp_driver.cpp.o +.PHONY : tcp_driver.o + +# target to build an object file +tcp_driver.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/tcp_driver.cpp.o +.PHONY : tcp_driver.cpp.o + +tcp_driver.i: tcp_driver.cpp.i +.PHONY : tcp_driver.i + +# target to preprocess a source file +tcp_driver.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/tcp_driver.cpp.i +.PHONY : tcp_driver.cpp.i + +tcp_driver.s: tcp_driver.cpp.s +.PHONY : tcp_driver.s + +# target to generate assembly for a file +tcp_driver.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/tcp_driver.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/tcp_driver.cpp.s +.PHONY : tcp_driver.cpp.s + +utilities.o: utilities.cpp.o +.PHONY : utilities.o + +# target to build an object file +utilities.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/utilities.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/utilities.cpp.o +.PHONY : utilities.cpp.o + +utilities.i: utilities.cpp.i +.PHONY : utilities.i + +# target to preprocess a source file +utilities.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/utilities.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/utilities.cpp.i +.PHONY : utilities.cpp.i + +utilities.s: utilities.cpp.s +.PHONY : utilities.s + +# target to generate assembly for a file +utilities.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/utilities.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/utilities.cpp.s +.PHONY : utilities.cpp.s + +value.o: value.cpp.o +.PHONY : value.o + +# target to build an object file +value.cpp.o: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/value.cpp.o + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/value.cpp.o +.PHONY : value.cpp.o + +value.i: value.cpp.i +.PHONY : value.i + +# target to preprocess a source file +value.cpp.i: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/value.cpp.i + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/value.cpp.i +.PHONY : value.cpp.i + +value.s: value.cpp.s +.PHONY : value.s + +# target to generate assembly for a file +value.cpp.s: + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_shared.dir/build.make src/CMakeFiles/replication_shared.dir/value.cpp.s + cd /home/jan/skysql/skygateway/replication_listener && $(MAKE) -f src/CMakeFiles/replication_static.dir/build.make src/CMakeFiles/replication_static.dir/value.cpp.s +.PHONY : value.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... install" + @echo "... install/local" + @echo "... install/strip" + @echo "... list_install_components" + @echo "... package" + @echo "... package_source" + @echo "... rebuild_cache" + @echo "... replication_shared" + @echo "... replication_static" + @echo "... access_method_factory.o" + @echo "... access_method_factory.i" + @echo "... access_method_factory.s" + @echo "... basic_content_handler.o" + @echo "... basic_content_handler.i" + @echo "... basic_content_handler.s" + @echo "... basic_transaction_parser.o" + @echo "... basic_transaction_parser.i" + @echo "... basic_transaction_parser.s" + @echo "... binary_log.o" + @echo "... binary_log.i" + @echo "... binary_log.s" + @echo "... binlog_driver.o" + @echo "... binlog_driver.i" + @echo "... binlog_driver.s" + @echo "... binlog_event.o" + @echo "... binlog_event.i" + @echo "... binlog_event.s" + @echo "... field_iterator.o" + @echo "... field_iterator.i" + @echo "... field_iterator.s" + @echo "... file_driver.o" + @echo "... file_driver.i" + @echo "... file_driver.s" + @echo "... gtid.o" + @echo "... gtid.i" + @echo "... gtid.s" + @echo "... protocol.o" + @echo "... protocol.i" + @echo "... protocol.s" + @echo "... resultset_iterator.o" + @echo "... resultset_iterator.i" + @echo "... resultset_iterator.s" + @echo "... row_of_fields.o" + @echo "... row_of_fields.i" + @echo "... row_of_fields.s" + @echo "... tcp_driver.o" + @echo "... tcp_driver.i" + @echo "... tcp_driver.s" + @echo "... utilities.o" + @echo "... utilities.i" + @echo "... utilities.s" + @echo "... value.o" + @echo "... value.i" + @echo "... value.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + cd /home/jan/skysql/skygateway/replication_listener && $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/replication_listener/src/access_method_factory.cpp b/replication_listener/src/access_method_factory.cpp new file mode 100644 index 000000000..a3eeb3b36 --- /dev/null +++ b/replication_listener/src/access_method_factory.cpp @@ -0,0 +1,129 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include "access_method_factory.h" +#include "tcp_driver.h" +#include "file_driver.h" + +using mysql::system::Binary_log_driver; +using mysql::system::Binlog_tcp_driver; +using mysql::system::Binlog_file_driver; + +/** + Parse the body of a MySQL URI. + + The format is user[:password]@host[:port] +*/ +static Binary_log_driver *parse_mysql_url(const char *body, size_t len) +{ + /* Find the beginning of the user name */ + if (strncmp(body, "//", 2) != 0) + return 0; + + /* Find the user name, which is mandatory */ + const char *user = body + 2; + const char *user_end= strpbrk(user, ":@"); + if (user_end == 0 || user_end == user) + return 0; + assert(user_end - user >= 1); // There has to be a username + + /* Find the password, which can be empty */ + assert(*user_end == ':' || *user_end == '@'); + const char *const pass = user_end + 1; // Skip the ':' (or '@') + const char *pass_end = pass; + if (*user_end == ':') + { + pass_end = strchr(pass, '@'); + if (pass_end == 0) + return 0; // There should be a password, but '@' was not found + } + assert(pass_end - pass >= 0); // Password can be empty + + /* Find the host name, which is mandatory */ + // Skip the '@', if there is one + const char *host = *pass_end == '@' ? pass_end + 1 : pass_end; + const char *host_end = strchr(host, ':'); + if (host == host_end) + return 0; // No hostname was found + /* If no ':' was found there is no port, so the host end at the end + * of the string */ + if (host_end == 0) + host_end = body + len; + assert(host_end - host >= 1); // There has to be a host + + /* Find the port number */ + unsigned long portno = 3306; + if (*host_end == ':') + portno = strtoul(host_end + 1, NULL, 10); + + /* Host name is now the string [host, port-1) if port != NULL and [host, EOS) otherwise. */ + /* Port number is stored in portno, either the default, or a parsed one */ + return new Binlog_tcp_driver(std::string(user, user_end - user), + std::string(pass, pass_end - pass), + std::string(host, host_end - host), + portno); +} + + +static Binary_log_driver *parse_file_url(const char *body, size_t length) +{ + /* Find the beginning of the file name */ + if (strncmp(body, "//", 2) != 0) + return 0; + + /* + Since we don't support host information yet, there should be a + slash after the initial "//". + */ + if (body[2] != '/') + return 0; + + return new Binlog_file_driver(body + 2); +} + +/** + URI parser information. + */ +struct Parser { + const char* protocol; + Binary_log_driver *(*parser)(const char *body, size_t length); +}; + +/** + Array of schema names and matching parsers. +*/ +static Parser url_parser[] = { + { "mysql", parse_mysql_url }, + { "file", parse_file_url }, +}; + +Binary_log_driver * +mysql::system::create_transport(const char *url) +{ + const char *pfx = strchr(url, ':'); + if (pfx == 0) + return NULL; + for (int i = 0 ; i < sizeof(url_parser)/sizeof(*url_parser) ; ++i) + { + const char *proto = url_parser[i].protocol; + if (strncmp(proto, url, strlen(proto)) == 0) + return (*url_parser[i].parser)(pfx+1, strlen(pfx+1)); + } + return NULL; +} diff --git a/replication_listener/src/basic_content_handler.cpp b/replication_listener/src/basic_content_handler.cpp new file mode 100644 index 000000000..2418d046c --- /dev/null +++ b/replication_listener/src/basic_content_handler.cpp @@ -0,0 +1,108 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include "basic_content_handler.h" +#include + +namespace mysql { + +Content_handler::Content_handler () {} +Content_handler::~Content_handler () {} +mysql::Binary_log_event *Content_handler::process_event(mysql::Query_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Row_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Table_map_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Xid *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::User_var_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Incident_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Rotate_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Int_var_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Binary_log_event *ev) { return ev; } +mysql::Binary_log_event *Content_handler::process_event(mysql::Gtid_event *ev) {return ev; } + +Injection_queue *Content_handler::get_injection_queue(void) +{ + return m_reinject_queue; +} + +void Content_handler::set_injection_queue(Injection_queue *queue) +{ + m_reinject_queue= queue; +} + +mysql::Binary_log_event* + Content_handler::internal_process_event(mysql::Binary_log_event *ev) +{ + mysql::Binary_log_event *processed_event= 0; + switch(ev->header ()->type_code) { + case mysql::QUERY_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::GTID_EVENT_MARIADB: + case mysql::GTID_EVENT_MYSQL: + fprintf(stderr, " GTID ....\n"); + processed_event= process_event(ev); + break; + case mysql::WRITE_ROWS_EVENT: + case mysql::UPDATE_ROWS_EVENT: + case mysql::DELETE_ROWS_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::USER_VAR_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::ROTATE_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::INCIDENT_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::XID_EVENT: + processed_event= process_event(static_cast(ev)); + break; + case mysql::TABLE_MAP_EVENT: + processed_event= process_event(static_cast(ev)); + break; + /* TODO ********************************************************************/ + case mysql::FORMAT_DESCRIPTION_EVENT: + processed_event= process_event(ev); + break; + case mysql::BEGIN_LOAD_QUERY_EVENT: + processed_event= process_event(ev); + break; + case mysql::EXECUTE_LOAD_QUERY_EVENT: + processed_event= process_event(ev); + break; + case mysql::INTVAR_EVENT: + processed_event= process_event(ev); + break; + case mysql::STOP_EVENT: + processed_event= process_event(ev); + break; + case mysql::RAND_EVENT: + processed_event= process_event(ev); + break; + /****************************************************************************/ + default: + processed_event= process_event(ev); + break; + } + return processed_event; +} + +} // end namespace diff --git a/replication_listener/src/basic_transaction_parser.cpp b/replication_listener/src/basic_transaction_parser.cpp new file mode 100644 index 000000000..863bdc8ec --- /dev/null +++ b/replication_listener/src/basic_transaction_parser.cpp @@ -0,0 +1,172 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "binlog_event.h" +#include "basic_transaction_parser.h" +#include "protocol.h" +#include "value.h" +#include +#include +#include +#include "field_iterator.h" + +namespace mysql { + +mysql::Binary_log_event *Basic_transaction_parser::process_event(mysql::Gtid_event *qev) +{ + m_transaction_state= STARTING; + + return process_transaction_state(qev); +} + + +mysql::Binary_log_event *Basic_transaction_parser::process_event(mysql::Query_event *qev) +{ + if (qev->query == "BEGIN") + { + //std::cout << "Transaction has started!" << std::endl; + m_transaction_state= STARTING; + } + else if (qev->query == "COMMIT") + { + m_transaction_state= COMMITTING; + } + + return process_transaction_state(qev); +} + +mysql::Binary_log_event *Basic_transaction_parser::process_event(mysql::Xid *ev) +{ + m_transaction_state= COMMITTING; + return process_transaction_state(ev); +} + +mysql::Binary_log_event *Basic_transaction_parser::process_event(mysql::Table_map_event *ev) +{ + if(m_transaction_state ==IN_PROGRESS) + { + m_event_stack.push_back(ev); + return 0; + } + return ev; +} + +mysql::Binary_log_event *Basic_transaction_parser::process_event(mysql::Row_event *ev) +{ + if(m_transaction_state ==IN_PROGRESS) + { + m_event_stack.push_back(ev); + return 0; + } + return ev; +} + +mysql::Binary_log_event *Basic_transaction_parser::process_transaction_state(mysql::Binary_log_event *incomming_event) +{ + switch(m_transaction_state) + { + case STARTING: + { + m_transaction_state= IN_PROGRESS; + m_start_time= incomming_event->header()->timestamp; + delete incomming_event; // drop the begin event + return 0; + } + case COMMITTING: + { + delete incomming_event; // drop the commit event + + /** + * Propagate the start time for the transaction to the newly created + * event. + */ + mysql::Transaction_log_event *trans= mysql::create_transaction_log_event(); + trans->header()->timestamp= m_start_time; + + //std::cout << "There are " << m_event_stack.size() << " events in the transaction: "; + while( m_event_stack.size() > 0) + { + mysql::Binary_log_event *event= m_event_stack.front(); + m_event_stack.pop_front(); + switch(event->get_event_type()) + { + case mysql::TABLE_MAP_EVENT: + { + /* + Index the table name with a table id to ease lookup later. + */ + mysql::Table_map_event *tm= static_cast(event); + //std::cout << "Indexing table " << tm->table_id << " " << tm->table_name << std::endl; + //std::cout.flush (); + trans->m_table_map.insert(mysql::Event_index_element(tm->table_id,tm)); + trans->m_events.push_back(event); + } + break; + case mysql::WRITE_ROWS_EVENT: + case mysql::DELETE_ROWS_EVENT: + case mysql::UPDATE_ROWS_EVENT: + { + trans->m_events.push_back(event); + /* + * Propagate last known next position + */ + trans->header()->next_position= event->header()->next_position; + } + break; + default: + delete event; + } + } // end while + m_transaction_state= NOT_IN_PROGRESS; + return(trans); + } + case NOT_IN_PROGRESS: + default: + return incomming_event; + } + +} + +Transaction_log_event *create_transaction_log_event(void) +{ + Transaction_log_event *trans= new Transaction_log_event(); + trans->header()->type_code= USER_DEFINED; + return trans; +}; + +Transaction_log_event::~Transaction_log_event() +{ + Int_to_Event_map::iterator it; + for(it = m_table_map.begin(); it != m_table_map.end();) + { + /* No need to delete the event here; it happens in the next iteration */ + m_table_map.erase(it++); + } + + while (m_events.size() > 0) + { + Binary_log_event *event= m_events.back(); + m_events.pop_back(); + delete(event); + } + +} + +} // end namespace diff --git a/replication_listener/src/binary_log.cpp b/replication_listener/src/binary_log.cpp new file mode 100644 index 000000000..382e60a29 --- /dev/null +++ b/replication_listener/src/binary_log.cpp @@ -0,0 +1,164 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include + +#include "binlog_api.h" +#include + +using namespace mysql; +using namespace mysql::system; +namespace mysql +{ + +/* +Return server type string. +*/ + +const char *mysql_server_type_str(mysql_server_types server_type) +{ + switch(server_type) { + case MYSQL_SERVER_TYPE_MARIADB: return "MariaDB"; + case MYSQL_SERVER_TYPE_MYSQL: return "MySQL"; + default: return "Unknown"; + } +} + + Binary_log::Binary_log(Binary_log_driver *drv) : m_binlog_position(4), m_binlog_file(""), m_uri("") +{ + if (drv == NULL) + { + m_driver= &m_dummy_driver; + } + else + m_driver= drv; +} + +Binary_log::Binary_log(Binary_log_driver *drv, std::string uri) : m_binlog_position(4), m_binlog_file(""), m_uri(uri) +{ + if (drv == NULL) + { + m_driver= &m_dummy_driver; + } + else + m_driver= drv; +} + +Content_handler_pipeline *Binary_log::content_handler_pipeline(void) +{ + return &m_content_handlers; +} + +int Binary_log::wait_for_next_event(mysql::Binary_log_event **event_ptr) +{ + int rc; + bool handler_code; + mysql::Binary_log_event *event; + + mysql::Injection_queue reinjection_queue; + + do { + handler_code= false; + if (!reinjection_queue.empty()) + { + event= reinjection_queue.front(); + reinjection_queue.pop_front(); + } + else + { + // Return in case of non-ERR_OK. + if(rc= m_driver->wait_for_next_event(&event)) + return rc; + } + m_binlog_position= event->header()->next_position; + mysql::Content_handler *handler; + + BOOST_FOREACH(handler, m_content_handlers) + { + if (event) + { + handler->set_injection_queue(&reinjection_queue); + event= handler->internal_process_event(event); + } + } + } while(event == 0 || !reinjection_queue.empty()); + + if (event_ptr) + *event_ptr= event; + + return 0; +} + +int Binary_log::set_position(const std::string &filename, unsigned long position) +{ + int status= m_driver->set_position(filename, position); + if (status == ERR_OK) + { + m_binlog_file= filename; + m_binlog_position= position; + } + return status; +} + +int Binary_log::set_position(unsigned long position) +{ + std::string filename; + m_driver->get_position(&filename, NULL); + return this->set_position(filename, position); +} + +int Binary_log::set_position_gtid(const Gtid gtid) +{ + return this->set_position_gtid(gtid); +} + +unsigned long Binary_log::get_position(void) +{ + return m_binlog_position; +} + +unsigned long Binary_log::get_position(std::string &filename) +{ + m_driver->get_position(&m_binlog_file, &m_binlog_position); + filename= m_binlog_file; + return m_binlog_position; +} + +int Binary_log::connect(const Gtid gtid) +{ + return m_driver->connect(gtid); +} + +mysql_server_types Binary_log::get_mysql_server_type() const +{ + return m_driver->get_mysql_server_type(); +} + +const char *Binary_log::get_mysql_server_type_str() const +{ + return mysql_server_type_str(get_mysql_server_type()); +} + +void Binary_log::shutdown() +{ + m_driver->shutdown(); +} + +} diff --git a/replication_listener/src/binlog_driver.cpp b/replication_listener/src/binlog_driver.cpp new file mode 100644 index 000000000..9756dd094 --- /dev/null +++ b/replication_listener/src/binlog_driver.cpp @@ -0,0 +1,80 @@ +/* + Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights + reserved. + + This program is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License + as published by the Free Software Foundation; version 2 of + the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + 02110-1301 USA +*/ + +#include "binlog_driver.h" + +namespace mysql { namespace system { + +/* +Binary_log_event* Binary_log_driver::parse_event(boost::asio::streambuf + &sbuff, Log_event_header + *header) + */ + +Binary_log_event* Binary_log_driver::parse_event(std::istream &is, + Log_event_header *header) +{ + Binary_log_event *parsed_event= 0; + + switch (header->type_code) { + case TABLE_MAP_EVENT: + parsed_event= proto_table_map_event(is, header); + break; + case QUERY_EVENT: + parsed_event= proto_query_event(is, header); + break; + case GTID_EVENT_MARIADB: + case GTID_EVENT_MYSQL: + parsed_event= proto_gtid_event(is, header); + break; + case INCIDENT_EVENT: + parsed_event= proto_incident_event(is, header); + break; + case WRITE_ROWS_EVENT: + case UPDATE_ROWS_EVENT: + case DELETE_ROWS_EVENT: + parsed_event= proto_rows_event(is, header); + break; + case ROTATE_EVENT: + { + Rotate_event *rot= proto_rotate_event(is, header); + m_binlog_file_name= rot->binlog_file; + m_binlog_offset= (unsigned long)rot->binlog_pos; + parsed_event= rot; + } + break; + case INTVAR_EVENT: + parsed_event= proto_intvar_event(is, header); + break; + case USER_VAR_EVENT: + parsed_event= proto_uservar_event(is, header); + break; + default: + { + // Create a dummy driver. + parsed_event= new Binary_log_event(header); + } + } + + return parsed_event; +} + +} +} diff --git a/replication_listener/src/binlog_event.cpp b/replication_listener/src/binlog_event.cpp new file mode 100644 index 000000000..672eebc45 --- /dev/null +++ b/replication_listener/src/binlog_event.cpp @@ -0,0 +1,83 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "binlog_event.h" +#include +namespace mysql +{ + +namespace system { + +const char *get_event_type_str(Log_event_type type) +{ + switch(type) { + case START_EVENT_V3: return "Start_v3"; + case STOP_EVENT: return "Stop"; + case QUERY_EVENT: return "Query"; + case ROTATE_EVENT: return "Rotate"; + case INTVAR_EVENT: return "Intvar"; + case LOAD_EVENT: return "Load"; + case NEW_LOAD_EVENT: return "New_load"; + case SLAVE_EVENT: return "Slave"; + case CREATE_FILE_EVENT: return "Create_file"; + case APPEND_BLOCK_EVENT: return "Append_block"; + case DELETE_FILE_EVENT: return "Delete_file"; + case EXEC_LOAD_EVENT: return "Exec_load"; + case RAND_EVENT: return "RAND"; + case XID_EVENT: return "Xid"; + case USER_VAR_EVENT: return "User var"; + case FORMAT_DESCRIPTION_EVENT: return "Format_desc"; + case TABLE_MAP_EVENT: return "Table_map"; + case PRE_GA_WRITE_ROWS_EVENT: return "Write_rows_event_old"; + case PRE_GA_UPDATE_ROWS_EVENT: return "Update_rows_event_old"; + case PRE_GA_DELETE_ROWS_EVENT: return "Delete_rows_event_old"; + case WRITE_ROWS_EVENT: return "Write_rows"; + case UPDATE_ROWS_EVENT: return "Update_rows"; + case DELETE_ROWS_EVENT: return "Delete_rows"; + case BEGIN_LOAD_QUERY_EVENT: return "Begin_load_query"; + case EXECUTE_LOAD_QUERY_EVENT: return "Execute_load_query"; + case INCIDENT_EVENT: return "Incident"; + case USER_DEFINED: return "User defined"; + case GTID_EVENT_MYSQL: return "GTID MYSQL"; + case GTID_EVENT_MARIADB: return "GTID MARIADB"; + default: return "Unknown"; + } +} + +} // end namespace system + + +Binary_log_event::~Binary_log_event() +{ +} + + +Binary_log_event * create_incident_event(unsigned int type, const char *message, unsigned long pos) +{ + Incident_event *incident= new Incident_event(); + incident->header()->type_code= INCIDENT_EVENT; + incident->header()->next_position= pos; + incident->header()->event_length= LOG_EVENT_HEADER_SIZE + 2 + strlen(message); + incident->type= type; + incident->message.append(message); + return incident; +} + +} // end namespace mysql diff --git a/replication_listener/src/cmake_install.cmake b/replication_listener/src/cmake_install.cmake new file mode 100644 index 000000000..127604132 --- /dev/null +++ b/replication_listener/src/cmake_install.cmake @@ -0,0 +1,72 @@ +# Install script for directory: /home/jan/skysql/skygateway/replication_listener/src + +# Set the install prefix +IF(NOT DEFINED CMAKE_INSTALL_PREFIX) + SET(CMAKE_INSTALL_PREFIX "/usr/local") +ENDIF(NOT DEFINED CMAKE_INSTALL_PREFIX) +STRING(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +IF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + IF(BUILD_TYPE) + STRING(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + ELSE(BUILD_TYPE) + SET(CMAKE_INSTALL_CONFIG_NAME "") + ENDIF(BUILD_TYPE) + MESSAGE(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +ENDIF(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + +# Set the component getting installed. +IF(NOT CMAKE_INSTALL_COMPONENT) + IF(COMPONENT) + MESSAGE(STATUS "Install component: \"${COMPONENT}\"") + SET(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + ELSE(COMPONENT) + SET(CMAKE_INSTALL_COMPONENT) + ENDIF(COMPONENT) +ENDIF(NOT CMAKE_INSTALL_COMPONENT) + +# Install shared libraries without execute permission? +IF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + SET(CMAKE_INSTALL_SO_NO_EXE "1") +ENDIF(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + +IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + FOREACH(file + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so.0.1" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so.1" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so" + ) + IF(EXISTS "${file}" AND + NOT IS_SYMLINK "${file}") + FILE(RPATH_CHECK + FILE "${file}" + RPATH "") + ENDIF() + ENDFOREACH() + FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE SHARED_LIBRARY FILES + "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so.0.1" + "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so.1" + "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.so" + ) + FOREACH(file + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so.0.1" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so.1" + "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/lib/libreplication.so" + ) + IF(EXISTS "${file}" AND + NOT IS_SYMLINK "${file}") + FILE(RPATH_REMOVE + FILE "${file}") + IF(CMAKE_INSTALL_DO_STRIP) + EXECUTE_PROCESS(COMMAND "/usr/bin/strip" "${file}") + ENDIF(CMAKE_INSTALL_DO_STRIP) + ENDIF() + ENDFOREACH() +ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + +IF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + FILE(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY FILES "/home/jan/skysql/skygateway/replication_listener/lib/libreplication.a") +ENDIF(NOT CMAKE_INSTALL_COMPONENT OR "${CMAKE_INSTALL_COMPONENT}" STREQUAL "Unspecified") + diff --git a/replication_listener/src/field_iterator.cpp b/replication_listener/src/field_iterator.cpp new file mode 100644 index 000000000..623dbc83a --- /dev/null +++ b/replication_listener/src/field_iterator.cpp @@ -0,0 +1,103 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include "field_iterator.h" + +//Row_iterator Row_iterator::end() const +//{ return Row_iterator(); } + +namespace mysql +{ + + +bool is_null(unsigned char *bitmap, int index) +{ + unsigned char *byte= bitmap + (index / 8); + unsigned bit= 1 << ((index) & 7); + return ((*byte) & bit) != 0; +} + + +boost::uint32_t extract_metadata(const Table_map_event *map, int col_no) +{ + int offset= 0; + + for (int i=0; i < col_no; ++i) + { + unsigned int type= (unsigned int)map->columns[i]&0xFF; + offset += lookup_metadata_field_size((enum mysql::system::enum_field_types)type); + } + + boost::uint32_t metadata= 0; + unsigned int type= (unsigned int)map->columns[col_no]&0xFF; + switch(lookup_metadata_field_size((enum mysql::system::enum_field_types)type)) + { + case 1: + metadata= map->metadata[offset]; + break; + case 2: + { + unsigned int tmp= ((unsigned int)map->metadata[offset])&0xFF; + metadata= static_cast(tmp); + tmp= (((unsigned int)map->metadata[offset+1])&0xFF) << 8; + metadata+= static_cast(tmp); + } + break; + } + return metadata; +} + +int lookup_metadata_field_size(enum mysql::system::enum_field_types field_type) +{ + switch(field_type) + { + case mysql::system::MYSQL_TYPE_DOUBLE: + case mysql::system::MYSQL_TYPE_FLOAT: + case mysql::system::MYSQL_TYPE_BLOB: + case mysql::system::MYSQL_TYPE_GEOMETRY: + return 1; + case mysql::system::MYSQL_TYPE_BIT: + case mysql::system::MYSQL_TYPE_VARCHAR: + case mysql::system::MYSQL_TYPE_NEWDECIMAL: + case mysql::system::MYSQL_TYPE_STRING: + case mysql::system::MYSQL_TYPE_VAR_STRING: + return 2; + case mysql::system::MYSQL_TYPE_DECIMAL: + case mysql::system::MYSQL_TYPE_SET: + case mysql::system::MYSQL_TYPE_ENUM: + case mysql::system::MYSQL_TYPE_YEAR: + case mysql::system::MYSQL_TYPE_TINY: + case mysql::system::MYSQL_TYPE_SHORT: + case mysql::system::MYSQL_TYPE_INT24: + case mysql::system::MYSQL_TYPE_LONG: + case mysql::system::MYSQL_TYPE_NULL: + case mysql::system::MYSQL_TYPE_NEWDATE: + case mysql::system::MYSQL_TYPE_DATE: + case mysql::system::MYSQL_TYPE_TIME: + case mysql::system::MYSQL_TYPE_TIMESTAMP: + case mysql::system::MYSQL_TYPE_DATETIME: + case mysql::system::MYSQL_TYPE_TINY_BLOB: + case mysql::system::MYSQL_TYPE_MEDIUM_BLOB: + case mysql::system::MYSQL_TYPE_LONG_BLOB: + default: + return 0; + } +} + +} // end namespace mysql diff --git a/replication_listener/src/file_driver.cpp b/replication_listener/src/file_driver.cpp new file mode 100644 index 000000000..425ac43cf --- /dev/null +++ b/replication_listener/src/file_driver.cpp @@ -0,0 +1,177 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "file_driver.h" + +namespace mysql { namespace system { + +using namespace std; + + // TODO: Gtids not used for binlog file driver + int Binlog_file_driver::connect(const Gtid gtid) + { + struct stat stat_buff; + + char magic[]= {0xfe, 0x62, 0x69, 0x6e, 0}; + char magic_buf[MAGIC_NUMBER_SIZE]; + + // Get the file size. + if (stat(m_binlog_file_name.c_str(), &stat_buff) == -1) + return ERR_FAIL; // Can't stat binlog file. + m_binlog_file_size= stat_buff.st_size; + + m_binlog_file.exceptions(ifstream::failbit | ifstream::badbit | + ifstream::eofbit); + + try + { + // Check if the file can be opened for reading. + m_binlog_file.open(m_binlog_file_name.c_str(), ios::in | ios::binary); + + // Check if a valid MySQL binlog file is provided, BINLOG_MAGIC. + m_binlog_file.read(magic_buf, MAGIC_NUMBER_SIZE); + + if(memcmp(magic, magic_buf, MAGIC_NUMBER_SIZE)) + return ERR_FAIL; // Not a valid binlog file. + + // Reset the get pointer. + //m_binlog_file.seekg(0, ios::beg ); + + m_bytes_read= MAGIC_NUMBER_SIZE; + + } catch (...) + { + return ERR_FAIL; + } + return ERR_OK; + } + + + int Binlog_file_driver::disconnect() + { + m_binlog_file.close(); + return ERR_OK; + } + + + int Binlog_file_driver::set_position(const string &str, unsigned long position) + { + m_binlog_file.exceptions(ifstream::failbit | ifstream::badbit | + ifstream::eofbit); + try + { + m_binlog_file.seekg(position, ios::beg ); + } catch(...) + { + return ERR_FAIL; + } + + m_bytes_read= position; + + return ERR_OK; + } + + + int Binlog_file_driver::get_position(string *str, unsigned long *position) + { + m_binlog_file.exceptions(ifstream::failbit | ifstream::badbit | + ifstream::eofbit); + try + { + if(position) + *position= m_binlog_file.tellg(); + } catch(...) + { + return ERR_FAIL; + } + + return ERR_OK; + } + + + int Binlog_file_driver::wait_for_next_event(mysql::Binary_log_event **event) + { + + assert(m_binlog_file.tellg() >= 4 ); + m_binlog_file.exceptions(ifstream::failbit | ifstream::badbit | + ifstream::eofbit); + + try + { + if(m_bytes_read < m_binlog_file_size && m_binlog_file.good()) + { + //Protocol_chunk prot_marker(m_event_log_header.marker); + Protocol_chunk prot_timestamp(m_event_log_header.timestamp); + Protocol_chunk prot_type_code(m_event_log_header.type_code); + Protocol_chunk prot_server_id(m_event_log_header.server_id); + Protocol_chunk + prot_event_length(m_event_log_header.event_length); + Protocol_chunk + prot_next_position(m_event_log_header.next_position); + Protocol_chunk prot_flags(m_event_log_header.flags); + + m_binlog_file >> prot_timestamp + >> prot_type_code + >> prot_server_id + >> prot_event_length + >> prot_next_position + >> prot_flags; + + /* + m_binlog_file.read(reinterpret_cast(&m_event_log_header.timestamp), + sizeof(boost::uint32_t)); + m_binlog_file.read(reinterpret_cast(&m_event_log_header.type_code), + sizeof(boost::uint8_t)); + m_binlog_file.read(reinterpret_cast(&m_event_log_header.server_id), + sizeof(boost::uint32_t)); + m_binlog_file.read(reinterpret_cast(&m_event_log_header.event_length), + sizeof(boost::uint32_t)); + m_binlog_file.read(reinterpret_cast(&m_event_log_header.next_position), + sizeof(boost::uint32_t)); + m_binlog_file.read(reinterpret_cast(&m_event_log_header.flags), + sizeof(boost::uint16_t)); + */ + + *event= parse_event(* static_cast (&m_binlog_file), + &m_event_log_header); + + /* + Correction. Except for the default case (above), this condition should + always fail. + */ + if (m_bytes_read + m_event_log_header.event_length != + m_binlog_file.tellg()) + m_binlog_file.seekg(m_bytes_read + m_event_log_header.event_length, + ios::beg); + + m_bytes_read= m_binlog_file.tellg(); + + if(*event) + return ERR_OK; + } + } catch(...) + { + return ERR_FAIL; + } + return ERR_EOF; + } + +} +} diff --git a/replication_listener/src/gtid.cpp b/replication_listener/src/gtid.cpp new file mode 100644 index 000000000..7ea4c95bb --- /dev/null +++ b/replication_listener/src/gtid.cpp @@ -0,0 +1,60 @@ +/* +Copyright (C) 2013, SkySQL Ab + + +This file is distributed as part of the SkySQL Gateway. It is free +software: you can redistribute it and/or modify it under the terms of the +GNU General Public License as published by the Free Software Foundation, +version 2. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 51 +Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Author: Jan Lindström jan.lindstrom@skysql.com + +*/ + +#include +#include +#include +#include "gtid.h" +#include "listener_exception.h" + +namespace mysql +{ + + Gtid::Gtid(const boost::uint32_t domain_id, + const boost::uint32_t server_id, + const boost::uint64_t sequence_number) + : m_real_gtid(true), + m_domain_id(domain_id), + m_server_id(server_id), + m_sequence_number(sequence_number), + m_mysql_sid(""), + m_server_type(MYSQL_SERVER_TYPE_MARIADB) + { + } + + Gtid::Gtid(const std::string& mysql_sid, + const boost::uint64_t gno) + :m_real_gtid(true), + m_domain_id(0), + m_server_id(0), + m_sequence_number(gno), + m_mysql_sid(mysql_sid), + m_server_type(MYSQL_SERVER_TYPE_MARIADB) + { + } + + std::string Gtid::get_string() const + { + return (to_string(m_domain_id) + std::string("-") + to_string(m_server_id) + std::string("-") + to_string(m_sequence_number)); + } + +} diff --git a/replication_listener/src/protocol.cpp b/replication_listener/src/protocol.cpp new file mode 100644 index 000000000..c0b5db52f --- /dev/null +++ b/replication_listener/src/protocol.cpp @@ -0,0 +1,595 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include +#include +#include + +#include "protocol.h" +#include "listener_exception.h" +#include +using namespace mysql; +using namespace mysql::system; + +namespace mysql { namespace system { + +int proto_read_package_header(tcp::socket *socket, unsigned long *packet_length, unsigned char *packet_no) +{ + unsigned char buf[4]; + + try { + boost::asio::read(*socket, boost::asio::buffer(buf, 4), + boost::asio::transfer_at_least(4)); + } + catch (boost::system::system_error const& e) + { + throw(ListenerException("Read package header error: " + std::string(e.what()), __FILE__, __LINE__)); + } + catch (boost::system::error_code const& e) + { + throw(ListenerException("Read package header error: " + e.message(), __FILE__, __LINE__)); + } + catch (std::exception& e) + { + throw(ListenerException("Read package header error: " + std::string(e.what()), __FILE__, __LINE__)); + } + + *packet_length= (unsigned long)(buf[0] &0xFF); + *packet_length+= (unsigned long)((buf[1] &0xFF)<<8); + *packet_length+= (unsigned long)((buf[2] &0xFF)<<16); + *packet_no= (unsigned char)buf[3]; + + return 0; +} + +int proto_read_package_header(tcp::socket *socket, boost::asio::streambuf &buff, unsigned long *packet_length, unsigned char *packet_no) +{ + std::streamsize inbuff= buff.in_avail(); + if( inbuff < 0) + inbuff= 0; + + if (4 > inbuff) + { + try { + boost::asio::read(*socket, buff, + boost::asio::transfer_at_least(4-inbuff)); + } + catch (boost::system::system_error const& e) + { + throw(ListenerException("Read package header error: " + std::string(e.what()), __FILE__, __LINE__)); + } + catch (boost::system::error_code const& e) + { + throw(ListenerException("Read package header error: " + e.message(), __FILE__, __LINE__)); + } + catch (std::exception& e) + { + throw(ListenerException("Read package header error: " + std::string(e.what()), __FILE__, __LINE__)); + } + } + char ch; + std::istream is(&buff); + is.get(ch); + *packet_length= (unsigned long)ch; + is.get(ch); + *packet_length+= (unsigned long)(ch<<8); + is.get(ch); + *packet_length+= (unsigned long)(ch<<16); + is.get(ch); + *packet_no= (unsigned char)ch; + + + return 0; +} + + +int proto_get_one_package(tcp::socket *socket, boost::asio::streambuf &buff, + boost::uint8_t *packet_no) +{ + unsigned long packet_length; + if (proto_read_package_header(socket, buff, &packet_length, packet_no)) + return 0; + std::streamsize inbuffer= buff.in_avail(); + if (inbuffer < 0) + inbuffer= 0; + if (packet_length > inbuffer) + boost::asio::read(*socket, buff, + boost::asio::transfer_at_least(packet_length-inbuffer)); + + return packet_length; +} + +void prot_parse_error_message(std::istream &is, struct st_error_package &err, + int packet_length) +{ + boost::uint8_t marker; + + Protocol_chunk prot_errno(err.error_code); + Protocol_chunk prot_marker(marker); + Protocol_chunk prot_sql_state(err.sql_state,5); + + is >> prot_errno + >> prot_marker + >> prot_sql_state; + + // TODO is the number of bytes read = is.tellg() ? + + int message_size= packet_length -2 -1 -5; // the remaining part of the package + Protocol_chunk_string prot_message(err.message, message_size); + is >> prot_message; + err.message[message_size]= '\0'; +} + +void prot_parse_ok_message(std::istream &is, struct st_ok_package &ok, int packet_length) +{ + // TODO: Assure that zero length messages can be but on the input stream. + + //Protocol_chunk prot_result_type(result_type); + Protocol_chunk prot_affected_rows(ok.affected_rows); + Protocol_chunk prot_insert_id(ok.insert_id); + Protocol_chunk prot_server_status(ok.server_status); + Protocol_chunk prot_warning_count(ok.warning_count); + + int message_size= packet_length -2 -prot_affected_rows.size() + -prot_insert_id.size() -prot_server_status.size() + -prot_warning_count.size(); + + prot_affected_rows.set_length_encoded_binary(true); + prot_insert_id.set_length_encoded_binary(true); + + is >> prot_affected_rows + >> prot_insert_id + >> prot_server_status + >> prot_warning_count; + + if (message_size > 0) + { + Protocol_chunk_string prot_message(ok.message, message_size); + is >> prot_message; + ok.message[message_size]= '\0'; + } +} + +void prot_parse_eof_message(std::istream &is, struct st_eof_package &eof) +{ + Protocol_chunk proto_warning_count(eof.warning_count); + Protocol_chunk proto_status_flags(eof.status_flags); + + is >> proto_warning_count + >> proto_status_flags; +} + +void proto_get_handshake_package(std::istream &is, + struct st_handshake_package &p, + int packet_length) +{ + boost::uint8_t filler; + boost::uint8_t filler2[13]; + + Protocol_chunk proto_protocol_version(p.protocol_version); + Protocol_chunk proto_thread_id(p.thread_id); + Protocol_chunk proto_scramble_buffer(p.scramble_buff, 8); + Protocol_chunk proto_filler(filler); + Protocol_chunk proto_server_capabilities(p.server_capabilities); + Protocol_chunk proto_server_language(p.server_language); + Protocol_chunk proto_server_status(p.server_status); + Protocol_chunk proto_filler2(filler2,13); + Protocol_chunk proto_scramble_buffer2(p.scramble_buff2, 13); + + is >> proto_protocol_version + >> p.server_version_str + >> proto_thread_id + >> proto_scramble_buffer + >> proto_filler + >> proto_server_capabilities + >> proto_server_language + >> proto_server_status + >> proto_filler2 + >> proto_scramble_buffer2; + + //assert(filler == 0); + + int remaining_bytes= packet_length - 9+13+13+8; + boost::uint8_t extention_buffer[remaining_bytes]; + if (remaining_bytes > 0) + { + Protocol_chunk proto_extension(extention_buffer, remaining_bytes); + is >> proto_extension; + } + + //std::copy(&extention_buffer[0],&extention_buffer[remaining_bytes],std::ostream_iterator(std::cout,",")); +} + +void write_packet_header(char *buff, boost::uint16_t size, boost::uint8_t packet_no) +{ + int3store(buff, size); + buff[3]= (char)packet_no; +} + + +buffer_source &operator>>(buffer_source &src, Protocol &chunk) +{ + char ch; + int ct= 0; + char *ptr= (char*)chunk.data(); + + while(ct < chunk.size() && src.m_ptr < src.m_size) + { + ptr[ct]= src.m_src[src.m_ptr]; + ++ct; + ++src.m_ptr; + } + return src; +} + +std::istream &operator>>(std::istream &is, Protocol &chunk) +{ + if (chunk.is_length_encoded_binary()) + { + int ct= 0; + is.read((char *)chunk.data(),1); + unsigned char byte= *(unsigned char *)chunk.data(); + if (byte < 250) + { + chunk.collapse_size(1); + return is; + } + else if (byte == 251) + { + // is this a row data packet? if so, then this column value is NULL + chunk.collapse_size(1); + ct= 1; + } + else if (byte == 252) + { + chunk.collapse_size(2); + ct= 1; + } + else if(byte == 253) + { + chunk.collapse_size(3); + ct= 1; + } + + /* Read remaining bytes */ + //is.read((char *)chunk.data(), chunk.size()-1); + char ch; + char *ptr= (char*)chunk.data(); + while(ct < chunk.size()) + { + is.get(ch); + ptr[ct]= ch; + ++ct; + } + } + else + { + char ch; + int ct= 0; + char *ptr= (char*)chunk.data(); + int sz= chunk.size(); + while(ct < sz) + { + is.get(ch); + ptr[ct]= ch; + ++ct; + } + } + + return is; +} + +std::istream &operator>>(std::istream &is, std::string &str) +{ + std::ostringstream out; + char ch; + int ct= 0; + do + { + is.get(ch); + out.put(ch); + ++ct; + } while (is.good() && ch != '\0'); + str.append(out.str()); + return is; +} + +std::istream &operator>>(std::istream &is, Protocol_chunk_string &str) +{ + char ch; + int ct= 0; + int sz= str.m_str->size(); + for (ct=0; ct< sz && is.good(); ct++) + { + is.get(ch); + str.m_str->at(ct)= ch; + } + + return is; +} + +std::istream &operator>>(std::istream &is, Protocol_chunk_string_len &lenstr) +{ + boost::uint8_t len; + std::string *str= lenstr.m_storage; + Protocol_chunk proto_str_len(len); + is >> proto_str_len; + Protocol_chunk_string proto_str(*str, len); + is >> proto_str; + return is; +} + +std::ostream &operator<<(std::ostream &os, Protocol &chunk) +{ + if (!os.bad()) + os.write((const char *) chunk.data(),chunk.size()); + return os; +} + +Query_event *proto_query_event(std::istream &is, Log_event_header *header) +{ + boost::uint8_t db_name_len; + boost::uint16_t var_size; + // Length of query stored in the payload. + boost::uint32_t query_len; + Query_event *qev=new Query_event(header); + + Protocol_chunk proto_query_event_thread_id(qev->thread_id); + Protocol_chunk proto_query_event_exec_time(qev->exec_time); + Protocol_chunk proto_query_event_db_name_len(db_name_len); + Protocol_chunk proto_query_event_error_code(qev->error_code); + Protocol_chunk proto_query_event_var_size(var_size); + + is >> proto_query_event_thread_id + >> proto_query_event_exec_time + >> proto_query_event_db_name_len + >> proto_query_event_error_code + >> proto_query_event_var_size; + + //TODO : Implement it in a better way. + + /* + Query length = + Total event length (header->event_length) - + ( + (LOG_EVENT_HEADER_SIZE - 1) + //Shouldn't LOG_EVENT_HEADER_SIZE=19? + Thread-id (pre-defined, 4) + + Execution time (pre-defined, 4) + + Placeholder to store database length (pre-defined, 1) + + Error code (pre-defined, 2) + + Placeholder to store length taken by status variable blk (pre-defined, 2) + + Status variable block length (calculated, var_size) + + Database name length (calculated, db_name_len) + + Null terninator (pre-defined, 1) + + ) + + which gives : + */ + + query_len= header->event_length - (LOG_EVENT_HEADER_SIZE + 13 + var_size + + db_name_len); + + qev->variables.reserve(var_size); + Protocol_chunk_vector proto_payload(qev->variables, var_size); + is >> proto_payload; + + Protocol_chunk_string proto_query_event_db_name(qev->db_name, + (unsigned long)db_name_len); + + Protocol_chunk_string proto_query_event_query_str + (qev->query, (unsigned long)query_len); + + char zero_marker; // should always be 0; + is >> proto_query_event_db_name + >> zero_marker + >> proto_query_event_query_str; + // Following is not really required now, + //qev->query.resize(qev->query.size() - 1); // Last character is a '\0' character. + + return qev; +} + +Gtid_event *proto_gtid_event(std::istream &is, Log_event_header *header) +{ + Gtid_event *gev=new Gtid_event(header); + + Protocol_chunk proto_gtid_event_domain_id(gev->domain_id); + gev->server_id = header->server_id; + Protocol_chunk proto_gtid_event_sequence_number(gev->sequence_number); + + is >> proto_gtid_event_sequence_number + >> proto_gtid_event_domain_id; + + return gev; +} + +Rotate_event *proto_rotate_event(std::istream &is, Log_event_header *header) +{ + Rotate_event *rev= new Rotate_event(header); + + boost::uint32_t file_name_length= header->event_length - 7 - LOG_EVENT_HEADER_SIZE; + + Protocol_chunk prot_position(rev->binlog_pos); + Protocol_chunk_string prot_file_name(rev->binlog_file, file_name_length); + is >> prot_position + >> prot_file_name; + + return rev; +} + +Incident_event *proto_incident_event(std::istream &is, Log_event_header *header) +{ + Incident_event *incident= new Incident_event(header); + Protocol_chunk proto_incident_code(incident->type); + Protocol_chunk_string_len proto_incident_message(incident->message); + + is >> proto_incident_code + >> proto_incident_message; + + return incident; +} + +Row_event *proto_rows_event(std::istream &is, Log_event_header *header) +{ + Row_event *rev=new Row_event(header); + + union + { + boost::uint64_t integer; + boost::uint8_t bytes[6]; + } table_id; + + table_id.integer=0L; + Protocol_chunk proto_table_id(&table_id.bytes[0], 6); + Protocol_chunk proto_flags(rev->flags); + Protocol_chunk proto_column_len(rev->columns_len); + proto_column_len.set_length_encoded_binary(true); + + is >> proto_table_id + >> proto_flags + >> proto_column_len; + + rev->table_id=table_id.integer; + int used_column_len=(int) ((rev->columns_len + 7) / 8); + Protocol_chunk_vector proto_used_columns(rev->used_columns, used_column_len); + rev->null_bits_len= used_column_len; + + is >> proto_used_columns; + + if (header->type_code == UPDATE_ROWS_EVENT) + { + Protocol_chunk_vector proto_columns_before_image(rev->columns_before_image, used_column_len); + is >> proto_columns_before_image; + } + + int bytes_read=proto_table_id.size() + proto_flags.size() + proto_column_len.size() + used_column_len; + if (header->type_code == UPDATE_ROWS_EVENT) + bytes_read+=used_column_len; + + unsigned long row_len= header->event_length - bytes_read - LOG_EVENT_HEADER_SIZE + 1; + //std::cout << "Bytes read: " << bytes_read << " Bytes expected: " << rev->row_len << std::endl; + Protocol_chunk_vector proto_row(rev->row, row_len); + is >> proto_row; + + return rev; +} + +Int_var_event *proto_intvar_event(std::istream &is, Log_event_header *header) +{ + Int_var_event *event= new Int_var_event(header); + + Protocol_chunk proto_type(event->type); + Protocol_chunk proto_value(event->value); + is >> proto_type + >> proto_value; + + return event; +} + +User_var_event *proto_uservar_event(std::istream &is, Log_event_header *header) +{ + User_var_event *event= new User_var_event(header); + + boost::uint32_t name_len; + Protocol_chunk proto_name_len(name_len); + + is >> proto_name_len; + + Protocol_chunk_string proto_name(event->name, name_len); + Protocol_chunk proto_null(event->is_null); + + is >> proto_name >> proto_null; + if (event->is_null) + { + event->type = User_var_event::STRING_TYPE; + event->charset = 63; // Binary charset + } + else + { + boost::uint32_t value_len; + Protocol_chunk proto_type(event->type); + Protocol_chunk proto_charset(event->charset); + Protocol_chunk proto_val_len(value_len); + is >> proto_type >> proto_charset >> proto_val_len; + Protocol_chunk_string proto_value(event->value, value_len); + is >> proto_value; + } + + return event; +} + +Table_map_event *proto_table_map_event(std::istream &is, Log_event_header *header) +{ + Table_map_event *tmev=new Table_map_event(header); + boost::uint64_t columns_len= 0; + boost::uint64_t metadata_len= 0; + union + { + boost::uint64_t integer; + boost::uint8_t bytes[6]; + } table_id; + char zero_marker= 0; + + table_id.integer=0L; + Protocol_chunk proto_table_id(&table_id.bytes[0], 6); + Protocol_chunk proto_flags(tmev->flags); + Protocol_chunk_string_len proto_db_name(tmev->db_name); + Protocol_chunk proto_marker(zero_marker); // Should be '\0' + Protocol_chunk_string_len proto_table_name(tmev->table_name); + Protocol_chunk proto_columns_len(columns_len); + proto_columns_len.set_length_encoded_binary(true); + + is >> proto_table_id + >> proto_flags + >> proto_db_name + >> proto_marker + >> proto_table_name + >> proto_marker + >> proto_columns_len; + tmev->table_id=table_id.integer; + Protocol_chunk_vector proto_columns(tmev->columns, columns_len); + Protocol_chunk proto_metadata_len(metadata_len); + proto_metadata_len.set_length_encoded_binary(true); + + is >> proto_columns + >> proto_metadata_len; + Protocol_chunk_vector proto_metadata(tmev->metadata, (unsigned long)metadata_len); + is >> proto_metadata; + unsigned long null_bits_len=(int) ((tmev->columns.size() + 7) / 8); + + Protocol_chunk_vector proto_null_bits(tmev->null_bits, null_bits_len); + + is >> proto_null_bits; + return tmev; +} + +std::istream &operator>>(std::istream &is, Protocol_chunk_vector &chunk) +{ + unsigned long size= chunk.m_size; + for(int i=0; i< size; i++) + { + char ch; + is.get(ch); + chunk.m_vec->push_back(ch); + } + return is; +} + + +} } // end namespace mysql::system diff --git a/replication_listener/src/resultset_iterator.cpp b/replication_listener/src/resultset_iterator.cpp new file mode 100644 index 000000000..be5dc8251 --- /dev/null +++ b/replication_listener/src/resultset_iterator.cpp @@ -0,0 +1,180 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "resultset_iterator.h" +#include "protocol.h" +#include "row_of_fields.h" + +using namespace mysql; + +namespace mysql { + +Result_set::iterator Result_set::begin() { return iterator(this); } +Result_set::iterator Result_set::end() { return iterator(); } +Result_set::const_iterator Result_set::begin() const { return const_iterator(const_cast(this)); } +Result_set::const_iterator Result_set::end() const { return const_iterator(); } + +void Result_set::digest_row_set() +{ + unsigned long packet_length; + unsigned char packet_no= 1; + m_current_state= RESULT_HEADER; + boost::asio::streambuf resultbuff; + std::istream response_stream(&resultbuff); + unsigned field_count= 0; + try { + do + { + /* + * Get server response + */ + packet_length= system::proto_get_one_package(m_socket, resultbuff, &packet_no); + + switch(m_current_state) + { + case RESULT_HEADER: + system::digest_result_header(response_stream, m_field_count, m_extra); + m_row_count= 0; + m_current_state= FIELD_PACKETS; + break; + case FIELD_PACKETS: + { + Field_packet field; + system::digest_field_packet(response_stream, field); + m_field_types.assign(field_count,field); + + if (++field_count == m_field_count) + m_current_state= MARKER; + } + break; + case MARKER: + { + char marker; + response_stream >> marker; + //assert(marker == 0xfe); + system::digest_marker(response_stream); + m_current_state= ROW_CONTENTS; + } + break; + case ROW_CONTENTS: + { + bool is_eof= false; + Row_of_fields row(0); + system::digest_row_content(response_stream, m_field_count, row, m_storage, is_eof); + if (is_eof) + m_current_state= EOF_PACKET; + else + { + m_rows.push_back(row); + ++m_row_count; + } + } + break; + default: + continue; + } + } while (m_current_state != EOF_PACKET); + } catch(boost::system::system_error e) + { + // TODO log error + m_field_count= 0; + m_row_count= 0; + } +} + +namespace system { + +void digest_result_header(std::istream &is, boost::uint64_t &field_count, boost::uint64_t extra) +{ + Protocol_chunk proto_field_count(field_count); + //Protocol_chunk proto_extra(extra); + + proto_field_count.set_length_encoded_binary(true); + //proto_extra.set_length_encoded_binary(true); + + is >> proto_field_count; + //>> proto_extra; +} + +void digest_field_packet(std::istream &is, Field_packet &field_packet) +{ + Protocol_chunk_string_len proto_catalog(field_packet.catalog); + Protocol_chunk_string_len proto_db(field_packet.db); + Protocol_chunk_string_len proto_table(field_packet.table); + Protocol_chunk_string_len proto_org_table(field_packet.org_table); + Protocol_chunk_string_len proto_name(field_packet.name); + Protocol_chunk_string_len proto_org_name(field_packet.org_name); + Protocol_chunk proto_marker(field_packet.marker); + Protocol_chunk proto_charsetnr(field_packet.charsetnr); + Protocol_chunk proto_length(field_packet.length); + Protocol_chunk proto_type(field_packet.type); + Protocol_chunk proto_flags(field_packet.flags); + Protocol_chunk proto_decimals(field_packet.decimals); + Protocol_chunk proto_filler(field_packet.filler); + //Protocol_chunk proto_default_value(field_packet.default_value); + + is >> proto_catalog + >> proto_db + >> proto_table + >> proto_org_table + >> proto_name + >> proto_org_name + >> proto_marker + >> proto_charsetnr + >> proto_length + >> proto_type + >> proto_flags + >> proto_decimals + >> proto_filler; +} + +void digest_marker(std::istream &is) +{ + struct st_eof_package eof; + prot_parse_eof_message(is,eof); +} + +void digest_row_content(std::istream &is, int field_count, Row_of_fields &row, String_storage &storage, bool &is_eof) +{ + boost::uint8_t size; + Protocol_chunk proto_size(size); + is >> proto_size; + if (size == 0xfe) + { + /* EOF packet is detected and there are no more rows to be expeced. */ + is_eof= true; + struct st_eof_package eof; + prot_parse_eof_message(is, eof); + return; + } + is.putback((char)size); + for(int field_no=0; field_no < field_count; ++field_no) + { + std::string *storage= new std::string; + + Protocol_chunk_string_len proto_value(*storage); + is >> proto_value; + + Value value(MYSQL_TYPE_VAR_STRING, storage->length(), storage->c_str()); + row.push_back(value); + } +} + +}} // end namespace system, mysql diff --git a/replication_listener/src/row_of_fields.cpp b/replication_listener/src/row_of_fields.cpp new file mode 100644 index 000000000..d716acad9 --- /dev/null +++ b/replication_listener/src/row_of_fields.cpp @@ -0,0 +1,51 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include + +#include "row_of_fields.h" +#include +#include +#include "value.h" + +using namespace mysql; + +Row_of_fields& Row_of_fields::operator=(const Row_of_fields &right) +{ + if (size() != right.size()) + throw std::length_error("Row dimension doesn't match."); + int i= 0; + BOOST_FOREACH(Value value, right) + { + this->assign(++i, value); + } + return *this; +} + +Row_of_fields& Row_of_fields::operator=(Row_of_fields &right) +{ + if (size() != right.size()) + throw std::length_error("Row dimension doesn't match."); + int i= 0; + BOOST_FOREACH(Value value, right) + { + this->assign(++i, value); + } + return *this; +} diff --git a/replication_listener/src/tcp_driver.cpp b/replication_listener/src/tcp_driver.cpp new file mode 100644 index 000000000..37e1f054c --- /dev/null +++ b/replication_listener/src/tcp_driver.cpp @@ -0,0 +1,1149 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include "binlog_api.h" +#include +#include "tcp_driver.h" +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "protocol.h" +#include "binlog_event.h" +#include "rowset.h" +#include "field_iterator.h" +#include "listener_exception.h" +using boost::asio::ip::tcp; +using namespace mysql::system; +using namespace mysql; + +typedef unsigned char uchar; + +namespace mysql { namespace system { + +boost::mutex mysql_mutex; + +static int encrypt_password(boost::uint8_t *reply, /* buffer at least EVP_MAX_MD_SIZE */ + const boost::uint8_t *scramble_buff, + const char *pass); +static int hash_sha1(boost::uint8_t *output, ...); + +/* +In this function we announce for MariaDB server the client capabilities and use +the MARIA_SLAVE_CAPABILITY_GTID = 4. It would be better to use some real include +file, but currently define is located at log_event.h and that file is not part of +the make install rules and we would not find it from MySQL server anyway. + +*/ +bool Binlog_tcp_driver::send_client_capabilites(tcp::socket *socket) +{ + boost::asio::streambuf server_messages; + unsigned long packet_length; + unsigned char packet_no; + + std::ostream command_request_stream(&server_messages); + + /* Form a query event */ + static boost::uint8_t com_query = COM_QUERY; + Protocol_chunk prot_command(com_query); + + command_request_stream << prot_command + << "SET @mariadb_slave_capability=4"; + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + // Send the request. + boost::asio::write(*socket, boost::asio::buffer(command_packet_header, 4), boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, server_messages, boost::asio::transfer_at_least(size)); + + // Get Ok-package + packet_length=proto_get_one_package(socket, server_messages, &packet_no); + + std::istream cmd_response_stream(&server_messages); + + boost::uint8_t result_type; + Protocol_chunk prot_result_type(result_type); + + cmd_response_stream >> prot_result_type; + + if (result_type == 0) + { + struct st_ok_package ok_package; + prot_parse_ok_message(cmd_response_stream, ok_package, packet_length); + } else + { + struct st_error_package error_package; + prot_parse_error_message(cmd_response_stream, error_package, packet_length); + + throw(ListenerException(std::string("Sending client capabilities failed: ") + std::string(error_package.message), __FILE__, __LINE__ )); + } + + return false; +} + +/* +In this function we announce for MariaDB server the client capabilities and use +the MARIA_SLAVE_CAPABILITY_GTID = 4. It would be better to use some real include +file, but currently define is located at log_event.h and that file is not part of +the make install rules and we would not find it from MySQL server anyway. + +*/ +bool Binlog_tcp_driver::send_slave_connect_state(tcp::socket *socket,Gtid gtid) +{ + boost::asio::streambuf server_messages; + unsigned long packet_length; + unsigned char packet_no; + + std::ostream command_request_stream(&server_messages); + + /* Form a query event */ + static boost::uint8_t com_query = COM_QUERY; + Protocol_chunk prot_command(com_query); + + command_request_stream << prot_command + << "SET @slave_connect_state='" << gtid.get_domain_id() + << "-" << gtid.get_server_id() + << "-" << gtid.get_sequence_number() + << "'"; + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + // Send the request. + boost::asio::write(*socket, boost::asio::buffer(command_packet_header, 4), boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, server_messages, boost::asio::transfer_at_least(size)); + + // Get Ok-package + packet_length=proto_get_one_package(socket, server_messages, &packet_no); + + std::istream cmd_response_stream(&server_messages); + + boost::uint8_t result_type; + Protocol_chunk prot_result_type(result_type); + + cmd_response_stream >> prot_result_type; + + if (result_type == 0) + { + struct st_ok_package ok_package; + prot_parse_ok_message(cmd_response_stream, ok_package, packet_length); + } else + { + struct st_error_package error_package; + prot_parse_error_message(cmd_response_stream, error_package, packet_length); + throw(ListenerException(std::string("Send slave connect state failed: ") + std::string(error_package.message), __FILE__, __LINE__ )); + } + + return false; +} + +/* In this function we create temporal connection to the server and find out the server +version. Don't know if this is really the only way to do this, but it seems to work. + +Currently we support MariaDB and MySQL servers. +*/ +int Binlog_tcp_driver::fetch_server_version(const std::string& user, + const std::string& passwd, + const std::string& host, + long port) +{ + /* Need to serialize access to MySQL options */ + boost::mutex::scoped_lock lock(mysql_mutex); + MYSQL *mysql=NULL; + my_bool reconnect= true; + char *server_name=NULL; + + mysql= mysql_init(NULL); + + if (!mysql) + { + throw(ListenerException(std::string("mysql_init() failed"), __FILE__, __LINE__)); + } + + mysql_options(mysql, MYSQL_READ_DEFAULT_GROUP, "client"); + mysql_options(mysql, MYSQL_OPT_RECONNECT, &reconnect); + + if ( !mysql_real_connect(mysql, host.c_str(), user.c_str(), + passwd.c_str(), NULL, port, + NULL, 0) ) + { + throw(ListenerException(std::string("mysql_real_connect() failed"), __FILE__, __LINE__)); + } + + // std::cerr << " Server " << mysql->server_version << std::endl; + + if ( strstr(mysql->server_version, "Maria") || + strstr(mysql->server_version, "maria")) + { + m_server_type = MYSQL_SERVER_TYPE_MARIADB; + } else if (strstr(mysql->server_version, "MySQL") || + strstr(mysql->server_version, "mysql")) + { + m_server_type = MYSQL_SERVER_TYPE_MYSQL; + } + + mysql_close(mysql); + + return false; + +} + +int Binlog_tcp_driver::connect(const std::string& user, const std::string& passwd, + const std::string& host, long port, + const Gtid gtid, + const std::string& binlog_filename, size_t offset) +{ + m_user=user; + m_passwd=passwd; + m_host=host; + m_port=port; + + if (!m_socket) + { + if ((m_socket=sync_connect_and_authenticate(m_io_service, user, passwd, host, port)) == 0) + return 1; + } + + if(fetch_server_version(user, passwd, host, port)) + return 1; + + /* Need to get master status if we do not know global transaction ID */ + if (m_server_type == MYSQL_SERVER_TYPE_MARIADB + && !gtid.is_real_gtid()) + { + /** + * Get the master status if we don't know the name of the file. + */ + if (binlog_filename == "") + { + if (fetch_master_status(m_socket, &m_binlog_file_name, &m_binlog_offset)) + return 1; + } else { + m_binlog_file_name=binlog_filename; + m_binlog_offset=offset; + } + } + + /* Send client capabilities to master, done only for MariaDB server */ + if (m_server_type == MYSQL_SERVER_TYPE_MARIADB) { + send_client_capabilites(m_socket); + } + /* Not yet sure if something similar is needed for MySQL */ + + /* Send slave connect state to master, done only for MariaDB server + when GTID is used. + */ + + if (m_server_type == MYSQL_SERVER_TYPE_MARIADB + && gtid.is_real_gtid() == true) { + + send_slave_connect_state(m_socket, gtid); + } + + /* We're ready to start the io service and request the binlog dump. + For MySQL if we use GTID for binlog positioning, we need to send + a special COM_BINLOG_DUMP_GTID command. For MariaDB we have + already set up all the necessary information and we can + use COM_BINLOG_DUMP. + */ + + if (gtid.is_real_gtid() && + m_server_type == MYSQL_SERVER_TYPE_MYSQL) { + start_binlog_dump(gtid); + } else { + start_binlog_dump(m_binlog_file_name, m_binlog_offset); + } + + return 0; +} + +tcp::socket *Binlog_tcp_driver::sync_connect_and_authenticate(boost::asio::io_service &io_service, const std::string &user, const std::string &passwd, const std::string &host, long port) +{ + + tcp::resolver resolver(io_service); + tcp::resolver::query query(host.c_str(), "0"); + + boost::system::error_code error=boost::asio::error::host_not_found; + + if (port == 0) + port= 3306; + + tcp::socket *socket=new tcp::socket(io_service); + /* + Try each endpoint until we successfully establish a connection. + */ + try { + tcp::resolver::iterator endpoint_iterator=resolver.resolve(query); + tcp::resolver::iterator end; + + while (error && endpoint_iterator != end) + { + /* + Hack to set port number from a long int instead of a service. + */ + tcp::endpoint endpoint=endpoint_iterator->endpoint(); + endpoint.port(port); + + socket->close(); + socket->connect(endpoint, error); + endpoint_iterator++; + } + } catch(...) + { + throw(ListenerException(std::string("Connection to host: ") + host + std::string(" failed: ") + error.message(), __FILE__, __LINE__)); + } + + if (error) + { + throw(ListenerException(std::string("Connection to host: ") + host + std::string(" failed: ") + error.message(), __FILE__, __LINE__)); + } + + + /* + * Successfully connected to the master. + * 1. Accept handshake from server + * 2. Send authentication package to the server + * 3. Accept OK server package (or error in case of failure) + * 4. Send COM_REGISTER_SLAVE command to server + * 5. Accept OK package from server + */ + + boost::asio::streambuf server_messages; + + /* + * Get package header + */ + unsigned long packet_length; + unsigned char packet_no; + + // Below will thow a exception if fails + proto_read_package_header(socket, server_messages, &packet_length, &packet_no); + + /* + * Get server handshake package + */ + std::streamsize inbuffer=server_messages.in_avail(); + if (inbuffer < 0) + inbuffer=0; + boost::asio::read(*socket, server_messages, boost::asio::transfer_at_least(packet_length - inbuffer)); + std::istream server_stream(&server_messages); + + struct st_handshake_package handshake_package; + + proto_get_handshake_package(server_stream, handshake_package, packet_length); + + if (authenticate(socket, user, passwd, handshake_package)) + return 0; + + /* + * Register slave to master + */ + std::ostream command_request_stream(&server_messages); + + + + static boost::uint8_t com_register_slave = COM_REGISTER_SLAVE; + boost::uint32_t server_id = 5; + boost::uint32_t rpl_recovery_rank = 0; + + Protocol_chunk prot_command(com_register_slave); + Protocol_chunk prot_connection_port(port); + Protocol_chunk prot_rpl_recovery_rank(rpl_recovery_rank); + Protocol_chunk prot_server_id(server_id); + + const char* env_libreplication_server_id = std::getenv("LIBREPLICATION_SERVER_ID"); + + if (env_libreplication_server_id != 0) { + try { + boost::uint32_t libreplication_server_id = boost::lexical_cast(env_libreplication_server_id); + prot_server_id = libreplication_server_id; + } catch (boost::bad_lexical_cast const& e) { + throw(ListenerException(std::string("Lexical cast failed: ") + e.what(), __FILE__, __LINE__)); + } + } + + boost::uint32_t master_server_id = 0; + boost::uint8_t host_size = host.size(); + boost::uint8_t user_size = user.size(); + boost::uint8_t passwd_size = passwd.size(); + + Protocol_chunk prot_master_server_id(master_server_id); + Protocol_chunk prot_report_host_strlen(host_size); + Protocol_chunk prot_user_strlen(user_size); + Protocol_chunk prot_passwd_strlen(passwd_size); + + command_request_stream << prot_command + << prot_server_id + << prot_report_host_strlen + << host + << prot_user_strlen + << user + << prot_passwd_strlen + << passwd + << prot_connection_port + << prot_rpl_recovery_rank + << prot_master_server_id; + + int size=server_messages.size(); + char command_packet_header[4]; + try { + write_packet_header(command_packet_header, size, 0); + + // Send the request. + boost::asio::write(*socket, + boost::asio::buffer(command_packet_header, 4), + boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, server_messages, + boost::asio::transfer_at_least(size)); + } catch( boost::system::error_code const& e) + { + throw(ListenerException(std::string("Slave registration failed: ") + e.message(), __FILE__, __LINE__)); + } + + // Get Ok-package + packet_length=proto_get_one_package(socket, server_messages, &packet_no); + + std::istream cmd_response_stream(&server_messages); + + boost::uint8_t result_type; + Protocol_chunk prot_result_type(result_type); + + cmd_response_stream >> prot_result_type; + + if (result_type == 0) + { + struct st_ok_package ok_package; + prot_parse_ok_message(cmd_response_stream, ok_package, packet_length); + } else + { + struct st_error_package error_package; + prot_parse_error_message(cmd_response_stream, error_package, packet_length); + throw(ListenerException(std::string("Slave registration failed: ") + std::string(error_package.message), __FILE__, __LINE__)); + } + + return socket; +} + +void Binlog_tcp_driver::start_binlog_dump(const std::string &binlog_file_name, size_t offset) +{ + boost::asio::streambuf server_messages; + + std::ostream command_request_stream(&server_messages); + + static boost::uint8_t com_binlog_dump = COM_BINLOG_DUMP; + static boost::uint16_t binlog_flags = 0; + static boost::uint32_t server_id = 1; + Protocol_chunk prot_command(com_binlog_dump); + Protocol_chunk prot_binlog_offset(offset); // binlog position to start at + Protocol_chunk prot_binlog_flags(binlog_flags); // not used + Protocol_chunk prot_server_id(server_id); // must not be 0; see handshake package + + command_request_stream + << prot_command + << prot_binlog_offset + << prot_binlog_flags + << prot_server_id + << binlog_file_name; + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + // Send the request. + try { + boost::asio::write(*m_socket, + boost::asio::buffer(command_packet_header, 4), + boost::asio::transfer_at_least(4)); + boost::asio::write(*m_socket, server_messages, + boost::asio::transfer_at_least(size)); + } + catch(boost::system::error_code const& e) + { + throw(ListenerException(std::string("Binlog dump command failed: ") + e.message(), __FILE__, __LINE__)); + } + + /* + Start receiving binlog events. + */ + if (!m_shutdown) + GET_NEXT_PACKET_HEADER; + + /* + Start the event loop in a new thread + */ + if (!m_event_loop) + m_event_loop= new boost::thread(boost::bind(&Binlog_tcp_driver::start_event_loop, this)); + +} + +/* + +In MySQL server we need to start binlog dump with a new command +COM_BINLOG_DUMP_GTID if we want to use GTID positioning. +*/ +void Binlog_tcp_driver::start_binlog_dump(const Gtid gtid) +{ + boost::asio::streambuf server_messages; + size_t offset=0; + + std::ostream command_request_stream(&server_messages); + + static boost::uint8_t com_binlog_dump = COM_BINLOG_DUMP_GTID; + static boost::uint16_t binlog_flags = 0; + static boost::uint32_t server_id = 1; + const std::string binlog_file_name=""; + +Protocol_chunk prot_command(com_binlog_dump); + Protocol_chunk prot_binlog_offset(offset); // binlog position to start at + Protocol_chunk prot_binlog_flags(binlog_flags); // not used + Protocol_chunk prot_server_id(server_id); // must not be 0; see handshake package + Protocol_chunk prot_gtid_size(gtid.get_mysql_gtid().size()); + + command_request_stream + << prot_command + << prot_binlog_offset + << prot_binlog_flags + << prot_server_id + << binlog_file_name + << prot_gtid_size + << gtid.get_mysql_gtid(); + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + try { + // Send the request. + boost::asio::write(*m_socket, + boost::asio::buffer(command_packet_header, 4), + boost::asio::transfer_at_least(4)); + boost::asio::write(*m_socket, server_messages, + boost::asio::transfer_at_least(size)); + } + catch(boost::system::error_code const& e) + { + throw(ListenerException(std::string("Binlog dump with gtid command failed: ") + e.message(), __FILE__, __LINE__)); + } + + /* + Start receiving binlog events. + */ + if (!m_shutdown) + GET_NEXT_PACKET_HEADER; + + /* + Start the event loop in a new thread + */ + if (!m_event_loop) + m_event_loop= new boost::thread(boost::bind(&Binlog_tcp_driver::start_event_loop, this)); + +} + +/** + Helper function used to extract the event header from a memory block + */ +static void proto_event_packet_header(boost::asio::streambuf &event_src, Log_event_header *h) +{ + std::istream is(&event_src); + + Protocol_chunk prot_marker(h->marker); + Protocol_chunk prot_timestamp(h->timestamp); + Protocol_chunk prot_type_code(h->type_code); + Protocol_chunk prot_server_id(h->server_id); + Protocol_chunk prot_event_length(h->event_length); + Protocol_chunk prot_next_position(h->next_position); + Protocol_chunk prot_flags(h->flags); + + is >> prot_marker + >> prot_timestamp + >> prot_type_code + >> prot_server_id + >> prot_event_length + >> prot_next_position + >> prot_flags; + +} + +void Binlog_tcp_driver::handle_net_packet(const boost::system::error_code& err, std::size_t bytes_transferred) +{ + if (err) + { + Binary_log_event * ev= create_incident_event(175, err.message().c_str(), m_binlog_offset); + m_event_queue->push_front(ev); + return; + } + + if (bytes_transferred > MAX_PACKAGE_SIZE || bytes_transferred == 0) + { + std::ostringstream os; + os << "Expected byte size to be between 0 and " + << MAX_PACKAGE_SIZE + << " number of bytes; got " + << bytes_transferred + << " instead."; + Binary_log_event * ev= create_incident_event(175, os.str().c_str(), m_binlog_offset); + m_event_queue->push_front(ev); + return; + } + + //assert(m_waiting_event != 0); + //std::cerr << "Committing '"<< bytes_transferred << "' bytes to the event stream." << std::endl; + //std::cerr << m_event_stream_buffer << std::endl; + + m_event_stream_buffer.commit(bytes_transferred); + /* + If the event object doesn't have an event length it means that the header + hasn't been parsed. If the event stream also contains enough bytes + we make the assumption that the next bytes waiting in the stream is + the event header and attempt to parse it. + */ + if (m_waiting_event->event_length == 0 && m_event_stream_buffer.size() >= 19) + { + /* + Copy and remove from the event stream, the remaining bytes might be + dynamic payload. + */ + //std::cerr << "Consuming event stream for header. Size before: " << m_event_stream_buffer.size() << std::endl; + proto_event_packet_header(m_event_stream_buffer, m_waiting_event); + //std::cerr << " Size after: " << m_event_stream_buffer.size() << std::endl; + } + + //std::cerr << "Event length: and available payload size is " << m_event_stream_buffer.size()+LOG_EVENT_HEADER_SIZE-1 << std::endl; + if (m_waiting_event->event_length == m_event_stream_buffer.size() + LOG_EVENT_HEADER_SIZE - 1) + { + /* + If the header length equals the size of the payload plus the + size of the header, the event object is complete. + Next we need to parse the payload buffer + */ + std::istream is(&m_event_stream_buffer); + Binary_log_event * event= parse_event(is, m_waiting_event); + + m_event_stream_buffer.consume(m_event_stream_buffer.size()); + + m_event_queue->push_front(event); + + /* + Note on memory management: The pushed Binary_log_event will be + deleted in user land. + */ + delete m_waiting_event; + m_waiting_event= 0; + } + + if (!m_shutdown) + GET_NEXT_PACKET_HEADER; + +} + +void Binlog_tcp_driver::handle_net_packet_header(const boost::system::error_code& err, std::size_t bytes_transferred) +{ + if (err) + { + Binary_log_event * ev= create_incident_event(175, err.message().c_str(), m_binlog_offset); + m_event_queue->push_front(ev); + return; + } + + if (bytes_transferred != 4) + { + std::ostringstream os; + os << "Expected byte size to be between 0 and " + << MAX_PACKAGE_SIZE + << " number of bytes; got " + << bytes_transferred + << " instead."; + Binary_log_event * ev= create_incident_event(175, os.str().c_str(), m_binlog_offset); + m_event_queue->push_front(ev); + return; + } + + int packet_length=(unsigned long) (m_net_header[0] &0xFF); + packet_length+=(unsigned long) ((m_net_header[1] &0xFF) << 8); + packet_length+=(unsigned long) ((m_net_header[2] &0xFF) << 16); + + // TODO validate packet sequence numbers + //int packet_no=(unsigned char) m_net_header[3]; + + if (m_waiting_event == 0) + { + //std::cerr << "event_stream_buffer.size= " << m_event_stream_buffer.size() << std::endl; + m_waiting_event= new Log_event_header(); + m_event_packet= boost::asio::buffer_cast(m_event_stream_buffer.prepare(packet_length)); + //assert(m_event_stream_buffer.size() == 0); + } + + boost::asio::async_read(*m_socket, + boost::asio::buffer(m_event_packet, packet_length), + boost::bind(&Binlog_tcp_driver::handle_net_packet, + this, + boost::asio::placeholders::error, + boost::asio::placeholders::bytes_transferred)); + +} + +int Binlog_tcp_driver::authenticate(tcp::socket *socket, const std::string& user, const std::string& passwd, + const st_handshake_package &handshake_package) +{ + try + { + /* + * Send authentication package + */ + boost::asio::streambuf auth_request_header; + boost::asio::streambuf auth_request; + std::string database("mysql"); // 0 terminated + + + std::ostream request_stream(&auth_request); + + boost::uint8_t filler_buffer[23]; + memset((char *) filler_buffer, '\0', 23); + + boost::uint8_t reply[EVP_MAX_MD_SIZE]; + memset(reply, '\0', EVP_MAX_MD_SIZE); + boost::uint8_t scramble_buff[21]; + memcpy(scramble_buff, handshake_package.scramble_buff, 8); + memcpy(scramble_buff+8, handshake_package.scramble_buff2, 13); + int passwd_length= 0; + if (passwd.size() > 0) + passwd_length= encrypt_password(reply, scramble_buff, passwd.c_str()); + + static boost::uint32_t client_basic_flags = CLIENT_BASIC_FLAGS; + static boost::uint32_t max_packet_size = MAX_PACKAGE_SIZE; + + Protocol_chunk prot_client_flags(client_basic_flags); + Protocol_chunk prot_max_packet_size(max_packet_size); + Protocol_chunk prot_charset_number(handshake_package.server_language); + Protocol_chunk prot_filler_buffer(filler_buffer, 23); + Protocol_chunk prot_scramble_buffer_size((boost::uint8_t) passwd_length); + Protocol_chunk prot_scamble_buffer((boost::uint8_t *)reply, passwd_length); + + request_stream << prot_client_flags + << prot_max_packet_size + << prot_charset_number + << prot_filler_buffer + << user << '\0' + << prot_scramble_buffer_size + << prot_scamble_buffer + << database << '\0'; + + + int size=auth_request.size(); + char auth_packet_header[4]; + + write_packet_header(auth_packet_header, size, 1); + + /* + * Send the request. + */ + boost::asio::write(*socket, boost::asio::buffer(auth_packet_header, 4), + boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, auth_request, + boost::asio::transfer_at_least(size)); + + /* + * Get server authentication response + */ + unsigned long packet_length; + unsigned char packet_no=1; + packet_length=proto_get_one_package(socket, auth_request, &packet_no); + + std::istream auth_response_stream(&auth_request); + + boost::uint8_t result_type; + Protocol_chunk prot_result_type(result_type); + + + auth_response_stream >> prot_result_type; + + if (result_type == 0) + { + struct st_ok_package ok_package; + prot_parse_ok_message(auth_response_stream, ok_package, packet_length); + } else + { + struct st_error_package error_package; + prot_parse_error_message(auth_response_stream, error_package, packet_length); + throw(ListenerException(std::string("Authentication failed: ") + std::string(error_package.message), __FILE__, __LINE__)); + } + + return 0; + } + catch (boost::system::error_code const& e) + { + throw(ListenerException(std::string("Authentication failed: ") + e.message(), __FILE__, __LINE__)); + } + catch (boost::system::system_error const& e) + { + throw(ListenerException(std::string("Authentication failed: ") + std::string(e.what()), __FILE__, __LINE__)); + } + catch (ListenerException const& e) + { + throw; // Forward + } +} + +int Binlog_tcp_driver::wait_for_next_event(mysql::Binary_log_event **event_ptr) +{ + // poll for new event until one event is found. + // return the event + if (event_ptr) + *event_ptr= 0; + m_event_queue->pop_back(event_ptr); + return 0; +} + +void Binlog_tcp_driver::start_event_loop() +{ + while (true) + { + boost::system::error_code err; + int executed_jobs=m_io_service.run(err); + if (err) + { + throw(ListenerException(std::string("Even loop io_service-run failed: ") + err.message(), __FILE__, __LINE__)); + } + + /* + This function must be called prior to any second or later set of + invocations of the run(), run_one(), poll() or poll_one() functions when + a previous invocation of these functions returned due to the io_service + being stopped or running out of work. This function allows the io_service + to reset any internal state, such as a "stopped" flag. + */ + m_io_service.reset(); + + /* + Don't shutdown until the io service has reset! + */ + if (m_shutdown) + { + m_shutdown= false; + break; + } + + reconnect(); + } + +} + +int Binlog_tcp_driver::connect(const Gtid gtid) +{ + return connect(m_user, m_passwd, m_host, m_port, gtid); +} + +/** + * Make synchronous reconnect. + */ +void Binlog_tcp_driver::reconnect(const Gtid gtid) +{ + disconnect(); + connect(m_user, m_passwd, m_host, m_port, gtid); +} + +void Binlog_tcp_driver::disconnect() +{ + Binary_log_event * event; + m_waiting_event= 0; + m_event_stream_buffer.consume(m_event_stream_buffer.in_avail()); + while(m_event_queue->has_unread()) + { + m_event_queue->pop_back(&event); + delete(event); + } + if (m_socket) + m_socket->close(); + m_socket= 0; +} + + +void Binlog_tcp_driver::shutdown(void) +{ + m_shutdown= true; + m_io_service.stop(); +} + +int Binlog_tcp_driver::set_position(const std::string &str, unsigned long position) +{ + /* + Validate the new position before we attempt to set. Once we set the + position we won't know if it succeded because the binlog dump is + running in another thread asynchronously. + */ + boost::asio::io_service io_service; + tcp::socket *socket; + Gtid gtid = Gtid(); + + if ((socket= sync_connect_and_authenticate(io_service, m_user, m_passwd, m_host, m_port)) == 0) + return ERR_FAIL; + + std::map binlog_map; + fetch_binlogs_name_and_size(socket, binlog_map); + socket->close(); + delete socket; + + std::map::iterator binlog_itr= binlog_map.find(str); + + /* + If the file name isn't listed on the server we will fail here. + */ + if (binlog_itr == binlog_map.end()) + return ERR_FAIL; + + /* + If the requested position is greater than the file size we will fail + here. + */ + if (position > binlog_itr->second) + return ERR_FAIL; + + + /* + By posting to the io service we guarantee that the operations are + executed in the same thread as the io_service is running in. + */ + if (m_event_loop) + { + m_io_service.post(boost::bind(&Binlog_tcp_driver::shutdown, this)); + m_event_loop->join(); + delete(m_event_loop); + } + m_event_loop= 0; + disconnect(); + /* + Uppon return of connect we only know if we succesfully authenticated + against the server. The binlog dump command is executed asynchronously + in another thread. + */ + if (connect(m_user, m_passwd, m_host, m_port, gtid, str, position) == 0) + return ERR_OK; + else + return ERR_FAIL; +} + +int Binlog_tcp_driver::get_position(std::string *filename_ptr, unsigned long *position_ptr) +{ + boost::asio::io_service io_service; + + tcp::socket *socket; + + if ((socket=sync_connect_and_authenticate(io_service, m_user, m_passwd, m_host, m_port)) == 0) + return ERR_FAIL; + + if (fetch_master_status(socket, &m_binlog_file_name, &m_binlog_offset)) + return ERR_FAIL; + + socket->close(); + delete socket; + if (filename_ptr) + *filename_ptr= m_binlog_file_name; + if (position_ptr) + *position_ptr= m_binlog_offset; + return ERR_OK; +} + +bool Binlog_tcp_driver::fetch_master_status(tcp::socket *socket, std::string *filename, unsigned long *position) +{ + boost::asio::streambuf server_messages; + + std::ostream command_request_stream(&server_messages); + + static boost::uint8_t com_query = COM_QUERY; + Protocol_chunk prot_command(com_query); + + command_request_stream << prot_command + << "SHOW MASTER STATUS"; + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + try { + // Send the request. + boost::asio::write(*socket, boost::asio::buffer(command_packet_header, 4), boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, server_messages, boost::asio::transfer_at_least(size)); + } + catch(boost::system::error_code const& e) + { + throw(ListenerException(std::string("Show master status failed: ") + e.message(), __FILE__, __LINE__)); + } + + Result_set result_set(socket); + + Converter conv; + BOOST_FOREACH(Row_of_fields row, result_set) + { + *filename= ""; + conv.to(*filename, row[0]); + long pos; + conv.to(pos, row[1]); + *position= (unsigned long)pos; + } + return false; +} + +bool Binlog_tcp_driver::fetch_binlogs_name_and_size(tcp::socket *socket, std::map &binlog_map) +{ + boost::asio::streambuf server_messages; + + std::ostream command_request_stream(&server_messages); + + static boost::uint8_t com_query = COM_QUERY; + Protocol_chunk prot_command(com_query); + + command_request_stream << prot_command + << "SHOW BINARY LOGS"; + + int size=server_messages.size(); + char command_packet_header[4]; + write_packet_header(command_packet_header, size, 0); + + try { + // Send the request. + boost::asio::write(*socket, boost::asio::buffer(command_packet_header, 4), boost::asio::transfer_at_least(4)); + boost::asio::write(*socket, server_messages, boost::asio::transfer_at_least(size)); + } + catch(boost::system::error_code const& e) + { + throw(ListenerException(std::string("Show binary logs failed: ") + e.message(), __FILE__, __LINE__)); + } + + Result_set result_set(socket); + + Converter conv; + BOOST_FOREACH(Row_of_fields row, result_set) + { + std::string filename; + long position; + conv.to(filename, row[0]); + conv.to(position, row[1]); + binlog_map.insert(std::make_pair(filename, (unsigned long)position)); + } + return false; +} + + +#define SCRAMBLE_BUFF_SIZE 20 + +int hash_sha1(boost::uint8_t *output, ...) +{ + /* size at least EVP_MAX_MD_SIZE */ + va_list ap; + size_t result; + EVP_MD_CTX *hash_context = EVP_MD_CTX_create(); + + va_start(ap, output); + EVP_DigestInit_ex(hash_context, EVP_sha1(), NULL); + while ( 1 ) + { + const boost::uint8_t *data = va_arg(ap, const boost::uint8_t *); + int length = va_arg(ap, int); + if ( length < 0 ) + break; + EVP_DigestUpdate(hash_context, data, length); + } + EVP_DigestFinal_ex(hash_context, (unsigned char *)output, (unsigned int *)&result); + va_end(ap); + return result; +} + + +int encrypt_password(boost::uint8_t *reply, /* buffer at least EVP_MAX_MD_SIZE */ + const boost::uint8_t *scramble_buff, + const char *pass) +{ + boost::uint8_t hash_stage1[EVP_MAX_MD_SIZE], hash_stage2[EVP_MAX_MD_SIZE]; + //EVP_MD_CTX *hash_context = EVP_MD_CTX_create(); + + /* Hash password into hash_stage1 */ + int length_stage1 = hash_sha1(hash_stage1, + pass, strlen(pass), + NULL, -1); + + /* Hash hash_stage1 into hash_stage2 */ + int length_stage2 = hash_sha1(hash_stage2, + hash_stage1, length_stage1, + NULL, -1); + + int length_reply = hash_sha1(reply, + scramble_buff, SCRAMBLE_BUFF_SIZE, + hash_stage2, length_stage2, + NULL, -1); + + //assert(length_reply <= EVP_MAX_MD_SIZE); + //assert(length_reply == length_stage1); + + int i; + for ( i=0 ; ijoin(); + delete(m_event_loop); + } + m_event_loop= 0; + disconnect(); + /* + Uppon return of connect we only know if we succesfully authenticated + against the server. The binlog dump command is executed asynchronously + in another thread. + */ + if (connect(m_user, m_passwd, m_host, m_port, gtid) == 0) + return ERR_OK; + else + return ERR_FAIL; +} + +}} // end namespace mysql::system diff --git a/replication_listener/src/utilities.cpp b/replication_listener/src/utilities.cpp new file mode 100644 index 000000000..3c6163211 --- /dev/null +++ b/replication_listener/src/utilities.cpp @@ -0,0 +1,154 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "utilities.h" + +using namespace mysql; + +namespace mysql { + +int server_var_decoder (std::map *my_var_map, + std::vector variables) +{ + boost::uint8_t length, i; + std::string name; + mysql::system::enum_field_types field_type; + /* To handle special case of 'terminating null byte'. */ + bool is_null_byte= 0; + + + std::vector::iterator it= variables.begin(); + + while (it != variables.end()) + { + switch (*it++) + { + case Q_FLAGS2_CODE: + length= 4; + name= "flag2"; + field_type= mysql::system::MYSQL_TYPE_LONG; + break; + case Q_SQL_MODE_CODE: + length= 8; + name= "sql_mode"; + field_type= mysql::system::MYSQL_TYPE_LONGLONG; + break; + case Q_CATALOG_CODE: + length= *it++; + name= "catalog_name_old"; + field_type= mysql::system::MYSQL_TYPE_VAR_STRING; + is_null_byte= 1; + break; + case Q_AUTO_INCREMENT: + length= 2; + my_var_map->insert(std::make_pair + ("auto_increment_increment", + mysql::Value(mysql::system::MYSQL_TYPE_SHORT, + length, (char*) &(*it)))); + for (i= 0; i < length; i++) + it++; + + name= "auto_increment_offset"; + field_type= mysql::system::MYSQL_TYPE_SHORT; + break; + case Q_CHARSET_CODE: + length= 2; + my_var_map->insert(std::make_pair + ("character_set_client", + mysql::Value(mysql::system::MYSQL_TYPE_SHORT, + length, (char*) &(*it)))); + for (i= 0; i < length; i++) + it++; + + my_var_map->insert(std::make_pair + ("collation_connection", + mysql::Value(mysql::system::MYSQL_TYPE_SHORT, + length, (char*) &(*it)))); + for (i= 0; i < length; i++) + it++; + + name= "collation_server"; + field_type= mysql::system::MYSQL_TYPE_SHORT; + break; + case Q_TIME_ZONE_CODE: + length= *it++; + name= "time_zone"; + field_type= mysql::system::MYSQL_TYPE_VAR_STRING; + break; + case Q_CATALOG_NZ_CODE: + length= *it++; + name= "catalog_name"; + field_type= mysql::system::MYSQL_TYPE_VAR_STRING; + break; + case Q_LC_TIME_NAMES_CODE: + length= 2; + name= "lc_time_names"; + field_type= mysql::system::MYSQL_TYPE_SHORT; + break; + case Q_CHARSET_DATABASE_CODE: + length= 2; + name= "collation_database"; + field_type= mysql::system::MYSQL_TYPE_SHORT; + break; + case Q_TABLE_MAP_FOR_UPDATE_CODE: + length= 8; + name= "table_map_for_update"; + field_type= mysql::system::MYSQL_TYPE_LONGLONG; + break; + case Q_MASTER_DATA_WRITTEN_CODE: + length= 4; + name= "master_data_written"; + field_type= mysql::system::MYSQL_TYPE_LONG; + break; + case Q_INVOKER: + length= *it++; + my_var_map->insert(std::make_pair + ("user", + mysql::Value(mysql::system::MYSQL_TYPE_VAR_STRING, + length, (char*) &(*it)))); + for (i= 0; i < length; i++) + it++; + + length= *it++; + name= "host"; + field_type= mysql::system::MYSQL_TYPE_VARCHAR; + break; + default: + /* Unknown status variables. Error!! */ + return 1; + } /* switch */ + my_var_map->insert(std::make_pair + (name, mysql::Value(field_type, length, + (char*) &(*it)))); + while (length --) + ++it; + + /* Handle null termination byte. */ + if (is_null_byte) + { + ++it; + is_null_byte= 0; + } + } + return 0; +} /* server_var_decoder() */ + +} /* mysql namespace */ + diff --git a/replication_listener/src/value.cpp b/replication_listener/src/value.cpp new file mode 100644 index 000000000..702520942 --- /dev/null +++ b/replication_listener/src/value.cpp @@ -0,0 +1,608 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include "value.h" +#include "binlog_event.h" +#include +#include +#include + +#define DIG_PER_DEC1 9 + +using namespace mysql; +using namespace mysql::system; +namespace mysql { + +static const int dig2bytes[DIG_PER_DEC1 + 1] = {0, 1, 1, 2, 2, 3, 3, 4, 4, 4}; + +int decimal_bin_size(int precision, int scale) +{ + int intg = precision - scale; + int intg0 = intg / DIG_PER_DEC1; + int frac0 = scale / DIG_PER_DEC1; + int intg0x = intg - intg0 * DIG_PER_DEC1; + int frac0x = scale - frac0 * DIG_PER_DEC1; + + return( + intg0 * sizeof(boost::int32_t) + dig2bytes[intg0x] + + frac0 * sizeof(boost::int32_t) + dig2bytes[frac0x] + ); +} + +int calc_field_size(unsigned char column_type, const unsigned char *field_ptr, boost::uint32_t metadata) +{ + boost::uint32_t length; + + switch (column_type) { + case mysql::system::MYSQL_TYPE_VAR_STRING: + /* This type is hijacked for result set types. */ + length= metadata; + break; + case mysql::system::MYSQL_TYPE_NEWDECIMAL: + { + int precision = (metadata & 0xff); + int scale = metadata >> 8; + length = decimal_bin_size(precision, scale); + break; + } + case mysql::system::MYSQL_TYPE_DECIMAL: + case mysql::system::MYSQL_TYPE_FLOAT: + case mysql::system::MYSQL_TYPE_DOUBLE: + length= metadata; + break; + /* + The cases for SET and ENUM are include for completeness, however + both are mapped to type MYSQL_TYPE_STRING and their real types + are encoded in the field metadata. + */ + case mysql::system::MYSQL_TYPE_SET: + case mysql::system::MYSQL_TYPE_ENUM: + case mysql::system::MYSQL_TYPE_STRING: + { + //unsigned char type= metadata >> 8U; + unsigned char type = metadata & 0xff; + if ((type == mysql::system::MYSQL_TYPE_SET) || (type == mysql::system::MYSQL_TYPE_ENUM)) + { + //length= metadata & 0x00ff; + length = (metadata & 0xff00) >> 8; + } + else + { + /* + We are reading the actual size from the master_data record + because this field has the actual lengh stored in the first + byte. + */ + length= (unsigned int) *field_ptr+1; + //DBUG_ASSERT(length != 0); + } + break; + } + case mysql::system::MYSQL_TYPE_YEAR: + case mysql::system::MYSQL_TYPE_TINY: + length= 1; + break; + case mysql::system::MYSQL_TYPE_SHORT: + length= 2; + break; + case mysql::system::MYSQL_TYPE_INT24: + length= 3; + break; + case mysql::system::MYSQL_TYPE_LONG: + length= 4; + break; + case MYSQL_TYPE_LONGLONG: + length= 8; + break; + case mysql::system::MYSQL_TYPE_NULL: + length= 0; + break; + case mysql::system::MYSQL_TYPE_NEWDATE: + length= 3; + break; + case mysql::system::MYSQL_TYPE_DATE: + case mysql::system::MYSQL_TYPE_TIME: + length= 3; + break; + case mysql::system::MYSQL_TYPE_TIMESTAMP: + length= 4; + break; + case mysql::system::MYSQL_TYPE_DATETIME: + length= 8; + break; + case mysql::system::MYSQL_TYPE_BIT: + { + /* + Decode the size of the bit field from the master. + from_len is the length in bytes from the master + from_bit_len is the number of extra bits stored in the master record + If from_bit_len is not 0, add 1 to the length to account for accurate + number of bytes needed. + */ + boost::uint32_t from_len= (metadata >> 8U) & 0x00ff; + boost::uint32_t from_bit_len= metadata & 0x00ff; + //DBUG_ASSERT(from_bit_len <= 7); + length= from_len + ((from_bit_len > 0) ? 1 : 0); + break; + } + case mysql::system::MYSQL_TYPE_VARCHAR: + { + length= metadata > 255 ? 2 : 1; + length+= length == 1 ? (boost::uint32_t) *field_ptr : *((boost::uint16_t *)field_ptr); + break; + } + case mysql::system::MYSQL_TYPE_TINY_BLOB: + case mysql::system::MYSQL_TYPE_MEDIUM_BLOB: + case mysql::system::MYSQL_TYPE_LONG_BLOB: + case mysql::system::MYSQL_TYPE_BLOB: + case mysql::system::MYSQL_TYPE_GEOMETRY: + { + switch (metadata) + { + case 1: + length= 1+ (boost::uint32_t) field_ptr[0]; + break; + case 2: + length= 2+ (boost::uint32_t) (*(boost::uint16_t *)(field_ptr) & 0xFFFF); + break; + case 3: + // TODO make platform indep. + length= 3+ (boost::uint32_t) (long) (*((boost::uint32_t *) (field_ptr)) & 0xFFFFFF); + break; + case 4: + // TODO make platform indep. + length= 4+ (boost::uint32_t) (long) *((boost::uint32_t *) (field_ptr)); + break; + default: + length= 0; + break; + } + break; + } + default: + length= ~(boost::uint32_t) 0; + } + return length; +} + +/* +Value::Value(Value &val) +{ + m_size= val.length(); + m_storage= val.storage(); + m_type= val.type(); + m_metadata= val.metadata(); + m_is_null= val.is_null(); +} +*/ + +Value::Value(const Value& val) +{ + m_size= val.m_size; + m_storage= val.m_storage; + m_type= val.m_type; + m_metadata= val.m_metadata; + m_is_null= val.m_is_null; +} + +Value &Value::operator=(const Value &val) +{ + m_size= val.m_size; + m_storage= val.m_storage; + m_type= val.m_type; + m_metadata= val.m_metadata; + m_is_null= val.m_is_null; + return *this; +} + +bool Value::operator==(const Value &val) const +{ + return (m_size == val.m_size) && + (m_storage == val.m_storage) && + (m_type == val.m_type) && + (m_metadata == val.m_metadata); +} + +bool Value::operator!=(const Value &val) const +{ + return !operator==(val); +} + +char *Value::as_c_str(unsigned long &size) const +{ + if (m_is_null || m_size == 0) + { + size= 0; + return 0; + } + /* + Length encoded; First byte is length of string. + */ + int metadata_length= m_size > 251 ? 2: 1; + /* + Size is length of the character string; not of the entire storage + */ + size= m_size - metadata_length; + + char *str = const_cast(m_storage + metadata_length); + + if (m_type == mysql::system::MYSQL_TYPE_VARCHAR && m_metadata > 255) { + str++; + size--; + } + + return str; +} + +unsigned char *Value::as_blob(unsigned long &size) const +{ + if (m_is_null || m_size == 0) + { + size= 0; + return 0; + } + + /* + Size was calculated during construction of the object and only inludes the + size of the blob data, not the metadata part which also is stored in the + storage. For blobs this part can be between 1-4 bytes long. + */ + size= m_size - m_metadata; + + /* + Adjust the storage pointer with the size of the metadata. + */ + return (unsigned char *)(m_storage + m_metadata); +} + +boost::int32_t Value::as_int32() const +{ + if (m_is_null) + { + return 0; + } + boost::uint32_t to_int; + Protocol_chunk prot_integer(to_int); + + buffer_source buff(m_storage, m_size); + buff >> prot_integer; + return to_int; +} + +boost::int8_t Value::as_int8() const +{ + if (m_is_null) + { + return 0; + } + boost::int8_t to_int; + Protocol_chunk prot_integer(to_int); + + buffer_source buff(m_storage, m_size); + buff >> prot_integer; + return to_int; +} + +boost::int16_t Value::as_int16() const +{ + if (m_is_null) + { + return 0; + } + boost::int16_t to_int; + Protocol_chunk prot_integer(to_int); + + buffer_source buff(m_storage, m_size); + buff >> prot_integer; + return to_int; +} + +boost::int64_t Value::as_int64() const +{ + if (m_is_null) + { + return 0; + } + boost::int64_t to_int; + Protocol_chunk prot_integer(to_int); + + buffer_source buff(m_storage, m_size); + buff >> prot_integer; + return to_int; +} + +float Value::as_float() const +{ + // TODO + return *((const float *)storage()); +} + +double Value::as_double() const +{ + // TODO + return *((const double *)storage()); +} + +void Converter::to(std::string &str, const Value &val) const +{ + if (val.is_null()) + { + str= "(NULL)"; + return; + } + + switch(val.type()) + { + case MYSQL_TYPE_DECIMAL: + str= "not implemented"; + break; + case MYSQL_TYPE_TINY: + str= boost::lexical_cast(static_cast(val.as_int8())); + break; + case MYSQL_TYPE_SHORT: + str= boost::lexical_cast(val.as_int16()); + break; + case MYSQL_TYPE_LONG: + str= boost::lexical_cast(val.as_int32()); + break; + case MYSQL_TYPE_FLOAT: + { + str= boost::str(boost::format("%d") % val.as_float()); + } + break; + case MYSQL_TYPE_DOUBLE: + str= boost::str(boost::format("%d") % val.as_double()); + break; + case MYSQL_TYPE_NULL: + str= "not implemented"; + break; + case MYSQL_TYPE_TIMESTAMP: + str= boost::lexical_cast((boost::uint32_t)val.as_int32()); + break; + + case MYSQL_TYPE_LONGLONG: + str= boost::lexical_cast(val.as_int64()); + break; + case MYSQL_TYPE_INT24: + str= "not implemented"; + break; + case MYSQL_TYPE_DATE: + { + const char* val_storage = val.storage(); + unsigned int date_val = (val_storage[0] & 0xff) + ((val_storage[1] & 0xff) << 8) + ((val_storage[2] & 0xff) << 16); + unsigned int date_year = date_val >> 9; + date_val -= (date_year << 9); + unsigned int date_month = date_val >> 5; + unsigned int date_day = date_val - (date_month << 5); + str = boost::str(boost::format("%04d-%02d-%02d") % date_year % date_month % date_day); + break; + } + case MYSQL_TYPE_DATETIME: + { + boost::uint64_t timestamp= val.as_int64(); + unsigned long d= timestamp / 1000000; + unsigned long t= timestamp % 1000000; + std::ostringstream os; + + os << std::setfill('0') << std::setw(4) << d / 10000 + << std::setw(1) << '-' + << std::setw(2) << (d % 10000) / 100 + << std::setw(1) << '-' + << std::setw(2) << d % 100 + << std::setw(1) << ' ' + << std::setw(2) << t / 10000 + << std::setw(1) << ':' + << std::setw(2) << (t % 10000) / 100 + << std::setw(1) << ':' + << std::setw(2) << t % 100; + + str= os.str(); + } + break; + case MYSQL_TYPE_TIME: + { + const char* val_storage = val.storage(); + unsigned int time_val = (val_storage[0] & 0xff) + ((val_storage[1] & 0xff) << 8) + ((val_storage[2] & 0xff) << 16); + unsigned int time_sec = time_val % 100; + time_val -= time_sec; + unsigned int time_min = (time_val % 10000) / 100; + unsigned int time_hour = (time_val - time_min) / 10000; + str = boost::str(boost::format("%02d:%02d:%02d") % time_hour % time_min % time_sec); + break; + } + case MYSQL_TYPE_YEAR: + { + const char* val_storage = val.storage(); + unsigned int year_val = (val_storage[0] & 0xff); + year_val = year_val > 0 ? (year_val + 1900) : 0; + str = boost::str(boost::format("%04d") % year_val); + break; + } + case MYSQL_TYPE_NEWDATE: + str= "not implemented"; + break; + case MYSQL_TYPE_VARCHAR: + { + unsigned long size; + char *ptr= val.as_c_str(size); + str.append(ptr, size); + } + break; + case MYSQL_TYPE_VAR_STRING: + { + str.append(val.storage(), val.length()); + } + break; + case MYSQL_TYPE_STRING: + { + unsigned char str_type = 0; + + if (val.metadata()) { + str_type = val.metadata() & 0xff; + } + + if (str_type == mysql::system::MYSQL_TYPE_SET) { + str = "not implemented"; + break; + } else if (str_type == mysql::system::MYSQL_TYPE_ENUM) { + unsigned int val_storage = static_cast(*val.storage()); + str = boost::str(boost::format("%u") % val_storage); + break; + } + + unsigned long size; + char *ptr= val.as_c_str(size); + str.append(ptr, size); + } + break; + case MYSQL_TYPE_BIT: + str= "not implemented"; + break; + case MYSQL_TYPE_NEWDECIMAL: + str= "not implemented"; + break; + case MYSQL_TYPE_ENUM: + str= "not implemented"; + break; + case MYSQL_TYPE_SET: + str= "not implemented"; + break; + case MYSQL_TYPE_TINY_BLOB: + case MYSQL_TYPE_MEDIUM_BLOB: + case MYSQL_TYPE_LONG_BLOB: + case MYSQL_TYPE_BLOB: + { + unsigned long size; + unsigned char *ptr= val.as_blob(size); + str.append((const char *)ptr, size); + } + break; + case MYSQL_TYPE_GEOMETRY: + str= "not implemented"; + break; + default: + str= "not implemented"; + break; + } +} + +void Converter::to(float &out, const Value &val) const +{ + switch(val.type()) + { + case MYSQL_TYPE_FLOAT: + out= val.as_float(); + break; + default: + out= 0; + } +} + +void Converter::to(long &out, const Value &val) const +{ + switch(val.type()) + { + case MYSQL_TYPE_DECIMAL: + // TODO + out= 0; + break; + case MYSQL_TYPE_TINY: + out= val.as_int8(); + break; + case MYSQL_TYPE_SHORT: + out= val.as_int16(); + break;; + case MYSQL_TYPE_LONG: + out= (long)val.as_int32(); + break; + case MYSQL_TYPE_FLOAT: + out= 0; + break; + case MYSQL_TYPE_DOUBLE: + out= (long)val.as_double(); + case MYSQL_TYPE_NULL: + out= 0; + break; + case MYSQL_TYPE_TIMESTAMP: + out=(boost::uint32_t)val.as_int32(); + break; + + case MYSQL_TYPE_LONGLONG: + out= (long)val.as_int64(); + break; + case MYSQL_TYPE_INT24: + out= 0; + break; + case MYSQL_TYPE_DATE: + out= 0; + break; + case MYSQL_TYPE_TIME: + out= 0; + break; + case MYSQL_TYPE_DATETIME: + out= (long)val.as_int64(); + break; + case MYSQL_TYPE_YEAR: + out= 0; + break; + case MYSQL_TYPE_NEWDATE: + out= 0; + break; + case MYSQL_TYPE_VARCHAR: + out= 0; + break; + case MYSQL_TYPE_BIT: + out= 0; + break; + case MYSQL_TYPE_NEWDECIMAL: + out= 0; + break; + case MYSQL_TYPE_ENUM: + out= 0; + break; + case MYSQL_TYPE_SET: + out= 0; + break; + case MYSQL_TYPE_TINY_BLOB: + case MYSQL_TYPE_MEDIUM_BLOB: + case MYSQL_TYPE_LONG_BLOB: + case MYSQL_TYPE_BLOB: + out= 0; + break; + case MYSQL_TYPE_VAR_STRING: + { + std::string str; + str.append(val.storage(), val.length()); + out= boost::lexical_cast(str.c_str()); + } + break; + case MYSQL_TYPE_STRING: + out= 0; + break; + case MYSQL_TYPE_GEOMETRY: + out= 0; + break; + default: + out= 0; + break; + } +} + + +} // end namespace mysql diff --git a/replication_listener/tests/CMakeLists.txt b/replication_listener/tests/CMakeLists.txt new file mode 100644 index 000000000..f0f29b931 --- /dev/null +++ b/replication_listener/tests/CMakeLists.txt @@ -0,0 +1,19 @@ +# Right now, the tests are built using the static version of the +# replication listener, but we need to decide which one to use. + +set(MySQL_SERVER_TESTS test-basic) +set(MySQL_BINLOG_TESTS replaybinlog replay_sys_vars) +set(MySQL_SIMPLE_TESTS test-transport) + +foreach(test ${MySQL_BINLOG_TESTS} ${MySQL_SERVER_TESTS} ${MySQL_SIMPLE_TESTS}) + message("Adding test ${test}") + add_executable(${test} ${test}.cpp) + target_link_libraries(${test} replication_static gtest) +endforeach() + +if(WITH_SERVER_TESTS) + add_test(ServerTests ${MySQL_SERVER_TESTS}) +endif(WITH_SERVER_TESTS) +add_test(BasicTests ${MySQL_SIMPLE_TESTS}) +add_test(BinlogTests ${MySQL_BINLOG_TESTS}) + diff --git a/replication_listener/tests/r/binlog_file_reader.result b/replication_listener/tests/r/binlog_file_reader.result new file mode 100644 index 000000000..f8d1da43b --- /dev/null +++ b/replication_listener/tests/r/binlog_file_reader.result @@ -0,0 +1,533 @@ +# +# Reading binlogs files. +# +Event type: Format_desc length: 110 next pos: 114 +Event type: Query length: 91 next pos: 205 +query= drop database if exists test db= test + +Event type: Query length: 83 next pos: 288 +query= create database test db= test + +Event type: Query length: 105 next pos: 393 +query= CREATE TABLE REPLICATION_LISTENER (c1 int) db= test + +Event type: Query length: 115 next pos: 508 +query= CREATE TABLE t1 (c1 CHAR(3), c2 CHAR(1) DEFAULT 'a') db= test + +Event type: Query length: 110 next pos: 686 +query= INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc') db= test + +Event type: User defined length: 0 next pos: 755 +Event type: Query length: 99 next pos: 922 +query= UPDATE t1 SET c1='aaaa' WHERE c1='a' db= test + +Event type: User defined length: 0 next pos: 991 +Event type: Query length: 107 next pos: 1098 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255) db= test + +Event type: Query length: 111 next pos: 1277 +query= UPDATE t1 SET c1='bbbbbbbbbbbbbbb' WHERE c1='bb' db= test + +Event type: User defined length: 0 next pos: 1346 +Event type: Query length: 105 next pos: 1451 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1) db= test + +Event type: Query length: 77 next pos: 1596 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 1665 +Event type: Query length: 104 next pos: 1769 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 107 next pos: 1876 +query= CREATE TABLE t1 (c1 INT, c2 INT DEFAULT '1') db= test + +Event type: Query length: 105 next pos: 2049 +query= INSERT INTO t1 (c1) VALUES (1),(-12),(123) db= test + +Event type: User defined length: 0 next pos: 2118 +Event type: Query length: 101 next pos: 2287 +query= UPDATE t1 SET c1=2147483647 WHERE c1=1 db= test + +Event type: User defined length: 0 next pos: 2356 +Event type: Query length: 111 next pos: 2535 +query= UPDATE t1 SET c1=-2147483648 WHERE c1=2147483647 db= test + +Event type: User defined length: 0 next pos: 2604 +Event type: Query length: 77 next pos: 2749 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 2818 +Event type: Query length: 104 next pos: 2922 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 117 next pos: 3039 +query= CREATE TABLE t1 (c1 SMALLINT, c2 SMALLINT DEFAULT '1') db= test + +Event type: Query length: 105 next pos: 3212 +query= INSERT INTO t1 (c1) VALUES (1),(-12),(123) db= test + +Event type: User defined length: 0 next pos: 3281 +Event type: Query length: 96 next pos: 3445 +query= UPDATE t1 SET c1=32767 WHERE c1=1 db= test + +Event type: User defined length: 0 next pos: 3514 +Event type: Query length: 101 next pos: 3683 +query= UPDATE t1 SET c1=-32768 WHERE c1=32767 db= test + +Event type: User defined length: 0 next pos: 3752 +Event type: Query length: 77 next pos: 3897 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 3966 +Event type: Query length: 104 next pos: 4070 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 115 next pos: 4185 +query= CREATE TABLE t1 (c1 TINYINT, c2 TINYINT DEFAULT '1') db= test + +Event type: Query length: 105 next pos: 4358 +query= INSERT INTO t1 (c1) VALUES (1),(-12),(123) db= test + +Event type: User defined length: 0 next pos: 4427 +Event type: Query length: 94 next pos: 4589 +query= UPDATE t1 SET c1=127 WHERE c1=1 db= test + +Event type: User defined length: 0 next pos: 4658 +Event type: Query length: 97 next pos: 4823 +query= UPDATE t1 SET c1=-128 WHERE c1=127 db= test + +Event type: User defined length: 0 next pos: 4892 +Event type: Query length: 77 next pos: 5037 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 5106 +Event type: Query length: 104 next pos: 5210 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 123 next pos: 5333 +query= CREATE TABLE t1 (c0 INT AUTO_INCREMENT PRIMARY KEY, c1 TEXT) db= test + +Event type: Intvar length: 28 next pos: 5429 +Event type: Query length: 110 next pos: 5539 +query= INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc') db= test + +Event type: User defined length: 0 next pos: 5608 +Event type: Query length: 99 next pos: 5775 +query= UPDATE t1 SET c1='aaaa' WHERE c1='a' db= test + +Event type: User defined length: 0 next pos: 5844 +Event type: Query length: 107 next pos: 5951 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255) db= test + +Event type: Query length: 111 next pos: 6130 +query= UPDATE t1 SET c1='bbbbbbbbbbbbbbb' WHERE c1='bb' db= test + +Event type: User defined length: 0 next pos: 6199 +Event type: Query length: 105 next pos: 6304 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1) db= test + +Event type: Query length: 77 next pos: 6449 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 6518 +Event type: Query length: 102 next pos: 6620 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 TEXT db= test + +Event type: Intvar length: 28 next pos: 6716 +Event type: Query length: 11106 next pos: 17822 +query= INSERT INTO t1 (c1) VALUES ('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa') db= test + +Event type: User defined length: 0 next pos: 17891 +Event type: Intvar length: 28 next pos: 17987 +Event type: Query length: 11106 next pos: 29093 +query= INSERT INTO t1 (c1) VALUES ('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa') db= test + +Event type: User defined length: 0 next pos: 29162 +Event type: Query length: 77 next pos: 29307 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 29376 +Event type: Query length: 104 next pos: 29480 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 93 next pos: 29573 +query= CREATE TABLE t1 (c1 TIMESTAMP) db= test + +Event type: Query length: 116 next pos: 29765 +query= INSERT INTO t1 VALUES ("2010-05-18 14:17:59") db= test + +Event type: User defined length: 0 next pos: 29842 +Event type: Query length: 77 next pos: 29987 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 30056 +Event type: Query length: 104 next pos: 30160 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 92 next pos: 30252 +query= CREATE TABLE t1 (c1 DATETIME) db= test + +Event type: Query length: 108 next pos: 30428 +query= INSERT INTO t1 VALUES ("2005-05-18 14:17:59") db= test + +Event type: User defined length: 0 next pos: 30497 +Event type: Query length: 77 next pos: 30642 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 30711 +Event type: Query length: 104 next pos: 30815 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 89 next pos: 30904 +query= CREATE TABLE t1 (c1 FLOAT) db= test + +Event type: Query length: 116 next pos: 31088 +query= INSERT INTO t1 VALUES (1.0),(1.01),(-12.05),(115.321) db= test + +Event type: User defined length: 0 next pos: 31157 +Event type: Query length: 101 next pos: 31326 +query= UPDATE t1 SET c1=0.000001 WHERE c1=1.0 db= test + +Event type: User defined length: 0 next pos: 31395 +Event type: Query length: 77 next pos: 31540 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 31609 +Event type: Query length: 104 next pos: 31713 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 90 next pos: 31803 +query= CREATE TABLE t1 (c1 DOUBLE) db= test + +Event type: Query length: 116 next pos: 31987 +query= INSERT INTO t1 VALUES (1.0),(1.01),(-12.05),(115.321) db= test + +Event type: User defined length: 0 next pos: 32056 +Event type: Query length: 106 next pos: 32230 +query= UPDATE t1 SET c1=0.00000000001 WHERE c1=1.0 db= test + +Event type: User defined length: 0 next pos: 32299 +Event type: Query length: 77 next pos: 32444 +query= DELETE FROM t1 db= test + +Event type: User defined length: 0 next pos: 32513 +Event type: Query length: 104 next pos: 32617 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 122 next pos: 32739 +query= DROP TABLE `REPLICATION_LISTENER` /* generated by server */ db= test + +Event type: Format_desc length: 94 next pos: 98 +Event type: Query length: 100 next pos: 198 +query= create table t1(a int) engine= innodb db= test + +Event type: Query length: 101 next pos: 299 +query= create table t2(a int) engine= innodb db= mysql + +Event type: Query length: 92 next pos: 460 +query= insert into t1 (a) values (1) db= test + +Event type: Query length: 93 next pos: 553 +query= insert into t2 (a) values (1) db= mysql + +Event type: User defined length: 0 next pos: 553 +Event type: Query length: 100 next pos: 680 +query= create table t3(a int) engine= innodb db= test + +Event type: Query length: 101 next pos: 781 +query= create table t4(a int) engine= myisam db= mysql + +Event type: Query length: 92 next pos: 942 +query= insert into t3 (a) values (2) db= test + +Event type: Query length: 93 next pos: 1035 +query= insert into t4 (a) values (2) db= mysql + +Event type: Query length: 72 next pos: 1107 +query= ROLLBACK db= mysql + +Event type: Query length: 97 next pos: 1204 +query= create table t5(a int) engine= NDB db= test + +Event type: Query length: 98 next pos: 1302 +query= create table t6(a int) engine= NDB db= mysql + +Event type: Query length: 92 next pos: 1463 +query= insert into t5 (a) values (3) db= test + +Event type: Query length: 93 next pos: 1556 +query= insert into t6 (a) values (3) db= mysql + +Event type: User defined length: 0 next pos: 1626 +Event type: Rotate length: 44 next pos: 1670 +filename= master-bin.000002 pos= 4 + +Event type: Format_desc length: 102 next pos: 106 +Event type: Rotate length: 44 next pos: 0 +filename= master-bin.000003 pos= 4 + +Event type: Format_desc length: 102 next pos: 106 +Event type: Query length: 92 next pos: 266 +query= INSERT INTO db1.t1 VALUES(20) db= test + +Event type: Query length: 84 next pos: 350 +query= SavePoint mixed_cases db= test + +Event type: Query length: 115 next pos: 465 +query= INSERT INTO db1.t2 VALUES("in savepoint mixed_cases") db= db1 + +Event type: Query length: 91 next pos: 556 +query= INSERT INTO db1.t1 VALUES(40) db= db1 + +Event type: Query length: 86 next pos: 642 +query= ROLLBACK TO mixed_cases db= test + +Event type: Query length: 108 next pos: 750 +query= INSERT INTO db1.t2 VALUES("after rollback to") db= db1 + +Event type: Query length: 91 next pos: 841 +query= INSERT INTO db1.t1 VALUES(50) db= db1 + +Event type: User defined length: 0 next pos: 841 +# End of test diff --git a/replication_listener/tests/r/replication_listener.result b/replication_listener/tests/r/replication_listener.result new file mode 100644 index 000000000..216f72b9e --- /dev/null +++ b/replication_listener/tests/r/replication_listener.result @@ -0,0 +1,980 @@ +use test; +CREATE TABLE REPLICATION_LISTENER (c1 int); +"*** Test CHAR" +CREATE TABLE t1 (c1 CHAR(3), c2 CHAR(1) DEFAULT 'a'); +INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc'); +UPDATE t1 SET c1='aaaa' WHERE c1='a'; +Warnings: +Warning 1265 Data truncated for column 'c1' at row 1 +ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255); +UPDATE t1 SET c1='bbbbbbbbbbbbbbb' WHERE c1='bb'; +ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1); +Warnings: +Warning 1265 Data truncated for column 'c1' at row 1 +Warning 1265 Data truncated for column 'c1' at row 2 +Warning 1265 Data truncated for column 'c1' at row 3 +DELETE FROM t1; +DROP TABLE t1; +"*** Test INT" +CREATE TABLE t1 (c1 INT, c2 INT DEFAULT '1'); +INSERT INTO t1 (c1) VALUES (1),(-12),(123); +UPDATE t1 SET c1=2147483647 WHERE c1=1; +UPDATE t1 SET c1=-2147483648 WHERE c1=2147483647; +DELETE FROM t1; +DROP TABLE t1; +"*** Test SMALLINT" +CREATE TABLE t1 (c1 SMALLINT, c2 SMALLINT DEFAULT '1'); +INSERT INTO t1 (c1) VALUES (1),(-12),(123); +UPDATE t1 SET c1=32767 WHERE c1=1; +UPDATE t1 SET c1=-32768 WHERE c1=32767; +DELETE FROM t1; +DROP TABLE t1; +"*** Test TINYINT" +CREATE TABLE t1 (c1 TINYINT, c2 TINYINT DEFAULT '1'); +INSERT INTO t1 (c1) VALUES (1),(-12),(123); +UPDATE t1 SET c1=127 WHERE c1=1; +UPDATE t1 SET c1=-128 WHERE c1=127; +DELETE FROM t1; +DROP TABLE t1; +"**** Test TEXT" +CREATE TABLE t1 (c0 INT AUTO_INCREMENT PRIMARY KEY, c1 TEXT); +INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc'); +UPDATE t1 SET c1='aaaa' WHERE c1='a'; +ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255); +UPDATE t1 SET c1='bbbbbbbbbbbbbbb' WHERE c1='bb'; +ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1); +Warnings: +Warning 1265 Data truncated for column 'c1' at row 1 +Warning 1265 Data truncated for column 'c1' at row 2 +Warning 1265 Data truncated for column 'c1' at row 3 +DELETE FROM t1; +ALTER TABLE t1 CHANGE COLUMN c1 c1 TEXT; +INSERT INTO t1 (c1) VALUES ('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa'); +INSERT INTO t1 (c1) VALUES ('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa'); +DELETE FROM t1; +DROP TABLE t1; +"*** Testing TIMESTAMP" +CREATE TABLE t1 (c1 TIMESTAMP); +INSERT INTO t1 VALUES ("2010-05-18 14:17:59"); +DELETE FROM t1; +DROP TABLE t1; +"*** Testing DATETIME" +CREATE TABLE t1 (c1 DATETIME); +INSERT INTO t1 VALUES ("2005-05-18 14:17:59"); +DELETE FROM t1; +DROP TABLE t1; +"*** Testing FLOAT" +CREATE TABLE t1 (c1 FLOAT); +INSERT INTO t1 VALUES (1.0),(1.01),(-12.05),(115.321); +UPDATE t1 SET c1=0.000001 WHERE c1=1.0; +DELETE FROM t1; +DROP TABLE t1; +"*** Testing DOUBLE" +CREATE TABLE t1 (c1 DOUBLE); +INSERT INTO t1 VALUES (1.0),(1.01),(-12.05),(115.321); +UPDATE t1 SET c1=0.00000000001 WHERE c1=1.0; +DELETE FROM t1; +DROP TABLE t1; +DROP TABLE REPLICATION_LISTENER; +Event type: Incident length: 40 next pos: 4 +type= 175 message= Operation canceled + +Event type: Rotate length: 43 next pos: 0 +filename= searchbin.000001 pos= 4 + +Event type: Format_desc length: 103 next pos: 107 +Event type: Query length: 105 next pos: 212 +query= CREATE TABLE REPLICATION_LISTENER (c1 int) db= test + +Event type: Query length: 115 next pos: 327 +query= CREATE TABLE t1 (c1 CHAR(3), c2 CHAR(1) DEFAULT 'a') db= test + +Event type: User defined length: 0 next pos: 488 +INSERT INTO test.t1 VALUES (a, a) +INSERT INTO test.t1 VALUES (bb, a) +INSERT INTO test.t1 VALUES (ccc, a) +Event type: User defined length: 0 next pos: 713 +UPDATE test.t1 SET 0= aaa, 1= a WHERE 0= a AND 1= a LIMIT 1 +Event type: Query length: 107 next pos: 889 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255) db= test + +Event type: User defined length: 0 next pos: 1058 +UPDATE test.t1 SET 0= bbbbbbbbbbbbbbb, 1= a WHERE 0= bb AND 1= a LIMIT 1 +Event type: Query length: 105 next pos: 1232 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1) db= test + +Event type: User defined length: 0 next pos: 1390 +DELETE FROM test.t1 WHERE 0= a AND 1= a LIMIT 1 +DELETE FROM test.t1 WHERE 0= b AND 1= a LIMIT 1 +DELETE FROM test.t1 WHERE 0= c AND 1= a LIMIT 1 +Event type: Query length: 104 next pos: 1563 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 107 next pos: 1670 +query= CREATE TABLE t1 (c1 INT, c2 INT DEFAULT '1') db= test + +Event type: User defined length: 0 next pos: 1836 +INSERT INTO test.t1 VALUES (1, 1) +INSERT INTO test.t1 VALUES (-12, 1) +INSERT INTO test.t1 VALUES (123, 1) +Event type: User defined length: 0 next pos: 2063 +UPDATE test.t1 SET 0= 2147483647, 1= 1 WHERE 0= 1 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 2290 +UPDATE test.t1 SET 0= -2147483648, 1= 1 WHERE 0= 2147483647 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 2525 +DELETE FROM test.t1 WHERE 0= -2147483648 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= -12 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 123 AND 1= 1 LIMIT 1 +Event type: Query length: 104 next pos: 2698 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 117 next pos: 2815 +query= CREATE TABLE t1 (c1 SMALLINT, c2 SMALLINT DEFAULT '1') db= test + +Event type: User defined length: 0 next pos: 2969 +INSERT INTO test.t1 VALUES (1, 1) +INSERT INTO test.t1 VALUES (-12, 1) +INSERT INTO test.t1 VALUES (123, 1) +Event type: User defined length: 0 next pos: 3188 +UPDATE test.t1 SET 0= 32767, 1= 1 WHERE 0= 1 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 3407 +UPDATE test.t1 SET 0= -32768, 1= 1 WHERE 0= 32767 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 3630 +DELETE FROM test.t1 WHERE 0= -32768 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= -12 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 123 AND 1= 1 LIMIT 1 +Event type: Query length: 104 next pos: 3803 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 115 next pos: 3918 +query= CREATE TABLE t1 (c1 TINYINT, c2 TINYINT DEFAULT '1') db= test + +Event type: User defined length: 0 next pos: 4066 +INSERT INTO test.t1 VALUES (1, 1) +INSERT INTO test.t1 VALUES (-12, 1) +INSERT INTO test.t1 VALUES (123, 1) +Event type: User defined length: 0 next pos: 4281 +UPDATE test.t1 SET 0= 127, 1= 1 WHERE 0= 1 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 4496 +UPDATE test.t1 SET 0= -128, 1= 1 WHERE 0= 127 AND 1= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 4713 +DELETE FROM test.t1 WHERE 0= -128 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= -12 AND 1= 1 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 123 AND 1= 1 LIMIT 1 +Event type: Query length: 104 next pos: 4886 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 123 next pos: 5009 +query= CREATE TABLE t1 (c0 INT AUTO_INCREMENT PRIMARY KEY, c1 TEXT) db= test + +Event type: User defined length: 0 next pos: 5176 +INSERT INTO test.t1 VALUES (1, 'a') +INSERT INTO test.t1 VALUES (2, 'bb') +INSERT INTO test.t1 VALUES (3, 'ccc') +Event type: User defined length: 0 next pos: 5405 +UPDATE test.t1 SET 0= 1, 1= 'aaaa' WHERE 0= 1 AND 1= 'a' LIMIT 1 +Event type: Query length: 107 next pos: 5581 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(255) db= test + +Event type: User defined length: 0 next pos: 5752 +UPDATE test.t1 SET 0= 2, 1= bbbbbbbbbbbbbbb WHERE 0= 2 AND 1= bb LIMIT 1 +Event type: Query length: 105 next pos: 5926 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 CHAR(1) db= test + +Event type: User defined length: 0 next pos: 6088 +DELETE FROM test.t1 WHERE 0= 1 AND 1= a LIMIT 1 +DELETE FROM test.t1 WHERE 0= 2 AND 1= b LIMIT 1 +DELETE FROM test.t1 WHERE 0= 3 AND 1= c LIMIT 1 +Event type: Query length: 102 next pos: 6259 +query= ALTER TABLE t1 CHANGE COLUMN c1 c1 TEXT db= test + +Event type: User defined length: 0 next pos: 17418 +INSERT INTO test.t1 VALUES (4, 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa') +Event type: User defined length: 0 next pos: 28646 +INSERT INTO test.t1 VALUES (5, 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa') +Event type: User defined length: 0 next pos: 50922 +DELETE FROM test.t1 WHERE 0= 4 AND 1= 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa' LIMIT 1 +DELETE FROM test.t1 WHERE 0= 5 AND 1= 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaa' LIMIT 1 +Event type: Query length: 104 next pos: 51095 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 93 next pos: 51188 +query= CREATE TABLE t1 (c1 TIMESTAMP) db= test + +Event type: User defined length: 0 next pos: 51339 +INSERT INTO test.t1 VALUES (1274181479) +Event type: User defined length: 0 next pos: 51559 +DELETE FROM test.t1 WHERE 0= 1274181479 LIMIT 1 +Event type: Query length: 104 next pos: 51732 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 92 next pos: 51824 +query= CREATE TABLE t1 (c1 DATETIME) db= test + +Event type: User defined length: 0 next pos: 51971 +INSERT INTO test.t1 VALUES (2005-05-18 14:17:59) +Event type: User defined length: 0 next pos: 52187 +DELETE FROM test.t1 WHERE 0= 2005-05-18 14:17:59 LIMIT 1 +Event type: Query length: 104 next pos: 52360 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 89 next pos: 52449 +query= CREATE TABLE t1 (c1 FLOAT) db= test + +Event type: User defined length: 0 next pos: 52608 +INSERT INTO test.t1 VALUES (1) +INSERT INTO test.t1 VALUES (1.01) +INSERT INTO test.t1 VALUES (-12.05) +INSERT INTO test.t1 VALUES (115.321) +Event type: User defined length: 0 next pos: 52827 +UPDATE test.t1 SET 0= 1e-06 WHERE 0= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 53055 +DELETE FROM test.t1 WHERE 0= 1e-06 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 1.01 LIMIT 1 +DELETE FROM test.t1 WHERE 0= -12.05 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 115.321 LIMIT 1 +Event type: Query length: 104 next pos: 53228 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 90 next pos: 53318 +query= CREATE TABLE t1 (c1 DOUBLE) db= test + +Event type: User defined length: 0 next pos: 53493 +INSERT INTO test.t1 VALUES (1) +INSERT INTO test.t1 VALUES (1.01) +INSERT INTO test.t1 VALUES (-12.05) +INSERT INTO test.t1 VALUES (115.321) +Event type: User defined length: 0 next pos: 53720 +UPDATE test.t1 SET 0= 1e-11 WHERE 0= 1 LIMIT 1 +Event type: User defined length: 0 next pos: 53964 +DELETE FROM test.t1 WHERE 0= 1e-11 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 1.01 LIMIT 1 +DELETE FROM test.t1 WHERE 0= -12.05 LIMIT 1 +DELETE FROM test.t1 WHERE 0= 115.321 LIMIT 1 +Event type: Query length: 104 next pos: 54137 +query= DROP TABLE `t1` /* generated by server */ db= test + +Event type: Query length: 122 next pos: 54259 +query= DROP TABLE `REPLICATION_LISTENER` /* generated by server */ db= test + +"## End of binary log." diff --git a/replication_listener/tests/r/sys_vars.result b/replication_listener/tests/r/sys_vars.result new file mode 100644 index 000000000..64316a0f9 --- /dev/null +++ b/replication_listener/tests/r/sys_vars.result @@ -0,0 +1,329 @@ +DROP DATABASE IF EXISTS `sys_var`; +Warnings: +Note 1008 Can't drop database 'sys_var'; database doesn't exist +CREATE DATABASE `sys_var`; +USE `sys_var`; +CREATE TABLE t1 (c1 CHAR(3), c2 CHAR(1) DEFAULT 'a'); +INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc'); +UPDATE t1 SET c1='aaaa' WHERE c1='a'; +Warnings: +Warning 1265 Data truncated for column 'c1' at row 1 +DELETE FROM t1; +DROP TABLE t1; +SET @@auto_increment_increment=19; +SET @@auto_increment_offset=4; +SET @@character_set_client='latin2'; +SET @@collation_connection='latin2_bin'; +SET @@collation_server='geostd8_general_ci'; +SET @@time_zone='Japan'; +SET @@lc_time_names='sv_SE'; +SET @@collation_database='geostd8_bin'; +CREATE TABLE t1 (c1 DATE); +INSERT INTO t1 VALUES ('2006-01-01'); +SELECT c1 FROM t1; +c1 +2006-01-01 +DROP TABLE t1; +CREATE TABLE t1 (c1 INT AUTO_INCREMENT PRIMARY KEY, c2 TEXT); +INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc'); +Warnings: +Warning 1366 Incorrect integer value: 'a' for column 'c1' at row 1 +Warning 1366 Incorrect integer value: 'bb' for column 'c1' at row 2 +Warning 1366 Incorrect integer value: 'ccc' for column 'c1' at row 3 +SELECT * FROM t1; +c1 c2 +4 NULL +23 NULL +42 NULL +DROP TABLE t1; +DROP DATABASE `sys_var`; +Connected to server!! +Pos = 4 Event_type = 26 +Pos = 0 Event_type = 4 +Pos = 114 Event_type = 15 +Pos = 213 Event_type = 2 +Query = DROP DATABASE IF EXISTS `sys_var` DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 0 +sql_mode = -453830021431164924 +---------- + +Pos = 304 Event_type = 2 +Query = CREATE DATABASE `sys_var` DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 0 +sql_mode = -453830021431164924 +---------- + +Pos = 422 Event_type = 2 +Query = CREATE TABLE t1 (c1 CHAR(3), c2 CHAR(1) DEFAULT 'a') DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566648 +sql_mode = -453830021430627274 +---------- + +Pos = 493 Event_type = 2 +Query = BEGIN DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566656 +sql_mode = -453830021430758090 +---------- + +Pos = 606 Event_type = 2 +Query = INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc') DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566654 +sql_mode = -453830021430889162 +---------- + +Pos = 678 Event_type = 2 +Query = COMMIT DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566650 +sql_mode = -453830021431151306 +---------- + +Pos = 749 Event_type = 2 +Query = BEGIN DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 851 Event_type = 2 +Query = UPDATE t1 SET c1='aaaa' WHERE c1='a' DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 923 Event_type = 2 +Query = COMMIT DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 994 Event_type = 2 +Query = BEGIN DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 1074 Event_type = 2 +Query = DELETE FROM t1 DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 1146 Event_type = 2 +Query = COMMIT DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 1253 Event_type = 2 +Query = DROP TABLE `t1` /* generated by server */ DB = sys_var +catalog_name = std +character_set_client = 8 +collation_connection = 8 +collation_server = 8 +flag2 = 566652 +sql_mode = -453830021431020234 +---------- + +Pos = 1355 Event_type = 2 +Query = CREATE TABLE t1 (c1 DATE) DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1437 Event_type = 2 +Query = BEGIN DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1550 Event_type = 2 +Query = INSERT INTO t1 VALUES ('2006-01-01') DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1633 Event_type = 2 +Query = COMMIT DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1751 Event_type = 2 +Query = DROP TABLE `t1` /* generated by server */ DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1888 Event_type = 2 +Query = CREATE TABLE t1 (c1 INT AUTO_INCREMENT PRIMARY KEY, c2 TEXT) DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1970 Event_type = 2 +Query = BEGIN DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 1998 Event_type = 5 +Pos = 2122 Event_type = 2 +Query = INSERT INTO t1 (c1) VALUES ('a'),('bb'),('ccc') DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 2205 Event_type = 2 +Query = COMMIT DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 2323 Event_type = 2 +Query = DROP TABLE `t1` /* generated by server */ DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +Pos = 2423 Event_type = 2 +Query = DROP DATABASE `sys_var` DB = sys_var +auto_increment_increment = 19 +auto_increment_offset = 4 +catalog_name = std +character_set_client = 9 +collation_connection = 77 +collation_database = 93 +collation_server = 92 +flag2 = 0 +lc_time_names = 3 +sql_mode = -453830021430968318 +---------- + +"#End of binary log" diff --git a/replication_listener/tests/replay_sys_vars.cpp b/replication_listener/tests/replay_sys_vars.cpp new file mode 100644 index 000000000..fc0c767d7 --- /dev/null +++ b/replication_listener/tests/replay_sys_vars.cpp @@ -0,0 +1,103 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include +#include +#include "binlog_api.h" +#include "utilities.h" + +int main (int argc, char* argv[]) +{ + mysql::Binary_log + binlog(mysql::system::create_transport("mysql://root@127.0.0.1:13000")); + + if (binlog.connect()) + { + std::cerr << "Can't connect!" << std::endl; + exit(1); + } + std::cout << "Connected to server!!" << std::endl; + + if (binlog.set_position(4) != ERR_OK) + { + std::cerr << "Can't reposition the binary log reader." + << std::endl; + exit(1); + } + + Binary_log_event *event; + + bool quit=false; + while (!quit) + { + if (binlog.wait_for_next_event (&event)) + { + quit= true; + continue; + } + + std::cout << "Pos = " + << event->header()->next_position + <<" Event_type = " + << event->get_event_type() + << std::endl; + + switch (event->header()->type_code) + { + case mysql::QUERY_EVENT: + { + const mysql::Query_event *qev= static_cast(event); + std::cout << "Query = " + << qev->query + << " DB = " + << qev->db_name + << std::endl; + std::map my_var_map; + + if (server_var_decoder(&my_var_map, qev->variables)) + return (EXIT_FAILURE); + + mysql::Converter converter; + + typedef std::map::value_type my_pair; + BOOST_FOREACH (my_pair &ref, my_var_map) + { + std::string value; + converter.to(value, ref.second); + std::cout << ref.first + << " = " + << value + << std::endl; + } + std::cout << "----------" << std::endl << std::endl; + + if (qev->query.find("DROP DATABASE `sys_var`") != std::string::npos + || qev->query.find("DROP DATABASE sys_var") != std::string::npos) + quit= true; + } + break; + default: + break; + } + delete event; + } + return 0; +} + diff --git a/replication_listener/tests/replaybinlog.cpp b/replication_listener/tests/replaybinlog.cpp new file mode 100644 index 000000000..6095b75d6 --- /dev/null +++ b/replication_listener/tests/replaybinlog.cpp @@ -0,0 +1,330 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ +#include +#include +#include "binlog_api.h" + +bool is_text_field(Value &val) +{ + if (val.type() == mysql::system::MYSQL_TYPE_VARCHAR || + val.type() == mysql::system::MYSQL_TYPE_BLOB || + val.type() == mysql::system::MYSQL_TYPE_MEDIUM_BLOB || + val.type() == mysql::system::MYSQL_TYPE_LONG_BLOB) + return true; + return false; +} + +void table_insert(const std::string& table_name, mysql::Row_of_fields &fields) +{ + std::cout << "INSERT INTO " + << table_name + << " VALUES ("; + mysql::Row_of_fields::iterator field_it= fields.begin(); + mysql::Converter converter; + do { + /* + Each row contains a vector of Value objects. The converter + allows us to transform the value into another + representation. + */ + std::string str; + converter.to(str, *field_it); + if (is_text_field(*field_it)) + std::cout << '\''; + std::cout << str; + if (is_text_field(*field_it)) + std::cout << '\''; + ++field_it; + if (field_it != fields.end()) + std::cout << ", "; + } while(field_it != fields.end()); + std::cout << ")" << std::endl; +} + + +void table_update(const std::string& table_name, + mysql::Row_of_fields &old_fields, mysql::Row_of_fields &new_fields) +{ + std::cout << "UPDATE " + << table_name + << " SET "; + + int field_id= 0; + mysql::Row_of_fields::iterator field_it= new_fields.begin(); + mysql::Converter converter; + do { + std::string str; + converter.to(str, *field_it); + std::cout << field_id << "= "; + if (is_text_field(*field_it)) + std::cout << '\''; + std::cout << str; + if (is_text_field(*field_it)) + std::cout << '\''; + ++field_it; + ++field_id; + if (field_it != new_fields.end()) + std::cout << ", "; + } while(field_it != new_fields.end()); + std::cout << " WHERE "; + field_it= old_fields.begin(); + field_id= 0; + do { + std::string str; + converter.to(str, *field_it); + std::cout << field_id << "= "; + if (is_text_field(*field_it)) + std::cout << '\''; + std::cout << str; + if (is_text_field(*field_it)) + std::cout << '\''; + ++field_it; + ++field_id; + if (field_it != old_fields.end()) + std::cout << " AND "; + } while(field_it != old_fields.end()); + std::cout << " LIMIT 1" << std::endl; + +} + + +void table_delete(const std::string& table_name, mysql::Row_of_fields &fields) +{ + std::cout << "DELETE FROM " + << table_name + << " WHERE "; + mysql::Row_of_fields::iterator field_it= fields.begin(); + int field_id= 0; + mysql::Converter converter; + do { + + std::string str; + converter.to(str, *field_it); + std::cout << field_id << "= "; + if (is_text_field(*field_it)) + std::cout << '\''; + std::cout << str; + if (is_text_field(*field_it)) + std::cout << '\''; + ++field_it; + ++field_id; + if (field_it != fields.end()) + std::cout << " AND "; + } while(field_it != fields.end()); + std::cout << " LIMIT 1" << std::endl; +} + +class Incident_handler : public mysql::Content_handler +{ +public: + Incident_handler() : mysql::Content_handler() {} + + mysql::Binary_log_event *process_event(mysql::Incident_event *incident) + { + std::cout << "Event type: " + << mysql::system::get_event_type_str(incident->get_event_type()) + << " length: " << incident->header()->event_length + << " next pos: " << incident->header()->next_position + << std::endl; + std::cout << "type= " + << (unsigned)incident->type + << " message= " + << incident->message + << std::endl + << std::endl; + /* Consume the event */ + delete incident; + return 0; + } +}; + +class Replay_binlog : public mysql::Content_handler +{ +public: + Replay_binlog() : mysql::Content_handler() {} + mysql::Binary_log_event *process_event(mysql::Binary_log_event *event) + { + if (event->get_event_type() != mysql::USER_DEFINED) + return event; + std::cout << "Event type: " + << mysql::system::get_event_type_str(event->get_event_type()) + << " length: " << event->header()->event_length + << " next pos: " << event->header()->next_position + << std::endl; + mysql::Transaction_log_event *trans= static_cast(event); + int row_count=0; + /* + The transaction event we created has aggregated all row events in an + ordered list. + */ + BOOST_FOREACH(mysql::Binary_log_event * event, trans->m_events) + { + switch (event->get_event_type()) + { + case mysql::WRITE_ROWS_EVENT: + case mysql::DELETE_ROWS_EVENT: + case mysql::UPDATE_ROWS_EVENT: + mysql::Row_event *rev= static_cast(event); + boost::uint64_t table_id= rev->table_id; + // BUG: will create a new event header if the table id doesn't exist. + Binary_log_event * tmevent= trans->table_map()[table_id]; + mysql::Table_map_event *tm; + if (tmevent != NULL) + tm= static_cast(tmevent); + else + { + std::cout << "Table id " + << table_id + << " was not registered by any preceding table map event." + << std::endl; + continue; + } + /* + Each row event contains multiple rows and fields. The Row_iterator + allows us to iterate one row at a time. + */ + mysql::Row_event_set rows(rev, tm); + /* + Create a fuly qualified table name + */ + std::ostringstream os; + os << tm->db_name << '.' << tm->table_name; + mysql::Row_event_set::iterator it= rows.begin(); + do { + mysql::Row_of_fields fields= *it; + + if (event->get_event_type() == mysql::WRITE_ROWS_EVENT) + table_insert(os.str(),fields); + if (event->get_event_type() == mysql::UPDATE_ROWS_EVENT) + { + ++it; + mysql::Row_of_fields fields2= *it; + table_update(os.str(),fields,fields2); + } + if (event->get_event_type() == mysql::DELETE_ROWS_EVENT) + table_delete(os.str(),fields); + } while (++it != rows.end()); + } // end switch + } // end BOOST_FOREACH + /* Consume the event */ + delete trans; + return 0; + } +}; +/* + * + */ +int main(int argc, char** argv) +{ + if (argc != 2) + { + fprintf(stderr,"Usage:\n\treplaybinlog URL\n\nExample:\n\treplaybinlog mysql://root:mypasswd@127.0.0.1:3306\n\n"); + return (EXIT_FAILURE); + } + + mysql::Binary_log binlog(mysql::system::create_transport(argv[1])); + + + /* + Attach a custom event parser which produces user defined events + */ + mysql::Basic_transaction_parser transaction_parser; + Incident_handler incident_hndlr; + Replay_binlog replay_hndlr; + + binlog.content_handler_pipeline()->push_back(&transaction_parser); + binlog.content_handler_pipeline()->push_back(&incident_hndlr); + binlog.content_handler_pipeline()->push_back(&replay_hndlr); + + if (binlog.connect()) + { + fprintf(stderr,"Can't connect to the master.\n"); + return (EXIT_FAILURE); + } + + if (binlog.set_position(4) != ERR_OK) + { + fprintf(stderr,"Can't reposition the binary log reader.\n"); + return (EXIT_FAILURE); + } + + Binary_log_event *event; + + bool quit= false; + while(!quit) + { + /* + Pull events from the master. This is the heart beat of the event listener. + */ + if (binlog.wait_for_next_event(&event)) + { + quit= true; + continue; + } + + /* + Print the event + */ + std::cout << "Event type: " + << mysql::system::get_event_type_str(event->get_event_type()) + << " length: " << event->header()->event_length + << " next pos: " << event->header()->next_position + << std::endl; + + /* + Perform a special action based on event type + */ + + switch(event->header()->type_code) + { + case mysql::QUERY_EVENT: + { + const mysql::Query_event *qev= static_cast(event); + std::cout << "query= " + << qev->query + << " db= " + << qev->db_name + << std::endl + << std::endl; + if (qev->query.find("DROP TABLE REPLICATION_LISTENER") != std::string::npos || + qev->query.find("DROP TABLE `REPLICATION_LISTENER`") != std::string::npos) + { + quit= true; + } + } + break; + + case mysql::ROTATE_EVENT: + { + mysql::Rotate_event *rot= static_cast(event); + std::cout << "filename= " + << rot->binlog_file.c_str() + << " pos= " + << rot->binlog_pos + << std::endl + << std::endl; + } + break; + + } // end switch + delete event; + } // end loop + return (EXIT_SUCCESS); +} diff --git a/replication_listener/tests/std-data/binlog_savepoint.000001 b/replication_listener/tests/std-data/binlog_savepoint.000001 new file mode 100644 index 0000000000000000000000000000000000000000..5109042a18479cd121e3dbab6566f2772dbdf46a GIT binary patch literal 1014 zcmeyDl$p10a=kY{69WT78Uq7E76S;dFqrBY>X{hprlcm7rt9Y9r-MWZV_^$k1`Y-x z1{M|;79j?PU1_lNP1_qEkSdfjmxFm&zg8>9fQj1F%oLt>K z{Xi}Sn-Rmnz`(`Gz#u@98J>Q@u0bIRo_-AU`v&L?Jh`A~hvGIk7mk7;a`U0|UcF6f>Fe`#B}akO9NFMlk0pW#%aq zCzhoapj)Vf@J2K!@|lo>h#V{7A!LFSLSYOH3{5CT6BC0${ysiVj?Uf+A^upyD2IW8 z;T?*pcY85`Oiy88U^oUg0>lF`SQr?j7#J8F7#Lt83~bEBB`GW% z3?NvNT3o`AT$GwvlB!UWn3R*MP-3W&sF0agqN$LYm!6rIYO9c$mzSTC1h*rVfq_9A zY#5keU|?XyZ%1xrabXUcB}N1+ab;j&C}3n@;D9@uC`+7N-97!_E{$PeU^oMIB$!}e zU?3(mGV_X4i%LL2kgrf;sGyOksZf@fQ<_?=pkb&9H#?SrfkBfA6v8mGiEy;&d{7MYGK0*9*+G=wP%SY* zw+(qQsRkYC;fUBRL3A3^&7NxElilLlhgyzIXQb_4Nz^#S#lBkLoZm dFtmZ42u=$O3=Fx6#U-glx=ERNdIlh11OSK~7kmH! literal 0 HcmV?d00001 diff --git a/replication_listener/tests/std-data/searchbin.000001 b/replication_listener/tests/std-data/searchbin.000001 new file mode 100644 index 0000000000000000000000000000000000000000..2bf6221dd7e62cdc1cb1005cf8a6cfc4fdf9fc7c GIT binary patch literal 32739 zcmeyDl$m$##7|#-Mg|6kJO&1aA_fKqMg|rJQ#~_1W8GX+-IUa%(sbRN{B#Ba0A!4? z1up{!gAfA?3k!=7149@CixdX~0|N&K2NOtl*P;0)Pfz^xWdhk2&A`BL79`04;(?@D z7#O5LG{^-Int_eExFm%|kwKAxgP|m~xP&34D8E1;_BuY>Jy@%o~Vwn(uIM6!GVd?;Bs0C-D?nVWsSxJq6Y3hQpaF8Cj)rxGLnm385kHolk8$=e_vnE z5V(^;-Zp2Z%-hKf3=FfFL5Y|D%XO+p38A)J(i8pKYlq&nFdH93Jwh}EpL3SvXl0De!hYf-bS zF9QRE4I8PBb#e7^4RKX)3-b3>C^1Ayp^a=5244mP1H((wT@>UW08O9?C58zK`dSL< zsd=eIi6yBi3Q3g;#i>PQsYMD}`p;n14k#ytu#@U@l!6>mQh`b>aM|kV7lJ5P4b?T_ zR)Gqb8SJEn3pk?SW`I%^Bd87~sVc))t{Q6UXy_UmY3gVg8W|%T3o2&ZI7oFYBoDw{ z3-WOn$%df%IF*5c;XTPd#>o3dh9>4F7RF{K=7?g|5bjWrZ%sI<;M)q44MFuSsHA(& zNosP$@U1S~yA}xV!o|!{{H?=91%DTiYzV5qK?TrWE>iuCS^%N=iiw*-Ux5msEN+rr zL~;RC%D}*IpJaQm6+pqhjy^t~ej(se2*$x(6e;tN8bYX11}chrct{N(GK->%Bs&&M zQ6$PsnU50~7#K={ zwd`5JM{0~<@$DOu4MFuSsO+)iC)Kxj%APuY3Vj7Cd!CW*B9hA2rZd{%A6<>l3he{nN!Wcz;Kmhdoar!15k%c!7((%Ki<>NImp%5)h|RL zAjs3#F(^{O+ci=LG#nA)8WDo%(}21olA@%>K0M-BL1Q{H3=9mWqM%>`k6MBl@OCF? z&}%VR4x|z!Ma-ZezH$l6pcmXWP@m-m$-Y60bx@G#h>;y6;4lCUdi9Heyi1C=F>)=I zK`#`)ULo0;XnqBC_3gz;btfr;8}x!Z8I+vN zB}jELS`dS3<^>Y83SvXlto(#z*TS?wxaT0y`91W1s06_}@ zH122$84VD$5J2OOrjXG9K??yi?q~`b4G^>tK;w?4kkJ4^3js9lXbKq(5VR0Lt zK;w?4kkJ4^3js9lXbKq(5VR0LJtOB;{(*Rgol}_>1Qx zCIEFkCD~ ziy9@+ifSBJVzROYM+S$u`hu>iWI&Cg5(WkaR}g_5AViymwkjKTC!>;)fuVt}fvK*c zg@U1pm7%$nsihLa{h$N3CzX)vezX_`EmyyWZW#CkY8-)qB@jRkQU+bPgd7M2&A^jR zGfL5XN6;`dUxCu;1=3waaypG+U|`TG10@|&7UN?}r=Y7UL1`5c&7hbmC?ho>P?Kj4 z=;U*f-G@6_8kpivmZ04eishub7cJsIo=zp%5L8ctlH;awQX>UVa{NxRgV1~hN{;ar zB)f>@a5 zo&o%Z0FZANS5d*Y&q+1})wiG=Xac&ChFTRuWi^Gq0_DJmq`QdZ92mvGz+hcNYCL1h zfiC``PCl-v)j@p?slk96FQ6>=nPk^do&_yxNp&}tELcObA*i0u0_~!!B{gbrWkFCj zG{BP&wd<(h<$RJ2LG>~yAMU9m)ysHlLdJRueFe&gne`;Qh~#_-Drz57WDmA` +#include +#include +class TestBinaryLog : public ::testing::Test { + protected: + TestBinaryLog() { + // You can do set-up work for each test here. + } + + virtual ~TestBinaryLog() { + // You can do clean-up work that doesn't throw exceptions here. + } + + // If the constructor and destructor are not enough for setting up + // and cleaning up each test, you can define the following methods: + + virtual void SetUp() { + // Code here will be called immediately after the constructor (right + // before each test). + } + + virtual void TearDown() { + // Code here will be called immediately after each test (right + // before the destructor). + } + +}; + + +TEST_F(TestBinaryLog, ConnectTo_Bogus) +{ + using mysql::system::create_transport; + mysql::Binary_log *binlog= new mysql::Binary_log(create_transport("bogus-url")); + EXPECT_GT(binlog->connect(), 0); + delete(binlog); +} + +TEST_F(TestBinaryLog, ConnectTo_TcpIp) +{ + using mysql::system::create_transport; + mysql::Binary_log *binlog= new mysql::Binary_log(create_transport("mysql://root@127.0.0.1:13000")); + EXPECT_EQ(binlog->connect(),0); + delete binlog; +} + +TEST_F(TestBinaryLog, Connected_TcpIp) +{ + using mysql::system::create_transport; + mysql::Binary_log *binlog= new mysql::Binary_log(create_transport("mysql://root@127.0.0.1:13000")); + EXPECT_EQ(binlog->connect(),0); + mysql::Binary_log_event *event; + binlog->wait_for_next_event(&event); + EXPECT_TRUE(event->get_event_type() == mysql::ROTATE_EVENT); + delete event; + binlog->wait_for_next_event(&event); + EXPECT_TRUE(event->get_event_type() == mysql::FORMAT_DESCRIPTION_EVENT); + delete event; +} + +TEST_F(TestBinaryLog, SetPosition) +{ + using mysql::system::create_transport; + mysql::Binary_log_event *event; + mysql::Binary_log *binlog= new mysql::Binary_log(create_transport("mysql://root@127.0.0.1:13000")); + EXPECT_EQ(binlog->connect(),0); + std::string filename; + unsigned long position= binlog->get_position(filename); + int result= binlog->set_position(filename,4); + EXPECT_EQ(result,ERR_OK); + position= binlog->get_position(); + EXPECT_EQ(position, 4); + + binlog->wait_for_next_event(&event); +} + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + + // TODO require that the connection string is passed as an argument to the + // test suite. + std::cout << "Important: Make sure that the MySQL server is started using " + "'mysql-test-run --mysqld=--log_bin=searchbin --mysqld=--binlog_format=row --start " + "alias' and that the server is listening on IP 127.0.0.1 and port" + " 13000." << std::endl; + return RUN_ALL_TESTS(); +} diff --git a/replication_listener/tests/test-transport.cpp b/replication_listener/tests/test-transport.cpp new file mode 100644 index 000000000..6d5ae451a --- /dev/null +++ b/replication_listener/tests/test-transport.cpp @@ -0,0 +1,136 @@ +/* +Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights +reserved. + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; version 2 of +the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +02110-1301 USA +*/ + +#include "binlog_api.h" +#include +#include +#include + +using mysql::system::create_transport; +using mysql::system::Binary_log_driver; +using mysql::system::Binlog_tcp_driver; +using mysql::system::Binlog_file_driver; + +class TestTransport : public ::testing::Test { +protected: + TestTransport() { } + virtual ~TestTransport() { } +}; + +void CheckTcpValues(Binlog_tcp_driver *tcp, + const char *user, const char *passwd, + const char *host, unsigned long port) +{ + EXPECT_EQ(tcp->port(), port); + EXPECT_EQ(tcp->host(), host); + EXPECT_EQ(tcp->user(), user); + EXPECT_EQ(tcp->password(), passwd); +} + + +/** + Test a TCP transport URL. + */ +void TestTcpTransport(const char *uri, + const char *user, const char *passwd, + const char *host, unsigned long port) +{ + Binary_log_driver *drv= create_transport(uri); + EXPECT_TRUE(drv); + Binlog_tcp_driver* tcp = dynamic_cast(drv); + EXPECT_TRUE(tcp); + CheckTcpValues(tcp, user, passwd, host, port); + delete drv; +} + +/** + Test a file transport URL. + + @note We do not support user, password, host, or port in file URLs + yet, so we ignore those for the time being. + */ +void TestFileTransport(const char *uri_arg, const char *filename_arg) +{ + Binary_log_driver *drv= create_transport(uri_arg); + EXPECT_TRUE(drv); + Binlog_file_driver* file = dynamic_cast(drv); + EXPECT_TRUE(file); + std::string filename; + unsigned long position; + file->get_position(&filename, &position); + EXPECT_EQ(filename, filename_arg); + delete file; +} + + +TEST_F(TestTransport, CreateTransport_TcpIp) { + TestTcpTransport("mysql://nosuchuser@128.0.0.1:99999", + "nosuchuser", "", "128.0.0.1", 99999); + TestTcpTransport("mysql://nosuchuser@128.0.0.1:3306", + "nosuchuser", "", "128.0.0.1", 3306); + TestTcpTransport("mysql://nosuchuser:magic@128.0.0.1:3306", + "nosuchuser", "magic", "128.0.0.1", 3306); + TestTcpTransport("mysql://nosuchuser:magic@example.com:3306", + "nosuchuser", "magic", "example.com", 3306); + TestTcpTransport("mysql://somebody@128.0.0.1", + "somebody", "", "128.0.0.1", 3306); + + // Here are tests for bad URIs + + // Missing username + EXPECT_FALSE(create_transport("mysql://:xyzzy@128.0.0.1:99999")); + EXPECT_FALSE(create_transport("mysql://@128.0.0.1:99999")); + + // Missing hostname + EXPECT_FALSE(create_transport("mysql://somebody@:99999")); + EXPECT_FALSE(create_transport("mysql://somebody")); + EXPECT_FALSE(create_transport("mysql://somebody:xyzzy")); +} + +TEST_F(TestTransport, CreateTransport_File) { + TestFileTransport("file:///master-bin.000003", "/master-bin.000003"); + TestFileTransport("file:///etc/foo/master-bin.000003", "/etc/foo/master-bin.000003"); + + // Here are tests for bad URLs + const char *bad_urls[] = { + "file:master-bin.000003", + "file://somebody/master-bin.000003", + "file://somebody@localhost/master-bin.000003", + "file://master-bin.000003", + "file://somebody:xyzzy@localhost/master-bin.000003", + }; + + for (int i = 0 ; i < sizeof(bad_urls)/sizeof(*bad_urls) ; ++i) + EXPECT_FALSE(create_transport(bad_urls[i])); +} + +TEST_F(TestTransport, CreateTransport_Bogus) +{ + EXPECT_FALSE(create_transport("bogus-url")); + EXPECT_FALSE(create_transport("fil")); + EXPECT_FALSE(create_transport("fil://almost-correct.txt")); + EXPECT_FALSE(create_transport("file")); + EXPECT_FALSE(create_transport("mysq:")); +} + +int main(int argc, char **argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/table_replication_consistency/CMakeLists.txt b/table_replication_consistency/CMakeLists.txt new file mode 100644 index 000000000..2627293cc --- /dev/null +++ b/table_replication_consistency/CMakeLists.txt @@ -0,0 +1,44 @@ +project (skysql_gateway_table_replication_concistency) +cmake_minimum_required (VERSION 2.6) + +# This configuration file builds both the static and shared version of +# the library. +set(table_replication_consistency_sources + table_replication_consistency.cpp table_replication_listener.cpp) + +# ---------- Find Boost Headers/Libraries ----------------------- +SET(Boost_DEBUG FALSE) +SET(Boost_FIND_REQUIRED TRUE) +SET(Boost_FIND_QUIETLY TRUE) +SET(Boost_USE_STATIC_LIBS FALSE) +SET(Boost_ADDITIONAL_VERSIONS "1.41" "1.41.0") +FIND_PACKAGE(Boost REQUIRED system thread) + +# --------- Find crypt +FIND_LIBRARY(LIB_CRYPTO crypto /opt/local/lib /opt/lib /usr/lib /usr/local/lib) +LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) +INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) + +# Find MySQL client library and header files +find_library(MySQL_LIBRARY NAMES mysqlclient_r mysqlclient PATHS +/usr/lib64/mysql /usr/lib/mysql) +find_path(MySQL_INCLUDE_DIR mysql.h + /usr/local/include/mysql /usr/include/mysql) +include_directories(${MySQL_INCLUDE_DIR}) + +# Configure for building static library +add_library(table_replication_consistency_static STATIC ${table_replication_consistency_sources}) +target_link_libraries(table_replication_consistency_static crypto ${Boost_LIBRARIES} ${MySQL_LIBRARY}) +set_target_properties(table_replication_consistency_static PROPERTIES + OUTPUT_NAME "table_replication_consistency") + +# Configure for building shared library +add_library(table_replication_consistency_shared SHARED ${table_replication_consistency_sources}) +target_link_libraries(table_replication_consistency_shared crypto ${Boost_LIBRARIES} ${MySQL_LIBRARY}) + +set_target_properties(table_replication_consistency_shared PROPERTIES + VERSION 0.1 SOVERSION 1 + OUTPUT_NAME "table_replication_consistency") + +install(TARGETS table_replication_consistency_shared LIBRARY DESTINATION lib) +install(TARGETS table_replication_consistency_static ARCHIVE DESTINATION lib) diff --git a/table_replication_consistency/table_replication_listener.cpp b/table_replication_consistency/table_replication_listener.cpp new file mode 100644 index 000000000..52162fab4 --- /dev/null +++ b/table_replication_consistency/table_replication_listener.cpp @@ -0,0 +1,488 @@ +/* +Copyright (C) 2013, SkySQL Ab + + +This file is distributed as part of the SkySQL Gateway. It is free +software: you can redistribute it and/or modify it under the terms of the +GNU General Public License as published by the Free Software Foundation, +version 2. + +This program is distributed in the hope that it will be useful, but WITHOUT +ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +details. + +You should have received a copy of the GNU General Public License along with +this program; if not, write to the Free Software Foundation, Inc., 51 +Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Author: Jan Lindström jan.lindstrom@skysql.com +Created: 20-06-2013 +Updated: +*/ + +#include "binlog_api.h" +#include "my_pthread.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "listener_exception.h" +#include "table_replication_consistency.h" + + +using mysql::Binary_log; +using mysql::system::create_transport; +using namespace std; +using namespace mysql::system; + +/* Protect internal functions and structures by usage of namespaces. */ +namespace mysql { + +namespace table_replicaton_listener { + +/* Table Consistency data structure */ +typedef struct { + std::string database_dot_table; /* Fully qualified db.table name, + primary key. */ + boost::uint32_t server_id; /* Server id */ + std::string gtid; /* Global transaction id */ + boost::uint64_t binlog_pos; /* Binlog position */ + bool gtid_known; /* Is gtid known ? */ +} table_consistency_t; + + +/* STL multimap containing the consistency information. Multimap is used +because same table can be found from several servers. */ +multimap table_consistency_map; + +boost::mutex table_consistency_mutex; /* This mutex is used protect + abve data structure from + multiple threads */ + +/* We use this map to store constructed binary log connections */ +map table_replication_listeners; + +boost::mutex table_replication_mutex; /* This mutex is used protect + abve data structure from + multiple threads */ + +/***********************************************************************//** +This is the function that is executed by replication listeners. +At startup it will try to connect the server and start listening +the actual replication stream. +@return Pointer to error message. */ +void* tb_replication_listener_reader( +/*=================================*/ + void * arg) /*!< in: Replication listener + definition. */ + +{ + replication_listener_t *rlt = (replication_listener_t*)arg; + char *uri = rlt->server_url; + map tid2tname; + map::iterator tb_it; + pthread_t id = pthread_self(); + string database_dot_table; + const char* server_type; + Gtid gtid(0,1,31); + bool gtid_known = false; + + try { + Binary_log binlog(create_transport(uri), uri); + binlog.connect(gtid); + + { + // Need to be protected by mutex to avoid concurrency problems + boost::mutex::scoped_lock lock(table_replication_mutex); + table_replication_listeners[rlt->listener_id] = &binlog; + } + + server_type = binlog.get_mysql_server_type_str(); + + cout << "Server " << uri << " type: " << server_type << endl; + + Binary_log_event *event; + + while (true) { + Log_event_header *lheader; + + int result = binlog.wait_for_next_event(&event); + + if (result == ERR_EOF) + break; + + lheader = event->header(); + + switch(event->get_event_type()) { + + case QUERY_EVENT: { + Query_event *qevent = dynamic_cast(event); + // TODO: Do real handling i.e.: + // statement based replication: parse the query and find out the db + // and table + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " query " << qevent->query << " db " << qevent->db_name + << std::endl; + break; + } + + case GTID_EVENT_MARIADB: + case GTID_EVENT_MYSQL: + { + Gtid_event *gevent = dynamic_cast(event); + + if (binlog.get_mysql_server_type() == MYSQL_SERVER_TYPE_MARIADB) { + gtid_known = true; + gtid = Gtid(gevent->domain_id, gevent->server_id, gevent->sequence_number); + } else { + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " GTID " << gevent->domain_id << "-" << gevent->server_id << "-" << gevent->sequence_number + << std::endl; + } + + break; + + } + + // With this event we know to which database and table the + // following events will be targeted. + case TABLE_MAP_EVENT: + { + Table_map_event *table_map_event= dynamic_cast(event); + database_dot_table= table_map_event->db_name; + database_dot_table.append("."); + database_dot_table.append(table_map_event->table_name); + tid2tname[table_map_event->table_id]= database_dot_table; + break; + } + + /* This is row based replication event containing INSERT, + UPDATE or DELETE clause broken to rows */ + case WRITE_ROWS_EVENT: + case UPDATE_ROWS_EVENT: + case DELETE_ROWS_EVENT: + { + Row_event *revent = dynamic_cast(event); + bool not_found = false; + table_consistency_t *tc=NULL; + + tb_it= tid2tname.begin(); + tb_it= tid2tname.find(revent->table_id); + if (tb_it != tid2tname.end()) + { + database_dot_table= tb_it->second; + } + + // Need to be protected by mutex to avoid concurrency problems + boost::mutex::scoped_lock lock(table_consistency_mutex); + + not_found = true; + + if(table_consistency_map.find(database_dot_table) == table_consistency_map.end()) { + not_found = true; + } else { + // Loop through the consistency values + for(multimap::iterator i = table_consistency_map.find(database_dot_table); + i != table_consistency_map.end(); ++i) { + tc = (*i).second; + if (tc->server_id == lheader->server_id) { + not_found = false; + break; + } + } + } + + if(not_found) { + // Consistency for this table and server not found, insert a record + table_consistency_t* tb_c = (table_consistency_t*) malloc(sizeof(table_consistency_t)); + tb_c->database_dot_table = database_dot_table; + tb_c->server_id = lheader->server_id; + tb_c->binlog_pos = lheader->next_position; + tb_c->gtid_known = gtid_known; + tb_c->gtid = gtid.get_string(); + + table_consistency_map.insert(pair(database_dot_table,tb_c)); + } else { + // Consistency for this table and server found, update the + // consistency values + + tc->binlog_pos = lheader->next_position; + tc->gtid = gtid.get_string(); + tc->gtid_known = gtid_known; + } + + + std::cout << "Thread: " << id << " server_id " << lheader->server_id + << " position " << lheader->next_position << " : Found event of type " + << event->get_event_type() + << " txt " << get_event_type_str(event->get_event_type()) + << " table " << revent->table_id + << " tb " << database_dot_table + << std::endl; + break; + + } + default: + break; + } // switch + } // while + } // try + catch(ListenerException e) + { + std::cerr << "Listener exception: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + catch(boost::system::error_code e) + { + std::cerr << "Listener system error: " << e.message() << std::endl; + // Re-Throw this one. + throw; + } + // Try and catch all exceptions + catch(std::exception const& e) + { + std::cerr << "Listener other error: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + // Rest of them + catch(...) + { + std::cerr << "Unknown exception: " << std::endl; + // Re-Throw this one. + // It was not handled so you want to make sure it is handled correctly by + // the OS. So just allow the exception to keep propagating. + throw; + } + + // Thread execution will end here + pthread_exit(NULL); + return NULL; + +} + +/***********************************************************************//** +This function is to shutdown the replication listener and free all +resources on table consistency. This function (TODO) will store +the current status on metadata to MySQL server. +@return 0 on success, error code at failure. */ +int +tb_replication_listener_shutdown( +/*=================================*/ + boost::uint32_t server_id, /*!< in: server id */ + char **error_message) /*!< out: error message */ +{ + // Need to be protected by mutex to avoid concurrency problems + boost::mutex::scoped_lock lock(table_replication_mutex); + map::iterator b_it; + + b_it = table_replication_listeners.find(server_id); + + if ( b_it != table_replication_listeners.end()) { + Binary_log *binlog = (*b_it).second; + try { + binlog->shutdown(); + } + catch(ListenerException e) + { + std::cerr << "Listener exception: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + catch(boost::system::error_code e) + { + std::cerr << "Listener system error: " << e.message() << std::endl; + // Re-Throw this one. + throw; + } + // Try and catch all exceptions + catch(std::exception const& e) + { + std::cerr << "Listener other error: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + // Rest of them + catch(...) + { + std::cerr << "Unknown exception: " << std::endl; + // Re-Throw this one. + // It was not handled so you want to make sure it is handled correctly by + // the OS. So just allow the exception to keep propagating. + throw; + } + + return (0); + } else { + std::string err = std::string("Replication listener for server_id = ") + to_string(server_id) + std::string(" not active "); + *error_message = (char *)malloc(err.size()+1); + strcpy(*error_message, err.c_str()); + return (1); + } +} + +/***********************************************************************//** +With this fuction client can request table consistency status for a +single table. As a return client will receive a number of consistency +status structures. Client must allocate memory for consistency result +array and provide the maximum number of values returned. At return +there is information how many results where available. +@return 0 on success, error code at failure. */ +int +tb_replication_listener_consistency( +/*================================*/ + char *db_dot_table, /*!< in: Fully qualified table + name. */ + table_consistency_t *tb_consistency, /*!< out: Consistency values. */ + boost::uint32_t server_no) /*!< in: Server */ +{ + bool found = false; + boost::uint32_t cur_server = 0; + table_consistency_t *tc=NULL; + + // Need to be protected by mutex to avoid concurrency problems + boost::mutex::scoped_lock lock(table_consistency_mutex); + + // Loop through the consistency values + for(multimap::iterator i = table_consistency_map.find(db_dot_table); + i != table_consistency_map.end(); ++i, ++cur_server) { + if (cur_server == server_no) { + tc = (*i).second; + memcpy(tb_consistency, tc, sizeof(table_consistency_t)); + found = true; + break; + } + } + + if (found) { + return (1); + } else { + return (0); + } + +} + +/***********************************************************************//** +This function will reconnect replication listener to a server +provided. +@return 0 on success, error code at failure. */ +int +tb_replication_listener_reconnect( +/*==============================*/ + replication_listener_t* rpl, /*!< in: Server definition.*/ + pthread_t* tid) /*!< in: Thread id */ +{ + // Need to be protected by mutex to avoid concurrency problems + boost::mutex::scoped_lock lock(table_replication_mutex); + map::iterator b_it; + bool found = false; + int err = 0; + Binary_log *binlog = NULL; + char *error_message = NULL; + std::string errmsg = ""; + + for(b_it = table_replication_listeners.begin(); b_it != table_replication_listeners.end(); ++b_it) { + binlog = (*b_it).second; + std::string url = binlog->get_url(); + + // Found correct listener? + if (url.compare(std::string(rpl->server_url)) == 0) { + found = true; + break; + } + } + + if (found) { + try { + // Shutdown the current listener thread + binlog->shutdown(); + + // Wait until thread has exited + err = pthread_join(*tid, (void **)&error_message); + + if (err) { + if (error_message = NULL) { + error_message = strerror(err); + } + + goto err_exit; + } + + // Start a new replication listener + err = pthread_create( + tid, + NULL, + &(tb_replication_listener_reader), + (void *)rpl); + + if (err) { + error_message = strerror(err); + goto err_exit; + } + + } + catch(ListenerException e) + { + std::cerr << "Listener exception: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + catch(boost::system::error_code e) + { + std::cerr << "Listener system error: " << e.message() << std::endl; + // Re-Throw this one. + throw; + } + // Try and catch all exceptions + catch(std::exception const& e) + { + std::cerr << "Listener other error: " << e.what() << std::endl; + // Re-Throw this one. + throw; + } + // Rest of them + catch(...) + { + std::cerr << "Unknown exception: " << std::endl; + // Re-Throw this one. + // It was not handled so you want to make sure it is handled correctly by + // the OS. So just allow the exception to keep propagating. + throw; + } + + } else { + errmsg = std::string("Replication listener not found"); + error_message = (char *)errmsg.c_str(); + } + + return (0); + +err_exit: + if (error_message) { + rpl->error_message = (char *)malloc(strlen(error_message +1)); + strcpy(rpl->error_message, error_message); + } + + return (1); +} + +} // Namespace table replication listener + +} // Namespace mysql +