1
0
mirror of https://github.com/biergaizi/codecrypt synced 2024-06-27 01:08:15 +00:00
codecrypt/src/sencode.h

77 lines
1.6 KiB
C
Raw Normal View History

2012-12-25 13:39:39 +00:00
/*
* This file is part of Codecrypt.
*
2016-04-17 13:47:47 +00:00
* Copyright (C) 2013-2016 Mirek Kratochvil <exa.exa@gmail.com>
*
2012-12-25 13:39:39 +00:00
* Codecrypt is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or (at
* your option) any later version.
*
* Codecrypt 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Codecrypt. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _ccr_sencode_h_
#define _ccr_sencode_h_
2012-12-25 13:39:39 +00:00
#include <string>
#include <vector>
2012-12-29 14:26:34 +00:00
#include "types.h"
2012-12-25 13:39:39 +00:00
/*
* data serialization format
*/
class sencode
{
public:
virtual std::string encode() = 0;
virtual void destroy() {}
2013-07-23 13:58:02 +00:00
virtual ~sencode() {}
2012-12-25 13:39:39 +00:00
};
sencode* sencode_decode (const std::string&);
2012-12-25 13:39:39 +00:00
void sencode_destroy (sencode*);
class sencode_list: public sencode
{
public:
std::vector<sencode*> items;
virtual std::string encode();
virtual void destroy();
};
class sencode_int: public sencode
{
public:
uint i;
2013-04-19 15:23:50 +00:00
sencode_int (uint I) {
2012-12-25 13:39:39 +00:00
i = I;
}
virtual std::string encode();
};
class sencode_bytes: public sencode
{
public:
std::string b;
2012-12-29 14:26:34 +00:00
sencode_bytes (const std::string&s) : b (s) {}
2015-10-31 21:58:17 +00:00
sencode_bytes (const std::vector<byte>&a) : b (a.begin(), a.end()) {}
2012-12-25 13:39:39 +00:00
virtual std::string encode();
};
#endif