With Chroutine
, you can easily develop highly concurrent programs in C++ and write code with synchronization semantics.
Create a chroutine is very simple:
ENGIN.create_chroutine([](void *){
while (1) {
SPDLOG(INFO, "hello Chroutine 1, looping");
SLEEP(1000);
}
}, nullptr);
ENGIN.create_chroutine([](void *){
SPDLOG(INFO, "hello Chroutine 2");
SLEEP(1000);
SPDLOG(INFO, "hello Chroutine 2, exit now");
}, nullptr);
You can also run the examples and see the code to learn more:
βββ channel_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_channel.cpp
βββ chutex_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_chutex.cpp
βββ CMakeLists.txt
βββ http_client_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_main.cpp
βββ raw_tcp_client_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ raw_tcp_client_example.cpp
βββ rpc_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_client
βΒ Β βΒ Β βββ CMakeLists.txt
βΒ Β βΒ Β βββ test_client.cpp
βΒ Β βΒ Β βββ test_client.hpp
βΒ Β βΒ Β βββ test_client_main.cpp
βΒ Β βββ test_server.cpp
βΒ Β βββ test_server.hpp
βΒ Β βββ test_server_main.cpp
βββ sched_test
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_sched.cpp
βββ stack_test
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_stack.cpp
βββ tcp_echo_server_example
βΒ Β βββ CMakeLists.txt
βΒ Β βββ test_echo_server.cpp
βββ test_chroutine.cpp
βββ timer_example
βββ CMakeLists.txt
βββ test_timer.cpp
$ cd examples/build
$ ./configure.sh
$ cd build
$ make
- CentOS Linux release 7.4.1708, x86_64
- gcc (GCC) 4.8.5 20150623
my system: CentOS Linux release 7.4.1708
sudo yum install autoconf automake autogen libtool shtool build-essential pkg-config libgflags-dev libgtest-dev clang libc++-dev
git clone https://github.com/grpc/grpc
cd grpc
git submodule update --init
make
[sudo] make install
if get configure error:
configure in doc/example fails with "cannot find install-sh, install.sh, or shtool in "." "./.." "./../..""
try:
cd third_party/protobuf
autoreconf -i -v -f
git submodule update --init
will download third party code, try to download yourself and put them in right place if failed in China:
Submodule 'third_party/abseil-cpp' (https://github.com/abseil/abseil-cpp) registered for path 'third_party/abseil-cpp'
Submodule 'third_party/benchmark' (https://github.com/google/benchmark) registered for path 'third_party/benchmark'
Submodule 'third_party/bloaty' (https://github.com/google/bloaty.git) registered for path 'third_party/bloaty'
Submodule 'third_party/boringssl' (https://github.com/google/boringssl.git) registered for path 'third_party/boringssl'
Submodule 'third_party/boringssl-with-bazel' (https://boringssl.googlesource.com/boringssl) registered for path 'third_party/boringssl-with-bazel'
Submodule 'third_party/cares/cares' (https://github.com/c-ares/c-ares.git) registered for path 'third_party/cares/cares'
Submodule 'third_party/gflags' (https://github.com/gflags/gflags.git) registered for path 'third_party/gflags'
Submodule 'third_party/googletest' (https://github.com/google/googletest.git) registered for path 'third_party/googletest'
Submodule 'third_party/protobuf' (https://github.com/google/protobuf.git) registered for path 'third_party/protobuf'
Submodule 'third_party/zlib' (https://github.com/madler/zlib) registered for path 'third_party/zlib'
it was build but not installed:
cd third_party/protobuf
sudo make install
cd proto_def
sh gen.sh test.proto
You should see four files:
βββ proto_code
βΒ Β βββ test.grpc.pb.cc
βΒ Β βββ test.grpc.pb.h
βΒ Β βββ test.pb.cc
βΒ Β βββ test.pb.h