Skip to content

ingangi/chroutine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usage

With chroutine, we can easily develop highly concurrent programs in C++ and write code with synchronization semantics.

You can run the examples and see the code how to use it:

├── examples
│   ├── channel_example
│   │   ├── Makefile
│   │   └── test_channel.cpp
│   ├── chutex_example
│   │   ├── Makefile
│   │   └── test_chutex.cpp
│   ├── http_client_example
│   │   ├── Makefile
│   │   └── test_main.cpp
│   ├── Makefile
│   ├── rpc_example
│   │   ├── Makefile
│   │   ├── test_client
│   │   │   ├── Makefile
│   │   │   ├── test_client.cpp
│   │   │   ├── test_client.hpp
│   │   │   └── test_client_main.cpp
│   │   ├── test_server.cpp
│   │   ├── test_server.hpp
│   │   └── test_server_main.cpp
│   ├── test_chroutine.cpp
│   └── timer_example
│       ├── Makefile
│       └── test_timer.cpp

cd examples
make ALLTEST

env install (Relies on gRPC and libcurl)

my platform:

  • CentOS Linux release 7.4.1708, x86_64
  • gcc (GCC) 4.8.5 20150623

install grpc (if you need the RPC module)

my system: CentOS Linux release 7.4.1708

get ready

sudo yum install autoconf automake autogen libtool shtool build-essential pkg-config libgflags-dev libgtest-dev clang libc++-dev

build and install

git clone https://github.com/grpc/grpc
cd grpc
git submodule update --init
make
[sudo] make install

error and solution

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'

install protoc

it was build but not installed:

cd third_party/protobuf
sudo make install

try to generate protobuf code

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

install libcurl (if you need the http client module)

see:

https://github.com/curl/curl.git

Releases

No releases published

Packages

No packages published