src/SerializeHandler.h
branchv_0
changeset 0 47ab821dd9ca
child 1 c0a1a008982c
equal deleted inserted replaced
-1:000000000000 0:47ab821dd9ca
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2022 František Kučera (Frantovo.cz, GlobalCode.info)
       
     4  *
       
     5  * This program is free software: you can redistribute it and/or modify
       
     6  * it under the terms of the GNU General Public License as published by
       
     7  * the Free Software Foundation, version 3 of the License.
       
     8  *
       
     9  * This program is distributed in the hope that it will be useful,
       
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    12  * GNU General Public License for more details.
       
    13  *
       
    14  * You should have received a copy of the GNU General Public License
       
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    16  */
       
    17 #pragma once
       
    18 
       
    19 #include <regex>
       
    20 #include <stdexcept>
       
    21 
       
    22 #include <relpipe/common/type/typedefs.h>
       
    23 #include <relpipe/reader/TypeId.h>
       
    24 #include <relpipe/reader/handlers/RelationalReaderStringHandler.h>
       
    25 #include <relpipe/reader/handlers/AttributeMetadata.h>
       
    26 
       
    27 #include <relpipe/writer/Factory.h>
       
    28 
       
    29 #include <relpipe/cli/RelpipeCLIException.h>
       
    30 
       
    31 #include "Configuration.h"
       
    32 
       
    33 namespace relpipe {
       
    34 namespace tr {
       
    35 namespace serialize {
       
    36 
       
    37 class SerializeHandler : public relpipe::reader::handlers::RelationalReaderStringHandler {
       
    38 private:
       
    39 	Configuration configuration;
       
    40 	shared_ptr<relpipe::writer::RelationalWriter> relationalWriter;
       
    41 public:
       
    42 
       
    43 	SerializeHandler(shared_ptr<relpipe::writer::RelationalWriter> relationalWriter, Configuration configuration) : relationalWriter(relationalWriter), configuration(configuration) {
       
    44 	}
       
    45 
       
    46 	virtual ~SerializeHandler() = default;
       
    47 
       
    48 	void startRelation(relpipe::common::type::StringX name, std::vector<relpipe::reader::handlers::AttributeMetadata> attributes) override {
       
    49 	}
       
    50 
       
    51 	void attribute(const relpipe::common::type::StringX& value) override {
       
    52 
       
    53 	}
       
    54 
       
    55 	void endOfPipe() {
       
    56 	}
       
    57 
       
    58 };
       
    59 
       
    60 }
       
    61 }
       
    62 }