| 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 #include "include/dart_native_api.h" | 5 #include "include/dart_native_api.h" |
| 6 | 6 |
| 7 #include "platform/assert.h" | 7 #include "platform/assert.h" |
| 8 #include "vm/dart_api_impl.h" | 8 #include "vm/dart_api_impl.h" |
| 9 #include "vm/dart_api_message.h" | 9 #include "vm/dart_api_message.h" |
| 10 #include "vm/dart_api_state.h" | 10 #include "vm/dart_api_state.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 if (handler == NULL) { | 83 if (handler == NULL) { |
| 84 OS::PrintErr("%s expects argument 'handler' to be non-null.\n", | 84 OS::PrintErr("%s expects argument 'handler' to be non-null.\n", |
| 85 CURRENT_FUNC); | 85 CURRENT_FUNC); |
| 86 return ILLEGAL_PORT; | 86 return ILLEGAL_PORT; |
| 87 } | 87 } |
| 88 // Start the native port without a current isolate. | 88 // Start the native port without a current isolate. |
| 89 IsolateSaver saver(Isolate::Current()); | 89 IsolateSaver saver(Isolate::Current()); |
| 90 | 90 |
| 91 NativeMessageHandler* nmh = new NativeMessageHandler(name, handler); | 91 NativeMessageHandler* nmh = new NativeMessageHandler(name, handler); |
| 92 Dart_Port port_id = PortMap::CreatePort(nmh); | 92 Dart_Port port_id = PortMap::CreatePort(nmh); |
| 93 PortMap::SetPortState(port_id, PortMap::kLivePort); |
| 93 nmh->Run(Dart::thread_pool(), NULL, NULL, 0); | 94 nmh->Run(Dart::thread_pool(), NULL, NULL, 0); |
| 94 return port_id; | 95 return port_id; |
| 95 } | 96 } |
| 96 | 97 |
| 97 | 98 |
| 98 DART_EXPORT bool Dart_CloseNativePort(Dart_Port native_port_id) { | 99 DART_EXPORT bool Dart_CloseNativePort(Dart_Port native_port_id) { |
| 99 // Close the native port without a current isolate. | 100 // Close the native port without a current isolate. |
| 100 IsolateSaver saver(Isolate::Current()); | 101 IsolateSaver saver(Isolate::Current()); |
| 101 | 102 |
| 102 // TODO(turnidge): Check that the port is native before trying to close. | 103 // TODO(turnidge): Check that the port is native before trying to close. |
| (...skipping 19 matching lines...) Expand all Loading... |
| 122 Dart_Handle result = Api::CheckAndFinalizePendingClasses(T); | 123 Dart_Handle result = Api::CheckAndFinalizePendingClasses(T); |
| 123 if (::Dart_IsError(result)) { | 124 if (::Dart_IsError(result)) { |
| 124 return result; | 125 return result; |
| 125 } | 126 } |
| 126 CHECK_CALLBACK_STATE(T); | 127 CHECK_CALLBACK_STATE(T); |
| 127 CompileAll(T, &result); | 128 CompileAll(T, &result); |
| 128 return result; | 129 return result; |
| 129 } | 130 } |
| 130 | 131 |
| 131 } // namespace dart | 132 } // namespace dart |
| OLD | NEW |