forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor listener structure (vesoft-inc#4953)
Co-authored-by: Yee <[email protected]> Co-authored-by: Sophie <[email protected]>
- Loading branch information
1 parent
0ff53a3
commit e1a0283
Showing
16 changed files
with
91 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright (c) 2022 vesoft inc. All rights reserved. | ||
# | ||
# This source code is licensed under Apache 2.0 License. | ||
|
||
nebula_add_library( | ||
listener_obj OBJECT | ||
Listener.cpp | ||
elasticsearch/ESListener.cpp | ||
) | ||
|
||
nebula_add_subdirectory(test) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright (c) 2022 vesoft inc. All rights reserved. | ||
# | ||
# This source code is licensed under Apache 2.0 License. | ||
|
||
set(LISTENER_TEST_LIBS | ||
$<TARGET_OBJECTS:listener_obj> | ||
$<TARGET_OBJECTS:kvstore_obj> | ||
$<TARGET_OBJECTS:raftex_obj> | ||
$<TARGET_OBJECTS:wal_obj> | ||
$<TARGET_OBJECTS:disk_man_obj> | ||
$<TARGET_OBJECTS:keyutils_obj> | ||
$<TARGET_OBJECTS:meta_keyutils_obj> | ||
$<TARGET_OBJECTS:log_str_list_iterator_obj> | ||
$<TARGET_OBJECTS:codec_obj> | ||
$<TARGET_OBJECTS:meta_obj> | ||
$<TARGET_OBJECTS:meta_client_obj> | ||
$<TARGET_OBJECTS:ws_obj> | ||
$<TARGET_OBJECTS:ws_common_obj> | ||
$<TARGET_OBJECTS:meta_thrift_obj> | ||
$<TARGET_OBJECTS:common_thrift_obj> | ||
$<TARGET_OBJECTS:raftex_thrift_obj> | ||
$<TARGET_OBJECTS:base_obj> | ||
$<TARGET_OBJECTS:datatypes_obj> | ||
$<TARGET_OBJECTS:conf_obj> | ||
$<TARGET_OBJECTS:thread_obj> | ||
$<TARGET_OBJECTS:fs_obj> | ||
$<TARGET_OBJECTS:file_based_cluster_id_man_obj> | ||
$<TARGET_OBJECTS:network_obj> | ||
$<TARGET_OBJECTS:thrift_obj> | ||
$<TARGET_OBJECTS:time_obj> | ||
$<TARGET_OBJECTS:stats_obj> | ||
$<TARGET_OBJECTS:expression_obj> | ||
$<TARGET_OBJECTS:ast_match_path_obj> | ||
$<TARGET_OBJECTS:function_manager_obj> | ||
$<TARGET_OBJECTS:wkt_wkb_io_obj> | ||
$<TARGET_OBJECTS:agg_function_manager_obj> | ||
$<TARGET_OBJECTS:time_utils_obj> | ||
$<TARGET_OBJECTS:datetime_parser_obj> | ||
$<TARGET_OBJECTS:process_obj> | ||
$<TARGET_OBJECTS:ft_es_storage_adapter_obj> | ||
$<TARGET_OBJECTS:version_obj> | ||
$<TARGET_OBJECTS:ssl_obj> | ||
$<TARGET_OBJECTS:storage_thrift_obj> | ||
$<TARGET_OBJECTS:geo_index_obj> | ||
$<TARGET_OBJECTS:meta_client_stats_obj> | ||
$<TARGET_OBJECTS:storage_client_stats_obj> | ||
$<TARGET_OBJECTS:kv_stats_obj> | ||
) | ||
|
||
nebula_add_test( | ||
NAME | ||
nebula_listener_test | ||
SOURCES | ||
NebulaListenerTest.cpp | ||
OBJECTS | ||
${LISTENER_TEST_LIBS} | ||
LIBRARIES | ||
${THRIFT_LIBRARIES} | ||
${ROCKSDB_LIBRARIES} | ||
${PROXYGEN_LIBRARIES} | ||
wangle | ||
gtest | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters