src/PosixMQHandler.h
author František Kučera <franta-hg@frantovo.cz>
Wed, 02 Mar 2022 01:23:08 +0100
branchv_0
changeset 0 a64022f9684e
child 2 fc9911b1d295
permissions -rw-r--r--
new project relpipe-out-posixmq
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     1
/**
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     2
 * Relational pipes
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     3
 * Copyright © 2022 František Kučera (Frantovo.cz, GlobalCode.info)
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     4
 *
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     5
 * This program is free software: you can redistribute it and/or modify
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     7
 * the Free Software Foundation, version 3 of the License.
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     8
 *
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    12
 * GNU General Public License for more details.
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    13
 *
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    15
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    16
 */
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    17
#pragma once
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    18
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    19
#include <memory>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    20
#include <string>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    21
#include <vector>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    22
#include <iostream>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    23
#include <sstream>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    24
#include <locale>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    25
#include <codecvt>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    26
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    27
#include <relpipe/common/type/typedefs.h>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    28
#include <relpipe/reader/TypeId.h>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    29
#include <relpipe/reader/handlers/RelationalReaderStringHandler.h>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    30
#include <relpipe/reader/handlers/AttributeMetadata.h>
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    31
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    32
namespace relpipe {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    33
namespace out {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    34
namespace posixmq {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    35
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    36
class PosixMQHandler : public relpipe::reader::handlers::RelationalReaderStringHandler {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    37
private:
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    38
	
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    39
public:
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    40
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    41
	PosixMQHandler(std::ostream& output) {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    42
	}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    43
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    44
	void startRelation(relpipe::common::type::StringX name, std::vector<relpipe::reader::handlers::AttributeMetadata> attributes) override {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    45
		
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    46
	}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    47
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    48
	void attribute(const relpipe::common::type::StringX& value) override {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    49
		
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    50
	}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    51
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    52
	void endOfPipe() {
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    53
		
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    54
	}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    55
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    56
};
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    57
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    58
}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    59
}
a64022f9684e new project relpipe-out-posixmq
František Kučera <franta-hg@frantovo.cz>
parents:
diff changeset
    60
}