Skip to content

Commit

Permalink
brpc: support mongo client
Browse files Browse the repository at this point in the history
Signed-off-by: helei.sig11 <[email protected]>
  • Loading branch information
helei.sig11 committed Mar 21, 2023
1 parent 7ac3278 commit e5a2355
Show file tree
Hide file tree
Showing 11 changed files with 869 additions and 85 deletions.
69 changes: 69 additions & 0 deletions example/mongo_c++/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

BRPC_PATH = ../../
include $(BRPC_PATH)/config.mk
CXXFLAGS+=$(CPPFLAGS) -std=c++0x -DNDEBUG -O2 -pipe -W -Wall -fPIC -fno-omit-frame-pointer
HDRS+=$(BRPC_PATH)/output/include
LIBS+=$(BRPC_PATH)/output/lib
HDRPATHS = $(addprefix -I, $(HDRS))
LIBPATHS = $(addprefix -L, $(LIBS))
COMMA=,
SOPATHS=$(addprefix -Wl$(COMMA)-rpath$(COMMA), $(LIBS))

PRESS_SOURCES = mongo_press.cpp

PRESS_OBJS = $(addsuffix .o, $(basename $(PRESS_SOURCES)))

ifeq ($(SYSTEM),Darwin)
ifneq ("$(LINK_SO)", "")
STATIC_LINKINGS += -lbrpc
else
# *.a must be explicitly specified in clang
STATIC_LINKINGS += $(BRPC_PATH)/output/lib/libbrpc.a
endif
LINK_OPTIONS_SO = $^ $(STATIC_LINKINGS) $(DYNAMIC_LINKINGS)
LINK_OPTIONS = $^ $(STATIC_LINKINGS) $(DYNAMIC_LINKINGS)
else ifeq ($(SYSTEM),Linux)
STATIC_LINKINGS += -lbrpc
LINK_OPTIONS_SO = -Xlinker "-(" $^ -Xlinker "-)" $(STATIC_LINKINGS) $(DYNAMIC_LINKINGS)
LINK_OPTIONS = -Xlinker "-(" $^ -Wl,-Bstatic $(STATIC_LINKINGS) -Wl,-Bdynamic -Xlinker "-)" $(DYNAMIC_LINKINGS)
endif

.PHONY:all
all: mongo_press

.PHONY:clean
clean:
@echo "> Cleaning"
rm -rf redis_press redis_cli $(PRESS_OBJS) $(CLI_OBJS) $(SERVER_OBJS)

mongo_press:$(PRESS_OBJS)
@echo "> Linking $@"
ifneq ("$(LINK_SO)", "")
$(CXX) $(LIBPATHS) $(SOPATHS) $(LINK_OPTIONS_SO) -o $@
else
$(CXX) $(LIBPATHS) $(LINK_OPTIONS) -o $@
endif

%.o:%.cpp
@echo "> Compiling $@"
$(CXX) -c $(HDRPATHS) $(CXXFLAGS) $< -o $@

%.o:%.cc
@echo "> Compiling $@"
$(CXX) -c $(HDRPATHS) $(CXXFLAGS) $< -o $@
107 changes: 107 additions & 0 deletions example/mongo_c++/mongo_press.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.

// A multi-threaded client getting keys from a redis-server constantly.

#include <gflags/gflags.h>
#include <bthread/bthread.h>
#include <butil/logging.h>
#include <butil/string_printf.h>
#include <bvar/bvar.h>
#include <brpc/channel.h>
#include <brpc/server.h>
#include <brpc/mongo.h>

DEFINE_string(connection_type, "single",
"Connection type. Available values: pooled, short");
DEFINE_string(server, "127.0.0.1", "IP Address of server");
DEFINE_int32(port, 27017, "Port of server");
DEFINE_int32(timeout_ms, 5000, "RPC timeout in milliseconds");
DEFINE_int32(connect_timeout_ms, 5000, "RPC timeout in milliseconds");
DEFINE_int32(max_retry, 3, "Max retries(not including the first RPC)");
DEFINE_string(collection, "test_collection", "collection name");
DEFINE_string(db, "test_db", "database name");

int main(int argc, char* argv[]) {
// Parse gflags. We recommend you to use gflags as well.
GFLAGS_NS::ParseCommandLineFlags(&argc, &argv, true);

// A Channel represents a communication line to a Server. Notice that
// Channel is thread-safe and can be shared by all threads in your program.
brpc::Channel channel;

// Initialize the channel, NULL means using default options.
brpc::ChannelOptions options;
options.protocol = brpc::PROTOCOL_MONGO;
options.connection_type = FLAGS_connection_type;
options.timeout_ms = FLAGS_timeout_ms/*milliseconds*/;
options.max_retry = FLAGS_max_retry;
if (channel.Init(FLAGS_server.c_str(), FLAGS_port, &options) != 0) {
LOG(ERROR) << "Fail to initialize channel";
return -1;
}

brpc::Controller cntl;
butil::bson::UniqueBsonPtr command(
BCON_NEW("insert", BCON_UTF8(FLAGS_collection.c_str()),
"$db", BCON_UTF8(FLAGS_db.c_str()),
"comment", BCON_UTF8("brpc mongo press")));

brpc::MongoMessage req;
brpc::MongoMessage resp;
req.set_body(std::move(command));
req.set_key("documents");
for (size_t i = 0; i < 10; i++) {
char user_id[64];
char user_name[64];
::snprintf(user_id, sizeof(user_id), "user-%lu", i);
::snprintf(user_name, sizeof(user_name), "user-name-%lu", i);
req.add_doc_sequence(butil::bson::UniqueBsonPtr(BCON_NEW(
"user", BCON_UTF8(user_id),
"_id", BCON_INT32(i),
"user_name", BCON_UTF8(user_name))));
}
LOG(INFO) << "MongoRequest: " << req;
channel.CallMethod(nullptr, &cntl, &req, &resp, nullptr);

if (!cntl.Failed()) {
LOG(INFO) << "OK: \n" << req << "\n" << resp;
} else {
LOG(INFO) << "Failed: \n" << req << "\n" << resp;
LOG(INFO) << cntl.ErrorText();
return 0;
}

while (!brpc::IsAskedToQuit()) {
brpc::Controller cntl;
brpc::MongoMessage req;
brpc::MongoMessage resp;
butil::bson::UniqueBsonPtr command(
BCON_NEW("find", BCON_UTF8(FLAGS_collection.c_str()),
"$db", BCON_UTF8(FLAGS_db.c_str()),
"comment", BCON_UTF8("brpc mongo press query")));
req.set_body(std::move(command));
channel.CallMethod(nullptr, &cntl, &req, &resp, nullptr);
if (!cntl.Failed()) {
LOG(INFO) << "OK: \n" << req << "\n" << resp;
} else {
LOG(INFO) << cntl.ErrorText();
}
bthread_usleep(1000*1000);
}
return 0;
}
8 changes: 5 additions & 3 deletions src/brpc/global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -509,10 +509,12 @@ static void GlobalInitializeOrDieImpl() {
}

Protocol mongo_protocol = { ParseMongoMessage,
NULL, NULL,
ProcessMongoRequest, NULL,
SerializeMongoRequest,
PackMongoRequest,
ProcessMongoRequest,
ProcessMongoResponse,
NULL, NULL, NULL,
CONNECTION_TYPE_POOLED, "mongo" };
CONNECTION_TYPE_ALL, "mongo" };
if (RegisterProtocol(PROTOCOL_MONGO, mongo_protocol) != 0) {
exit(1);
}
Expand Down
Loading

0 comments on commit e5a2355

Please sign in to comment.