2014-03-31 11:13:39 +00:00
|
|
|
// 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.
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
#ifndef V8_STRING_STREAM_H_
|
|
|
|
#define V8_STRING_STREAM_H_
|
|
|
|
|
2014-06-03 08:12:43 +00:00
|
|
|
#include "src/handles.h"
|
2014-03-31 11:13:39 +00:00
|
|
|
|
2009-05-25 10:05:56 +00:00
|
|
|
namespace v8 {
|
|
|
|
namespace internal {
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
class StringAllocator {
|
|
|
|
public:
|
2014-03-31 11:13:39 +00:00
|
|
|
virtual ~StringAllocator() { }
|
2008-07-03 15:10:15 +00:00
|
|
|
// 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[].
|
2014-09-02 07:07:52 +00:00
|
|
|
class HeapStringAllocator FINAL : public StringAllocator {
|
2008-07-03 15:10:15 +00:00
|
|
|
public:
|
|
|
|
~HeapStringAllocator() { DeleteArray(space_); }
|
2014-09-02 07:07:52 +00:00
|
|
|
virtual char* allocate(unsigned bytes) OVERRIDE;
|
|
|
|
virtual char* grow(unsigned* bytes) OVERRIDE;
|
2014-03-31 11:13:39 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
private:
|
|
|
|
char* space_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-09-02 07:07:52 +00:00
|
|
|
class FmtElm FINAL {
|
2008-07-03 15:10:15 +00:00
|
|
|
public:
|
2009-05-05 14:28:02 +00:00
|
|
|
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();
|
|
|
|
}
|
2009-08-03 10:53:45 +00:00
|
|
|
FmtElm(void* value) : type_(POINTER) { // NOLINT
|
|
|
|
data_.u_pointer_ = value;
|
2009-05-05 14:28:02 +00:00
|
|
|
}
|
2011-09-08 19:57:14 +00:00
|
|
|
|
2008-07-03 15:10:15 +00:00
|
|
|
private:
|
|
|
|
friend class StringStream;
|
2009-08-03 10:53:45 +00:00
|
|
|
enum Type { INT, DOUBLE, C_STR, LC_STR, OBJ, HANDLE, POINTER };
|
2008-07-03 15:10:15 +00:00
|
|
|
Type type_;
|
|
|
|
union {
|
|
|
|
int u_int_;
|
2008-11-11 14:16:24 +00:00
|
|
|
double u_double_;
|
2008-07-03 15:10:15 +00:00
|
|
|
const char* u_c_str_;
|
2008-11-25 11:07:48 +00:00
|
|
|
const Vector<const uc16>* u_lc_str_;
|
2008-07-03 15:10:15 +00:00
|
|
|
Object* u_obj_;
|
|
|
|
Object** u_handle_;
|
2009-08-03 10:53:45 +00:00
|
|
|
void* u_pointer_;
|
2008-07-03 15:10:15 +00:00
|
|
|
} data_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-09-02 07:07:52 +00:00
|
|
|
class StringStream FINAL {
|
2008-07-03 15:10:15 +00:00
|
|
|
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);
|
2008-11-25 11:07:48 +00:00
|
|
|
void Add(Vector<const char> format, Vector<FmtElm> elms);
|
2008-07-03 15:10:15 +00:00
|
|
|
void Add(const char* format);
|
2008-11-25 11:07:48 +00:00
|
|
|
void Add(Vector<const char> format);
|
2008-07-03 15:10:15 +00:00
|
|
|
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);
|
2008-11-25 11:07:48 +00:00
|
|
|
void Add(const char* format,
|
|
|
|
FmtElm arg0,
|
|
|
|
FmtElm arg1,
|
|
|
|
FmtElm arg2,
|
|
|
|
FmtElm arg3);
|
2013-05-24 12:29:37 +00:00
|
|
|
void Add(const char* format,
|
|
|
|
FmtElm arg0,
|
|
|
|
FmtElm arg1,
|
|
|
|
FmtElm arg2,
|
|
|
|
FmtElm arg3,
|
|
|
|
FmtElm arg4);
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// Getting the message out.
|
2010-12-20 10:38:19 +00:00
|
|
|
void OutputToFile(FILE* out);
|
|
|
|
void OutputToStdOut() { OutputToFile(stdout); }
|
2013-09-11 10:59:39 +00:00
|
|
|
void Log(Isolate* isolate);
|
2013-09-03 11:54:08 +00:00
|
|
|
Handle<String> ToString(Isolate* isolate);
|
2011-09-09 22:39:47 +00:00
|
|
|
SmartArrayPointer<const char> ToCString() const;
|
2010-12-07 11:31:57 +00:00
|
|
|
int length() const { return length_; }
|
2008-07-03 15:10:15 +00:00
|
|
|
|
|
|
|
// 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.
|
2013-09-03 11:54:08 +00:00
|
|
|
void PrintMentionedObjectCache(Isolate* isolate);
|
|
|
|
static void ClearMentionedObjectCache(Isolate* isolate);
|
2008-07-03 15:10:15 +00:00
|
|
|
#ifdef DEBUG
|
2013-09-03 11:54:08 +00:00
|
|
|
static bool IsMentionedObjectCacheClear(Isolate* isolate);
|
2008-07-03 15:10:15 +00:00
|
|
|
#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_;
|
|
|
|
|
2009-04-16 21:01:05 +00:00
|
|
|
bool full() const { return (capacity_ - length_) == 1; }
|
2008-07-03 15:10:15 +00:00
|
|
|
int space() const { return capacity_ - length_; }
|
|
|
|
|
|
|
|
DISALLOW_IMPLICIT_CONSTRUCTORS(StringStream);
|
|
|
|
};
|
|
|
|
|
|
|
|
} } // namespace v8::internal
|
|
|
|
|
|
|
|
#endif // V8_STRING_STREAM_H_
|