blob: 06ce1f263c1cdc685cd82cbf3aad2a3349e1faa1 [file] [log] [blame]
// Copyright 2014 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.
#include "chromeos/geolocation/simple_geolocation_provider.h"
#include <algorithm>
#include <iterator>
#include "base/bind.h"
#include "base/memory/ptr_util.h"
#include "chromeos/geolocation/geoposition.h"
#include "chromeos/network/geolocation_handler.h"
#include "chromeos/network/network_handler.h"
#include "net/url_request/url_request_context_getter.h"
namespace chromeos {
namespace {
const char kDefaultGeolocationProviderUrl[] =
"https://www.googleapis.com/geolocation/v1/geolocate?";
} // namespace
SimpleGeolocationProvider::SimpleGeolocationProvider(
net::URLRequestContextGetter* url_context_getter,
const GURL& url)
: url_context_getter_(url_context_getter), url_(url) {
}
SimpleGeolocationProvider::~SimpleGeolocationProvider() {
DCHECK(thread_checker_.CalledOnValidThread());
}
void SimpleGeolocationProvider::RequestGeolocation(
base::TimeDelta timeout,
bool send_wifi_access_points,
bool send_cell_towers,
SimpleGeolocationRequest::ResponseCallback callback) {
DCHECK(thread_checker_.CalledOnValidThread());
auto cell_vector = base::MakeUnique<chromeos::CellTowerVector>();
auto wifi_vector = base::MakeUnique<chromeos::WifiAccessPointVector>();
// Mostly necessary for testing and rare cases where NetworkHandler is not
// initialized: in that case, calls to Get() will fail.
if (send_wifi_access_points || send_cell_towers) {
NetworkHandler::Get()->geolocation_handler()->GetNetworkInformation(
wifi_vector.get(), cell_vector.get());
}
if (!send_wifi_access_points || (wifi_vector->size() == 0))
wifi_vector = nullptr;
if (!send_cell_towers || (cell_vector->size() == 0))
cell_vector = nullptr;
SimpleGeolocationRequest* request(new SimpleGeolocationRequest(
url_context_getter_.get(), url_, timeout, std::move(wifi_vector),
std::move(cell_vector)));
requests_.push_back(base::WrapUnique(request));
// SimpleGeolocationProvider owns all requests. It is safe to pass unretained
// "this" because destruction of SimpleGeolocationProvider cancels all
// requests.
SimpleGeolocationRequest::ResponseCallback callback_tmp(
base::Bind(&SimpleGeolocationProvider::OnGeolocationResponse,
base::Unretained(this),
request,
callback));
request->MakeRequest(callback_tmp);
}
// static
GURL SimpleGeolocationProvider::DefaultGeolocationProviderURL() {
return GURL(kDefaultGeolocationProviderUrl);
}
void SimpleGeolocationProvider::OnGeolocationResponse(
SimpleGeolocationRequest* request,
SimpleGeolocationRequest::ResponseCallback callback,
const Geoposition& geoposition,
bool server_error,
const base::TimeDelta elapsed) {
DCHECK(thread_checker_.CalledOnValidThread());
callback.Run(geoposition, server_error, elapsed);
std::vector<std::unique_ptr<SimpleGeolocationRequest>>::iterator position =
std::find_if(
requests_.begin(), requests_.end(),
[request](const std::unique_ptr<SimpleGeolocationRequest>& req) {
return req.get() == request;
});
DCHECK(position != requests_.end());
if (position != requests_.end()) {
std::swap(*position, *requests_.rbegin());
requests_.resize(requests_.size() - 1);
}
}
} // namespace chromeos