// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_DEVTOOLS_DEVICE_ANDROID_DEVICE_MANAGER_H_ #define CHROME_BROWSER_DEVTOOLS_DEVICE_ANDROID_DEVICE_MANAGER_H_ #include #include "base/memory/ref_counted.h" #include "base/threading/non_thread_safe.h" #include "chrome/browser/profiles/profile.h" #include "content/public/browser/browser_thread.h" #include "ui/gfx/size.h" namespace net { class StreamSocket; } class AndroidDeviceManager : public base::RefCountedThreadSafe< AndroidDeviceManager, content::BrowserThread::DeleteOnUIThread>, public base::NonThreadSafe { public: typedef base::Callback CommandCallback; typedef base::Callback SocketCallback; typedef base::Callback&)> SerialsCallback; struct BrowserInfo { BrowserInfo(); enum Type { kTypeChrome, kTypeWebView, kTypeOther }; std::string socket_name; std::string display_name; Type type; }; struct DeviceInfo { DeviceInfo(); ~DeviceInfo(); std::string model; bool connected; gfx::Size screen_size; std::vector browser_info; }; typedef base::Callback DeviceInfoCallback; class AndroidWebSocket : public base::RefCountedThreadSafe { public: class Delegate { public: virtual void OnSocketOpened() = 0; virtual void OnFrameRead(const std::string& message) = 0; virtual void OnSocketClosed(bool closed_by_device) = 0; protected: virtual ~Delegate() {} }; AndroidWebSocket() {} virtual void Connect() = 0; virtual void Disconnect() = 0; virtual void SendFrame(const std::string& message) = 0; virtual void ClearDelegate() = 0; protected: virtual ~AndroidWebSocket() {} private: friend class base::RefCountedThreadSafe; DISALLOW_COPY_AND_ASSIGN(AndroidWebSocket); }; class DeviceProvider; class Device : public base::RefCountedThreadSafe, public base::NonThreadSafe { public: typedef AndroidDeviceManager::DeviceInfoCallback DeviceInfoCallback; typedef AndroidDeviceManager::CommandCallback CommandCallback; typedef AndroidDeviceManager::SocketCallback SocketCallback; void QueryDeviceInfo(const DeviceInfoCallback& callback); void OpenSocket(const std::string& socket_name, const SocketCallback& callback); void SendJsonRequest(const std::string& socket_name, const std::string& request, const CommandCallback& callback); void HttpUpgrade(const std::string& socket_name, const std::string& url, const SocketCallback& callback); scoped_refptr CreateWebSocket( const std::string& socket_name, const std::string& url, AndroidWebSocket::Delegate* delegate); std::string serial() { return serial_; } private: friend class AndroidDeviceManager; Device(scoped_refptr device_message_loop, scoped_refptr provider, const std::string& serial); friend class base::RefCountedThreadSafe; virtual ~Device(); scoped_refptr device_message_loop_; scoped_refptr provider_; std::string serial_; base::WeakPtrFactory weak_factory_; DISALLOW_COPY_AND_ASSIGN(Device); }; typedef std::vector > Devices; typedef base::Callback DevicesCallback; class DeviceProvider : public base::RefCountedThreadSafe { public: typedef AndroidDeviceManager::SerialsCallback SerialsCallback; typedef AndroidDeviceManager::DeviceInfoCallback DeviceInfoCallback; typedef AndroidDeviceManager::SocketCallback SocketCallback; typedef AndroidDeviceManager::CommandCallback CommandCallback; virtual void QueryDevices(const SerialsCallback& callback) = 0; virtual void QueryDeviceInfo(const std::string& serial, const DeviceInfoCallback& callback) = 0; virtual void OpenSocket(const std::string& serial, const std::string& socket_name, const SocketCallback& callback) = 0; virtual void SendJsonRequest(const std::string& serial, const std::string& socket_name, const std::string& request, const CommandCallback& callback); virtual void HttpUpgrade(const std::string& serial, const std::string& socket_name, const std::string& url, const SocketCallback& callback); virtual void ReleaseDevice(const std::string& serial); protected: friend class base::RefCountedThreadSafe; DeviceProvider(); virtual ~DeviceProvider(); }; typedef std::vector > DeviceProviders; static scoped_refptr Create(); void SetDeviceProviders(const DeviceProviders& providers); void QueryDevices(const DevicesCallback& callback); struct DeviceDescriptor { DeviceDescriptor(); ~DeviceDescriptor(); scoped_refptr provider; std::string serial; }; typedef std::vector DeviceDescriptors; private: class HandlerThread : public base::RefCountedThreadSafe { public: static scoped_refptr GetInstance(); scoped_refptr message_loop(); private: friend class base::RefCountedThreadSafe; static HandlerThread* instance_; static void StopThread(base::Thread* thread); HandlerThread(); virtual ~HandlerThread(); base::Thread* thread_; }; friend struct content::BrowserThread::DeleteOnThread< content::BrowserThread::UI>; friend class base::DeleteHelper; AndroidDeviceManager(); virtual ~AndroidDeviceManager(); void UpdateDevices(const DevicesCallback& callback, DeviceDescriptors* descriptors); typedef std::map > DeviceWeakMap; scoped_refptr handler_thread_; DeviceProviders providers_; DeviceWeakMap devices_; }; #endif // CHROME_BROWSER_DEVTOOLS_DEVICE_ANDROID_DEVICE_MANAGER_H_