shell.cc 14.5 KB
Newer Older
1
// Copyright 2012 the V8 project authors. All rights reserved.
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
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
//     * Redistributions of source code must retain the above copyright
//       notice, this list of conditions and the following disclaimer.
//     * Redistributions in binary form must reproduce the above
//       copyright notice, this list of conditions and the following
//       disclaimer in the documentation and/or other materials provided
//       with the distribution.
//     * Neither the name of Google Inc. nor the names of its
//       contributors may be used to endorse or promote products derived
//       from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

28
#include <assert.h>
29
#include <fcntl.h>
30
#include <include/libplatform/libplatform.h>
31 32
#include <stdio.h>
#include <stdlib.h>
33
#include <string.h>
34

35 36 37 38 39 40 41 42
#include "include/v8-context.h"
#include "include/v8-exception.h"
#include "include/v8-initialization.h"
#include "include/v8-isolate.h"
#include "include/v8-local-handle.h"
#include "include/v8-script.h"
#include "include/v8-template.h"

43 44 45 46 47 48 49 50
/**
 * This sample program shows how to implement a simple javascript shell
 * based on V8.  This includes initializing V8 with command line options,
 * creating global functions, compiling and executing strings.
 *
 * For a more sophisticated shell, consider using the debug shell D8.
 */

51

52
v8::Local<v8::Context> CreateShellContext(v8::Isolate* isolate);
53 54 55
void RunShell(v8::Local<v8::Context> context, v8::Platform* platform);
int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
            char* argv[]);
56 57
bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
                   v8::Local<v8::Value> name, bool print_result,
58
                   bool report_exceptions);
59 60 61 62 63
void Print(const v8::FunctionCallbackInfo<v8::Value>& args);
void Read(const v8::FunctionCallbackInfo<v8::Value>& args);
void Load(const v8::FunctionCallbackInfo<v8::Value>& args);
void Quit(const v8::FunctionCallbackInfo<v8::Value>& args);
void Version(const v8::FunctionCallbackInfo<v8::Value>& args);
64
v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name);
65
void ReportException(v8::Isolate* isolate, v8::TryCatch* handler);
66 67


68
static bool run_shell;
69 70


71
int main(int argc, char* argv[]) {
72
  v8::V8::InitializeICUDefaultLocation(argv[0]);
vogelheim's avatar
vogelheim committed
73
  v8::V8::InitializeExternalStartupData(argv[0]);
74 75
  std::unique_ptr<v8::Platform> platform = v8::platform::NewDefaultPlatform();
  v8::V8::InitializePlatform(platform.get());
76 77 78 79 80 81
#ifdef V8_SANDBOX
  if (!v8::V8::InitializeSandbox()) {
    fprintf(stderr, "Error initializing the V8 sandbox\n");
    return 1;
  }
#endif
82
  v8::V8::Initialize();
83
  v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
84
  v8::Isolate::CreateParams create_params;
85 86
  create_params.array_buffer_allocator =
      v8::ArrayBuffer::Allocator::NewDefaultAllocator();
87
  v8::Isolate* isolate = v8::Isolate::New(create_params);
88
  run_shell = (argc == 1);
89 90
  int result;
  {
91
    v8::Isolate::Scope isolate_scope(isolate);
92
    v8::HandleScope handle_scope(isolate);
93
    v8::Local<v8::Context> context = CreateShellContext(isolate);
94
    if (context.IsEmpty()) {
95
      fprintf(stderr, "Error creating context\n");
96 97
      return 1;
    }
98
    v8::Context::Scope context_scope(context);
99 100
    result = RunMain(isolate, platform.get(), argc, argv);
    if (run_shell) RunShell(context, platform.get());
101
  }
cwhan.tunz's avatar
cwhan.tunz committed
102
  isolate->Dispose();
103
  v8::V8::Dispose();
104
  v8::V8::DisposePlatform();
105
  delete create_params.array_buffer_allocator;
106 107 108 109
  return result;
}


