src/AwkHandler.h
branchv_0
changeset 0 644fd2ce2580
child 1 05d969cd90d4
equal deleted inserted replaced
-1:000000000000 0:644fd2ce2580
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2019 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, either version 3 of the License, or
       
     8  * (at your option) any later version.
       
     9  *
       
    10  * This program is distributed in the hope that it will be useful,
       
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
       
    13  * GNU General Public License for more details.
       
    14  *
       
    15  * You should have received a copy of the GNU General Public License
       
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
       
    17  */
       
    18 #pragma once
       
    19 
       
    20 #include <memory>
       
    21 #include <string>
       
    22 #include <vector>
       
    23 #include <iostream>
       
    24 #include <sstream>
       
    25 #include <locale>
       
    26 #include <codecvt>
       
    27 #include <regex>
       
    28 
       
    29 #include <relpipe/reader/typedefs.h>
       
    30 #include <relpipe/reader/TypeId.h>
       
    31 #include <relpipe/reader/handlers/RelationalReaderStringHandler.h>
       
    32 #include <relpipe/reader/handlers/AttributeMetadata.h>
       
    33 
       
    34 #include <relpipe/writer/Factory.h>
       
    35 
       
    36 #include <relpipe/cli/RelpipeCLIException.h>
       
    37 
       
    38 #include "Configuration.h"
       
    39 
       
    40 namespace relpipe {
       
    41 namespace tr {
       
    42 namespace awk {
       
    43 
       
    44 using namespace std;
       
    45 using namespace relpipe;
       
    46 using namespace relpipe::reader;
       
    47 using namespace relpipe::reader::handlers;
       
    48 
       
    49 class AwkHandler : public RelationalReaderStringHandler {
       
    50 private:
       
    51 	Configuration configuration;
       
    52 	writer::RelationalWriter* relationalWriter;
       
    53 
       
    54 public:
       
    55 
       
    56 	AwkHandler(writer::RelationalWriter* relationalWriter, Configuration& configuration) : relationalWriter(relationalWriter), configuration(configuration) {
       
    57 	}
       
    58 
       
    59 	void startRelation(string_t name, vector<AttributeMetadata> attributes) override {
       
    60 
       
    61 	}
       
    62 
       
    63 	void attribute(const string_t& value) override {
       
    64 
       
    65 	}
       
    66 
       
    67 	void endOfPipe() {
       
    68 
       
    69 	}
       
    70 
       
    71 };
       
    72 
       
    73 }
       
    74 }
       
    75 }