9d72035ce5
each isolate or native port had a dedicated thread. Refactored the MessageHandler api... - Added a Run function to allow a MessageHandler to run on a ThreadPool. These functions take a start and end callback to allow for isolate initialization and shutdown. - Made the queue private to the MessageHandler and moved all message processing code inside the MessageHandler (got rid of all of the different flavors of RunLoop). This helps remove some code duplication and hides the details of how messages are handled. - Moved all locking and notification out of MessageQueue and moved it up to MessageHandler. Moved OOB support out of MessageQueue and up to MessageHandler. These changes make the MessageQueue much simpler. - Refactored native port and isolate MessageHandlers to share more code. - Improved --trace_isolates output. - Added tests for MessageHandler. Refactored lib/isolate code... - Use the new MessageHandler::Run api. - Got rid of the LongJump stuff in RunIsolate. No longer needed. - Use the new StartIsolateScope/SwitchIsolateScope to make the code less verbose and less error-prone. - Store top-level isolate errors in the sticky_error. Added StartIsolateScope/SwitchIsolateScope classes. Review URL: https://chromiumcodereview.appspot.com//9924015 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@6762 260f80e4-7a28-3924-810f-c04153c831b5
65 lines
1.8 KiB
C++
65 lines
1.8 KiB
C++
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
#include "vm/native_message_handler.h"
|
|
|
|
#include "vm/dart_api_message.h"
|
|
#include "vm/isolate.h"
|
|
#include "vm/message.h"
|
|
#include "vm/snapshot.h"
|
|
#include "vm/thread.h"
|
|
|
|
namespace dart {
|
|
|
|
NativeMessageHandler::NativeMessageHandler(const char* name,
|
|
Dart_NativeMessageHandler func)
|
|
: name_(strdup(name)),
|
|
func_(func) {
|
|
// A NativeMessageHandler always has one live port.
|
|
increment_live_ports();
|
|
}
|
|
|
|
|
|
NativeMessageHandler::~NativeMessageHandler() {
|
|
free(name_);
|
|
}
|
|
|
|
|
|
#if defined(DEBUG)
|
|
void NativeMessageHandler::CheckAccess() {
|
|
ASSERT(Isolate::Current() == NULL);
|
|
}
|
|
#endif
|
|
|
|
|
|
static uint8_t* zone_allocator(
|
|
uint8_t* ptr, intptr_t old_size, intptr_t new_size) {
|
|
ApiZone* zone = ApiNativeScope::Current()->zone();
|
|
return reinterpret_cast<uint8_t*>(
|
|
zone->Reallocate(reinterpret_cast<uword>(ptr), old_size, new_size));
|
|
}
|
|
|
|
|
|
bool NativeMessageHandler::HandleMessage(Message* message) {
|
|
if (message->IsOOB()) {
|
|
// We currently do not use OOB messages for native ports.
|
|
UNREACHABLE();
|
|
}
|
|
// Enter a native scope for handling the message. This will create a
|
|
// zone for allocating the objects for decoding the message.
|
|
ApiNativeScope scope;
|
|
|
|
int32_t length = reinterpret_cast<int32_t*>(
|
|
message->data())[Snapshot::kLengthIndex];
|
|
ApiMessageReader reader(message->data() + Snapshot::kHeaderSize,
|
|
length,
|
|
zone_allocator);
|
|
Dart_CObject* object = reader.ReadMessage();
|
|
(*func())(message->dest_port(), message->reply_port(), object);
|
|
delete message;
|
|
return true;
|
|
}
|
|
|
|
} // namespace dart
|