| OLD | NEW |
| 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_no_ssl.h" | 7 #include "bin/io_service_no_ssl.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/socket.h" | 13 #include "bin/socket.h" |
| 14 #include "bin/utils.h" | 14 #include "bin/utils.h" |
| 15 | 15 |
| 16 #include "include/dart_api.h" | 16 #include "include/dart_api.h" |
| 17 | 17 |
| 18 #include "platform/globals.h" | 18 #include "platform/globals.h" |
| 19 #include "platform/utils.h" | 19 #include "platform/utils.h" |
| 20 | 20 |
| 21 namespace dart { | 21 namespace dart { |
| 22 namespace bin { | 22 namespace bin { |
| 23 | 23 |
| 24 #define CASE_REQUEST(type, method, id) \ | 24 #define CASE_REQUEST(type, method, id) \ |
| 25 case IOService::k##type##method##Request: \ | 25 case IOService::k##type##method##Request: \ |
| 26 response = type::method##Request(data); \ | 26 response = type::method##Request(data); \ |
| 27 break; | 27 break; |
| 28 | 28 |
| 29 void IOServiceCallback(Dart_Port dest_port_id, Dart_CObject* message) { | 29 void IOServiceCallback(Dart_Port dest_port_id, |
| 30 Dart_CObject* message, |
| 31 void* peer) { |
| 30 Dart_Port reply_port_id = ILLEGAL_PORT; | 32 Dart_Port reply_port_id = ILLEGAL_PORT; |
| 31 CObject* response = CObject::IllegalArgumentError(); | 33 CObject* response = CObject::IllegalArgumentError(); |
| 32 CObjectArray request(message); | 34 CObjectArray request(message); |
| 33 if ((message->type == Dart_CObject_kArray) && (request.Length() == 4) && | 35 if ((message->type == Dart_CObject_kArray) && (request.Length() == 4) && |
| 34 request[0]->IsInt32() && request[1]->IsSendPort() && | 36 request[0]->IsInt32() && request[1]->IsSendPort() && |
| 35 request[2]->IsInt32() && request[3]->IsArray()) { | 37 request[2]->IsInt32() && request[3]->IsArray()) { |
| 36 CObjectInt32 message_id(request[0]); | 38 CObjectInt32 message_id(request[0]); |
| 37 CObjectSendPort reply_port(request[1]); | 39 CObjectSendPort reply_port(request[1]); |
| 38 CObjectInt32 request_id(request[2]); | 40 CObjectInt32 request_id(request[2]); |
| 39 CObjectArray data(request[3]); | 41 CObjectArray data(request[3]); |
| 40 reply_port_id = reply_port.Value(); | 42 reply_port_id = reply_port.Value(); |
| 41 switch (request_id.Value()) { | 43 switch (request_id.Value()) { |
| 42 IO_SERVICE_REQUEST_LIST(CASE_REQUEST); | 44 IO_SERVICE_REQUEST_LIST(CASE_REQUEST); |
| 43 default: | 45 default: |
| 44 UNREACHABLE(); | 46 UNREACHABLE(); |
| 45 } | 47 } |
| 46 } | 48 } |
| 47 | 49 |
| 48 CObjectArray result(CObject::NewArray(2)); | 50 CObjectArray result(CObject::NewArray(2)); |
| 49 result.SetAt(0, request[0]); | 51 result.SetAt(0, request[0]); |
| 50 result.SetAt(1, response); | 52 result.SetAt(1, response); |
| 51 ASSERT(reply_port_id != ILLEGAL_PORT); | 53 ASSERT(reply_port_id != ILLEGAL_PORT); |
| 52 Dart_PostCObject(reply_port_id, result.AsApiCObject()); | 54 Dart_PostCObject(reply_port_id, result.AsApiCObject()); |
| 53 } | 55 } |
| 54 | 56 |
| 55 | 57 |
| 56 Dart_Port IOService::GetServicePort() { | 58 Dart_Port IOService::GetServicePort() { |
| 57 return Dart_NewNativePort("IOService", IOServiceCallback, true); | 59 return Dart_NewNativePort("IOService", IOServiceCallback, true, NULL); |
| 58 } | 60 } |
| 59 | 61 |
| 60 | 62 |
| 61 void FUNCTION_NAME(IOService_NewServicePort)(Dart_NativeArguments args) { | 63 void FUNCTION_NAME(IOService_NewServicePort)(Dart_NativeArguments args) { |
| 62 Dart_SetReturnValue(args, Dart_Null()); | 64 Dart_SetReturnValue(args, Dart_Null()); |
| 63 Dart_Port service_port = IOService::GetServicePort(); | 65 Dart_Port service_port = IOService::GetServicePort(); |
| 64 if (service_port != ILLEGAL_PORT) { | 66 if (service_port != ILLEGAL_PORT) { |
| 65 // Return a send port for the service port. | 67 // Return a send port for the service port. |
| 66 Dart_Handle send_port = Dart_NewSendPort(service_port); | 68 Dart_Handle send_port = Dart_NewSendPort(service_port); |
| 67 Dart_SetReturnValue(args, send_port); | 69 Dart_SetReturnValue(args, send_port); |
| 68 } | 70 } |
| 69 } | 71 } |
| 70 | 72 |
| 71 } // namespace bin | 73 } // namespace bin |
| 72 } // namespace dart | 74 } // namespace dart |
| 73 | 75 |
| 74 #endif // !defined(DART_IO_DISABLED) && defined(DART_IO_SECURE_SOCKET_DISABLED) | 76 #endif // !defined(DART_IO_DISABLED) && defined(DART_IO_SECURE_SOCKET_DISABLED) |
| OLD | NEW |