v8  3.25.30(node0.11.13)
V8 is Google's open source JavaScript engine
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
utils.cc
Go to the documentation of this file.
1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are
4 // met:
5 //
6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution.
12 // * Neither the name of Google Inc. nor the names of its
13 // contributors may be used to endorse or promote products derived
14 // from this software without specific prior written permission.
15 //
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 
28 #include <stdarg.h>
29 #include "../include/v8stdint.h"
30 #include "checks.h"
31 #include "platform.h"
32 #include "utils.h"
33 
34 namespace v8 {
35 namespace internal {
36 
37 
39  buffer_ = Vector<char>::New(size);
40  position_ = 0;
41 }
42 
43 
44 void SimpleStringBuilder::AddString(const char* s) {
45  AddSubstring(s, StrLength(s));
46 }
47 
48 
49 void SimpleStringBuilder::AddSubstring(const char* s, int n) {
50  ASSERT(!is_finalized() && position_ + n <= buffer_.length());
51  ASSERT(static_cast<size_t>(n) <= strlen(s));
53  position_ += n;
54 }
55 
56 
57 void SimpleStringBuilder::AddPadding(char c, int count) {
58  for (int i = 0; i < count; i++) {
59  AddCharacter(c);
60  }
61 }
62 
63 
65  uint32_t number = static_cast<uint32_t>(value);
66  if (value < 0) {
67  AddCharacter('-');
68  number = static_cast<uint32_t>(-value);
69  }
70  int digits = 1;
71  for (uint32_t factor = 10; digits < 10; digits++, factor *= 10) {
72  if (factor > number) break;
73  }
74  position_ += digits;
75  for (int i = 1; i <= digits; i++) {
76  buffer_[position_ - i] = '0' + static_cast<char>(number % 10);
77  number /= 10;
78  }
79 }
80 
81 
84  // If there is no space for null termination, overwrite last character.
85  if (position_ == buffer_.length()) {
86  position_--;
87  // Print ellipsis.
88  for (int i = 3; i > 0 && position_ > i; --i) buffer_[position_ - i] = '.';
89  }
90  buffer_[position_] = '\0';
91  // Make sure nobody managed to add a 0-character to the
92  // buffer while building the string.
93  ASSERT(strlen(buffer_.start()) == static_cast<size_t>(position_));
94  position_ = -1;
96  return buffer_.start();
97 }
98 
99 
100 } } // namespace v8::internal
void AddString(const char *s)
Definition: utils.cc:44
int int32_t
Definition: unicode.cc:47
#define ASSERT(condition)
Definition: checks.h:329
enable upcoming ES6 features enable harmony block scoping enable harmony enable harmony proxies enable harmony generators enable harmony numeric enable harmony string enable harmony math functions harmony_scoping harmony_symbols harmony_collections harmony_iteration harmony_strings harmony_scoping harmony_maths tracks arrays with only smi values Optimize object size
Definition: flags.cc:211
T * start() const
Definition: utils.h:426
static void MemCopy(void *dest, const void *src, size_t size)
Definition: platform.h:399
int length() const
Definition: utils.h:420
static Vector< T > New(int length)
Definition: utils.h:406
int StrLength(const char *string)
Definition: utils.h:253
void AddSubstring(const char *s, int n)
Definition: utils.cc:49
void AddDecimalInteger(int value)
Definition: utils.cc:64
void AddPadding(char c, int count)
Definition: utils.cc:57
const int kCharSize
Definition: globals.h:261