From aef6c7b09950a7b91074032fb2286a64e051239e Mon Sep 17 00:00:00 2001 From: Johan Wikman Date: Thu, 1 Dec 2016 15:23:42 +0200 Subject: [PATCH] Make directory name equal to the library name * avro -> avrorouter * binlog -> binlogrouter --- server/modules/routing/CMakeLists.txt | 4 ++-- server/modules/routing/{avro => avrorouter}/CMakeLists.txt | 0 server/modules/routing/{avro => avrorouter}/avro.c | 0 server/modules/routing/{avro => avrorouter}/avro_client.c | 0 server/modules/routing/{avro => avrorouter}/avro_file.c | 0 server/modules/routing/{avro => avrorouter}/avro_index.c | 0 server/modules/routing/{avro => avrorouter}/avro_rbr.c | 0 server/modules/routing/{avro => avrorouter}/avro_schema.c | 0 server/modules/routing/{avro => avrorouter}/avrorouter.h | 0 .../modules/routing/{binlog => binlogrouter}/CMakeLists.txt | 0 server/modules/routing/{binlog => binlogrouter}/README | 0 server/modules/routing/{binlog => binlogrouter}/STATUS | 0 .../modules/routing/{binlog => binlogrouter}/binlog_common.c | 0 server/modules/routing/{binlog => binlogrouter}/blr.c | 0 server/modules/routing/{binlog => binlogrouter}/blr.h | 0 server/modules/routing/{binlog => binlogrouter}/blr_cache.c | 0 server/modules/routing/{binlog => binlogrouter}/blr_file.c | 0 server/modules/routing/{binlog => binlogrouter}/blr_master.c | 0 server/modules/routing/{binlog => binlogrouter}/blr_slave.c | 0 .../modules/routing/{binlog => binlogrouter}/maxbinlogcheck.c | 0 .../routing/{binlog => binlogrouter}/test/CMakeLists.txt | 0 .../routing/{binlog => binlogrouter}/test/testbinlog.c | 0 22 files changed, 2 insertions(+), 2 deletions(-) rename server/modules/routing/{avro => avrorouter}/CMakeLists.txt (100%) rename server/modules/routing/{avro => avrorouter}/avro.c (100%) rename server/modules/routing/{avro => avrorouter}/avro_client.c (100%) rename server/modules/routing/{avro => avrorouter}/avro_file.c (100%) rename server/modules/routing/{avro => avrorouter}/avro_index.c (100%) rename server/modules/routing/{avro => avrorouter}/avro_rbr.c (100%) rename server/modules/routing/{avro => avrorouter}/avro_schema.c (100%) rename server/modules/routing/{avro => avrorouter}/avrorouter.h (100%) rename server/modules/routing/{binlog => binlogrouter}/CMakeLists.txt (100%) rename server/modules/routing/{binlog => binlogrouter}/README (100%) rename server/modules/routing/{binlog => binlogrouter}/STATUS (100%) rename server/modules/routing/{binlog => binlogrouter}/binlog_common.c (100%) rename server/modules/routing/{binlog => binlogrouter}/blr.c (100%) rename server/modules/routing/{binlog => binlogrouter}/blr.h (100%) rename server/modules/routing/{binlog => binlogrouter}/blr_cache.c (100%) rename server/modules/routing/{binlog => binlogrouter}/blr_file.c (100%) rename server/modules/routing/{binlog => binlogrouter}/blr_master.c (100%) rename server/modules/routing/{binlog => binlogrouter}/blr_slave.c (100%) rename server/modules/routing/{binlog => binlogrouter}/maxbinlogcheck.c (100%) rename server/modules/routing/{binlog => binlogrouter}/test/CMakeLists.txt (100%) rename server/modules/routing/{binlog => binlogrouter}/test/testbinlog.c (100%) diff --git a/server/modules/routing/CMakeLists.txt b/server/modules/routing/CMakeLists.txt index 6fee3cb20..5f989da22 100644 --- a/server/modules/routing/CMakeLists.txt +++ b/server/modules/routing/CMakeLists.txt @@ -1,8 +1,8 @@ if(BUILD_AVRO) - add_subdirectory(avro) + add_subdirectory(avrorouter) endif() if(BUILD_BINLOG) - add_subdirectory(binlog) + add_subdirectory(binlogrouter) endif() add_subdirectory(cli) diff --git a/server/modules/routing/avro/CMakeLists.txt b/server/modules/routing/avrorouter/CMakeLists.txt similarity index 100% rename from server/modules/routing/avro/CMakeLists.txt rename to server/modules/routing/avrorouter/CMakeLists.txt diff --git a/server/modules/routing/avro/avro.c b/server/modules/routing/avrorouter/avro.c similarity index 100% rename from server/modules/routing/avro/avro.c rename to server/modules/routing/avrorouter/avro.c diff --git a/server/modules/routing/avro/avro_client.c b/server/modules/routing/avrorouter/avro_client.c similarity index 100% rename from server/modules/routing/avro/avro_client.c rename to server/modules/routing/avrorouter/avro_client.c diff --git a/server/modules/routing/avro/avro_file.c b/server/modules/routing/avrorouter/avro_file.c similarity index 100% rename from server/modules/routing/avro/avro_file.c rename to server/modules/routing/avrorouter/avro_file.c diff --git a/server/modules/routing/avro/avro_index.c b/server/modules/routing/avrorouter/avro_index.c similarity index 100% rename from server/modules/routing/avro/avro_index.c rename to server/modules/routing/avrorouter/avro_index.c diff --git a/server/modules/routing/avro/avro_rbr.c b/server/modules/routing/avrorouter/avro_rbr.c similarity index 100% rename from server/modules/routing/avro/avro_rbr.c rename to server/modules/routing/avrorouter/avro_rbr.c diff --git a/server/modules/routing/avro/avro_schema.c b/server/modules/routing/avrorouter/avro_schema.c similarity index 100% rename from server/modules/routing/avro/avro_schema.c rename to server/modules/routing/avrorouter/avro_schema.c diff --git a/server/modules/routing/avro/avrorouter.h b/server/modules/routing/avrorouter/avrorouter.h similarity index 100% rename from server/modules/routing/avro/avrorouter.h rename to server/modules/routing/avrorouter/avrorouter.h diff --git a/server/modules/routing/binlog/CMakeLists.txt b/server/modules/routing/binlogrouter/CMakeLists.txt similarity index 100% rename from server/modules/routing/binlog/CMakeLists.txt rename to server/modules/routing/binlogrouter/CMakeLists.txt diff --git a/server/modules/routing/binlog/README b/server/modules/routing/binlogrouter/README similarity index 100% rename from server/modules/routing/binlog/README rename to server/modules/routing/binlogrouter/README diff --git a/server/modules/routing/binlog/STATUS b/server/modules/routing/binlogrouter/STATUS similarity index 100% rename from server/modules/routing/binlog/STATUS rename to server/modules/routing/binlogrouter/STATUS diff --git a/server/modules/routing/binlog/binlog_common.c b/server/modules/routing/binlogrouter/binlog_common.c similarity index 100% rename from server/modules/routing/binlog/binlog_common.c rename to server/modules/routing/binlogrouter/binlog_common.c diff --git a/server/modules/routing/binlog/blr.c b/server/modules/routing/binlogrouter/blr.c similarity index 100% rename from server/modules/routing/binlog/blr.c rename to server/modules/routing/binlogrouter/blr.c diff --git a/server/modules/routing/binlog/blr.h b/server/modules/routing/binlogrouter/blr.h similarity index 100% rename from server/modules/routing/binlog/blr.h rename to server/modules/routing/binlogrouter/blr.h diff --git a/server/modules/routing/binlog/blr_cache.c b/server/modules/routing/binlogrouter/blr_cache.c similarity index 100% rename from server/modules/routing/binlog/blr_cache.c rename to server/modules/routing/binlogrouter/blr_cache.c diff --git a/server/modules/routing/binlog/blr_file.c b/server/modules/routing/binlogrouter/blr_file.c similarity index 100% rename from server/modules/routing/binlog/blr_file.c rename to server/modules/routing/binlogrouter/blr_file.c diff --git a/server/modules/routing/binlog/blr_master.c b/server/modules/routing/binlogrouter/blr_master.c similarity index 100% rename from server/modules/routing/binlog/blr_master.c rename to server/modules/routing/binlogrouter/blr_master.c diff --git a/server/modules/routing/binlog/blr_slave.c b/server/modules/routing/binlogrouter/blr_slave.c similarity index 100% rename from server/modules/routing/binlog/blr_slave.c rename to server/modules/routing/binlogrouter/blr_slave.c diff --git a/server/modules/routing/binlog/maxbinlogcheck.c b/server/modules/routing/binlogrouter/maxbinlogcheck.c similarity index 100% rename from server/modules/routing/binlog/maxbinlogcheck.c rename to server/modules/routing/binlogrouter/maxbinlogcheck.c diff --git a/server/modules/routing/binlog/test/CMakeLists.txt b/server/modules/routing/binlogrouter/test/CMakeLists.txt similarity index 100% rename from server/modules/routing/binlog/test/CMakeLists.txt rename to server/modules/routing/binlogrouter/test/CMakeLists.txt diff --git a/server/modules/routing/binlog/test/testbinlog.c b/server/modules/routing/binlogrouter/test/testbinlog.c similarity index 100% rename from server/modules/routing/binlog/test/testbinlog.c rename to server/modules/routing/binlogrouter/test/testbinlog.c