shell.cc 15.7 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 29 30
#include <include/v8.h>

#include <include/libplatform/libplatform.h>
31

32
#include <assert.h>
33 34 35
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
36
#include <string.h>
37

38 39 40 41 42 43 44 45
/**
 * 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.
 */

46

47
v8::Local<v8::Context> CreateShellContext(v8::Isolate* isolate);
48 49 50
void RunShell(v8::Local<v8::Context> context, v8::Platform* platform);
int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
            char* argv[]);
51 52
bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
                   v8::Local<v8::Value> name, bool print_result,
53
                   bool report_exceptions);
54 55 56 57 58
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);
59
v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name);
60
void ReportException(v8::Isolate* isolate, v8::TryCatch* handler);
61 62


63
static bool run_shell;
64 65


66
int main(int argc, char* argv[]) {
67
  v8::V8::InitializeICUDefaultLocation(argv[0]);
vogelheim's avatar
vogelheim committed
68
  v8::V8::InitializeExternalStartupData(argv[0]);
69
  v8::Platform* platform = v8::platform::CreateDefaultPlatform();
70
  v8::V8::InitializePlatform(platform);
71
  v8::V8::Initialize();
72
  v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
73
  v8::Isolate::CreateParams create_params;
74 75
  create_params.array_buffer_allocator =
      v8::ArrayBuffer::Allocator::NewDefaultAllocator();
76
  v8::Isolate* isolate = v8::Isolate::New(create_params);
77
  run_shell = (argc == 1);
78 79
  int result;
  {
80
    v8::Isolate::Scope isolate_scope(isolate);
81
    v8::HandleScope handle_scope(isolate);
82
    v8::Local<v8::Context> context = CreateShellContext(isolate);
83
    if (context.IsEmpty()) {
84
      fprintf(stderr, "Error creating context\n");
85 86
      return 1;
    }
87
    v8::Context::Scope context_scope(context);
88 89
    result = RunMain(isolate, platform, argc, argv);
    if (run_shell) RunShell(context, platform);
90
  }
cwhan.tunz's avatar
cwhan.tunz committed
91
  isolate->Dispose();
92
  v8::V8::Dispose();
93 94
  v8::V8::ShutdownPlatform();
  delete platform;
95
  delete create_params.array_buffer_allocator;
96 97 98 99
  return result;
}


100 101 102 103 104 105
// Extracts a C string from a V8 Utf8Value.
const char* ToCString(const v8::String::Utf8Value& value) {
  return *value ? *value : "<string conversion failed>";
}


106 107
// Creates a new execution environment containing the built-in
// functions.
108
v8::Local<v8::Context> CreateShellContext(v8::Isolate* isolate) {
109
  // Create a template for the global object.
110
  v8::Local<v8::ObjectTemplate> global = v8::ObjectTemplate::New(isolate);
111
  // Bind the global 'print' function to the C++ Print callback.
112 113 114 115
  global->Set(
      v8::String::NewFromUtf8(isolate, "print", v8::NewStringType::kNormal)
          .ToLocalChecked(),
      v8::FunctionTemplate::New(isolate, Print));
116
  // Bind the global 'read' function to the C++ Read callback.
117 118
  global->Set(v8::String::NewFromUtf8(
                  isolate, "read", v8::NewStringType::kNormal).ToLocalChecked(),
119
              v8::FunctionTemplate::New(isolate, Read));
120
  // Bind the global 'load' function to the C++ Load callback.
121 122
  global->Set(v8::String::NewFromUtf8(
                  isolate, "load", v8::NewStringType::kNormal).ToLocalChecked(),
123
              v8::FunctionTemplate::New(isolate, Load));
124
  // Bind the 'quit' function
125 126
  global->Set(v8::String::NewFromUtf8(
                  isolate, "quit", v8::NewStringType::kNormal).ToLocalChecked(),
127
              v8::FunctionTemplate::New(isolate, Quit));
128
  // Bind the 'version' function
129 130 131 132
  global->Set(
      v8::String::NewFromUtf8(isolate, "version", v8::NewStringType::kNormal)
          .ToLocalChecked(),
      v8::FunctionTemplate::New(isolate, Version));
133

134
  return v8::Context::New(isolate, NULL, global);
135 136 137
}


