OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ | 5 #ifndef CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ |
6 #define CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ | 6 #define CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
| 11 #include "base/files/file.h" |
| 12 #include "base/memory/weak_ptr.h" |
| 13 #include "base/message_loop/message_loop.h" |
11 #include "chromeos/chromeos_export.h" | 14 #include "chromeos/chromeos_export.h" |
12 | 15 |
13 namespace chromeos { | 16 namespace chromeos { |
14 | 17 |
15 enum ProcessOutputType { | 18 enum ProcessOutputType { |
16 PROCESS_OUTPUT_TYPE_OUT, | 19 PROCESS_OUTPUT_TYPE_OUT, |
17 PROCESS_OUTPUT_TYPE_ERR, | |
18 PROCESS_OUTPUT_TYPE_EXIT | 20 PROCESS_OUTPUT_TYPE_EXIT |
19 }; | 21 }; |
20 | 22 |
21 typedef base::Callback<void(ProcessOutputType, const std::string&)> | 23 typedef base::Callback<void(ProcessOutputType, const std::string&)> |
22 ProcessOutputCallback; | 24 ProcessOutputCallback; |
23 | 25 |
24 // Observes output on |out_fd| and invokes |callback| when some output is | 26 // Observes output on |out_fd| and invokes |callback| when some output is |
25 // detected. It assumes UTF8 output. | 27 // detected. It assumes UTF8 output. |
26 // If output is detected in |stop_fd|, the watcher is stopped. | 28 class CHROMEOS_EXPORT ProcessOutputWatcher |
27 // This class should live on its own thread because running class makes | 29 : public base::MessageLoopForIO::Watcher { |
28 // underlying thread block. It deletes itself when watching is stopped. | |
29 class CHROMEOS_EXPORT ProcessOutputWatcher { | |
30 public: | 30 public: |
31 // Verifies that fds that we got are properly set. | 31 ProcessOutputWatcher(int out_fd, const ProcessOutputCallback& callback); |
32 static bool VerifyFileDescriptor(int fd); | 32 ~ProcessOutputWatcher() override; |
33 | 33 |
34 ProcessOutputWatcher(int out_fd, int stop_fd, | |
35 const ProcessOutputCallback& callback); | |
36 | |
37 // This will block current thread!!!! | |
38 void Start(); | 34 void Start(); |
39 | 35 |
40 private: | 36 private: |
41 // The object will destroy itself when it stops watching process output. | 37 // MessageLoopForIO::Watcher overrides: |
42 ~ProcessOutputWatcher(); | 38 void OnFileCanReadWithoutBlocking(int fd) override; |
| 39 void OnFileCanWriteWithoutBlocking(int fd) override; |
43 | 40 |
44 // Listens to output from supplied fds. It guarantees data written to one fd | 41 // Listens to output from fd passed to the constructor. |
45 // will be reported in order that it has been written (this is not true across | |
46 // fds, it would be nicer if it was). | |
47 void WatchProcessOutput(); | 42 void WatchProcessOutput(); |
48 | 43 |
49 // Reads data from fd, and when it's done, invokes callback function. | 44 // Reads data from fd and invokes callback |on_read_callback_| with read data. |
50 void ReadFromFd(ProcessOutputType type, int* fd); | 45 void ReadFromFd(int fd); |
51 | 46 |
52 // Checks if the read buffer has any trailing incomplete UTF8 characters and | 47 // Checks if the read buffer has any trailing incomplete UTF8 characters and |
53 // returns the read buffer size without them. | 48 // returns the read buffer size without them. |
54 size_t OutputSizeWithoutIncompleteUTF8(); | 49 size_t OutputSizeWithoutIncompleteUTF8(); |
55 | 50 |
56 // Processes new |read_buffer_| state and notifies observer about new process | 51 // Processes new |read_buffer_| state and notifies observer about new process |
57 // output. | 52 // output. |
58 void ReportOutput(ProcessOutputType type, size_t new_bytes_count); | 53 void ReportOutput(ProcessOutputType type, size_t new_bytes_count); |
59 | 54 |
60 // It will just delete this. | |
61 void OnStop(); | |
62 | |
63 char read_buffer_[256]; | 55 char read_buffer_[256]; |
64 // Maximum read buffer content size. | 56 // Maximum read buffer content size. |
65 size_t read_buffer_capacity_; | 57 size_t read_buffer_capacity_; |
66 // Current read bufferi content size. | 58 // Current read bufferi content size. |
67 size_t read_buffer_size_; | 59 size_t read_buffer_size_; |
68 | 60 |
69 int out_fd_; | 61 // Contains file descsriptor to which watched process output is written. |
70 int stop_fd_; | 62 base::File process_output_file_; |
71 int max_fd_; | 63 base::MessageLoopForIO::FileDescriptorWatcher output_file_watcher_; |
72 | 64 |
73 // Callback that will be invoked when some output is detected. | 65 // Callback that will be invoked when some output is detected. |
74 ProcessOutputCallback on_read_callback_; | 66 ProcessOutputCallback on_read_callback_; |
75 | 67 |
| 68 base::WeakPtrFactory<ProcessOutputWatcher> weak_factory_; |
| 69 |
76 DISALLOW_COPY_AND_ASSIGN(ProcessOutputWatcher); | 70 DISALLOW_COPY_AND_ASSIGN(ProcessOutputWatcher); |
77 }; | 71 }; |
78 | 72 |
79 } // namespace chromeos | 73 } // namespace chromeos |
80 | 74 |
81 #endif // CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ | 75 #endif // CHROMEOS_PROCESS_PROXY_PROCESS_OUTPUT_WATCHER_H_ |
OLD | NEW |