SmallString.h revision 58fe86dc0ecb7efff01abe2b0024a6a53ebb2c81
1//===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the SmallString class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ADT_SMALLSTRING_H
15#define LLVM_ADT_SMALLSTRING_H
16
17#include "llvm/ADT/SmallVector.h"
18#include "llvm/ADT/StringRef.h"
19
20namespace llvm {
21
22/// SmallString - A SmallString is just a SmallVector with methods and accessors
23/// that make it work better as a string (e.g. operator+ etc).
24template<unsigned InternalLen>
25class SmallString : public SmallVector<char, InternalLen> {
26public:
27  // Default ctor - Initialize to empty.
28  SmallString() {}
29
30  // Initialize with a range.
31  template<typename ItTy>
32  SmallString(ItTy S, ItTy E) : SmallVector<char, InternalLen>(S, E) {}
33
34  // Copy ctor.
35  SmallString(const SmallString &RHS) : SmallVector<char, InternalLen>(RHS) {}
36
37
38  // Extra methods.
39  StringRef str() const { return StringRef(this->begin(), this->size()); }
40
41  // TODO: Make this const, if it's safe...
42  const char* c_str() {
43    this->push_back(0);
44    this->pop_back();
45    return this->data();
46  }
47
48  // Implicit conversion to StringRef.
49  operator StringRef() const { return str(); }
50
51  // Extra operators.
52  const SmallString &operator=(StringRef RHS) {
53    this->clear();
54    return *this += RHS;
55  }
56
57  SmallString &operator+=(StringRef RHS) {
58    this->append(RHS.begin(), RHS.end());
59    return *this;
60  }
61  SmallString &operator+=(char C) {
62    this->push_back(C);
63    return *this;
64  }
65};
66
67}
68
69#endif
70