138 139 140
// 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.
141
void Print(const v8::FunctionCallbackInfo<v8::Value>& args) {
142 143
  bool first = true;
  for (int i = 0; i < args.Length(); i++) {
144
    v8::HandleScope handle_scope(args.GetIsolate());
145 146 147 148 149
    if (first) {
      first = false;
    } else {
      printf(" ");
    }
150
    v8::String::Utf8Value str(args[i]);
151 152
    const char* cstr = ToCString(str);
    printf("%s", cstr);
153 154
  }
  printf("\n");
155
  fflush(stdout);
156 157 158
}


159 160 161
// 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.
162
void Read(const v8::FunctionCallbackInfo<v8::Value>& args) {
163
  if (args.Length() != 1) {
164
    args.GetIsolate()->ThrowException(
165 166
        v8::String::NewFromUtf8(args.GetIsolate(), "Bad parameters",
                                v8::NewStringType::kNormal).ToLocalChecked());
167
    return;
168 169 170
  }
  v8::String::Utf8Value file(args[0]);
  if (*file == NULL) {
171
    args.GetIsolate()->ThrowException(
172 173
        v8::String::NewFromUtf8(args.GetIsolate(), "Error loading file",
                                v8::NewStringType::kNormal).ToLocalChecked());
174
    return;
175
  }
176 177
  v8::Local<v8::String> source;
  if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
178
    args.GetIsolate()->ThrowException(
179 180
        v8::String::NewFromUtf8(args.GetIsolate(), "Error loading file",
                                v8::NewStringType::kNormal).ToLocalChecked());
181
    return;
182
  }
183
  args.GetReturnValue().Set(source);
184 185 186
}


187 188 189
// The callback that is invoked by v8 whenever the JavaScript 'load'
// function is called.  Loads, compiles and executes its argument
// JavaScript file.
190
void Load(const v8::FunctionCallbackInfo<v8::Value>& args) {
191
  for (int i = 0; i < args.Length(); i++) {
192
    v8::HandleScope handle_scope(args.GetIsolate());
193
    v8::String::Utf8Value file(args[i]);
194
    if (*file == NULL) {
195
      args.GetIsolate()->ThrowException(
196 197
          v8::String::NewFromUtf8(args.GetIsolate(), "Error loading file",
                                  v8::NewStringType::kNormal).ToLocalChecked());
198
      return;
199
    }
200 201
    v8::Local<v8::String> source;
    if (!ReadFile(args.GetIsolate(), *file).ToLocal(&source)) {
202
      args.GetIsolate()->ThrowException(
203 204
          v8::String::NewFromUtf8(args.GetIsolate(), "Error loading file",
                                  v8::NewStringType::kNormal).ToLocalChecked());
205
      return;
206
    }
207
    if (!ExecuteString(args.GetIsolate(), source, args[i], false, false)) {
208
      args.GetIsolate()->ThrowException(
209 210
          v8::String::NewFromUtf8(args.GetIsolate(), "Error executing file",
                                  v8::NewStringType::kNormal).ToLocalChecked());
211
      return;
212
    }
213 214 215 216 217 218
  }
}


// The callback that is invoked by v8 whenever the JavaScript 'quit'
// function is called.  Quits.
219
void Quit(const v8::FunctionCallbackInfo<v8::Value>& args) {
220 221
  // If not arguments are given args[0] will yield undefined which
  // converts to the integer value 0.
222 223
  int exit_code =
      args[0]->Int32Value(args.GetIsolate()->GetCurrentContext()).FromMaybe(0);
224 225 226
  fflush(stdout);
  fflush(stderr);
  exit(exit_code);
227 228 229
}


