blob: bc27c5b7333ac2ed722744a8efb1449037073e73 [file] [log] [blame]
// Copyright (c) 2011 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/cellular.h"
using std::string;
namespace shill {
// static
const char CellularService::kServiceType[] = "cellular";
CellularService::CellularService(ControlInterface *control_interface,
EventDispatcher *dispatcher,
Manager *manager,
const CellularRefPtr &device)
: Service(control_interface, dispatcher, manager),
strength_(0),
cellular_(device),
type_(flimflam::kTypeCellular) {
PropertyStore *store = this->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_tech_);
store->RegisterConstString(flimflam::kPaymentURLProperty, &payment_url_);
store->RegisterConstString(flimflam::kRoamingStateProperty, &roaming_state_);
store->RegisterConstStringmap(flimflam::kServingOperatorProperty,
&serving_operator_.ToDict());
store->RegisterConstUint8(flimflam::kSignalStrengthProperty, &strength_);
store->RegisterConstString(flimflam::kTypeProperty, &type_);
store->RegisterConstString(flimflam::kUsageURLProperty, &usage_url_);
}
CellularService::~CellularService() { }
void CellularService::Connect(Error *error) {
cellular_->Connect(error);
}
void CellularService::Disconnect() { }
void CellularService::ActivateCellularModem(const string &carrier,
Error *error) {
cellular_->Activate(carrier, error);
}
string CellularService::GetStorageIdentifier(const string &mac) {
string id = base::StringPrintf("%s_%s_%s",
kServiceType,
mac.c_str(),
serving_operator_.GetName().c_str());
std::replace_if(id.begin(), id.end(), &Service::LegalChar, '_');
return id;
}
string CellularService::GetDeviceRpcId() {
return cellular_->GetRpcIdentifier();
}
const Cellular::Operator &CellularService::serving_operator() const {
return serving_operator_;
}
void CellularService::set_serving_operator(const Cellular::Operator &oper) {
serving_operator_.CopyFrom(oper);
}
} // namespace shill