include/relpipe/protocol/constants.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 25 Aug 2018 11:44:56 +0200
branchv_0
changeset 1 6c083a96dcca
parent 0 0f855036489e
child 3 64049055fc1d
permissions -rw-r--r--
add AddressSanitizer (ASan): -fsanitize=address

#pragma once

#include <cstdint>
#include <string>

#include "typedefs.h"

namespace relpipe {
namespace protocol {

const integer_t DATA_TYPE_ID_BOOLEAN = 1;
const integer_t DATA_TYPE_ID_INTEGER = 2;
const integer_t DATA_TYPE_ID_STRING = 3;

const string_t DATA_TYPE_CODE_BOOLEAN = L"boolean";
const string_t DATA_TYPE_CODE_INTEGER = L"integer";
const string_t DATA_TYPE_CODE_STRING = L"string";


/**
 * With respect for the tradition and computer pioneers, we use same numbers as in ASCII texts:
 * 
 * 1C    FS  ␜  File Separator
 * 1D    GS  ␝  Group Separator
 * 1E    RS  ␞  Record Separator
 * 1F    US  ␟  Unit Separator
 * 
 */
const integer_t DATA_PART_START = 0x1D;
const integer_t DATA_PART_ROW = 0x1E;

}
}