src/Configuration.h
branchv_0
changeset 0 5d1c556ff7db
child 3 9f2d6645ebe6
equal deleted inserted replaced
-1:000000000000 0:5d1c556ff7db
       
     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 <map>
       
    20 #include <regex>
       
    21 #include <locale>
       
    22 
       
    23 #include <relpipe/common/type/typedefs.h>
       
    24 
       
    25 
       
    26 namespace relpipe {
       
    27 namespace tr {
       
    28 namespace infertypes {
       
    29 
       
    30 enum class MODE {
       
    31 	AUTO,
       
    32 	METADATA,
       
    33 	DATA
       
    34 };
       
    35 
       
    36 class RelationConfiguration {
       
    37 public:
       
    38 
       
    39 	RelationConfiguration() {
       
    40 	}
       
    41 
       
    42 	virtual ~RelationConfiguration() {
       
    43 	}
       
    44 
       
    45 	relpipe::common::type::StringX relation;
       
    46 	std::wregex relationPattern;
       
    47 	MODE mode;
       
    48 };
       
    49 
       
    50 class Configuration {
       
    51 public:
       
    52 	std::vector<RelationConfiguration> relationConfigurations;
       
    53 
       
    54 	virtual ~Configuration() {
       
    55 	}
       
    56 };
       
    57 
       
    58 }
       
    59 }
       
    60 }