blob: 100c9477b3fe473f18a28b8242604cf7dbcafff7 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS 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 "shill/cellular_service.h"
#include <string>
#include <base/logging.h>
#include <base/stringprintf.h>
#include <chromeos/dbus/service_constants.h>
#include "shill/adaptor_interfaces.h"
#include "shill/cellular.h"
using std::string;
namespace shill {
// static
const char CellularService::kServiceType[] = "cellular";
CellularService::CellularService(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Metrics *metrics,
Manager *manager,
const CellularRefPtr &device)
: Service(control_interface, dispatcher, metrics, manager,
Technology::kCellular),
cellular_(device) {
PropertyStore *store = this->mutable_store();
store->RegisterConstString(flimflam::kActivationStateProperty,
&activation_state_);
store->RegisterStringmap(flimflam::kCellularApnProperty, &apn_info_);
store->RegisterConstStringmap(flimflam::kCellularLastGoodApnProperty,
&last_good_apn_info_);
store->RegisterConstString(flimflam::kNetworkTechnologyProperty,
&network_technology_);
store->RegisterConstString(flimflam::kPaymentURLProperty, &payment_url_);
store->RegisterConstString(flimflam::kRoamingStateProperty, &roaming_state_);
store->RegisterConstStringmap(flimflam::kServingOperatorProperty,
&serving_operator_.ToDict());
store->RegisterConstString(flimflam::kUsageURLProperty, &usage_url_);
set_friendly_name(device->CreateFriendlyServiceName());
SetStorageIdentifier("cellular_" + device->address() + "_" + friendly_name());
}
CellularService::~CellularService() { }
void CellularService::Connect(Error *error) {
Service::Connect(error);
cellular_->Connect(error);
}
void CellularService::Disconnect(Error *error) {
Service::Disconnect(error);
cellular_->Disconnect(error);
}
void CellularService::ActivateCellularModem(const string &carrier,
ReturnerInterface *returner) {
cellular_->Activate(carrier, returner);
}
bool CellularService::TechnologyIs(const Technology::Identifier type) const {
return cellular_->TechnologyIs(type);
}
void CellularService::SetStorageIdentifier(const string &identifier) {
storage_identifier_ = identifier;
std::replace_if(storage_identifier_.begin(),
storage_identifier_.end(),
&Service::IllegalChar, '_');
}
string CellularService::GetStorageIdentifier() const {
return storage_identifier_;
}
string CellularService::GetDeviceRpcId(Error */*error*/) {
return cellular_->GetRpcIdentifier();
}
void CellularService::SetActivationState(const string &state) {
if (state == activation_state_) {
return;
}
activation_state_ = state;
adaptor()->EmitStringChanged(flimflam::kActivationStateProperty, state);
}
void CellularService::SetNetworkTechnology(const string &technology) {
if (technology == network_technology_) {
return;
}
network_technology_ = technology;
adaptor()->EmitStringChanged(flimflam::kNetworkTechnologyProperty,
technology);
}
void CellularService::SetRoamingState(const string &state) {
if (state == roaming_state_) {
return;
}
roaming_state_ = state;
adaptor()->EmitStringChanged(flimflam::kRoamingStateProperty, state);
}
const Cellular::Operator &CellularService::serving_operator() const {
return serving_operator_;
}
void CellularService::SetServingOperator(const Cellular::Operator &oper) {
if (serving_operator_.Equals(oper)) {
return;
}
serving_operator_.CopyFrom(oper);
adaptor()->EmitStringmapChanged(flimflam::kServingOperatorProperty,
oper.ToDict());
}
} // namespace shill