string-stream.h 4.3 KB
Newer Older
1 2 3
// Copyright 2014 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
4 5 6 7

#ifndef V8_STRING_STREAM_H_
#define V8_STRING_STREAM_H_

8
#include "src/handles.h"
9

10 11
namespace v8 {
namespace internal {
12 13 14

class StringAllocator {
 public:
15
  virtual ~StringAllocator() { }
16 17 18 19 20 21 22 23 24 25 26
  // Allocate a number of bytes.
  virtual char* allocate(unsigned bytes) = 0;
  // Allocate a larger number of bytes and copy the old buffer to the new one.
  // bytes is an input and output parameter passing the old size of the buffer
  // and returning the new size.  If allocation fails then we return the old
  // buffer and do not increase the size.
  virtual char* grow(unsigned* bytes) = 0;
};


// Normal allocator uses new[] and delete[].
27
class HeapStringAllocator final : public StringAllocator {
28 29
 public:
  ~HeapStringAllocator() { DeleteArray(space_); }
30 31
  char* allocate(unsigned bytes) override;
  char* grow(unsigned* bytes) override;
32

33 34 35 36 37
 private:
  char* space_;
};


38
class FmtElm final {
39
 public:
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
  FmtElm(int value) : type_(INT) {  // NOLINT
    data_.u_int_ = value;
  }
  explicit FmtElm(double value) : type_(DOUBLE) {
    data_.u_double_ = value;
  }
  FmtElm(const char* value) : type_(C_STR) {  // NOLINT
    data_.u_c_str_ = value;
  }
  FmtElm(const Vector<const uc16>& value) : type_(LC_STR) {  // NOLINT
    data_.u_lc_str_ = &value;
  }
  FmtElm(Object* value) : type_(OBJ) {  // NOLINT
    data_.u_obj_ = value;
  }
  FmtElm(Handle<Object> value) : type_(HANDLE) {  // NOLINT
    data_.u_handle_ = value.location();
  }
58 59
  FmtElm(void* value) : type_(POINTER) {  // NOLINT
    data_.u_pointer_ = value;
60
  }
61

62 63
 private:
  friend class StringStream;
64
  enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
65 66 67
  Type type_;
  union {
    int u_int_;
68
    double u_double_;
69
    const char* u_c_str_;
70
    const Vector<const uc16>* u_lc_str_;
71 72
    Object* u_obj_;
    Object** u_handle_;
73
    void* u_pointer_;
74 75 76 77
  } data_;
};


78
class StringStream final {
79 80 81 82 83 84 85 86 87 88 89 90
 public:
  explicit StringStream(StringAllocator* allocator):
    allocator_(allocator),
    capacity_(kInitialCapacity),
    length_(0),
    buffer_(allocator_->allocate(kInitialCapacity)) {
    buffer_[0] = 0;
  }

  bool Put(char c);
  bool Put(String* str);
  bool Put(String* str, int start, int end);
91
  void Add(Vector<const char> format, Vector<FmtElm> elms);
92
  void Add(const char* format);
93
  void Add(Vector<const char> format);
94 95 96
  void Add(const char* format, FmtElm arg0);
  void Add(const char* format, FmtElm arg0, FmtElm arg1);
  void Add(const char* format, FmtElm arg0, FmtElm arg1, FmtElm arg2);
97 98 99 100 101
  void Add(const char* format,
           FmtElm arg0,
           FmtElm arg1,
           FmtElm arg2,
           FmtElm arg3);
102 103 104 105 106 107
  void Add(const char* format,
           FmtElm arg0,
           FmtElm arg1,
           FmtElm arg2,
           FmtElm arg3,
           FmtElm arg4);
108 109

  // Getting the message out.
110 111
  void OutputToFile(FILE* out);
  void OutputToStdOut() { OutputToFile(stdout); }
112
  void Log(Isolate* isolate);
113
  Handle<String> ToString(Isolate* isolate);
114
  SmartArrayPointer<const char> ToCString() const;
115
  int length() const { return length_; }
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133

  // Object printing support.
  void PrintName(Object* o);
  void PrintFixedArray(FixedArray* array, unsigned int limit);
  void PrintByteArray(ByteArray* ba);
  void PrintUsingMap(JSObject* js_object);
  void PrintPrototype(JSFunction* fun, Object* receiver);
  void PrintSecurityTokenIfChanged(Object* function);
  // NOTE: Returns the code in the output parameter.
  void PrintFunction(Object* function, Object* receiver, Code** code);

  // Reset the stream.
  void Reset() {
    length_ = 0;
    buffer_[0] = 0;
  }

  // Mentioned object cache support.
134 135
  void PrintMentionedObjectCache(Isolate* isolate);
  static void ClearMentionedObjectCache(Isolate* isolate);
136
#ifdef DEBUG
137
  static bool IsMentionedObjectCacheClear(Isolate* isolate);
138 139 140 141 142 143 144 145 146 147 148 149
#endif

  static const int kInitialCapacity = 16;

 private:
  void PrintObject(Object* obj);

  StringAllocator* allocator_;
  unsigned capacity_;
  unsigned length_;  // does not include terminating 0-character
  char* buffer_;

150
  bool full() const { return (capacity_ - length_) == 1; }
151 152 153 154 155 156 157 158
  int space() const { return capacity_ - length_; }

  DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
};

} }  // namespace v8::internal

#endif  // V8_STRING_STREAM_H_