BlinkenArea - GitList
Repositories
Blog
Wiki
permissioner
Code
Commits
Branches
Tags
Search
Tree:
355a113
Branches
Tags
master
permissioner
libpermissioner
src
Config.cpp
add copyright & license
Stefan Schuermans
commited
355a113
at 2020-09-17 19:23:53
Config.cpp
Blame
History
Raw
/** * Permissioner: set file ownerships and permissions * Copyright 2020: Stefan Schuermans, Aachen, Germany <stefan@schuermans.info> * Copyleft: GNU GENERAL PUBLIC LICENSE version 3 (see LICENSE) */ #include <permissioner/Config.h> #include <permissioner/StringUtils.h> #include <permissioner/Tree.h> #include <boost/filesystem.hpp> #include <fstream> #include <map> #include <sstream> #include <stdexcept> #include <string> void Config::parseFile(std::string const &configFileName) { std::ifstream configFile(configFileName, std::ios::in); if (! configFile.is_open()) { std::stringstream msg; msg << "cannot open file \"" << configFileName << "\" for reading"; throw std::runtime_error(msg.str()); } for (std::string line; std::getline(configFile, line); ) { std::string::size_type pos = 0; std::string typeStr; try { StringUtils::getNextField(line, pos, typeStr, "config line type"); } catch (std::exception const &e) { continue; // empty line -> ignore } if (typeStr == "#") { continue; // comment line -> ignore } // actual configuration lines if (typeStr == "tree") { Tree tree; tree.parseParams(line.substr(pos)); trees[tree.getRoot()] = tree; continue; } // unknown configuration line std::stringstream msg; msg << "unknown configuration type \"" << typeStr << "\""; throw std::runtime_error(msg.str()); } } TreeMap const & Config::getTrees() const { return trees; } void Config::setPermissions() const { for (auto const & path_tree : trees) { Tree const & tree = path_tree.second; tree.setPermissions(trees); // exclude all other trees } }