src/GrepHandler.h
branchv_0
changeset 7 aebaf590a838
parent 3 8731263d44f1
child 8 f66c759d1111
equal deleted inserted replaced
6:0f28565508ca 7:aebaf590a838
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2018 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 namespace relpipe {
       
    37 namespace tr {
       
    38 namespace grep {
       
    39 
       
    40 using namespace relpipe;
       
    41 using namespace relpipe::reader;
       
    42 using namespace relpipe::reader::handlers;
       
    43 
       
    44 class GrepHandler : public RelationalReaderStringHadler {
       
    45 private:
       
    46 	std::shared_ptr<writer::RelationalWriter> relationalWriter;
       
    47 public:
       
    48 
       
    49 	GrepHandler(std::ostream& output) {
       
    50 		relationalWriter.reset(writer::Factory::create(output));
       
    51 	}
       
    52 
       
    53 	void startRelation(string_t name, std::vector<AttributeMetadata> attributes) override {
       
    54 		// TODO: move to a reusable method (or use same metadata on both reader and writer side?)
       
    55 		std::vector<writer::AttributeMetadata> writerMetadata;
       
    56 		for (AttributeMetadata readerMetadata : attributes) {
       
    57 			writerMetadata.push_back({readerMetadata.getAttributeName(), relationalWriter->toTypeId(readerMetadata.getTypeName())});
       
    58 		}
       
    59 		
       
    60 		relationalWriter->startRelation(name, writerMetadata, true);
       
    61 	}
       
    62 
       
    63 	void attribute(const string_t& value) override {
       
    64 		relationalWriter->writeAttribute(value);
       
    65 	}
       
    66 
       
    67 	void endOfPipe() {
       
    68 
       
    69 	}
       
    70 
       
    71 };
       
    72 
       
    73 }
       
    74 }
       
    75 }