src/lib/JavaManifestMFDialect.h
branchv_0
changeset 35 930f17f16fd7
parent 28 596a724fbb83
equal deleted inserted replaced
34:7eb3dcacba7b 35:930f17f16fd7
       
     1 /**
       
     2  * Relational pipes
       
     3  * Copyright © 2020 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 "Dialect.h"
       
    20 #include "uri.h"
       
    21 
       
    22 using namespace std;
       
    23 
       
    24 namespace relpipe {
       
    25 namespace in {
       
    26 namespace ini {
       
    27 namespace lib {
       
    28 
       
    29 class JavaManifestMFDialect : public Dialect {
       
    30 public:
       
    31 
       
    32 	void apply(INIReader& reader) override {
       
    33 		reader.setOption(option::TrimContinuingLines, "true");
       
    34 		reader.setOption(option::AllowSections, "false");
       
    35 		reader.setOption(option::AllowSectionTags, "false");
       
    36 		reader.setOption(option::AllowSubKeys, "false");
       
    37 		reader.setOption(option::CommentSeparators, "#");
       
    38 		reader.setOption(option::KeyValueSeparators, ":");
       
    39 		reader.setOption(option::Quotes, "");
       
    40 		reader.setOption(option::AllowLineContinuationWithEscaping, "false");
       
    41 		reader.setOption(option::AllowLineContinuationWithSpace, "true");
       
    42 		// reader.setOption(unescaping::Basic, "false"); // TODO: maybe disable basic escaping and do exactly what is specified in JavaPropertiesUnescapingProcessor
       
    43 		reader.setOption(unescaping::JavaProperties, "true");
       
    44 	}
       
    45 
       
    46 };
       
    47 
       
    48 }
       
    49 }
       
    50 }
       
    51 }