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
3 // found in the LICENSE file.
5 #include "chrome/service/net/service_url_request_context_getter.h"
7 #if defined(OS_POSIX) && !defined(OS_MACOSX)
8 #include <sys/utsname.h>
11 #include "base/compiler_specific.h"
12 #include "base/message_loop/message_loop_proxy.h"
13 #include "base/strings/stringprintf.h"
14 #include "base/sys_info.h"
15 #include "chrome/common/chrome_version_info.h"
16 #include "chrome/service/service_process.h"
17 #include "net/proxy/proxy_config_service.h"
18 #include "net/proxy/proxy_service.h"
19 #include "net/url_request/url_request_context_builder.h"
22 // Copied from webkit/glue/user_agent.cc. We don't want to pull in a dependency
23 // on webkit/glue which also pulls in the renderer. Also our user-agent is
24 // totally different from the user-agent used by the browser, just the
25 // OS-specific parts are common.
26 std::string
BuildOSCpuInfo() {
29 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS)
30 int32 os_major_version
= 0;
31 int32 os_minor_version
= 0;
32 int32 os_bugfix_version
= 0;
33 base::SysInfo::OperatingSystemVersionNumbers(&os_major_version
,
37 #if defined(OS_POSIX) && !defined(OS_MACOSX)
38 // Should work on any Posix system.
39 struct utsname unixinfo
;
43 // special case for biarch systems
44 if (strcmp(unixinfo
.machine
, "x86_64") == 0 &&
45 sizeof(void*) == sizeof(int32
)) { // NOLINT
46 cputype
.assign("i686 (x86_64)");
48 cputype
.assign(unixinfo
.machine
);
58 #elif defined(OS_MACOSX)
59 "Intel Mac OS X %d_%d_%d",
63 #elif defined(OS_CHROMEOS)
65 cputype
.c_str(), // e.g. i686
71 unixinfo
.sysname
, // e.g. Linux
72 cputype
.c_str() // e.g. i686
79 // Returns the default user agent.
80 std::string
MakeUserAgentForServiceProcess() {
81 std::string user_agent
;
82 chrome::VersionInfo version_info
;
83 std::string extra_version_info
;
84 if (!version_info
.IsOfficialBuild())
85 extra_version_info
= "-devel";
86 base::StringAppendF(&user_agent
,
87 "Chrome Service %s(%s)%s %s ",
88 version_info
.Version().c_str(),
89 version_info
.LastChange().c_str(),
90 extra_version_info
.c_str(),
91 BuildOSCpuInfo().c_str());
97 ServiceURLRequestContextGetter::ServiceURLRequestContextGetter()
98 : user_agent_(MakeUserAgentForServiceProcess()),
100 g_service_process
->io_thread()->message_loop_proxy()) {
101 // TODO(sanjeevr): Change CreateSystemProxyConfigService to accept a
102 // MessageLoopProxy* instead of MessageLoop*.
103 DCHECK(g_service_process
);
104 proxy_config_service_
.reset(net::ProxyService::CreateSystemProxyConfigService(
105 g_service_process
->io_thread()->message_loop_proxy(),
106 g_service_process
->file_thread()->message_loop_proxy()));
109 net::URLRequestContext
*
110 ServiceURLRequestContextGetter::GetURLRequestContext() {
111 if (!url_request_context_
.get()) {
112 net::URLRequestContextBuilder builder
;
113 builder
.set_user_agent(user_agent_
);
114 builder
.set_accept_language("en-us,fr");
115 builder
.set_proxy_config_service(proxy_config_service_
.release());
116 builder
.set_throttling_enabled(true);
117 url_request_context_
.reset(builder
.Build());
119 return url_request_context_
.get();
122 scoped_refptr
<base::SingleThreadTaskRunner
>
123 ServiceURLRequestContextGetter::GetNetworkTaskRunner() const {
124 return network_task_runner_
;
127 ServiceURLRequestContextGetter::~ServiceURLRequestContextGetter() {}