C++ serialization with indexing

16 February 2014

I’ve started C++ serialization library implementation, the main difference from other similar libs, should be possibility to make effective search by keys through the archive. I’ve begin with creation the RecordFile class for C++ objects serialization to the file. When user save some object with this class, he receive file lacation object which can be used to rewrite original saved object. On top of this class I’ve made BTree indexation in separate file. Now there is an errors with removing keys from tree. Also it is not easy to make test data for unit test, so I’ve begin making tree editor with UI. Link to the current code on github.

Read Post

List of useful C++ macroses and definitions

31 October 2013

http://predef.sourceforge.net/

Read Post

How to make reusable buffer for C++ streaming operations

23 July 2013

Here is an example how make parsing number in C++ without temporary string buffer, which sometimes needed when you use std::stringstream.

Read Post

I'm in social networks

GitHub

LinkedIn

Google

Search:

Tags: