123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef COMMON_CONFIGURATION_H_
- #define COMMON_CONFIGURATION_H_
- #include "common/uri.h"
- #include <string>
- #include <map>
- #include <vector>
- #include <set>
- #include <istream>
- #include <stdint.h>
- #include <optional.hpp>
- namespace hdfs {
- template <class T>
- using optional = std::experimental::optional<T>;
- /**
- * Configuration class that parses XML.
- *
- * Files should be an XML file of the form
- * <configuration>
- * <property>
- * <name>Name</name>
- * <value>Value</value>
- * </property>
- * <configuration>
- *
- * Configuration objects should be created via the ConfigurationLoader class.
- * Configuration objects are immutable and can be shared between threads.
- *
- * This class is thread-safe.
- */
- class Configuration {
- public:
- // Gets values
- std::string GetWithDefault(const std::string &key,
- const std::string &default_value) const;
- optional<std::string> Get(const std::string &key) const;
- int64_t GetIntWithDefault(const std::string &key,
- int64_t default_value) const;
- optional<int64_t> GetInt(const std::string &key) const;
- double GetDoubleWithDefault(const std::string &key,
- double default_value) const;
- optional<double> GetDouble(const std::string &key) const;
- bool GetBoolWithDefault(const std::string &key,
- bool default_value) const;
- optional<bool> GetBool(const std::string &key) const;
- URI GetUriWithDefault(const std::string &key,
- std::string default_value) const;
- optional<URI> GetUri(const std::string &key) const;
- protected:
- friend class ConfigurationLoader;
- /* Transparent data holder for property values */
- struct ConfigData {
- std::string value;
- bool final;
- ConfigData() : final(false){};
- ConfigData(const std::string &value) : value(value), final(false) {}
- void operator=(const std::string &new_value) {
- value = new_value;
- final = false;
- }
- };
- typedef std::map<std::string, ConfigData> ConfigMap;
- Configuration() {};
- Configuration(ConfigMap &src_map) : raw_values_(src_map){};
- Configuration(const ConfigMap &src_map) : raw_values_(src_map){};
- static std::vector<std::string> GetDefaultFilenames();
- // While we want this to be const, it would preclude copying Configuration
- // objects. The Configuration class must not allow any mutations of
- // the raw_values
- ConfigMap raw_values_;
- static std::string fixCase(const std::string &in) {
- std::string result(in);
- for (auto & c: result) c = toupper(c);
- return result;
- }
- };
- }
- #endif
|