src/Configuration.h
branchv_0
changeset 24 c69670b7b4ef
child 25 98be80d2e65b
equal deleted inserted replaced
23:87d22d525a3e 24:c69670b7b4ef
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2021 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 <vector>
       
    20 #include <regex>
       
    21 #include <locale>
       
    22 
       
    23 #include <relpipe/common/type/typedefs.h>
       
    24 
       
    25 
       
    26 namespace relpipe {
       
    27 namespace tr {
       
    28 namespace grep {
       
    29 
       
    30 class RelationConfiguration {
       
    31 public:
       
    32 
       
    33 	virtual ~RelationConfiguration() {
       
    34 	}
       
    35 
       
    36 	relpipe::common::type::StringX relation; // TODO: remove and use just relationPattern, see CLIParser
       
    37 	std::wregex relationPattern;
       
    38 	std::wregex attributePattern;
       
    39 	std::wregex valuePattern;
       
    40 };
       
    41 
       
    42 class Configuration {
       
    43 public:
       
    44 	std::vector<RelationConfiguration> relationConfigurations;
       
    45 
       
    46 	virtual ~Configuration() {
       
    47 	}
       
    48 };
       
    49 
       
    50 }
       
    51 }
       
    52 }