110 111 112 113 114 115
// Extracts a C string from a V8 Utf8Value.
const char* ToCString(const v8::String::Utf8Value& value) {
  return *value ? *value : "<string conversion failed>";
}


116 117
// Creates a new execution environment containing the built-in
// functions.
118
v8::Local<v8::Context> CreateShellContext(v8::Isolate* isolate) {
119
  // Create a template for the global object.
120
  v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
121
  // Bind the global 'print' function to the C++ Print callback.
122
  global->Set(isolate, "print", v8::FunctionTemplate::New(isolate, Print));
123
  // Bind the global 'read' function to the C++ Read callback.
124
  global->Set(isolate, "read", v8::FunctionTemplate::New(isolate, Read));
125
  // Bind the global 'load' function to the C++ Load callback.
126
  global->Set(isolate, "load", v8::FunctionTemplate::New(isolate, Load));
127
  // Bind the 'quit' function
128
  global->Set(isolate, "quit", v8::FunctionTemplate::New(isolate, Quit));
129
  // Bind the 'version' function
130
  global->Set(isolate, "version", v8::FunctionTemplate::New(isolate, Version));
131
  return v8::Context::New(isolate, NULL, global);
132 133 134
}


135 136 137
// The callback that is invoked by v8 whenever the JavaScript 'print'
// function is called.  Prints its arguments on stdout separated by
// spaces and ending with a newline.
138
void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
139 140
  bool first = true;
  for (int i = 0; i < args.Length(); i++) {
141
    v8::HandleScope handle_scope(args.GetIsolate());
142 143 144 145 146
    if (first) {
      first = false;
    } else {
      printf(" ");
    }
147
    v8::String::Utf8Value str(args.GetIsolate(), args[i]);
148 149
    const char* cstr = ToCString(str);
    printf("%s", cstr);
150 151
  }
  printf("\n");
152
  fflush(stdout);
153 154 155
}


156 157 158
// The callback that is invoked by v8 whenever the JavaScript 'read'
// function is called.  This function loads the content of the file named in
// the argument into a JavaScript string.
159
void Read(const v8::FunctionCallbackInfo<v8::Value>& args) {
160
  if (args.Length() != 1) {
161
    args.GetIsolate()->ThrowError("Bad parameters");
162
    return;
163
  }
164
  v8::String::Utf8Value file(args.GetIsolate(), args[0]);
165
  if (*file == NULL) {
166
    args.GetIsolate()->ThrowError("Error loading file");
167
    return;
168
  }
169 170
  v8::Local<v8::String> source;
  if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
171
    args.GetIsolate()->ThrowError("Error loading file");
172
    return;
173
  }
174

175
  args.GetReturnValue().Set(source);
176 177
}

178 179 180
// The callback that is invoked by v8 whenever the JavaScript 'load'
// function is called.  Loads, compiles and executes its argument
// JavaScript file.
181
void Load(const v8::FunctionCallbackInfo<v8::Value>& args) {
182
  for (int i = 0; i < args.Length(); i++) {
183
    v8::HandleScope handle_scope(args.GetIsolate());
184
    v8::String::Utf8Value file(args.GetIsolate(), args[i]);
185
    if (*file == NULL) {
186
      args.GetIsolate()->ThrowError("Error loading file");
187
      return;
188
    }
189 190
    v8::Local<v8::String> source;
    if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
191
      args.GetIsolate()->ThrowError("Error loading file");
192
      return;
193
    }
194
    if (!ExecuteString(args.GetIsolate(), source, args[i], false, false)) {
195
      args.GetIsolate()->ThrowError("Error executing file");
196
      return;
197
    }
198 199 200 201 202 203
  }
}


// The callback that is invoked by v8 whenever the JavaScript 'quit'
// function is called.  Quits.
204
void Quit(const v8::FunctionCallbackInfo<v8::Value>& args) {
205 206
  // If not arguments are given args[0] will yield undefined which
  // converts to the integer value 0.
207 208
  int exit_code =
      args[0]->Int32Value(args.GetIsolate()->GetCurrentContext()).FromMaybe(0);
209 210 211
  fflush(stdout);
  fflush(stderr);
  exit(exit_code);
212 213 214
}


