src/lib/uri.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 30 Nov 2020 00:12:16 +0100
branchv_0
changeset 32 e72546725c77
parent 31 c6527b45fbc2
child 33 c9a158da6c32
permissions -rw-r--r--
add --parser-option root-name, enable-comments, enable-whitespace, enable-line-numbers, enable-event-numbers, enable-sub-keys

/**
 * Relational pipes
 * Copyright © 2020 František Kučera (Frantovo.cz, GlobalCode.info;
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, version 3 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
#pragma once

namespace relpipe {
namespace in {
namespace ini {
namespace lib {

// TODO: these strings will become globally unique URIs (or IRIs) after moving to alt2xml and relative/unprefixed names should also work

/** general options of the INI parser */
namespace option {
static const char* TrimContinuingLines = "trim-continuing-lines";
static const char* AllowSections = "allow-sections";
static const char* AllowSectionTags = "allow-section-tags";
static const char* AllowSubKeys = "allow-sub-keys";
static const char* CommentSeparators = "comment-separators";
static const char* KeyValueSeparators = "key-value-separators";
static const char* Quotes = "quotes";
static const char* Dialect = "dialect";
}

/** names of dynamically registered unescaping processors; they are also options */
namespace unescaping {
static const char* Basic = "unescape-basic";
static const char* JavaProperties = "unescape-java-properties";
static const char* Backspace = "unescape-backspace";
}

/** not options but a values of the dialect option */
namespace dialect {
static const char* JavaProperties = "java-properties";
}

/** options for configuring the stage where events from the INI parser are converted to SAX events or DOM building */
namespace xml {
static const char* TreeWithNamespaces = "tree-with-namespaces";
static const char* TreeStyle = "tree-style";
static const char* RootName = "root-name";
static const char* EnableComments = "enable-comments";
static const char* EnableWhitespace = "enable-whitespace";
static const char* EnableLineNumbers = "enable-line-numbers";
static const char* EnableEventNumbers = "enable-event-numbers";
static const char* EnableSubKeys = "enable-sub-keys";
// static const char* EnableSections = "enable-sections"; // TODO: flat XML without sections?

static const char* XMLNS = "tag:globalcode.info,2018:alt2xml:TEMPORARY:ini"; // not an option and might change, just preliminary namespace
}

}
}
}
}