| OLD | NEW |
| 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 14 matching lines...) Expand all Loading... |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <include/v8.h> | 28 #include <include/v8.h> |
| 29 | 29 |
| 30 #include <include/libplatform/libplatform.h> | 30 #include <include/libplatform/libplatform.h> |
| 31 | 31 |
| 32 #include <map> | 32 #include <map> |
| 33 #include <string> | 33 #include <string> |
| 34 | 34 |
| 35 #ifdef COMPRESS_STARTUP_DATA_BZ2 | |
| 36 #error Using compressed startup data is not supported for this sample | |
| 37 #endif | |
| 38 | |
| 39 using namespace std; | 35 using namespace std; |
| 40 using namespace v8; | 36 using namespace v8; |
| 41 | 37 |
| 42 // These interfaces represent an existing request processing interface. | 38 // These interfaces represent an existing request processing interface. |
| 43 // The idea is to imagine a real application that uses these interfaces | 39 // The idea is to imagine a real application that uses these interfaces |
| 44 // and then add scripting capabilities that allow you to interact with | 40 // and then add scripting capabilities that allow you to interact with |
| 45 // the objects through JavaScript. | 41 // the objects through JavaScript. |
| 46 | 42 |
| 47 /** | 43 /** |
| 48 * A simplified http request. | 44 * A simplified http request. |
| (...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 JsHttpRequestProcessor processor(isolate, source); | 663 JsHttpRequestProcessor processor(isolate, source); |
| 668 map<string, string> output; | 664 map<string, string> output; |
| 669 if (!processor.Initialize(&options, &output)) { | 665 if (!processor.Initialize(&options, &output)) { |
| 670 fprintf(stderr, "Error initializing processor.\n"); | 666 fprintf(stderr, "Error initializing processor.\n"); |
| 671 return 1; | 667 return 1; |
| 672 } | 668 } |
| 673 if (!ProcessEntries(&processor, kSampleSize, kSampleRequests)) | 669 if (!ProcessEntries(&processor, kSampleSize, kSampleRequests)) |
| 674 return 1; | 670 return 1; |
| 675 PrintMap(&output); | 671 PrintMap(&output); |
| 676 } | 672 } |
| OLD | NEW |