| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ | 5 #ifndef DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ |
| 6 #define DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ | 6 #define DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 bool Flush() const override; | 25 bool Flush() const override; |
| 26 serial::DeviceControlSignalsPtr GetControlSignals() const override; | 26 serial::DeviceControlSignalsPtr GetControlSignals() const override; |
| 27 bool SetControlSignals( | 27 bool SetControlSignals( |
| 28 const serial::HostControlSignals& control_signals) override; | 28 const serial::HostControlSignals& control_signals) override; |
| 29 serial::ConnectionInfoPtr GetPortInfo() const override; | 29 serial::ConnectionInfoPtr GetPortInfo() const override; |
| 30 bool SetBreak() override; | 30 bool SetBreak() override; |
| 31 bool ClearBreak() override; | 31 bool ClearBreak() override; |
| 32 bool PostOpen() override; | 32 bool PostOpen() override; |
| 33 | 33 |
| 34 private: | 34 private: |
| 35 class UiThreadHelper; | |
| 36 friend class SerialIoHandler; | 35 friend class SerialIoHandler; |
| 37 | 36 |
| 38 explicit SerialIoHandlerWin( | 37 explicit SerialIoHandlerWin( |
| 39 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner, | 38 scoped_refptr<base::SingleThreadTaskRunner> file_thread_task_runner, |
| 40 scoped_refptr<base::SingleThreadTaskRunner> ui_thread_task_runner); | 39 scoped_refptr<base::SingleThreadTaskRunner> ui_thread_task_runner); |
| 41 ~SerialIoHandlerWin() override; | 40 ~SerialIoHandlerWin() override; |
| 42 | 41 |
| 43 // base::MessageLoopForIO::IOHandler implementation. | 42 // base::MessageLoopForIO::IOHandler implementation. |
| 44 void OnIOCompleted(base::MessageLoopForIO::IOContext* context, | 43 void OnIOCompleted(base::MessageLoopForIO::IOContext* context, |
| 45 DWORD bytes_transfered, | 44 DWORD bytes_transfered, |
| 46 DWORD error) override; | 45 DWORD error) override; |
| 47 | 46 |
| 48 void OnDeviceRemoved(const std::string& device_path); | |
| 49 | |
| 50 // Context used for asynchronous WaitCommEvent calls. | 47 // Context used for asynchronous WaitCommEvent calls. |
| 51 scoped_ptr<base::MessageLoopForIO::IOContext> comm_context_; | 48 scoped_ptr<base::MessageLoopForIO::IOContext> comm_context_; |
| 52 | 49 |
| 53 // Context used for overlapped reads. | 50 // Context used for overlapped reads. |
| 54 scoped_ptr<base::MessageLoopForIO::IOContext> read_context_; | 51 scoped_ptr<base::MessageLoopForIO::IOContext> read_context_; |
| 55 | 52 |
| 56 // Context used for overlapped writes. | 53 // Context used for overlapped writes. |
| 57 scoped_ptr<base::MessageLoopForIO::IOContext> write_context_; | 54 scoped_ptr<base::MessageLoopForIO::IOContext> write_context_; |
| 58 | 55 |
| 59 // Asynchronous event mask state | 56 // Asynchronous event mask state |
| 60 DWORD event_mask_; | 57 DWORD event_mask_; |
| 61 | 58 |
| 62 // Indicates if a pending read is waiting on initial data arrival via | 59 // Indicates if a pending read is waiting on initial data arrival via |
| 63 // WaitCommEvent, as opposed to waiting on actual ReadFile completion | 60 // WaitCommEvent, as opposed to waiting on actual ReadFile completion |
| 64 // after a corresponding WaitCommEvent has completed. | 61 // after a corresponding WaitCommEvent has completed. |
| 65 bool is_comm_pending_; | 62 bool is_comm_pending_; |
| 66 | 63 |
| 67 // The helper lives on the UI thread and holds a weak reference back to the | |
| 68 // handler that owns it. | |
| 69 UiThreadHelper* helper_ = nullptr; | |
| 70 base::WeakPtrFactory<SerialIoHandlerWin> weak_factory_; | |
| 71 | |
| 72 DISALLOW_COPY_AND_ASSIGN(SerialIoHandlerWin); | 64 DISALLOW_COPY_AND_ASSIGN(SerialIoHandlerWin); |
| 73 }; | 65 }; |
| 74 | 66 |
| 75 } // namespace device | 67 } // namespace device |
| 76 | 68 |
| 77 #endif // DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ | 69 #endif // DEVICE_SERIAL_SERIAL_IO_HANDLER_WIN_H_ |
| OLD | NEW |