/cub

C++ Unified Base Library.

Primary LanguageC++

CUB : C++ Unified Base Library


Introduction

CUB is a C++ unified base library for writting better and effective C++ codes! It includes below main components:

  • Some grammer sugar that wrappered C++ keywords for a better cross-platform C++ programming style.
  • A DCI programming frame for implementing composed programming in C++ easily!
  • Memory utils. For example: memory allocator, AutoMsg, TransData ...
  • Data structures (eg. array, list, map) for self memory government demands! It's useful for embeded programming.
  • Some algorithm for bits operator, loop, bound...
  • Design pattern, such as Singleton and State pattern.
  • Concurrency tools, such as thread pool, lock utils...
  • Log, an implementation of log for CUB.

To learn more, visit the doc folder! View the source code of tests of CUB in the test folder for learning how to use every library elements in details!

Install and Test

Get CUB

git clone git@github.com:ccup/cub.git

Build CUB

cd cub
mkdir build
cd build
cmake ..
make

Install CUB

sudo make install

You can also install CUB manually, just copy "cub/include" and "cub/build/src/libcub.a" to your special installation path.

Test CUB

To test CUB, you need install cut which is an elegant C++ xUnit framework. Try to intall cut by following the cut tutoral!

Following the below instructions to test CUB:

cd build
cmake -DENABLE_TEST=1 ..
make
./test/cub-test

Supported Platform:

  • [MAC OS X] supported
  • [Linux] supported
  • [Windows] not supported

Supported Compilers:

  • [CLANG] 3.4 or later.
  • [GCC] 4.8 or later.
  • [MSVC] not supported.

Finally

Some component of CUB such as "sched" which based on std::thread need C++11 suport, therefor compile all the components of CUB should enable the C++11 compiling flag and link with pthread!