libzypp 17.31.23
RepoVariables.h
Go to the documentation of this file.
1/*---------------------------------------------------------------------\
2| ____ _ __ __ ___ |
3| |__ / \ / / . \ . \ |
4| / / \ V /| _/ _/ |
5| / /__ | | | | | | |
6| /_____||_| |_| |_| |
7| |
8\---------------------------------------------------------------------*/
11#ifndef ZYPP_REPO_VARIABLES_H_
12#define ZYPP_REPO_VARIABLES_H_
13
14#include <string>
15#include <zypp/base/Function.h>
17#include <zypp/Url.h>
18
20namespace zypp
21{
23 namespace repo
24 {
58 {
60 typedef function<const std::string * ( const std::string & )> VarRetriever;
61
63 std::string operator()( const std::string & value_r, VarRetriever varRetriever_r ) const;
64
66 std::string operator()( std::string && value_r, VarRetriever varRetriever_r ) const;
67 };
68
106 {
107 std::string operator()( const std::string & value_r ) const;
108
110 std::string operator()( std::string && value_r ) const;
111 };
112
120 {
121 Url operator()( const Url & url_r ) const;
122 };
123 } // namespace repo
125
127 typedef base::ValueTransform<std::string, repo::RepoVariablesStringReplacer> RepoVariablesReplacedString;
128
130 typedef base::ContainerTransform<std::list<std::string>, repo::RepoVariablesStringReplacer> RepoVariablesReplacedStringList;
131
133 typedef base::ValueTransform<Url, repo::RepoVariablesUrlReplacer> RepoVariablesReplacedUrl;
134
136 typedef base::ContainerTransform<std::list<Url>, repo::RepoVariablesUrlReplacer> RepoVariablesReplacedUrlList;
137
138} // namespace zypp
140
141#endif
base::ContainerTransform< std::list< Url >, repo::RepoVariablesUrlReplacer > RepoVariablesReplacedUrlList
Helper managing repo variables replaced url lists.
base::ValueTransform< Url, repo::RepoVariablesUrlReplacer > RepoVariablesReplacedUrl
Helper managing repo variables replaced urls.
base::ContainerTransform< std::list< std::string >, repo::RepoVariablesStringReplacer > RepoVariablesReplacedStringList
Helper managing repo variables replaced string lists.
base::ValueTransform< std::string, repo::RepoVariablesStringReplacer > RepoVariablesReplacedString
Helper managing repo variables replaced strings.
Url manipulation class.
Definition: Url.h:92
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:2
Functor expanding repo variables in a string.
Definition: RepoVariables.h:58
function< const std::string *(const std::string &)> VarRetriever
Function taking a variable name and returning a pointer to the variable value or nullptr if unset.
Definition: RepoVariables.h:60
std::string operator()(const std::string &value_r, VarRetriever varRetriever_r) const
Return a copy of value_r with embedded variables expanded.
Functor replacing repository variables.
std::string operator()(const std::string &value_r) const
Functor replacing repository variables.
Url operator()(const Url &url_r) const