1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* Copyright (c) [2011-2014] Novell, Inc.
* Copyright (c) [2020-2023] SUSE LLC
*
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of version 2 of the GNU General Public License as published
* by the Free Software Foundation.
*
* 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, contact Novell, Inc.
*
* To contact Novell about this file by physical or electronic mail, you may
* find current contact information at www.novell.com.
*/
#include <string>
#include <boost/algorithm/string.hpp>
#include <snapper/Snapper.h>
#include <snapper/AppUtil.h>
#include <snapper/Enum.h>
#include "client/utils/text.h"
#include "client/utils/GetOpts.h"
#include "proxy.h"
using namespace snapper;
using namespace std;
unsigned int
read_num(const string& str);
map<string, string>
read_userdata(const string& s, const map<string, string>& old = map<string, string>());
string
show_userdata(const map<string, string>& userdata);
map<string, string>
read_configdata(const vector<string>& v, const map<string, string>& old = map<string, string>());
string
username(uid_t uid);
const Filesystem*
get_filesystem(const ProxyConfig& config, const string& target_root);
struct Differ
{
Differ();
void run(const string& f1, const string& f2) const;
string command;
string extensions;
};
namespace snapper
{
/**
* Return a string listing the possible enum values. E.g. "Use auto, classic or
* transactional." for possible_enum_values<Ambit>().
*/
template<class Column>
string
possible_enum_values()
{
const vector<string>& names = EnumInfo<Column>::names;
string ret;
for (vector<string>::const_iterator it = names.begin(); it != names.end(); ++it)
{
if (it == names.begin())
{
ret = *it;
}
else if (it == names.end() - 1)
{
// TRANSLATORS: used to construct list of values
// %1$s is replaced by first value
// %2$s is replaced by second value
ret = sformat(_("%1$s or %2$s"), ret.c_str(), it->c_str());
}
else
{
// TRANSLATORS: used to construct list of values
// %1$s is replaced by first value
// %2$s is replaced by second value
ret = sformat(_("%1$s, %2$s"), ret.c_str(), it->c_str());
}
}
// TRANSLATORS: a list of possible values
// %1$s is replaced by list of possible values
return sformat(_("Use %1$s."), ret.c_str());
}
/**
* Transform a string with comma separated columns to a vector of columns.
*/
template<class Column>
vector<Column>
parse_columns(const string& columns)
{
vector<string> tmp;
boost::split(tmp, columns, boost::is_any_of(","), boost::token_compress_on);
vector<Column> ret;
for (const string& str : tmp)
{
Column column;
if (!toValue(str, column, false))
{
string error = sformat(_("Invalid column '%s'."), str.c_str()) + '\n' +
possible_enum_values<Column>();
SN_THROW(OptionsException(error));
}
ret.push_back(column);
}
return ret;
}
}
|