230
void Version(const v8::FunctionCallbackInfo<v8::Value>& args) {
231
  args.GetReturnValue().Set(
232 233
      v8::String::NewFromUtf8(args.GetIsolate(), v8::V8::GetVersion(),
                              v8::NewStringType::kNormal).ToLocalChecked());
234 235 236
}


237
// Reads a file into a v8 string.
238
v8::MaybeLocal<v8::String> ReadFile(v8::Isolate* isolate, const char* name) {
239
  FILE* file = fopen(name, "rb");
240
  if (file == NULL) return v8::MaybeLocal<v8::String>();
241 242

  fseek(file, 0, SEEK_END);
243
  size_t size = ftell(file);
244 245 246 247
  rewind(file);

  char* chars = new char[size + 1];
  chars[size] = '\0';
248 249 250 251
  for (size_t i = 0; i < size;) {
    i += fread(&chars[i], 1, size - i, file);
    if (ferror(file)) {
      fclose(file);
252
      return v8::MaybeLocal<v8::String>();
253
    }
254 255
  }
  fclose(file);
256 257
  v8::MaybeLocal<v8::String> result = v8::String::NewFromUtf8(
      isolate, chars, v8::NewStringType::kNormal, static_cast<int>(size));
258 259 260 261 262
  delete[] chars;
  return result;
}


263
// Process remaining command line arguments and execute files
264 265
int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
            char* argv[]) {
266 267 268 269 270 271 272 273 274
  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) {
275 276
      fprintf(stderr,
              "Warning: unknown flag %s.\nTry --help for options\n", str);
277 278
    } else if (strcmp(str, "-e") == 0 && i + 1 < argc) {
      // Execute argument given to -e option directly.
279 280 281 282 283 284 285 286 287
      v8::Local<v8::String> file_name =
          v8::String::NewFromUtf8(isolate, "unnamed",
                                  v8::NewStringType::kNormal).ToLocalChecked();
      v8::Local<v8::String> source;
      if (!v8::String::NewFromUtf8(isolate, argv[++i],
                                   v8::NewStringType::kNormal)
               .ToLocal(&source)) {
        return 1;
      }
288 289 290
      bool success = ExecuteString(isolate, source, file_name, false, true);
      while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
      if (!success) return 1;
291 292
    } else {
      // Use all other arguments as names of files to load and run.
293 294 295 296 297
      v8::Local<v8::String> file_name =
          v8::String::NewFromUtf8(isolate, str, v8::NewStringType::kNormal)
              .ToLocalChecked();
      v8::Local<v8::String> source;
      if (!ReadFile(isolate, str).ToLocal(&source)) {
298
        fprintf(stderr, "Error reading '%s'\n", str);
299 300
        continue;
      }
301 302 303
      bool success = ExecuteString(isolate, source, file_name, false, true);
      while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
      if (!success) return 1;
304 305 306 307 308 309
    }
  }
  return 0;
}


310
// The read-eval-execute loop of the shell.
311
void RunShell(v8::Local<v8::Context> context, v8::Platform* platform) {
312
  fprintf(stderr, "V8 version %s [sample shell]\n", v8::V8::GetVersion());
313
  static const int kBufferSize = 256;
314 315
  // Enter the execution environment before evaluating any code.
  v8::Context::Scope context_scope(context);
316
  v8::Local<v8::String> name(
317 318
      v8::String::NewFromUtf8(context->GetIsolate(), "(shell)",
                              v8::NewStringType::kNormal).ToLocalChecked());
319 320
  while (true) {
    char buffer[kBufferSize];
321
    fprintf(stderr, "> ");
322 323
    char* str = fgets(buffer, kBufferSize, stdin);
    if (str == NULL) break;
324
    v8::HandleScope handle_scope(context->GetIsolate());
325 326 327 328 329
    ExecuteString(
        context->GetIsolate(),
        v8::String::NewFromUtf8(context->GetIsolate(), str,
                                v8::NewStringType::kNormal).ToLocalChecked(),
        name, true, true);
330 331
    while (v8::platform::PumpMessageLoop(platform, context->GetIsolate()))
      continue;
332
  }
333
  fprintf(stderr, "\n");
334 335 336 337
}


