OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #include "bin/dartutils.h" | 5 #include "bin/dartutils.h" |
6 #include "bin/eventhandler.h" | 6 #include "bin/eventhandler.h" |
7 #include "bin/socket.h" | 7 #include "bin/socket.h" |
8 #include "bin/thread.h" | 8 #include "bin/thread.h" |
9 | 9 |
10 #include "include/dart_api.h" | 10 #include "include/dart_api.h" |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 * args[0] a ReceivePort args[1] with a notification event args[2]. | 85 * args[0] a ReceivePort args[1] with a notification event args[2]. |
86 */ | 86 */ |
87 void FUNCTION_NAME(EventHandler_SendData)(Dart_NativeArguments args) { | 87 void FUNCTION_NAME(EventHandler_SendData)(Dart_NativeArguments args) { |
88 Dart_Handle sender = Dart_GetNativeArgument(args, 0); | 88 Dart_Handle sender = Dart_GetNativeArgument(args, 0); |
89 intptr_t id = kInvalidId; | 89 intptr_t id = kInvalidId; |
90 if (Dart_IsNull(sender)) { | 90 if (Dart_IsNull(sender)) { |
91 id = kTimerId; | 91 id = kTimerId; |
92 } else { | 92 } else { |
93 id = Socket::GetSocketIdNativeField(sender); | 93 id = Socket::GetSocketIdNativeField(sender); |
94 } | 94 } |
| 95 // Get the _id field out of the port. |
95 Dart_Handle handle = Dart_GetNativeArgument(args, 1); | 96 Dart_Handle handle = Dart_GetNativeArgument(args, 1); |
96 Dart_Port dart_port = | 97 handle = Dart_GetField(handle, DartUtils::NewString(DartUtils::kIdFieldName)); |
97 DartUtils::GetIntegerField(handle, DartUtils::kIdFieldName); | 98 if (Dart_IsError(handle)) { |
| 99 Dart_PropagateError(handle); |
| 100 UNREACHABLE(); |
| 101 } |
| 102 Dart_Port dart_port; |
| 103 handle = Dart_IntegerToInt64(handle, &dart_port); |
| 104 if (Dart_IsError(handle)) { |
| 105 Dart_PropagateError(handle); |
| 106 UNREACHABLE(); |
| 107 } |
98 int64_t data = DartUtils::GetIntegerValue(Dart_GetNativeArgument(args, 2)); | 108 int64_t data = DartUtils::GetIntegerValue(Dart_GetNativeArgument(args, 2)); |
99 if (id == kTimerId && data == 0) { | 109 if ((id == kTimerId) && (data == 0)) { |
100 // This is a 0-timer. Simply queue a 'null' on the port. | 110 // This is a 0-timer. Simply queue a 'null' on the port. |
101 DartUtils::PostNull(dart_port); | 111 DartUtils::PostNull(dart_port); |
102 } else { | 112 } else { |
103 event_handler->SendData(id, dart_port, data); | 113 event_handler->SendData(id, dart_port, data); |
104 } | 114 } |
105 } | 115 } |
106 | 116 |
107 } // namespace bin | 117 } // namespace bin |
108 } // namespace dart | 118 } // namespace dart |
OLD | NEW |