OLD | NEW |
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #ifndef NET_FTP_FTP_NETWORK_TRANSACTION_H_ | 5 #ifndef NET_FTP_FTP_NETWORK_TRANSACTION_H_ |
6 #define NET_FTP_FTP_NETWORK_TRANSACTION_H_ | 6 #define NET_FTP_FTP_NETWORK_TRANSACTION_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <queue> | 9 #include <queue> |
10 #include <utility> | 10 #include <utility> |
(...skipping 13 matching lines...) Expand all Loading... |
24 class ClientSocketFactory; | 24 class ClientSocketFactory; |
25 class FtpNetworkSession; | 25 class FtpNetworkSession; |
26 | 26 |
27 class FtpNetworkTransaction : public FtpTransaction { | 27 class FtpNetworkTransaction : public FtpTransaction { |
28 public: | 28 public: |
29 FtpNetworkTransaction(FtpNetworkSession* session, | 29 FtpNetworkTransaction(FtpNetworkSession* session, |
30 ClientSocketFactory* socket_factory); | 30 ClientSocketFactory* socket_factory); |
31 virtual ~FtpNetworkTransaction(); | 31 virtual ~FtpNetworkTransaction(); |
32 | 32 |
33 // FtpTransaction methods: | 33 // FtpTransaction methods: |
34 virtual int Start(const FtpRequestInfo* request_info, | 34 virtual int Start(LoadLog* load_log, |
| 35 const FtpRequestInfo* request_info, |
35 CompletionCallback* callback); | 36 CompletionCallback* callback); |
36 virtual int Stop(int error); | 37 virtual int Stop(int error); |
37 virtual int RestartWithAuth(const std::wstring& username, | 38 virtual int RestartWithAuth(const std::wstring& username, |
38 const std::wstring& password, | 39 const std::wstring& password, |
39 CompletionCallback* callback); | 40 CompletionCallback* callback); |
40 virtual int RestartIgnoringLastError(CompletionCallback* callback); | 41 virtual int RestartIgnoringLastError(CompletionCallback* callback); |
41 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); | 42 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback); |
42 virtual const FtpResponseInfo* GetResponseInfo() const; | 43 virtual const FtpResponseInfo* GetResponseInfo() const; |
43 virtual LoadState GetLoadState() const; | 44 virtual LoadState GetLoadState() const; |
44 virtual uint64 GetUploadProgress() const; | 45 virtual uint64 GetUploadProgress() const; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 int DoDataRead(); | 149 int DoDataRead(); |
149 int DoDataReadComplete(int result); | 150 int DoDataReadComplete(int result); |
150 | 151 |
151 Command command_sent_; | 152 Command command_sent_; |
152 | 153 |
153 CompletionCallbackImpl<FtpNetworkTransaction> io_callback_; | 154 CompletionCallbackImpl<FtpNetworkTransaction> io_callback_; |
154 CompletionCallback* user_callback_; | 155 CompletionCallback* user_callback_; |
155 | 156 |
156 scoped_refptr<FtpNetworkSession> session_; | 157 scoped_refptr<FtpNetworkSession> session_; |
157 | 158 |
| 159 scoped_refptr<LoadLog> load_log_; |
158 const FtpRequestInfo* request_; | 160 const FtpRequestInfo* request_; |
159 FtpResponseInfo response_; | 161 FtpResponseInfo response_; |
160 | 162 |
161 // Cancels the outstanding request on destruction. | 163 // Cancels the outstanding request on destruction. |
162 SingleRequestHostResolver resolver_; | 164 SingleRequestHostResolver resolver_; |
163 AddressList addresses_; | 165 AddressList addresses_; |
164 | 166 |
165 // User buffer passed to the Read method for control socket. | 167 // User buffer passed to the Read method for control socket. |
166 scoped_refptr<IOBuffer> read_ctrl_buf_; | 168 scoped_refptr<IOBuffer> read_ctrl_buf_; |
167 | 169 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 STATE_DATA_READ, | 230 STATE_DATA_READ, |
229 STATE_DATA_READ_COMPLETE, | 231 STATE_DATA_READ_COMPLETE, |
230 STATE_NONE | 232 STATE_NONE |
231 }; | 233 }; |
232 State next_state_; | 234 State next_state_; |
233 }; | 235 }; |
234 | 236 |
235 } // namespace net | 237 } // namespace net |
236 | 238 |
237 #endif // NET_FTP_FTP_NETWORK_TRANSACTION_H_ | 239 #endif // NET_FTP_FTP_NETWORK_TRANSACTION_H_ |
OLD | NEW |