// Copyright (c) 2013 GitHub, Inc. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "browser/api/atom_browser_bindings.h" #include #include "base/logging.h" #include "browser/api/atom_api_event.h" #include "common/v8/native_type_conversions.h" #include "content/public/browser/browser_thread.h" #include "common/v8/node_common.h" using content::V8ValueConverter; namespace atom { AtomBrowserBindings::AtomBrowserBindings() { } AtomBrowserBindings::~AtomBrowserBindings() { } void AtomBrowserBindings::AfterLoad() { DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); v8::HandleScope handle_scope(node_isolate); v8::Handle global = global_env->context()->Global(); v8::Handle atom = global->Get(ToV8Value("__atom"))->ToObject(); DCHECK(!atom.IsEmpty()); browser_main_parts_.reset( atom->Get(ToV8Value("browserMainParts"))->ToObject()); DCHECK(!browser_main_parts_.IsEmpty()); } void AtomBrowserBindings::OnRendererMessage(int process_id, int routing_id, const string16& channel, const base::ListValue& args) { v8::HandleScope handle_scope(node_isolate); scoped_ptr converter(new V8ValueConverterImpl()); // process.emit(channel, 'message', process_id, routing_id); std::vector> arguments; arguments.reserve(3 + args.GetSize()); arguments.push_back(ToV8Value(channel)); const base::Value* value; if (args.Get(0, &value)) arguments.push_back(converter->ToV8Value(value, global_env->context())); arguments.push_back(v8::Integer::New(process_id)); arguments.push_back(v8::Integer::New(routing_id)); for (size_t i = 1; i < args.GetSize(); i++) { const base::Value* value; if (args.Get(i, &value)) arguments.push_back(converter->ToV8Value(value, global_env->context())); } node::MakeCallback(global_env->process_object(), "emit", arguments.size(), &arguments[0]); } void AtomBrowserBindings::OnRendererMessageSync( int process_id, int routing_id, const string16& channel, const base::ListValue& args, NativeWindow* sender, IPC::Message* message) { v8::HandleScope handle_scope(node_isolate); scoped_ptr converter(new V8ValueConverterImpl()); // Create the event object. v8::Handle event = api::Event::CreateV8Object(); api::Event::Unwrap(event)->SetSenderAndMessage(sender, message); // process.emit(channel, 'sync-message', event, process_id, routing_id); std::vector> arguments; arguments.reserve(3 + args.GetSize()); arguments.push_back(ToV8Value(channel)); const base::Value* value; if (args.Get(0, &value)) arguments.push_back(converter->ToV8Value(value, global_env->context())); arguments.push_back(event); arguments.push_back(v8::Integer::New(process_id)); arguments.push_back(v8::Integer::New(routing_id)); for (size_t i = 1; i < args.GetSize(); i++) { const base::Value* value; if (args.Get(i, &value)) arguments.push_back(converter->ToV8Value(value, global_env->context())); } node::MakeCallback(global_env->process_object(), "emit", arguments.size(), &arguments[0]); } } // namespace atom