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
41 lines
1.1 KiB
C++
41 lines
1.1 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.
|
|
|
|
#ifndef VM_NATIVE_MESSAGE_HANDLER_H_
|
|
#define VM_NATIVE_MESSAGE_HANDLER_H_
|
|
|
|
#include "include/dart_api.h"
|
|
#include "vm/message_handler.h"
|
|
|
|
namespace dart {
|
|
|
|
// A NativeMessageHandler accepts messages and dispatches them to
|
|
// native C handlers.
|
|
class NativeMessageHandler : public MessageHandler {
|
|
public:
|
|
NativeMessageHandler(const char* name, Dart_NativeMessageHandler func);
|
|
~NativeMessageHandler();
|
|
|
|
const char* name() const { return name_; }
|
|
Dart_NativeMessageHandler func() const { return func_; }
|
|
|
|
bool HandleMessage(Message* message);
|
|
|
|
#if defined(DEBUG)
|
|
// Check that it is safe to access this handler.
|
|
void CheckAccess();
|
|
#endif
|
|
|
|
// Delete this handlers when its last live port is closed.
|
|
virtual bool OwnedByPortMap() const { return true; }
|
|
|
|
private:
|
|
char* name_;
|
|
Dart_NativeMessageHandler func_;
|
|
};
|
|
|
|
} // namespace dart
|
|
|
|
#endif // VM_NATIVE_MESSAGE_HANDLER_H_
|