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

Side by Side Diff: runtime/bin/io_service.cc

Issue 2651633002: VM: [Kernel] Fix bootstraping when Kernel isolate is used. (Closed)
Patch Set: Landing issue Created 3 years, 10 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
« no previous file with comments | « no previous file | runtime/bin/io_service_no_ssl.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED) 5 #if !defined(DART_IO_DISABLED) && !defined(DART_IO_SECURE_SOCKET_DISABLED)
6 6
7 #include "bin/io_service.h" 7 #include "bin/io_service.h"
8 8
9 #include "bin/dartutils.h" 9 #include "bin/dartutils.h"
10 #include "bin/directory.h" 10 #include "bin/directory.h"
11 #include "bin/file.h" 11 #include "bin/file.h"
12 #include "bin/io_buffer.h" 12 #include "bin/io_buffer.h"
13 #include "bin/secure_socket.h" 13 #include "bin/secure_socket.h"
14 #include "bin/socket.h" 14 #include "bin/socket.h"
15 #include "bin/utils.h" 15 #include "bin/utils.h"
16 16
17 #include "include/dart_api.h" 17 #include "include/dart_api.h"
18 18
19 #include "platform/globals.h" 19 #include "platform/globals.h"
20 #include "platform/utils.h" 20 #include "platform/utils.h"
21 21
22 namespace dart { 22 namespace dart {
23 namespace bin { 23 namespace bin {
24 24
25 #define CASE_REQUEST(type, method, id) \ 25 #define CASE_REQUEST(type, method, id) \
26 case IOService::k##type##method##Request: \ 26 case IOService::k##type##method##Request: \
27 response = type::method##Request(data); \ 27 response = type::method##Request(data); \
28 break; 28 break;
29 29
30 void IOServiceCallback(Dart_Port dest_port_id, Dart_CObject* message) { 30 void IOServiceCallback(Dart_Port dest_port_id,
31 Dart_CObject* message,
32 void* peer) {
31 Dart_Port reply_port_id = ILLEGAL_PORT; 33 Dart_Port reply_port_id = ILLEGAL_PORT;
32 CObject* response = CObject::IllegalArgumentError(); 34 CObject* response = CObject::IllegalArgumentError();
33 CObjectArray request(message); 35 CObjectArray request(message);
34 if ((message->type == Dart_CObject_kArray) && (request.Length() == 4) && 36 if ((message->type == Dart_CObject_kArray) && (request.Length() == 4) &&
35 request[0]->IsInt32() && request[1]->IsSendPort() && 37 request[0]->IsInt32() && request[1]->IsSendPort() &&
36 request[2]->IsInt32() && request[3]->IsArray()) { 38 request[2]->IsInt32() && request[3]->IsArray()) {
37 CObjectInt32 message_id(request[0]); 39 CObjectInt32 message_id(request[0]);
38 CObjectSendPort reply_port(request[1]); 40 CObjectSendPort reply_port(request[1]);
39 CObjectInt32 request_id(request[2]); 41 CObjectInt32 request_id(request[2]);
40 CObjectArray data(request[3]); 42 CObjectArray data(request[3]);
41 reply_port_id = reply_port.Value(); 43 reply_port_id = reply_port.Value();
42 switch (request_id.Value()) { 44 switch (request_id.Value()) {
43 IO_SERVICE_REQUEST_LIST(CASE_REQUEST); 45 IO_SERVICE_REQUEST_LIST(CASE_REQUEST);
44 default: 46 default:
45 UNREACHABLE(); 47 UNREACHABLE();
46 } 48 }
47 } 49 }
48 50
49 CObjectArray result(CObject::NewArray(2)); 51 CObjectArray result(CObject::NewArray(2));
50 result.SetAt(0, request[0]); 52 result.SetAt(0, request[0]);
51 result.SetAt(1, response); 53 result.SetAt(1, response);
52 ASSERT(reply_port_id != ILLEGAL_PORT); 54 ASSERT(reply_port_id != ILLEGAL_PORT);
53 Dart_PostCObject(reply_port_id, result.AsApiCObject()); 55 Dart_PostCObject(reply_port_id, result.AsApiCObject());
54 } 56 }
55 57
56 58
57 Dart_Port IOService::GetServicePort() { 59 Dart_Port IOService::GetServicePort() {
58 return Dart_NewNativePort("IOService", IOServiceCallback, true); 60 return Dart_NewNativePort("IOService", IOServiceCallback, true, NULL);
59 } 61 }
60 62
61 63
62 void FUNCTION_NAME(IOService_NewServicePort)(Dart_NativeArguments args) { 64 void FUNCTION_NAME(IOService_NewServicePort)(Dart_NativeArguments args) {
63 Dart_SetReturnValue(args, Dart_Null()); 65 Dart_SetReturnValue(args, Dart_Null());
64 Dart_Port service_port = IOService::GetServicePort(); 66 Dart_Port service_port = IOService::GetServicePort();
65 if (service_port != ILLEGAL_PORT) { 67 if (service_port != ILLEGAL_PORT) {
66 // Return a send port for the service port. 68 // Return a send port for the service port.
67 Dart_Handle send_port = Dart_NewSendPort(service_port); 69 Dart_Handle send_port = Dart_NewSendPort(service_port);
68 Dart_SetReturnValue(args, send_port); 70 Dart_SetReturnValue(args, send_port);
69 } 71 }
70 } 72 }
71 73
72 } // namespace bin 74 } // namespace bin
73 } // namespace dart 75 } // namespace dart
74 76
75 #endif // !defined(DART_IO_DISABLED) && 77 #endif // !defined(DART_IO_DISABLED) &&
76 // !defined(DART_IO_SECURE_SOCKET_DISABLED) 78 // !defined(DART_IO_SECURE_SOCKET_DISABLED)
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/io_service_no_ssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698