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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2020 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library 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 Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//------------------------------------------------------------------------------
#ifndef OST_STRING_REF_HH
#define OST_STRING_REF_HH
/*
Author: Marco Biasini
*/
#include <ctype.h>
#include <cassert>
#include <iostream>
#include <ost/base.hh>
#include <string.h>
#include <vector>
#include <ost/module_config.hh>
namespace ost {
/// \brief convenient datatype for referencing character data
/// \note it is not in general safe to store a StringRef as it does not
/// guarantee that the character data it points to stays alive.
class DLLEXPORT_OST_BASE StringRef {
public:
typedef char* iterator;
typedef const char* const_iterator;
typedef char value_type;
StringRef(const char* begin, size_t len): begin_(begin), end_(begin+len) { }
StringRef(): begin_(NULL), end_(NULL) { }
const char* begin() const { return begin_; }
const char* end() const { return end_; }
const char* data() const { return begin_; }
size_t size() const { return end_-begin_; }
size_t length() const { return this->size(); }
char front() const
{
assert(!this->empty());
return *begin_;
}
/// \brief find character in StringRef
/// \return iterator position when found, else iterator pointing to the end
const_iterator find(char p) const {
const char* s=begin_;
while (s!=end_) {
if (*s==p) {
return s;
}
++s;
}
return s;
}
/// \brief returns a substring of the string
///
/// \param pos the starting position of the substring
/// \param n is the length of the string. if std::string::npos, the
/// substring goes from \p pos to the end of the string
/// The function does on purpose not perform any boundary check in release
/// mode. It's the duty of the caller to make sure the string has the required
/// length.
StringRef substr(size_t pos, size_t n=std::string::npos) const
{
if (n==std::string::npos) {
assert(begin_+pos<=end_);
return StringRef(begin_+pos, this->length()-pos);
} else {
assert(begin_+pos+n<=end_);
return StringRef(begin_+pos, n);
}
}
std::string str() const
{
return std::string(begin_, end_-begin_);
}
char back() const
{
assert(!this->empty());
return *(end_-1);
}
const char& operator[](int index) const { return begin_[index]; }
bool operator==(const StringRef& rhs) const {
return this->length()==rhs.length() &&
!memcmp(rhs.data(), this->data(), this->size());
}
bool operator!=(const StringRef& rhs) const {
return !this->operator==(rhs);
}
/// \brief strip space characters on the right
StringRef rtrim() const {
const char* s=end_;
while(--s>=begin_ && isspace(*s)) {
}
return StringRef(begin_, s+1-begin_);
}
/// \brief strip space characters on the left
StringRef ltrim() const {
const char* s=begin_;
while(s<end_ && isspace(*s)) {
++s;
}
return StringRef(s, end_-s);
}
/// \brief strip space characters on the left and the right
StringRef trim() const {
return this->rtrim().ltrim();
}
/// \brief convert to integer
/// \return a tuple with \c first set to true and \c second set to
/// the int if the conversion succeeds. If the conversion fails,
/// \c first is set to false.
std::pair<bool, int> to_int() const;
/// \brief convert to float
/// \return a tuple with \c first set to true and \c second set to
/// the float if the conversion succeeds. If the conversion fails,
/// \c first is set to false.
std::pair<bool, float> to_float() const;
bool empty() const { return begin_==end_; }
/// \brief split string into chunks delimited by \p p
std::vector<StringRef> split(char p) const;
/// \brief split string into chunks delimited by whitespace
std::vector<StringRef> split() const;
/// \brief returns a new string with all whitespace removed from
/// this StringRef
std::string str_no_whitespace() const;
private:
const char* begin_;
const char* end_;
};
//std::stringstream& operator<<(std::stringstream& stream, const StringRef& strref);
DLLEXPORT_OST_BASE std::ostream& operator<<(std::ostream& stream, const StringRef& strref);
}
#endif
|