BitMagic-C++
svsample02.cpp

Example of how to serialize bm::sparse_vector<> template class

See also
bm::sparse_vector
bm::sparse_vector<>::push_back
bm::sparse_vector<>::equal
bm::sparse_vector_serialize
bm::sparse_vector_deserialize
bm::sparse_vector_serializer
bm::sparse_vector_deserializer
rscsample05.cpp
/*
Copyright(c) 2002-2017 Anatoliy Kuznetsov(anatoliy_kuznetsov at yahoo.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
For more information please visit: http://bitmagic.io
*/
/** \example svsample02.cpp
Example of how to serialize bm::sparse_vector<> template class
\sa bm::sparse_vector
\sa bm::sparse_vector<>::push_back
\sa bm::sparse_vector<>::equal
\sa bm::sparse_vector_serialize
\sa bm::sparse_vector_deserialize
\sa bm::sparse_vector_serializer
\sa bm::sparse_vector_deserializer
\sa rscsample05.cpp
*/
/*! \file svsample02.cpp
\brief Example: sparse_vector<> serialization
*/
#include <iostream>
#include <vector>
#include <assert.h>
#include "bm.h"
#include "bmsparsevec.h"
#include "bmundef.h" /* clear the pre-proc defines from BM */
using namespace std;
/// Demo 1
/// Simple one function call serialization
///
static
void SDemo1()
{
for (unsigned i = 0; i < 128000; ++i)
{
sv1.push_back(8);
}
// optimize memory allocation of sparse vector
sv1.optimize();
// copy serialization buffer to some other location
// to simulate data-base storage or network transaction
//
const unsigned char* buf = sv_lay.buf();
size_t buf_size = sv_lay.size();
cout << buf_size << endl;
vector<unsigned char> tmp_buf(buf_size);
::memcpy(&tmp_buf[0], buf, buf_size);
int res = bm::sparse_vector_deserialize(sv2, &tmp_buf[0]);
if (res != 0)
{
cerr << "De-Serialization error!" << endl;
return;
}
if (!sv1.equal(sv2) )
{
cerr << "Error! Please report a bug to BitMagic project support." << endl;
return;
}
}
/// Demo 2
/// - Reuseable serializer/deserilaizer classes
/// - Shows serializarion with XOR compression enabled
///
/// Reusable serializer is better (works faster) when we need to serialize/deserialize a bunch of vectors
/// use of serializer also offers a better control on serialization options (like XOR compression)
///
static
void SDemo2()
{
sparse_vector_u32 sv1(bm::use_null); // NULL-able vector
for (unsigned i = 0; i < 128000; i+=2)
{
sv1.set(i, 8);
}
sv1.optimize();
sv2 = sv1; // copy sv1
// the data pattern will allow XOR compression
// lets try to enable it!
assert(sv_ser.is_xor_ref());
sv_ser.serialize(sv1, sv_lay0);
// Get BLOB pointer and size
const unsigned char* buf = sv_lay0.data();
size_t sz = sv_lay0.size();
cout << "XOR compression enabled size=" << sz << endl;
// deserialize from the memory pointer
//
{
sv_dser.deserialize(sv3, buf);
assert(sv3.equal(sv1));
}
// disbale XOR compression
// please note that we re-use serializer and deserializer instances
// to save construction costs (memory allocations, etc)
//
assert(!sv_ser.is_xor_ref());
sv_ser.serialize(sv2, sv_lay0);
buf = sv_lay0.data();
sz = sv_lay0.size();
cout << "XOR compression disabled size=" << sz << endl;
// deserialize from the memory pointer
//
{
sv_dser.deserialize(sv3, buf);
assert(sv3.equal(sv1));
}
}
int main(void)
{
try
{
cout << "Demo 1" << endl;
SDemo1();
cout << "Demo 2" << endl;
SDemo2();
}
catch(std::exception& ex)
{
std::cerr << ex.what() << std::endl;
return 1;
}
return 0;
}
Compressed bit-vector bvector<> container, set algebraic methods, traversal iterators.
Sparse constainer sparse_vector<> for integer types using bit-transposition transform.
Serialization for sparse_vector<>
pre-processor un-defines to avoid global space pollution (internal)
sparse vector de-serializer
void deserialize(SV &sv, const unsigned char *buf, bool clear_sv=true)
void serialize(const SV &sv, sparse_vector_serial_layout< SV > &sv_layout)
Serialize sparse vector into a memory buffer(s) structure.
bool is_xor_ref() const BMNOEXCEPT
Returns the XOR reference compression status (enabled/disabled)
void disable_xor_compression() BMNOEXCEPT
Disable XOR compression on serialization.
void enable_xor_compression() BMNOEXCEPT
Enable XOR compression on vector serialization.
succinct sparse vector with runtime compression using bit-slicing / transposition method
Definition: bmsparsevec.h:87
bool equal(const sparse_vector< Val, BV > &sv, bm::null_support null_able=bm::use_null) const BMNOEXCEPT
check if another sparse vector has the same content and size
Definition: bmsparsevec.h:2246
void push_back(value_type v)
push value back into vector
Definition: bmsparsevec.h:1838
void optimize(bm::word_t *temp_block=0, typename bvector_type::optmode opt_mode=bvector_type::opt_compress, typename sparse_vector< Val, BV >::statistics *stat=0)
run memory optimization for all vector planes
Definition: bmsparsevec.h:2094
@ use_null
support "non-assigned" or "NULL" logic
Definition: bmconst.h:229
void sparse_vector_serialize(const SV &sv, sparse_vector_serial_layout< SV > &sv_layout, bm::word_t *temp_block=0)
Serialize sparse vector into a memory buffer(s) structure.
int sparse_vector_deserialize(SV &sv, const unsigned char *buf, bm::word_t *temp_block=0)
Deserialize sparse vector.
layout class for serialization buffer structure
size_t size() const BMNOEXCEPT
return current serialized size
const unsigned char * data() const BMNOEXCEPT
Return serialization buffer pointer.
const unsigned char * buf() const BMNOEXCEPT
Return serialization buffer pointer.
static void SDemo2()
Demo 2.
Definition: svsample02.cpp:106
bm::sparse_vector< unsigned, bm::bvector<> > sparse_vector_u32
Definition: svsample02.cpp:49
int main(void)
Definition: svsample02.cpp:167
bm::sparse_vector_serializer< sparse_vector_u32 > sv_serializer_type
Definition: svsample02.cpp:52
bm::sparse_vector< int, bm::bvector<> > sparse_vector_i32
Definition: svsample02.cpp:50
bm::sparse_vector_deserializer< sparse_vector_u32 > sv_deserializer_type
Definition: svsample02.cpp:53
static void SDemo1()
Demo 1 Simple one function call serialization.
Definition: svsample02.cpp:59