libzypp  17.25.2
String.h
Go to the documentation of this file.
1 /*---------------------------------------------------------------------\
2 | ____ _ __ __ ___ |
3 | |__ / \ / / . \ . \ |
4 | / / \ V /| _/ _/ |
5 | / /__ | | | | | | |
6 | /_____||_| |_| |_| |
7 | |
8 \---------------------------------------------------------------------*/
12 #ifndef ZYPP_BASE_STRING_H
13 #define ZYPP_BASE_STRING_H
14 
15 #include <cstring>
16 
17 #include <iosfwd>
18 #include <vector>
19 #include <string>
20 #include <sstream>
21 #include <boost/format.hpp>
22 #include <boost/utility/string_ref.hpp>
23 
24 #include <zypp/base/Easy.h>
25 #include <zypp/base/PtrTypes.h>
26 #include <zypp/base/Function.h>
27 
29 namespace boost { namespace logic { class tribool; } }
30 namespace zypp { typedef boost::logic::tribool TriBool; }
32 
34 namespace zypp
35 {
39  template <class Tp>
40  std::string asUserString( const Tp & val_r )
41  { return val_r.asUserString(); }
42 
43 }// namespace zypp
45 
47 namespace zypp
48 {
49 
90  class C_Str
91  {
92  public:
94 
95  public:
96  C_Str() : _val( 0 ), _sze( 0 ) {}
97  C_Str( char * c_str_r ) : _val( c_str_r ), _sze( std::string::npos ) {}
98  C_Str( const char * c_str_r ) : _val( c_str_r ), _sze( std::string::npos ) {}
99  C_Str( const std::string & str_r ) : _val( str_r.c_str() ), _sze( str_r.size() ) {}
100  C_Str( const boost::string_ref & str_r ) : _val( str_r.data() ), _sze( str_r.size() ) {}
101 
102  public:
103  bool isNull() const { return !_val; }
104  bool empty() const { return !(_val && *_val); }
105  size_type size() const
106  {
107  if ( _sze == std::string::npos )
108  { _sze = _val ? ::strlen( _val ) : 0; }
109  return _sze;
110  };
111 
112  operator const char *() const { return c_str(); }
113  const char * c_str() const { return _val ? _val : ""; }
114 
115  private:
116  const char *const _val;
117  mutable size_type _sze;
118  };
119 
121  inline std::ostream & operator<<( std::ostream & str, const C_Str & obj )
122  { return str << obj.c_str(); }
123 
125 
129  namespace str
130  {
131 
133 
136  inline const std::string & asString( const std::string & t )
137  { return t; }
138 
139  inline std::string && asString( std::string && t )
140  { return std::move(t); }
141 
142  inline std::string asString( const char * t )
143  { return t == nullptr ? std::string() : t; }
144 
145  inline std::string asString( char * t )
146  { return t == nullptr ? std::string() : t; }
147 
148  template<class Tp>
149  inline std::string asString( const Tp &t )
150  { return t.asString(); }
151 
152  template<class Tp>
153  inline std::string asString( const intrusive_ptr<Tp> &p )
154  { return p->asString(); }
155 
156  template<class Tp>
157  inline std::string asString( const weak_ptr<Tp> &p )
158  { return p->asString(); }
159 
160  template<>
161  inline std::string asString( const bool &t )
162  { return t ? "true" : "false"; }
163 
165 
166  std::string form( const char * format, ... )
167  __attribute__ ((format (printf, 1, 2)));
168 
170 
174  std::string strerror( int errno_r );
175 
177 
187  struct SafeBuf
188  {
189  char * _buf;
190  SafeBuf() : _buf( 0 ) {}
191  ~SafeBuf() { if ( _buf ) free( _buf ); }
192  std::string asString() const
193  { return _buf ? std::string(_buf) : std::string(); }
194  };
195 
208  struct Str
209  {
210  template<class Tp>
211  Str & operator<<( Tp && val )
212  { _str << std::forward<Tp>(val); return *this; }
213 
214  Str & operator<<( std::ostream& (*iomanip)( std::ostream& ) )
215  { _str << iomanip; return *this; }
216 
217  operator std::string() const { return _str.str(); }
218  std::string asString() const { return _str.str(); }
219  std::string str() const { return _str.str(); }
220 
221  const std::ostream & stream() const { return _str; }
222  std::ostream & stream() { return _str; }
223 
224  void clear() { _str.str( std::string() ); }
225 
226  private:
227  std::ostringstream _str;
228  };
229 
231  inline std::ostream & operator<<( std::ostream & str, const Str & obj )
232  { return str << obj.str(); }
233 
249  struct Format
250  {
251  Format() { _fmter.exceptions( boost::io::no_error_bits ); }
252  Format( const std::string & format_r ) : Format() { _fmter.parse( format_r ); }
253 
254  template<class Tp>
255  Format & operator%( Tp && arg )
256  { _fmter % std::forward<Tp>(arg); return *this; }
257 
258  operator std::string() const { return _fmter.str(); }
259  std::string asString() const { return _fmter.str(); }
260  std::string str() const { return _fmter.str(); }
261 
262  const boost::format & fmter() const { return _fmter; }
263  boost::format & fmter() { return _fmter; }
264 
265  protected:
266  boost::format _fmter;
267  };
268 
270  inline std::ostream & operator<<( std::ostream & str, const Format & obj )
271  { return str << obj.fmter(); }
272 
286  inline std::string numstring( char n, int w = 0 ) { return form( "%*hhd", w, n ); }
287  inline std::string numstring( unsigned char n, int w = 0 ) { return form( "%*hhu", w, n ); }
288  inline std::string numstring( short n, int w = 0 ) { return form( "%*hd", w, n ); }
289  inline std::string numstring( unsigned short n, int w = 0 ) { return form( "%*hu", w, n ); }
290  inline std::string numstring( int n, int w = 0 ) { return form( "%*d", w, n ); }
291  inline std::string numstring( unsigned n, int w = 0 ) { return form( "%*u", w, n ); }
292  inline std::string numstring( long n, int w = 0 ) { return form( "%*ld", w, n ); }
293  inline std::string numstring( unsigned long n, int w = 0 ) { return form( "%*lu", w, n ); }
294  inline std::string numstring( long long n, int w = 0 ) { return form( "%*lld", w, n ); }
295  inline std::string numstring( unsigned long long n, int w = 0 ) { return form( "%*llu", w, n ); }
296 
297  template<> inline std::string asString( const char & t ) { return numstring( t ); }
298  template<> inline std::string asString( const unsigned char & t ) { return numstring( t ); }
299  template<> inline std::string asString( const short & t ) { return numstring( t ); }
300  template<> inline std::string asString( const unsigned short & t ) { return numstring( t ); }
301  template<> inline std::string asString( const int & t ) { return numstring( t ); }
302  template<> inline std::string asString( const unsigned & t ) { return numstring( t ); }
303  template<> inline std::string asString( const long & t ) { return numstring( t ); }
304  template<> inline std::string asString( const unsigned long & t ) { return numstring( t ); }
305  template<> inline std::string asString( const long long & t ) { return numstring( t ); }
306  template<> inline std::string asString( const unsigned long long & t ) { return numstring( t ); }
308 
310 
321  inline std::string hexstring( char n, int w = 4 ) { return form( "%#0*hhx", w, n ); }
322  inline std::string hexstring( unsigned char n, int w = 4 ) { return form( "%#0*hhx", w, n ); }
323  inline std::string hexstring( short n, int w = 10 ){ return form( "%#0*hx", w, n ); }
324  inline std::string hexstring( unsigned short n, int w = 10 ){ return form( "%#0*hx", w, n ); }
325  inline std::string hexstring( int n, int w = 10 ){ return form( "%#0*x", w, n ); }
326  inline std::string hexstring( unsigned n, int w = 10 ){ return form( "%#0*x", w, n ); }
327  inline std::string hexstring( long n, int w = 10 ){ return form( "%#0*lx", w, n ); }
328  inline std::string hexstring( unsigned long n, int w = 10 ){ return form( "%#0*lx", w, n ); }
329  inline std::string hexstring( long long n, int w = 0 ) { return form( "%#0*llx", w, n ); }
330  inline std::string hexstring( unsigned long long n, int w = 0 ) { return form( "%#0*llx", w, n ); }
332 
334 
345  inline std::string octstring( char n, int w = 4 ) { return form( "%#0*hho", w, n ); }
346  inline std::string octstring( unsigned char n, int w = 4 ) { return form( "%#0*hho", w, n ); }
347  inline std::string octstring( short n, int w = 5 ) { return form( "%#0*ho", w, n ); }
348  inline std::string octstring( unsigned short n, int w = 5 ) { return form( "%#0*ho", w, n ); }
349  inline std::string octstring( int n, int w = 5 ) { return form( "%#0*o", w, n ); }
350  inline std::string octstring( unsigned n, int w = 5 ) { return form( "%#0*o", w, n ); }
351  inline std::string octstring( long n, int w = 5 ) { return form( "%#0*lo", w, n ); }
352  inline std::string octstring( unsigned long n, int w = 5 ) { return form( "%#0*lo", w, n ); }
353  inline std::string octstring( long long n, int w = 0 ) { return form( "%#0*llo", w, n ); }
354  inline std::string octstring( unsigned long long n, int w = 0 ) { return form( "%#0*llo", w, n ); }
356 
357 
359 
360  template <typename TInt>
361  std::string binstring( TInt val_r )
362  {
363  constexpr unsigned bits = sizeof(TInt)*8;
364  std::string ret( bits, ' ' );
365  TInt bit = 1;
366  for ( unsigned pos = bits; pos > 0; )
367  { --pos; ret[pos] = ((val_r & bit)?'1':'0'); bit = bit<<1; }
368  return ret;
369  }
370 
372 
381  template<typename TInt>
382  TInt strtonum( const C_Str & str );
383 
384  template<>
385  inline short strtonum( const C_Str & str ) { return ::strtol ( str, NULL, 0 ); }
386  template<>
387  inline int strtonum( const C_Str & str ) { return ::strtol ( str, NULL, 0 ); }
388  template<>
389  inline long strtonum( const C_Str & str ) { return ::strtol ( str, NULL, 0 ); }
390  template<>
391  inline long long strtonum( const C_Str & str ) { return ::strtoll ( str, NULL, 0 ); }
392 
393  template<>
394  inline unsigned short strtonum( const C_Str & str ) { return ::strtoul ( str, NULL, 0 ); }
395  template<>
396  inline unsigned strtonum( const C_Str & str ) { return ::strtoul ( str, NULL, 0 ); }
397  template<>
398  inline unsigned long strtonum( const C_Str & str ) { return ::strtoul ( str, NULL, 0 ); }
399  template<>
400  inline unsigned long long strtonum( const C_Str & str ) { return ::strtoull( str, NULL, 0 ); }
401 
407  template<typename TInt>
408  inline TInt strtonum( const C_Str & str, TInt & i )
409  { return i = strtonum<TInt>( str ); }
411 
413 
417  bool strToTrue( const C_Str & str );
418 
420  bool strToFalse( const C_Str & str );
421 
426  inline bool strToBool( const C_Str & str, bool default_r )
427  { return( default_r ? strToFalse( str ) : strToTrue( str ) ); }
428 
433  inline bool strToBoolNodefault( const C_Str & str, bool & return_r )
434  {
435  if ( strToTrue( str ) ) return (return_r = true);
436  if ( !strToFalse( str ) ) return (return_r = false);
437  return return_r;
438  }
439 
441  TriBool strToTriBool( const C_Str & str );
442 
444 
448  std::string gsub( const std::string & str_r, const std::string & from_r, const std::string & to_r );
449 
452  std::string gsubFun( const std::string & str_r, const std::string & from_r, function<std::string()> to_r );
453 
458  std::string & replaceAll( std::string & str_r, const std::string & from_r, const std::string & to_r );
459 
462  std::string & replaceAllFun( std::string & str_r, const std::string & from_r, function<std::string()> to_r );
463 
476  inline std::string gapify( std::string inp_r, std::string::size_type gap_r = 1, char gapchar = ' ' )
477  {
478  if ( gap_r && inp_r.size() > gap_r )
479  {
480  inp_r.reserve( inp_r.size() + (inp_r.size()-1)/gap_r );
481  for ( std::string::size_type pos = gap_r; pos < inp_r.size(); pos += gap_r+1 )
482  inp_r.insert( pos, 1, gapchar );
483  }
484  return inp_r;
485  }
486 
488 
493  enum Trim {
494  NO_TRIM = 0x00,
495  L_TRIM = 0x01,
496  R_TRIM = 0x02,
498  };
499 
500  std::string trim( const std::string & s, const Trim trim_r = TRIM );
501  std::string trim( std::string && s, const Trim trim_r = TRIM );
502 
503  inline std::string ltrim( const std::string & s )
504  { return trim( s, L_TRIM ); }
505  inline std::string ltrim( std::string && s )
506  { return trim( std::move(s), L_TRIM ); }
507 
508  inline std::string rtrim( const std::string & s )
509  { return trim( s, R_TRIM ); }
510  inline std::string rtrim( std::string && s )
511  { return trim( std::move(s), R_TRIM ); }
513 
514 
516 
527  template<class TOutputIterator>
528  unsigned split( const C_Str & line_r, TOutputIterator result_r, const C_Str & sepchars_r = " \t", const Trim trim_r = NO_TRIM )
529  {
530  const char * beg = line_r;
531  const char * cur = beg;
532  // skip leading sepchars
533  while ( *cur && ::strchr( sepchars_r, *cur ) )
534  ++cur;
535  unsigned ret = 0;
536  for ( beg = cur; *beg; beg = cur, ++result_r, ++ret )
537  {
538  // skip non sepchars
539  while( *cur && !::strchr( sepchars_r, *cur ) )
540  ++cur;
541  // build string
542  *result_r = trim( std::string( beg, cur-beg ), trim_r );
543  // skip sepchars
544  while ( *cur && ::strchr( sepchars_r, *cur ) )
545  ++cur;
546  }
547  return ret;
548  }
549 
550  template<class TOutputIterator>
551  unsigned split( const C_Str & line_r, TOutputIterator result_r, const Trim trim_r )
552  { return split( line_r, result_r, " \t", trim_r ); }
553 
554 
591  template<class TOutputIterator>
592  unsigned splitEscaped( const C_Str & line_r, TOutputIterator result_r, const C_Str & sepchars_r = " \t", bool withEmpty = false)
593  {
594  const char * beg = line_r;
595  const char * cur = beg;
596  unsigned ret = 0;
597 
598  // skip leading sepchars
599  while ( *cur && ::strchr( sepchars_r, *cur ) )
600  {
601  ++cur;
602  if (withEmpty)
603  {
604  *result_r = "";
605  ++ret;
606  }
607  }
608 
609  // there were only sepchars in the string
610  if (!*cur && withEmpty)
611  {
612  *result_r = "";
613  return ++ret;
614  }
615 
616  // after the leading sepchars
617  enum class Quote { None, Slash, Single, Double, DoubleSlash };
618  std::vector<char> buf;
619  Quote quoting = Quote::None;
620  for ( beg = cur; *beg; beg = cur, ++result_r, ++ret )
621  {
622  // read next value until unquoted sepchar
623  buf.clear();
624  quoting = Quote::None;
625  do {
626  switch ( quoting )
627  {
628  case Quote::None:
629  switch ( *cur )
630  {
631  case '\\': quoting = Quote::Slash; break;
632  case '\'': quoting = Quote::Single; break;
633  case '"': quoting = Quote::Double; break;
634  default: buf.push_back( *cur ); break;
635  }
636  break;
637 
638  case Quote::Slash:
639  buf.push_back( *cur );
640  quoting = Quote::None;
641  break;
642 
643  case Quote::Single:
644  switch ( *cur )
645  {
646  case '\'': quoting = Quote::None; break;
647  default: buf.push_back( *cur ); break;
648  }
649  break;
650 
651  case Quote::Double:
652  switch ( *cur )
653  {
654  case '\"': quoting = Quote::None; break;
655  case '\\': quoting = Quote::DoubleSlash; break;
656  default: buf.push_back( *cur ); break;
657  }
658  break;
659 
660  case Quote::DoubleSlash:
661  switch ( *cur )
662  {
663  case '\"': /*fallthrough*/
664  case '\\': buf.push_back( *cur ); break;
665  default:
666  buf.push_back( '\\' );
667  buf.push_back( *cur );
668  break;
669  }
670  quoting = Quote::Double;
671  break;
672  }
673  ++cur;
674  } while ( *cur && ( quoting != Quote::None || !::strchr( sepchars_r, *cur ) ) );
675  *result_r = std::string( buf.begin(), buf.end() );
676 
677 
678  // skip sepchars
679  if ( *cur && ::strchr( sepchars_r, *cur ) )
680  ++cur;
681  while ( *cur && ::strchr( sepchars_r, *cur ) )
682  {
683  ++cur;
684  if (withEmpty)
685  {
686  *result_r = "";
687  ++ret;
688  }
689  }
690  // the last was a separator => one more field
691  if ( !*cur && withEmpty && ::strchr( sepchars_r, *(cur-1) ) )
692  {
693  *result_r = "";
694  ++ret;
695  }
696  }
697  return ret;
698  }
699 
721  template<class TOutputIterator>
722  unsigned splitFields( const C_Str & line_r, TOutputIterator result_r, const C_Str & sepchars_r = ":" )
723  {
724  const char * beg = line_r;
725  const char * cur = beg;
726  unsigned ret = 0;
727  for ( beg = cur; *beg; beg = cur, ++result_r )
728  {
729  // skip non sepchars
730  while( *cur && !::strchr( sepchars_r, *cur ) )
731  {
732  if ( *cur == '\\' && *(cur+1) )
733  ++cur;
734  ++cur;
735  }
736  // build string
737  *result_r = std::string( beg, cur-beg );
738  ++ret;
739  // skip sepchar
740  if ( *cur )
741  {
742  ++cur;
743  if ( ! *cur ) // ending with sepchar
744  {
745  *result_r = std::string(); // add final empty field
746  ++ret;
747  break;
748  }
749  }
750  }
751  return ret;
752  }
753 
760  template<class TOutputIterator>
761  unsigned splitFieldsEscaped( const C_Str & line_r, TOutputIterator result_r, const C_Str & sepchars_r = ":" )
762  {
763  return splitEscaped( line_r, result_r, sepchars_r, true /* withEmpty */ );
764  }
765 
767 
769 
772  template <class TIterator>
773  std::string join( TIterator begin, TIterator end, const C_Str & sep_r = " " )
774  {
775  std::string res;
776  for ( TIterator iter = begin; iter != end; ++ iter )
777  {
778  if ( iter != begin )
779  res += sep_r;
780  res += asString(*iter);
781  }
782  return res;
783  }
784 
786  template <class TContainer>
787  std::string join( const TContainer & cont_r, const C_Str & sep_r = " " )
788  { return join( cont_r.begin(), cont_r.end(), sep_r ); }
789 
794  template <class TIterator>
795  std::string joinEscaped( TIterator begin, TIterator end, const char sep_r = ' ' )
796  {
797  std::vector<char> buf;
798  for ( TIterator iter = begin; iter != end; ++ iter )
799  {
800  if ( iter != begin )
801  buf.push_back( sep_r );
802 
803  if ( iter->empty() )
804  {
805  // empty string goes ""
806  buf.push_back( '"' );
807  buf.push_back( '"' );
808  }
809  else
810  {
811  std::string toadd( asString(*iter) );
812  for_( ch, toadd.begin(), toadd.end() )
813  {
814  switch ( *ch )
815  {
816  case '"':
817  case '\'':
818  case '\\':
819  buf.push_back( '\\' );
820  buf.push_back( *ch );
821  break;
822  default:
823  if ( *ch == sep_r )
824  buf.push_back( '\\' );
825  buf.push_back( *ch );
826  }
827  }
828  }
829  }
830  return std::string( buf.begin(), buf.end() );
831  }
833 
834 
836 
842  inline std::ostream & printIndented( std::ostream & str, const std::string & text_r, const std::string & indent_r = " ", unsigned maxWitdh_r = 0 )
843  {
844  if ( maxWitdh_r )
845  {
846  if ( indent_r.size() >= maxWitdh_r )
847  maxWitdh_r = 0; // nonsense: indent larger than line witdh
848  else
849  maxWitdh_r -= indent_r.size();
850  }
851  unsigned width = 0;
852  for ( const char * e = text_r.c_str(), * s = e; *e; s = ++e )
853  {
854  for ( ; *e && *e != '\n'; ++e ) ;/*searching*/
855  width = e-s;
856  if ( maxWitdh_r && width > maxWitdh_r )
857  {
858  // must break line
859  width = maxWitdh_r;
860  for ( e = s+width; e > s && *e != ' '; --e ) ;/*searching*/
861  if ( e > s )
862  width = e-s; // on a ' ', replaced by '\n'
863  else
864  e = s+width-1; // cut line;
865  }
866  str << indent_r;
867  str.write( s, width );
868  str << "\n";
869  if ( !*e ) // on '\0'
870  break;
871  }
872  return str;
873  }
875  inline std::ostream & printIndented( std::ostream & str, const std::string & text_r, unsigned indent_r, char indentch_r = ' ', unsigned maxWitdh_r = 0 )
876  { return printIndented( str, text_r, std::string( indent_r, indentch_r ), maxWitdh_r ); }
878  inline std::ostream & printIndented( std::ostream & str, const std::string & text_r, unsigned indent_r, unsigned maxWitdh_r, char indentch_r = ' ' )
879  { return printIndented( str, text_r, std::string( indent_r, indentch_r ), maxWitdh_r ); }
880 
884  inline std::ostream & autoPrefix( std::ostream & str, const std::string & text_r, function<std::string(const char*, const char*)> fnc_r )
885  {
886  for ( const char * e = text_r.c_str(); *e; ++e )
887  {
888  const char * s = e;
889  for ( ; *e && *e != '\n'; ++e ) /*searching*/;
890  str << fnc_r( s, e );
891  str.write( s, e-s );
892  str << "\n";
893  if ( !*e ) // on '\0'
894  break;
895  }
896  return str;
897  }
899  inline std::ostream & autoPrefix0( std::ostream & str, const std::string & text_r, function<std::string()> fnc_r )
900  {
901  auto wrap = [&fnc_r]( const char*, const char* )-> std::string {
902  return fnc_r();
903  };
904  return autoPrefix( str, text_r, wrap );
905  }
907 
916  std::string escape( const C_Str & str_r, const char c = ' ' );
917 
919  inline void appendEscaped( std::string & str_r, const C_Str & next_r, const char sep_r = ' ' )
920  {
921  if ( ! str_r.empty() )
922  str_r += sep_r;
923  if ( next_r.empty() )
924  str_r += "\"\"";
925  else
926  str_r += escape( next_r, sep_r );
927  }
928 
930  std::string bEscape( std::string str_r, const C_Str & special_r );
931 
933  std::string rxEscapeStr( std::string str_r );
934 
936  std::string rxEscapeGlob( std::string str_r );
937 
939 
941 
951  std::string hexencode( const C_Str & str_r );
953  std::string hexdecode( const C_Str & str_r );
955 
962  std::string toLower( const std::string & s );
963  std::string toLower( std::string && s );
965  inline std::string toLower( const char * s )
966  { return( s ? toLower( std::string(s) ) : std::string() ); }
967 
971  std::string toUpper( const std::string & s );
972  std::string toUpper( std::string && s );
974  inline std::string toUpper( const char * s )
975  { return( s ? toUpper( std::string(s) ) : std::string() ); }
977 
978 
981  inline int compareCI( const C_Str & lhs, const C_Str & rhs )
982  { return ::strcasecmp( lhs, rhs ); }
984 
988  inline bool contains( const C_Str & str_r, const C_Str & val_r )
989  { return ::strstr( str_r, val_r ); }
991  inline bool containsCI( const C_Str & str_r, const C_Str & val_r )
992  { return ::strcasestr( str_r, val_r ); }
994 
995  std::string stripFirstWord( std::string & line, const bool ltrim_first = true );
996 
997  std::string stripLastWord( std::string & line, const bool rtrim_first = true );
998 
1002  std::string getline( std::istream & str, bool trim = false );
1003 
1007  std::string getline( std::istream & str, const Trim trim_r );
1008 
1016  std::string receiveUpTo( std::istream & str, const char delim_r, bool returnDelim_r = false );
1017 
1019 
1024  inline bool hasPrefix( const C_Str & str_r, const C_Str & prefix_r )
1025  { return( ::strncmp( str_r, prefix_r, prefix_r.size() ) == 0 ); }
1027  inline bool hasPrefixCI( const C_Str & str_r, const C_Str & prefix_r )
1028  { return( ::strncasecmp( str_r, prefix_r, prefix_r.size() ) == 0 ); }
1029 
1031  inline std::string stripPrefix( const C_Str & str_r, const C_Str & prefix_r )
1032  { return( hasPrefix( str_r, prefix_r ) ? str_r + prefix_r.size() : str_r.c_str() ); }
1034  inline std::string stripPrefixCI( const C_Str & str_r, const C_Str & prefix_r )
1035  { return( hasPrefixCI( str_r, prefix_r ) ? str_r + prefix_r.size() : str_r.c_str() ); }
1036 
1038  inline bool hasSuffix( const C_Str & str_r, const C_Str & suffix_r )
1039  { return( str_r.size() >= suffix_r.size() && ::strncmp( str_r + str_r.size() - suffix_r.size() , suffix_r, suffix_r.size() ) == 0 ); }
1041  inline bool hasSuffixCI( const C_Str & str_r, const C_Str & suffix_r )
1042  { return( str_r.size() >= suffix_r.size() && ::strncasecmp( str_r + str_r.size() - suffix_r.size() , suffix_r, suffix_r.size() ) == 0 ); }
1043 
1045  inline std::string stripSuffix( const C_Str & str_r, const C_Str & suffix_r )
1046  {
1047  if ( hasSuffix( str_r, suffix_r ) )
1048  return std::string( str_r, str_r.size() - suffix_r.size() );
1049  return str_r.c_str();
1050  }
1052  inline std::string stripSuffixCI( const C_Str & str_r, const C_Str & suffix_r )
1053  {
1054  if ( hasSuffixCI( str_r, suffix_r ) )
1055  return std::string( str_r, str_r.size() - suffix_r.size() );
1056  return str_r.c_str();
1057  }
1058 
1060  inline std::string::size_type commonPrefix( const C_Str & lhs, const C_Str & rhs )
1061  {
1062  const char * lp = lhs.c_str();
1063  const char * rp = rhs.c_str();
1064  std::string::size_type ret = 0;
1065  while ( *lp == *rp && *lp != '\0' )
1066  { ++lp, ++rp, ++ret; }
1067  return ret;
1068  }
1070  inline std::string::size_type commonPrefixCI( const C_Str & lhs, const C_Str & rhs )
1071  {
1072  const char * lp = lhs.c_str();
1073  const char * rp = rhs.c_str();
1074  std::string::size_type ret = 0;
1075  while ( tolower(*lp) == tolower(*rp) && *lp != '\0' )
1076  { ++lp, ++rp, ++ret; }
1077  return ret;
1078  }
1079 
1080 
1082  inline bool startsWith( const C_Str & str_r, const C_Str & prefix_r )
1083  { return hasPrefix( str_r, prefix_r ); }
1085  inline bool startsWithCI( const C_Str & str_r, const C_Str & prefix_r )
1086  { return hasPrefixCI( str_r, prefix_r ); }
1087 
1089  inline bool endsWith( const C_Str & str_r, const C_Str & prefix_r )
1090  { return hasSuffix( str_r, prefix_r ); }
1092  inline bool endsWithCI( const C_Str & str_r, const C_Str & prefix_r )
1093  { return hasSuffixCI( str_r, prefix_r ); }
1095  } // namespace str
1097 
1098  // drag into zypp:: namespace
1099  using str::asString;
1100 
1101 } // namespace zypp
1103 #endif // ZYPP_BASE_STRING_H
std::string bEscape(std::string str_r, const C_Str &special_r)
Return str_r with &#39;\&#39;-escaped chars occurring in special_r (and &#39;\&#39;).
Definition: String.cc:394
TriBool strToTriBool(const C_Str &str)
Parse str into a bool if it&#39;s a legal true or false string; else indterminate.
Definition: String.cc:93
bool contains(const C_Str &str_r, const C_Str &val_r)
Locate substring case sensitive.
Definition: String.h:988
std::string str() const
Definition: String.h:219
std::string asString() const
Definition: String.h:218
unsigned splitEscaped(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=" \, bool withEmpty=false)
Split line_r into words with respect to escape delimeters.
Definition: String.h:592
std::string octstring(char n, int w=4)
Definition: String.h:345
C_Str(const boost::string_ref &str_r)
Definition: String.h:100
Boost libraries.
bool strToBoolNodefault(const C_Str &str, bool &return_r)
Parse str into a bool if it&#39;s a legal true or false string.
Definition: String.h:433
std::string stripPrefix(const C_Str &str_r, const C_Str &prefix_r)
Strip a prefix_r from str_r and return the resulting string.
Definition: String.h:1031
bool hasPrefixCI(const C_Str &str_r, const C_Str &prefix_r)
Definition: String.h:1027
std::string::size_type size_type
Definition: String.h:93
std::string rxEscapeStr(std::string str_r)
Escape plain STRING str_r for use in a regex (not anchored by "^" or "$").
Definition: String.cc:415
std::string join(TIterator begin, TIterator end, const C_Str &sep_r=" ")
Join strings using separator sep_r (defaults to BLANK).
Definition: String.h:773
boost::format _fmter
Definition: String.h:266
bool hasSuffixCI(const C_Str &str_r, const C_Str &suffix_r)
Definition: String.h:1041
bool startsWithCI(const C_Str &str_r, const C_Str &prefix_r)
Definition: String.h:1085
std::string stripSuffixCI(const C_Str &str_r, const C_Str &suffix_r)
Definition: String.h:1052
std::string::size_type commonPrefix(const C_Str &lhs, const C_Str &rhs)
Return size of the common prefix of lhs and rhs.
Definition: String.h:1060
std::string stripSuffix(const C_Str &str_r, const C_Str &suffix_r)
Strip a suffix_r from str_r and return the resulting string.
Definition: String.h:1045
std::ostream & autoPrefix0(std::ostream &str, const std::string &text_r, function< std::string()> fnc_r)
Definition: String.h:899
String related utilities and Regular expression matching.
C_Str(const std::string &str_r)
Definition: String.h:99
const std::string & asString(const std::string &t)
Global asString() that works with std::string too.
Definition: String.h:136
Definition: Arch.h:347
#define for_(IT, BEG, END)
Convenient for-loops using iterator.
Definition: Easy.h:28
Convenient building of std::string with boost::format.
Definition: String.h:249
Format & operator%(Tp &&arg)
Definition: String.h:255
const char * c_str() const
Definition: String.h:113
std::string form(const char *format,...) __attribute__((format(printf
Printf style construction of std::string.
Definition: String.cc:36
Trim
To define how to trim.
Definition: String.h:493
const boost::format & fmter() const
Definition: String.h:262
std::string asString() const
Definition: String.h:259
const std::ostream & stream() const
Definition: String.h:221
std::string ltrim(const std::string &s)
Definition: String.h:503
std::string joinEscaped(TIterator begin, TIterator end, const char sep_r=' ')
Join strings using separator sep_r, quoting or escaping the values.
Definition: String.h:795
bool endsWithCI(const C_Str &str_r, const C_Str &prefix_r)
Definition: String.h:1092
boost::logic::tribool TriBool
3-state boolean logic (true, false and indeterminate).
Definition: String.h:30
std::string & replaceAll(std::string &str_r, const std::string &from_r, const std::string &to_r)
Replace all occurrences of from_r with to_r in str_r (inplace).
Definition: String.cc:330
size_type size() const
Definition: String.h:105
std::string asString() const
Definition: String.h:192
std::ostream & printIndented(std::ostream &str, const std::string &text_r, const std::string &indent_r=" ", unsigned maxWitdh_r=0)
Indent by string [" "] optionally wrap.
Definition: String.h:842
unsigned split(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=" \, const Trim trim_r=NO_TRIM)
Split line_r into words.
Definition: String.h:528
std::string stripFirstWord(std::string &line, const bool ltrim_first)
Definition: String.cc:263
std::string escape(const C_Str &str_r, const char sep_r)
Escape desired character c using a backslash.
Definition: String.cc:371
std::string rxEscapeGlob(std::string str_r)
Escape GLOB str_r for use in a regex (not anchored by "^" or "$").
Definition: String.cc:420
Convenient building of std::string via std::ostringstream Basically a std::ostringstream autoconverti...
Definition: String.h:208
std::string trim(const std::string &s, const Trim trim_r)
Definition: String.cc:223
boost::format & fmter()
Definition: String.h:263
Convenience char* constructible from std::string and char*, it maps (char*)0 to an empty string...
Definition: String.h:90
std::ostream & operator<<(std::ostream &str, const Format &obj)
Definition: String.h:270
bool startsWith(const C_Str &str_r, const C_Str &prefix_r)
alias for hasPrefix
Definition: String.h:1082
const char *const _val
Definition: String.h:116
std::string getline(std::istream &str, const Trim trim_r)
Return stream content up to (but not returning) the next newline.
Definition: String.cc:478
TInt strtonum(const C_Str &str)
Parsing numbers from string.
Definition: String.h:385
std::string stripLastWord(std::string &line, const bool rtrim_first)
Definition: String.cc:296
bool strToFalse(const C_Str &str)
Return false if str is 0, false, no, off, never.
Definition: String.cc:81
bool containsCI(const C_Str &str_r, const C_Str &val_r)
Locate substring case insensitive.
Definition: String.h:991
std::string gsubFun(const std::string &str_r, const std::string &from_r, function< std::string()> to_r)
Definition: String.cc:347
bool endsWith(const C_Str &str_r, const C_Str &prefix_r)
alias for hasSuffix
Definition: String.h:1089
std::string numstring(char n, int w=0)
Definition: String.h:286
size_type _sze
Definition: String.h:117
std::string toLower(const std::string &s)
Return lowercase version of s.
Definition: String.cc:177
int compareCI(const C_Str &lhs, const C_Str &rhs)
Definition: String.h:981
SolvableIdType size_type
Definition: PoolMember.h:126
std::string rtrim(const std::string &s)
Definition: String.h:508
Str & operator<<(Tp &&val)
Definition: String.h:211
std::ostream & operator<<(std::ostream &str, const Str &obj)
Definition: String.h:231
bool strToTrue(const C_Str &str)
Parsing boolean from string.
Definition: String.cc:63
unsigned splitFields(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=":")
Split line_r into fields.
Definition: String.h:722
std::string & replaceAllFun(std::string &str_r, const std::string &from_r, function< std::string()> to_r)
Definition: String.cc:353
bool hasSuffix(const C_Str &str_r, const C_Str &suffix_r)
Return whether str_r has suffix suffix_r.
Definition: String.h:1038
std::string gsub(const std::string &str_r, const std::string &from_r, const std::string &to_r)
Return a string with all occurrences of from_r replaced with to_r.
Definition: String.cc:324
std::string str() const
Definition: String.h:260
C_Str(const char *c_str_r)
Definition: String.h:98
bool isNull() const
Definition: String.h:103
std::string receiveUpTo(std::istream &str, const char delim_r, bool returnDelim_r)
Return stream content up to the next ocurrence of delim_r or EOF delim_r, if found, is always read from the stream.
Definition: String.cc:488
bool strToBool(const C_Str &str, bool default_r)
Parse str into a bool depending on the default value.
Definition: String.h:426
std::string hexencode(const C_Str &str_r)
Encode all characters other than [a-zA-Z0-9] as XX.
Definition: String.cc:124
Str & operator<<(std::ostream &(*iomanip)(std::ostream &))
Definition: String.h:214
std::string binstring(TInt val_r)
String representation of number as bit-string with leading &#39;0&#39;s.
Definition: String.h:361
bool empty() const
Definition: String.h:104
std::ostream & operator<<(std::ostream &str, const C_Str &obj)
Definition: String.h:121
std::string stripPrefixCI(const C_Str &str_r, const C_Str &prefix_r)
Definition: String.h:1034
std::ostream & autoPrefix(std::ostream &str, const std::string &text_r, function< std::string(const char *, const char *)> fnc_r)
Prefix lines by string computed by function taking line begin/end [std::string(const char*...
Definition: String.h:884
std::string strerror(int errno_r)
Return string describing the error_r code.
Definition: String.cc:53
C_Str(char *c_str_r)
Definition: String.h:97
Easy-to use interface to the ZYPP dependency resolver.
Definition: CodePitfalls.doc:1
std::string toUpper(const std::string &s)
Return uppercase version of s.
Definition: String.cc:200
std::string asUserString(const Tp &val_r)
Request a human readable (translated) string representation of Tp [Tp.asUserString()] Classes may imp...
Definition: String.h:40
std::ostream & stream()
Definition: String.h:222
Assert free called for allocated char *.
Definition: String.h:187
bool hasPrefix(const C_Str &str_r, const C_Str &prefix_r)
Return whether str_r has prefix prefix_r.
Definition: String.h:1024
void clear()
Definition: String.h:224
std::string hexstring(char n, int w=4)
Definition: String.h:321
void appendEscaped(std::string &str_r, const C_Str &next_r, const char sep_r=' ')
Escape next_r and append it to str_r using separator sep_r.
Definition: String.h:919
std::ostringstream _str
Definition: String.h:227
std::string hexdecode(const C_Str &str_r)
Decode hexencoded XX sequences.
Definition: String.cc:145
std::string::size_type commonPrefixCI(const C_Str &lhs, const C_Str &rhs)
Definition: String.h:1070
unsigned splitFieldsEscaped(const C_Str &line_r, TOutputIterator result_r, const C_Str &sepchars_r=":")
Split line_r into fields handling also escaped separators.
Definition: String.h:761
std::string gapify(std::string inp_r, std::string::size_type gap_r=1, char gapchar=' ')
Enhance readability: insert gaps at regular distance.
Definition: String.h:476
Format(const std::string &format_r)
Definition: String.h:252