/* This file is part of Jellyfish.
Jellyfish is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Jellyfish is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Jellyfish. If not, see .
*/
#ifndef __JELLYFISH_TEXT_DUMPER_HPP__
#define __JELLYFISH_TEXT_DUMPER_HPP__
#include
namespace jellyfish {
template
class text_writer {
public:
void write(std::ostream& out, const Key& key, const Val val) {
out << key << " " << val << "\n";
}
};
template
class text_dumper : public sorted_dumper, storage_t> {
typedef sorted_dumper, storage_t> super;
text_writer writer;
public:
static const char* format;
text_dumper(int nb_threads, const char* file_prefix, file_header* header = 0) :
super(nb_threads, file_prefix, header)
{ }
virtual void _dump(storage_t* ary) {
if(super::header_) {
super::header_->update_from_ary(*ary);
super::header_->format(format);
}
super::_dump(ary);
}
void write_key_value_pair(std::ostream& out, typename super::heap_item item) {
writer.write(out, item->key_, item->val_);
}
};
template
const char* jellyfish::text_dumper::format = "text/sorted";
template
class text_reader {
std::istream& is_;
char* buffer_;
Key key_;
Val val_;
const RectangularBinaryMatrix m_;
const size_t size_mask_;
public:
text_reader(std::istream& is,
file_header* header) :
is_(is),
buffer_(new char[header->key_len() / 2 + 1]),
key_(header->key_len() / 2),
m_(header->matrix()),
size_mask_(header->size() - 1)
{ }
const Key& key() const { return key_; }
const Val& val() const { return val_; }
size_t pos() const { return m_.times(key()) & size_mask_; }
bool next() {
is_ >> key_ >> val_;
return is_.good();
}
};
}
#endif /* __JELLYFISH_TEXT_DUMPER_HPP__ */