1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
// Copyright 2013 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_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_
#define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_
#include <string>
#include "base/callback.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/local_discovery/privet_http.h"
namespace local_discovery {
class PrivetHTTPClientImpl;
class PrivetInfoOperationImpl : public PrivetInfoOperation,
public PrivetURLFetcher::Delegate {
public:
PrivetInfoOperationImpl(PrivetHTTPClientImpl* privet_client,
PrivetInfoOperation::Delegate* delegate);
virtual ~PrivetInfoOperationImpl();
virtual void Start() OVERRIDE;
virtual void OnError(PrivetURLFetcher* fetcher,
PrivetURLFetcher::ErrorType error) OVERRIDE;
virtual void OnParsedJson(PrivetURLFetcher* fetcher,
const base::DictionaryValue* value,
bool has_error) OVERRIDE;
private:
PrivetHTTPClientImpl* privet_client_;
PrivetInfoOperation::Delegate* delegate_;
scoped_ptr<PrivetURLFetcher> url_fetcher_;
};
class PrivetRegisterOperationImpl
: public PrivetRegisterOperation,
public PrivetURLFetcher::Delegate,
public PrivetInfoOperation::Delegate,
public base::SupportsWeakPtr<PrivetRegisterOperationImpl> {
public:
PrivetRegisterOperationImpl(PrivetHTTPClientImpl* privet_client,
const std::string& user,
PrivetRegisterOperation::Delegate* delegate);
virtual ~PrivetRegisterOperationImpl();
virtual void Start() OVERRIDE;
virtual void Cancel() OVERRIDE;
virtual void CompleteRegistration() OVERRIDE;
virtual void OnError(PrivetURLFetcher* fetcher,
PrivetURLFetcher::ErrorType error) OVERRIDE;
virtual void OnParsedJson(PrivetURLFetcher* fetcher,
const base::DictionaryValue* value,
bool has_error) OVERRIDE;
virtual void OnPrivetInfoDone(int http_code,
const base::DictionaryValue* value) OVERRIDE;
private:
// Arguments is JSON value from request.
typedef base::Callback<void(const base::DictionaryValue&)>
ResponseHandler;
void StartResponse(const base::DictionaryValue& value);
void GetClaimTokenResponse(const base::DictionaryValue& value);
void CompleteResponse(const base::DictionaryValue& value);
void StartInfoOperation();
void SendRequest(const std::string& action);
bool PrivetErrorTransient(const std::string& error);
std::string user_;
std::string current_action_;
scoped_ptr<PrivetURLFetcher> url_fetcher_;
PrivetRegisterOperation::Delegate* delegate_;
PrivetHTTPClientImpl* privet_client_;
ResponseHandler next_response_handler_;
// Required to ensure destroying completed register operations doesn't cause
// extraneous cancelations.
bool ongoing_;
scoped_ptr<PrivetInfoOperation> info_operation_;
};
class PrivetHTTPClientImpl : public PrivetHTTPClient {
public:
PrivetHTTPClientImpl(const net::HostPortPair& host_port,
net::URLRequestContextGetter* request_context);
virtual ~PrivetHTTPClientImpl();
virtual const base::DictionaryValue* GetCachedInfo() const OVERRIDE;
virtual scoped_ptr<PrivetRegisterOperation> CreateRegisterOperation(
const std::string& user,
PrivetRegisterOperation::Delegate* delegate) OVERRIDE;
virtual scoped_ptr<PrivetInfoOperation> CreateInfoOperation(
PrivetInfoOperation::Delegate* delegate) OVERRIDE;
const PrivetURLFetcherFactory& fetcher_factory() const {
return fetcher_factory_;
}
const net::HostPortPair& host_port() const { return host_port_; }
void CacheInfo(const base::DictionaryValue* cached_info);
private:
PrivetURLFetcherFactory fetcher_factory_;
net::HostPortPair host_port_;
scoped_ptr<base::DictionaryValue> cached_info_;
};
} // namespace local_discovery
#endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_IMPL_H_
|