CHG is a container format file used by MONOMAKH-SAPR, a software package for analysis & design of reinforced concrete multi-storey buildings with arbitrary configuration in plan.
CHG is a simple container, which bundles several project files together.
Written and tested by Vladimir Shulzhitskiy, 2017
This page hosts a formal specification of .chg file format of MONOMAKH-SAPR using Kaitai Struct. This specification can be automatically translated into a variety of programming languages to get a parsing library.
All parsing code for C++98/STL generated by Kaitai Struct depends on the C++/STL runtime library. You have to install it before you can parse data.
For C++, the easiest way is to clone the runtime library sources and build them along with your project.
Using Kaitai Struct in C++/STL usually consists of 3 steps.
std::istream
). One can open local file for that, or use existing std::string
or char*
buffer.
#include <fstream>
std::ifstream is("path/to/local/file.chg", std::ifstream::binary);
#include <sstream>
std::istringstream is(str);
#include <sstream>
const char buf[] = { ... };
std::string str(buf, sizeof buf);
std::istringstream is(str);
#include "kaitai/kaitaistream.h"
kaitai::kstream ks(&is);
monomakh_sapr_chg_t data(&ks);
After that, one can get various attributes from the structure by invoking getter methods like:
data.title() // => get title
#ifndef MONOMAKH_SAPR_CHG_H_
#define MONOMAKH_SAPR_CHG_H_
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
#include "kaitai/kaitaistruct.h"
#include <stdint.h>
#include <vector>
#if KAITAI_STRUCT_VERSION < 9000L
#error "Incompatible Kaitai Struct C++/STL API: version 0.9 or later is required"
#endif
/**
* CHG is a container format file used by
* [MONOMAKH-SAPR](https://www.liraland.com/mono/), a software
* package for analysis & design of reinforced concrete multi-storey
* buildings with arbitrary configuration in plan.
*
* CHG is a simple container, which bundles several project files
* together.
*
* Written and tested by Vladimir Shulzhitskiy, 2017
*/
class monomakh_sapr_chg_t : public kaitai::kstruct {
public:
class block_t;
monomakh_sapr_chg_t(kaitai::kstream* p__io, kaitai::kstruct* p__parent = 0, monomakh_sapr_chg_t* p__root = 0);
private:
void _read();
void _clean_up();
public:
~monomakh_sapr_chg_t();
class block_t : public kaitai::kstruct {
public:
block_t(kaitai::kstream* p__io, monomakh_sapr_chg_t* p__parent = 0, monomakh_sapr_chg_t* p__root = 0);
private:
void _read();
void _clean_up();
public:
~block_t();
private:
std::string m_header;
uint64_t m_file_size;
std::string m_file;
monomakh_sapr_chg_t* m__root;
monomakh_sapr_chg_t* m__parent;
public:
std::string header() const { return m_header; }
uint64_t file_size() const { return m_file_size; }
std::string file() const { return m_file; }
monomakh_sapr_chg_t* _root() const { return m__root; }
monomakh_sapr_chg_t* _parent() const { return m__parent; }
};
private:
std::string m_title;
std::vector<block_t*>* m_ent;
monomakh_sapr_chg_t* m__root;
kaitai::kstruct* m__parent;
public:
std::string title() const { return m_title; }
std::vector<block_t*>* ent() const { return m_ent; }
monomakh_sapr_chg_t* _root() const { return m__root; }
kaitai::kstruct* _parent() const { return m__parent; }
};
#endif // MONOMAKH_SAPR_CHG_H_
// This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
#include "monomakh_sapr_chg.h"
monomakh_sapr_chg_t::monomakh_sapr_chg_t(kaitai::kstream* p__io, kaitai::kstruct* p__parent, monomakh_sapr_chg_t* p__root) : kaitai::kstruct(p__io) {
m__parent = p__parent;
m__root = this;
m_ent = 0;
try {
_read();
} catch(...) {
_clean_up();
throw;
}
}
void monomakh_sapr_chg_t::_read() {
m_title = kaitai::kstream::bytes_to_str(m__io->read_bytes(10), std::string("ascii"));
m_ent = new std::vector<block_t*>();
{
int i = 0;
while (!m__io->is_eof()) {
m_ent->push_back(new block_t(m__io, this, m__root));
i++;
}
}
}
monomakh_sapr_chg_t::~monomakh_sapr_chg_t() {
_clean_up();
}
void monomakh_sapr_chg_t::_clean_up() {
if (m_ent) {
for (std::vector<block_t*>::iterator it = m_ent->begin(); it != m_ent->end(); ++it) {
delete *it;
}
delete m_ent; m_ent = 0;
}
}
monomakh_sapr_chg_t::block_t::block_t(kaitai::kstream* p__io, monomakh_sapr_chg_t* p__parent, monomakh_sapr_chg_t* p__root) : kaitai::kstruct(p__io) {
m__parent = p__parent;
m__root = p__root;
try {
_read();
} catch(...) {
_clean_up();
throw;
}
}
void monomakh_sapr_chg_t::block_t::_read() {
m_header = kaitai::kstream::bytes_to_str(m__io->read_bytes(13), std::string("ascii"));
m_file_size = m__io->read_u8le();
m_file = m__io->read_bytes(file_size());
}
monomakh_sapr_chg_t::block_t::~block_t() {
_clean_up();
}
void monomakh_sapr_chg_t::block_t::_clean_up() {
}