Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement ConfigDBConnector and ConfigDBPipeConnector in C++ #437

Merged
merged 25 commits into from
Jan 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7a44b51
Implement Pubsub listen_message() and punsubscribe()
qiluo-msft Dec 25, 2020
8d22032
Implement ConfigDBConnector::connect()
qiluo-msft Dec 26, 2020
ae54684
Move complex class constructor as explicit, and fix several mistaken …
qiluo-msft Dec 26, 2020
651ea83
Implement set_entry() and get_entry()
qiluo-msft Dec 26, 2020
28728c1
Implement mod_entry()
qiluo-msft Dec 26, 2020
21ced27
Implement db_connect()
qiluo-msft Dec 26, 2020
bce0d4e
Implement get_keys()
qiluo-msft Dec 26, 2020
b18735b
Implement get_table()
qiluo-msft Dec 26, 2020
ab958f6
Implement delete_table()
qiluo-msft Dec 26, 2020
c7f50fe
Implement mod_config(), get_config()
qiluo-msft Dec 26, 2020
6f4a701
On-par with python implementation
qiluo-msft Dec 27, 2020
23d0b42
Implement dynamic functions
qiluo-msft Dec 27, 2020
4fb9658
Implement getKeySeparator(), move static functions to public
qiluo-msft Dec 27, 2020
27a35f7
Implement listen()
qiluo-msft Dec 27, 2020
1041819
Fix RedisTransactioner: handle empty deque
qiluo-msft Dec 27, 2020
9a18482
Implement DBConnector scan()
qiluo-msft Dec 27, 2020
e6a8dcb
Simply refactor DBConnector hgetall()
qiluo-msft Dec 27, 2020
1a9bf73
Implement class ConfigDBPipeConnector
qiluo-msft Dec 27, 2020
d09b28f
Fix bugs
qiluo-msft Dec 28, 2020
3fdcd31
Fix bug: use instance variable instead of class variable in ConfigDBC…
qiluo-msft Dec 30, 2020
3088bb8
Fix: SonicDBConfig load_sonic_global_db_config
qiluo-msft Dec 31, 2020
c32d955
Fix SWIG compilation under 32-bit
qiluo-msft Dec 31, 2020
825b8f6
Change unordered_map to map, because swig3.0 does not support
qiluo-msft Dec 31, 2020
19f8b23
Fix: db_connect wait for a non-empty INIT_INDICATOR
qiluo-msft Jan 1, 2021
bfedf15
Implement more dynamic functions
qiluo-msft Jan 1, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions common/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ endif
libswsscommon_la_SOURCES = \
logger.cpp \
redisreply.cpp \
configdb.cpp \
dbconnector.cpp \
dbinterface.cpp \
sonicv2connector.cpp \
Expand Down
Loading