source: trunk/lib/utility.h @ 294

Last change on this file since 294 was 294, checked in by Peter Johansson, 16 years ago

refs #180, support:
diff:@288:294,
diff:tags/release-0.4/bin//tags/release-0.5/bin or
diff:trunk/lib/Trac.cc@288//trunk/lib/Trac.cc@294

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 6.7 KB
Line 
1#ifndef _theplu_svndigest_utility_
2#define _theplu_svndigest_utility_
3
4// $Id: utility.h 294 2007-05-08 17:47:12Z peter $
5
6/*
7  Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson
8  Copyright (C) 2007 Peter Johansson
9
10  This file is part of svndigest, http://lev.thep.lu.se/trac/svndigest
11
12  svndigest is free software; you can redistribute it and/or modify it
13  under the terms of the GNU General Public License as published by
14  the Free Software Foundation; either version 2 of the License, or
15  (at your option) any later version.
16
17  svndigest is distributed in the hope that it will be useful, but
18  WITHOUT ANY WARRANTY; without even the implied warranty of
19  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  General Public License for more details.
21
22  You should have received a copy of the GNU General Public License
23  along with this program; if not, write to the Free Software
24  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
25  02111-1307, USA.
26*/
27
28#include <algorithm>
29#include <functional>
30#include <iosfwd>
31#include <string>
32#include <utility>
33#include <vector>
34
35#include <sys/stat.h>
36
37namespace theplu{
38namespace svndigest{
39
40  ///
41  /// @brief Check if access permissions match \a mode. \a mode must
42  /// be given as r, w, x, or combinations of these letters.
43  ///
44  /// @return On success (all requested permissions granted), zero
45  /// is returned. On error (at least one bit in mode asked for a
46  /// permission that is denied, or some other error occurred), -1
47  /// is returned, and errno is set appropriately.
48  ///
49  /// @throw An std::runtime_error is thrown when checking for write
50  /// permissions for a file/direcotry that does not exist.
51  ///
52  /// @see access(2)
53  ///
54  int access_rights(const std::string& path,const std::string& bits);
55
56  ///
57  /// @return everything after last '/'
58  ///
59  std::string file_name(const std::string&);
60
61  ///
62  /// @brief environment variable @a var
63  ///
64  std::string getenv(const std::string& var); 
65
66  ///
67  /// @brief remove trailing whitespaces
68  ///
69  std::string htrim(std::string str);
70
71  ///
72  /// @return true if \a str is an integer
73  ///
74  bool is_int(std::string str);
75
76  ///
77  /// @brief remove leading whitespaces
78  ///
79  std::string ltrim(std::string str);
80
81  inline bool match_begin(std::string::const_iterator first, 
82                          std::string::const_iterator last, 
83                          const std::string& str)
84  { return (std::distance(first, last)>=static_cast<int>(str.size()) && 
85            std::equal(str.begin(), str.end(), first)); 
86  }
87
88  inline bool match_end(std::string::const_reverse_iterator first, 
89                        std::string::const_reverse_iterator last, 
90                        const std::string& str)
91  { return (std::distance(first,last)>=static_cast<int>(str.size()) && 
92            std::equal(str.rbegin(), str.rend(), first)); 
93  }
94
95  ///
96  /// Create directory \a dir. The call can fail in many ways, cf. 'man
97  /// mkdir'.
98  ///
99  inline int mkdir(const std::string& dir) { return ::mkdir(dir.c_str(),0777); }
100
101  ///
102  /// @brief Check whether \a path already exists or not.
103  ///
104  /// @return True if \a path exists, false otherwise.
105  ///
106  bool node_exist(const std::string& path);
107
108  ///
109  /// @return the current working directory.
110  ///
111  std::string pwd(void);
112
113  ///
114  /// Search finds a subsecuence in [first, last) being identical to @ str
115  ///
116  /// @return iterator pointing to first character in found subsequence
117  ///
118  /// @see std::search
119  ///
120  inline std::string::iterator search(std::string::iterator first, 
121                                      std::string::iterator last, 
122                                      std::string str)
123  { return std::search(first, last, str.begin(), str.end()); }
124
125  ///
126  ///
127  ///
128  time_t str2time(const std::string&);
129
130  ///
131  /// remove leading and trailing whitespaces
132  ///
133  inline std::string trim(std::string str) { return htrim(ltrim(str)); }
134
135
136  template <class T>
137  std::string match(std::string::const_iterator& first,
138                    const std::string::const_iterator& last,
139                    const T& func)
140  {
141    std::string res;
142    for (;first!=last && func(first); ++first) 
143      res.append(1,*first);
144    return res;
145  }
146
147  struct Digit
148  {
149    inline bool operator()(std::string::const_iterator i) const 
150    { return isdigit(*i); }
151  };
152
153  class notChar
154  {
155  public:
156    notChar(char);
157    inline bool operator()(std::string::const_iterator i) const 
158    { return *i!=char_; }
159  private:
160    char char_;
161  };
162
163  class not2Char
164  {
165  public:
166    not2Char(char, char);
167    inline bool operator()(std::string::const_iterator i) const 
168    { return *i!=char1_ && *i!=char2_; }
169  private:
170    const char char1_;
171    const char char2_;
172  };
173
174  class Str
175  {
176  public:
177    Str(std::string);
178    inline bool operator()(std::string::const_iterator i) const 
179    { return (std::equal(str_.begin(), str_.end(), i)); } 
180
181  private:
182    const std::string str_;
183  };
184
185  class not2Str
186  {
187  public:
188    not2Str(std::string, std::string);
189    inline bool operator()(std::string::const_iterator i) const 
190    { 
191      return !(std::equal(str1_.begin(), str1_.end(), i) ||
192              std::equal(str2_.begin(), str2_.end(), i));
193    } 
194
195  private:
196    const std::string str1_;
197    const std::string str2_;
198  };
199
200  ///
201  /// @brief Functor comparing pairs using second.
202  ///
203  /// STL provides operator< for the pair.first element, but none for
204  /// pair.second. This template provides this and can be used as the
205  /// comparison object in generic functions such as the STL sort.
206  ///
207  template <class T1,class T2>
208  struct pair_value_compare
209  {
210    ///
211    /// @return true if x.second<y.second or (x.second==y.second and
212    /// x.first<y.first)
213    ///
214    inline bool operator()(const std::pair<T1,T2>& x,
215                           const std::pair<T1,T2>& y) {
216      return ((x.second<y.second) ||
217              (!(y.second<x.second) && (x.first<y.first))); 
218    }
219  };
220
221  ///
222  /// Calculating sum of two vectors.
223  ///
224  /// @return resulting vector
225  ///
226  template <typename T >
227  struct VectorPlus : 
228    public std::binary_function<std::vector<T>,std::vector<T>,std::vector<T> >
229  {
230    std::vector<T> operator()(const std::vector<T>& u,
231                              const std::vector<T>& v) const 
232    {
233      if ( u.size() > v.size() ){
234        std::vector<T> res(u.size());
235        transform(u.begin(), u.end(), v.begin(), res.begin(), std::plus<T>());
236        copy(u.begin()+v.size(), u.end(), res.begin()+v.size());
237        return res;
238      }
239 
240      std::vector<T> res(v.size());
241      transform(v.begin(), v.end(), u.begin(), res.begin(), std::plus<T>());
242      if ( v.size() > u.size() )
243        copy(v.begin()+u.size(), v.end(), res.begin()+u.size());
244      return res;
245    }
246
247  };
248
249  ///
250  /// @return resulting vector
251  ///
252  template <typename Key, typename T>
253  struct PairValuePlus :
254    public std::binary_function<std::vector<T>,
255                                std::pair<const Key, std::vector<T> >, 
256                                std::vector<T> >
257  {
258    std::vector<T> operator()(const std::vector<T>& sum, 
259                              const std::pair<const Key,std::vector<T> >& p)
260    {
261      return VectorPlus<T>()(sum, p.second);
262    }
263  };
264
265}} // end of namespace svndigest end of namespace theplu
266
267#endif
Note: See TracBrowser for help on using the repository browser.