项目作者: janpipek

项目描述 :
Thread-safe cached data writer for C++
高级语言: C++
项目地址: git://github.com/janpipek/tsw.git
创建时间: 2015-09-15T09:28:30Z
项目社区:https://github.com/janpipek/tsw

开源协议:MIT License

下载


(T)hread-(S)afe cached data (W)riter for C++ 11

This library was motivated by the need of writing large numerical datasets
with the following constraints:

  • human-readable format (e.g. TSV)
  • compile-time-configurable row “tuple” with different data types
  • thread-safety (writing from multiple, possibly many threads in parallel)
  • output efficiency (cheap caching + fast chunked output)

I hope the goals were reasonably achieved.

Threading

It can use three threading model for mutex:

  • from C++11 standard (by default)
  • from pthreads (set macro TSW_USE_POSIX_THREADS)
  • no threading model, in case you want to use it non-threading application (set macro TSW_NO_THREADS)

In any case, the order of stored rows is preserved.

Dependencies

This small library is header-only. Just copy tsw.hh to your project and start
using it. You need:

  • a C++11-supporting compiler, tested ones include:
    • gcc 4.4.7, 4.8.3, 5.1.1 (should work for all 4.4+)
    • clang 3.5
  • pthread (needed if used directly, needed in GCC on Linux)

Limitations

  • The I/O operation is done in the thread that arrives at the cache limit (and blocks further
    storing). So, in principle, don’t expect each Store operation to be extremely fast - only most
    of them are. A better approach (planned?) would be to dedicate a separate thread to I/O.

  • Strings don’t yet get the proper treatment. Thus the TSVWriter does not check for
    the presence of delimiters in the string. This could be done, for sure…

Examples

  1. #include "tsw.hh"
  2. using namespace tsw;
  3. int main() {
  4. tsw::TSVWriter<double, double> writer("out.tsv");
  5. writer.SetColumnNames("x", "x^2");
  6. for (int i = 1; i < 10; i++) {
  7. writer.Store(i, i * i);
  8. }
  9. }

Output (out.tsv):

  1. x x^2
  2. 1 1
  3. 2 4
  4. 3 9
  5. 4 16
  6. 5 25
  7. 6 36
  8. 7 49
  9. 8 64
  10. 9 81
  11. 10 100

Threading example

See examples/std_thread.cc