Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: samples/process.cc

Issue 238353015: Simplify v8/Isolate teardown. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased. Tiny serializer fix after recent changes. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/lineprocessor.cc ('k') | samples/shell.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 void PrintMap(map<string, string>* m) { 637 void PrintMap(map<string, string>* m) {
638 for (map<string, string>::iterator i = m->begin(); i != m->end(); i++) { 638 for (map<string, string>::iterator i = m->begin(); i != m->end(); i++) {
639 pair<string, string> entry = *i; 639 pair<string, string> entry = *i;
640 printf("%s: %s\n", entry.first.c_str(), entry.second.c_str()); 640 printf("%s: %s\n", entry.first.c_str(), entry.second.c_str());
641 } 641 }
642 } 642 }
643 643
644 644
645 int main(int argc, char* argv[]) { 645 int main(int argc, char* argv[]) {
646 v8::V8::InitializeICU(); 646 v8::V8::InitializeICU();
647 v8::V8::Initialize();
647 map<string, string> options; 648 map<string, string> options;
648 string file; 649 string file;
649 ParseOptions(argc, argv, options, &file); 650 ParseOptions(argc, argv, options, &file);
650 if (file.empty()) { 651 if (file.empty()) {
651 fprintf(stderr, "No script was specified.\n"); 652 fprintf(stderr, "No script was specified.\n");
652 return 1; 653 return 1;
653 } 654 }
654 Isolate* isolate = Isolate::GetCurrent(); 655 Isolate* isolate = Isolate::GetCurrent();
655 HandleScope scope(isolate); 656 HandleScope scope(isolate);
656 Handle<String> source = ReadFile(isolate, file); 657 Handle<String> source = ReadFile(isolate, file);
657 if (source.IsEmpty()) { 658 if (source.IsEmpty()) {
658 fprintf(stderr, "Error reading '%s'.\n", file.c_str()); 659 fprintf(stderr, "Error reading '%s'.\n", file.c_str());
659 return 1; 660 return 1;
660 } 661 }
661 JsHttpRequestProcessor processor(isolate, source); 662 JsHttpRequestProcessor processor(isolate, source);
662 map<string, string> output; 663 map<string, string> output;
663 if (!processor.Initialize(&options, &output)) { 664 if (!processor.Initialize(&options, &output)) {
664 fprintf(stderr, "Error initializing processor.\n"); 665 fprintf(stderr, "Error initializing processor.\n");
665 return 1; 666 return 1;
666 } 667 }
667 if (!ProcessEntries(&processor, kSampleSize, kSampleRequests)) 668 if (!ProcessEntries(&processor, kSampleSize, kSampleRequests))
668 return 1; 669 return 1;
669 PrintMap(&output); 670 PrintMap(&output);
670 } 671 }
OLDNEW
« no previous file with comments | « samples/lineprocessor.cc ('k') | samples/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698