summaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/SmallString.h
blob: 9be654ee7e1b20a08c2e0dad5e423030dac71a2e (plain)
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
//===- llvm/ADT/SmallString.h - 'Normally small' strings --------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file defines the SmallString class.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_ADT_SMALLSTRING_H
#define LLVM_ADT_SMALLSTRING_H

#include "llvm/ADT/SmallVector.h"
#include <cstring>

namespace llvm {

/// SmallString - A SmallString is just a SmallVector with methods and accessors
/// that make it work better as a string (e.g. operator+ etc).
template<unsigned InternalLen>
class SmallString : public SmallVector<char, InternalLen> {
public:
  // Default ctor - Initialize to empty.
  SmallString() {}

  // Initialize with a range.
  template<typename ItTy>
  SmallString(ItTy S, ItTy E) : SmallVector<char, InternalLen>(S, E) {}
  
  // Copy ctor.
  SmallString(const SmallString &RHS) : SmallVector<char, InternalLen>(RHS) {}

  
  // Extra methods.
  const char *c_str() const {
    SmallString *This = const_cast<SmallString*>(this);
    // Ensure that there is a \0 at the end of the string.
    This->reserve(this->size()+1);
    This->End[0] = 0;
    return this->begin();
  }
  
  // Extra operators.
  SmallString &operator+=(const char *RHS) {
    this->append(RHS, RHS+strlen(RHS));
    return *this;
  }
  SmallString &operator+=(char C) {
    this->push_back(C);
    return *this;
  }

  SmallString &append_uint_32(uint32_t N) {
    char Buffer[20];
    char *BufPtr = Buffer+20;
    
    if (N == 0) *--BufPtr = '0';  // Handle special case.
    
    while (N) {
      *--BufPtr = '0' + char(N % 10);
      N /= 10;
    }
    this->append(BufPtr, Buffer+20);
    return *this;
  }
  
  SmallString &append_uint(uint64_t N) {
    if (N == uint32_t(N))
      return append_uint_32(uint32_t(N));
    
    char Buffer[40];
    char *BufPtr = Buffer+40;
    
    if (N == 0) *--BufPtr = '0';  // Handle special case...
    
    while (N) {
      *--BufPtr = '0' + char(N % 10);
      N /= 10;
    }

    this->append(BufPtr, Buffer+40);
    return *this;
  }
  
  SmallString &append_sint(int64_t N) {
    // TODO, wrong for minint64.
    if (N < 0) {
      this->push_back('-');
      N = -N;
    }
    return append_uint(N);
  }
  
};
  
  
}

#endif