libzypp  15.28.6
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 
20 namespace 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 #ifndef SWIG // Swig treats it as syntax error
65 
66  std::string operator()( std::string && value_r, VarRetriever varRetriever_r ) const;
67 #endif
68  };
69 
105  struct RepoVariablesStringReplacer : public std::unary_function<const std::string &, std::string>
106  {
107  std::string operator()( const std::string & value_r ) const;
108 #ifndef SWIG // Swig treats it as syntax error
109 
110  std::string operator()( std::string && value_r ) const;
111 #endif
112  };
113 
120  struct RepoVariablesUrlReplacer : public std::unary_function<const Url &, Url>
121  {
122  Url operator()( const Url & url_r ) const;
123  };
124  } // namespace repo
126 
128  typedef base::ValueTransform<std::string, repo::RepoVariablesStringReplacer> RepoVariablesReplacedString;
129 
131  typedef base::ContainerTransform<std::list<std::string>, repo::RepoVariablesStringReplacer> RepoVariablesReplacedStringList;
132 
134  typedef base::ValueTransform<Url, repo::RepoVariablesUrlReplacer> RepoVariablesReplacedUrl;
135 
137  typedef base::ContainerTransform<std::list<Url>, repo::RepoVariablesUrlReplacer> RepoVariablesReplacedUrlList;
138 
139 } // namespace zypp
141 
142 #endif
base::ValueTransform< Url, repo::RepoVariablesUrlReplacer > RepoVariablesReplacedUrl
base::ContainerTransform< std::list< std::string >, repo::RepoVariablesStringReplacer > RepoVariablesReplacedStringList
std::string operator()(const std::string &value_r) const
Functor expanding repo variables in a string.
Definition: RepoVariables.h:57
std::string operator()(const std::string &value_r, VarRetriever varRetriever_r) const
Return a copy of value_r with embedded variables expanded.
base::ContainerTransform< std::list< Url >, repo::RepoVariablesUrlReplacer > RepoVariablesReplacedUrlList
base::ValueTransform< std::string, repo::RepoVariablesStringReplacer > RepoVariablesReplacedString
Functor replacing repository variables.
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
Functor replacing repository variables.
Url operator()(const Url &url_r) const
Url manipulation class.
Definition: Url.h:87