// Executes a string within the current v8 context.
338 339
bool ExecuteString(v8::Isolate* isolate, v8::Local<v8::String> source,
                   v8::Local<v8::Value> name, bool print_result,
340
                   bool report_exceptions) {
341
  v8::HandleScope handle_scope(isolate);
342
  v8::TryCatch try_catch(isolate);
343
  v8::ScriptOrigin origin(name);
344 345 346
  v8::Local<v8::Context> context(isolate->GetCurrentContext());
  v8::Local<v8::Script> script;
  if (!v8::Script::Compile(context, source, &origin).ToLocal(&script)) {
347
    // Print errors that happened during compilation.
348
    if (report_exceptions)
349
      ReportException(isolate, &try_catch);
350 351
    return false;
  } else {
352 353
    v8::Local<v8::Value> result;
    if (!script->Run(context).ToLocal(&result)) {
354
      assert(try_catch.HasCaught());
355
      // Print errors that happened during execution.
356
      if (report_exceptions)
357
        ReportException(isolate, &try_catch);
358 359
      return false;
    } else {
360
      assert(!try_catch.HasCaught());
361
      if (print_result && !result->IsUndefined()) {
362 363
        // If all went well and the result wasn't undefined then print
        // the returned value.
364
        v8::String::Utf8Value str(result);
365 366
        const char* cstr = ToCString(str);
        printf("%s\n", cstr);
367 368 369 370 371
      }
      return true;
    }
  }
}
372 373


374 375
void ReportException(v8::Isolate* isolate, v8::TryCatch* try_catch) {
  v8::HandleScope handle_scope(isolate);
376
  v8::String::Utf8Value exception(try_catch->Exception());
377
  const char* exception_string = ToCString(exception);
378
  v8::Local<v8::Message> message = try_catch->Message();
379 380 381
  if (message.IsEmpty()) {
    // V8 didn't provide any extra information about this error; just
    // print the exception.
382
    fprintf(stderr, "%s\n", exception_string);
383 384
  } else {
    // Print (filename):(line number): (message).
385
    v8::String::Utf8Value filename(message->GetScriptOrigin().ResourceName());
386
    v8::Local<v8::Context> context(isolate->GetCurrentContext());
387
    const char* filename_string = ToCString(filename);
388
    int linenum = message->GetLineNumber(context).FromJust();
389
    fprintf(stderr, "%s:%i: %s\n", filename_string, linenum, exception_string);
390
    // Print line of source code.
391 392
    v8::String::Utf8Value sourceline(
        message->GetSourceLine(context).ToLocalChecked());
393
    const char* sourceline_string = ToCString(sourceline);
394
    fprintf(stderr, "%s\n", sourceline_string);
395
    // Print wavy underline (GetUnderline is deprecated).
396
    int start = message->GetStartColumn(context).FromJust();
397
    for (int i = 0; i < start; i++) {
398
      fprintf(stderr, " ");
399
    }
400
    int end = message->GetEndColumn(context).FromJust();
401
    for (int i = start; i < end; i++) {
402
      fprintf(stderr, "^");
403
    }
404
    fprintf(stderr, "\n");
405 406 407 408 409
    v8::Local<v8::Value> stack_trace_string;
    if (try_catch->StackTrace(context).ToLocal(&stack_trace_string) &&
        stack_trace_string->IsString() &&
        v8::Local<v8::String>::Cast(stack_trace_string)->Length() > 0) {
      v8::String::Utf8Value stack_trace(stack_trace_string);
410
      const char* stack_trace_string = ToCString(stack_trace);
411
      fprintf(stderr, "%s\n", stack_trace_string);
412
    }
413 414
  }
}