215
void Version(const v8::FunctionCallbackInfo<v8::Value>& args) {
216
  args.GetReturnValue().Set(
217 218
      v8::String::NewFromUtf8(args.GetIsolate(), v8::V8::GetVersion())
          .ToLocalChecked());
219 220 221
}


222
// Reads a file into a v8 string.
223
v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name) {
224
  FILE* file = fopen(name, "rb");
225
  if (file == NULL) return v8::MaybeLocal<v8::String>();
226 227

  fseek(file, 0, SEEK_END);
228
  size_t size = ftell(file);
229 230 231 232
  rewind(file);

  char* chars = new char[size + 1];
  chars[size] = '\0';
233 234 235 236
  for (size_t i = 0; i < size;) {
    i += fread(&chars[i], 1, size - i, file);
    if (ferror(file)) {
      fclose(file);
237
      return v8::MaybeLocal<v8::String>();
238
    }
239 240
  }
  fclose(file);
241 242
  v8::MaybeLocal<v8::String> result = v8::String::NewFromUtf8(
      isolate, chars, v8::NewStringType::kNormal, static_cast<int>(size));
243 244 245 246 247
  delete[] chars;
  return result;
}


248
// Process remaining command line arguments and execute files
249 250
int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
            char* argv[]) {
251 252 253 254 255 256 257 258 259
  for (int i = 1; i < argc; i++) {
    const char* str = argv[i];
    if (strcmp(str, "--shell") == 0) {
      run_shell = true;
    } else if (strcmp(str, "-f") == 0) {
      // Ignore any -f flags for compatibility with the other stand-
      // alone JavaScript engines.
      continue;
    } else if (strncmp(str, "--", 2) == 0) {
260 261
      fprintf(stderr,
              "Warning: unknown flag %s.\nTry --help for options\n", str);
262 263
    } else if (strcmp(str, "-e") == 0 && i + 1 < argc) {
      // Execute argument given to -e option directly.
264
      v8::Local<v8::String> file_name =
265
          v8::String::NewFromUtf8Literal(isolate, "unnamed");
266
      v8::Local<v8::String> source;
267
      if (!v8::String::NewFromUtf8(isolate, argv[++i]).ToLocal(&source)) {
268 269
        return 1;
      }
270 271 272
      bool success = ExecuteString(isolate, source, file_name, false, true);
      while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
      if (!success) return 1;
273 274
    } else {
      // Use all other arguments as names of files to load and run.
275
      v8::Local<v8::String> file_name =
276
          v8::String::NewFromUtf8(isolate, str).ToLocalChecked();
277 278
      v8::Local<v8::String> source;
      if (!ReadFile(isolate, str).ToLocal(&source)) {
279
        fprintf(stderr, "Error reading '%s'\n", str);
280 281
        continue;
      }
282 283 284
      bool success = ExecuteString(isolate, source, file_name, false, true);
      while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
      if (!success) return 1;
285 286 287 288 289 290
    }
  }
  return 0;
}


291
// The read-eval-execute loop of the shell.
292
void RunShell(v8::Local<v8::Context> context, v8::Platform* platform) {
293
  fprintf(stderr, "V8 version %s [sample shell]\n", v8::V8::GetVersion());
294
  static const int kBufferSize = 256;
295 296
  // Enter the execution environment before evaluating any code.
  v8::Context::Scope context_scope(context);
297
  v8::Local<v8::String> name(
298
      v8::String::NewFromUtf8Literal(context->GetIsolate(), "(shell)"));
299 300
  while (true) {
    char buffer[kBufferSize];
301
    fprintf(stderr, "> ");
302 303
    char* str = fgets(buffer, kBufferSize, stdin);
    if (str == NULL) break;
304
    v8::HandleScope handle_scope(context->GetIsolate());
305 306
    ExecuteString(
        context->GetIsolate(),
307
        v8::String::NewFromUtf8(context->GetIsolate(), str).ToLocalChecked(),
308
        name, true, true);
309 310
    while (v8::platform::PumpMessageLoop(platform, context->GetIsolate()))
      continue;
311
  }
312
  fprintf(stderr, "\n");
313 314 315 316
}


// Executes a string within the current v8 context.
317 318
bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
                   v8::Local<v8::Value> name, bool print_result,
319
                   bool report_exceptions) {
320
  v8::HandleScope handle_scope(isolate);
321
  v8::TryCatch try_catch(isolate);
322
  v8::ScriptOrigin origin(isolate, name);
323 324 325
  v8::Local<v8::Context> context(isolate->GetCurrentContext());
  v8::Local<v8::Script> script;
  if (!v8::Script::Compile(context, source, &origin).ToLocal(&script)) {
326
    // Print errors that happened during compilation.
327
    if (report_exceptions)
328
      ReportException(isolate, &try_catch);
329 330
    return false;
  } else {
331 332
    v8::Local<v8::Value> result;
    if (!script->Run(context).ToLocal(&result)) {
333
      assert(try_catch.HasCaught());
334
      // Print errors that happened during execution.
335
      if (report_exceptions)
336
        ReportException(isolate, &try_catch);
337 338
      return false;
    } else {
339
      assert(!try_catch.HasCaught());
340
      if (print_result && !result->IsUndefined()) {
341 342
        // If all went well and the result wasn't undefined then print
        // the returned value.
343
        v8::String::Utf8Value str(isolate, result);
344 345
        const char* cstr = ToCString(str);
        printf("%s\n", cstr);
346 347 348 349 350
      }
      return true;
    }
  }
}
351 352


353 354
void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {
  v8::HandleScope handle_scope(isolate);
355
  v8::String::Utf8Value exception(isolate, try_catch->Exception());
356
  const char* exception_string = ToCString(exception);
357
  v8::Local<v8::Message> message = try_catch->Message();
358 359 360
  if (message.IsEmpty()) {
    // V8 didn't provide any extra information about this error; just
    // print the exception.
361
    fprintf(stderr, "%s\n", exception_string);
362 363
  } else {
    // Print (filename):(line number): (message).
364 365
    v8::String::Utf8Value filename(isolate,
                                   message->GetScriptOrigin().ResourceName());
366
    v8::Local<v8::Context> context(isolate->GetCurrentContext());
367
    const char* filename_string = ToCString(filename);
368
    int linenum = message->GetLineNumber(context).FromJust();
369
    fprintf(stderr, "%s:%i: %s\n", filename_string, linenum, exception_string);
370
    // Print line of source code.
371
    v8::String::Utf8Value sourceline(
372
        isolate, message->GetSourceLine(context).ToLocalChecked());
373
    const char* sourceline_string = ToCString(sourceline);
374
    fprintf(stderr, "%s\n", sourceline_string);
375
    // Print wavy underline (GetUnderline is deprecated).
376
    int start = message->GetStartColumn(context).FromJust();
377
    for (int i = 0; i < start; i++) {
378
      fprintf(stderr, " ");
379
    }
380
    int end = message->GetEndColumn(context).FromJust();
381
    for (int i = start; i < end; i++) {
382
      fprintf(stderr, "^");
383
    }
384
    fprintf(stderr, "\n");
385 386 387
    v8::Local<v8::Value> stack_trace_string;
    if (try_catch->StackTrace(context).ToLocal(&stack_trace_string) &&
        stack_trace_string->IsString() &&
388
        stack_trace_string.As<v8::String>()->Length() > 0) {
389
      v8::String::Utf8Value stack_trace(isolate, stack_trace_string);
390 391
      const char* err = ToCString(stack_trace);
      fprintf(stderr, "%s\n", err);
392
    }
393 394
  }
}