blob: 05f52fdc32c88ffd37866adc5c5c5656605644d7 [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.
#ifndef SHILL_CELLULAR_SERVICE_H_
#define SHILL_CELLULAR_SERVICE_H_
#include <map>
#include <string>
#include <base/basictypes.h>
#include <base/time.h>
#include <gtest/gtest_prod.h> // for FRIEND_TEST
#include "shill/cellular.h"
#include "shill/refptr_types.h"
#include "shill/service.h"
namespace shill {
class ControlInterface;
class Error;
class EventDispatcher;
class Manager;
class CellularService : public Service {
public:
// Online payment portal.
class OLP {
public:
OLP();
~OLP();
void CopyFrom(const OLP &olp);
bool Equals(const OLP &olp) const;
const std::string &GetURL() const;
void SetURL(const std::string &url);
const std::string &GetMethod() const;
void SetMethod(const std::string &method);
const std::string &GetPostData() const;
void SetPostData(const std::string &post_data);
const Stringmap &ToDict() const;
private:
Stringmap dict_;
DISALLOW_COPY_AND_ASSIGN(OLP);
};
CellularService(ModemInfo *modem_info,
const CellularRefPtr &device);
virtual ~CellularService();
// Inherited from Service.
virtual void AutoConnect();
virtual void Connect(Error *error, const char *reason);
virtual void Disconnect(Error *error);
virtual void ActivateCellularModem(const std::string &carrier,
Error *error,
const ResultCallback &callback);
virtual void CompleteCellularActivation(Error *error);
virtual void SetState(ConnectState new_state);
virtual std::string GetStorageIdentifier() const;
void SetStorageIdentifier(const std::string &identifier);
void SetActivateOverNonCellularNetwork(bool state);
bool activate_over_non_cellular_network() const {
return activate_over_non_cellular_network_;
}
virtual void SetActivationState(const std::string &state);
const std::string &activation_state() const { return activation_state_; }
void SetOLP(const OLP &olp);
const OLP &olp() const { return olp_; }
void SetUsageURL(const std::string &url);
const std::string &usage_url() const { return usage_url_; }
void SetServingOperator(const Cellular::Operator &oper);
const Cellular::Operator &serving_operator() const;
// Sets network technology to |technology| and broadcasts the property change.
void SetNetworkTechnology(const std::string &technology);
const std::string &network_technology() const { return network_technology_; }
// Sets roaming state to |state| and broadcasts the property change.
void SetRoamingState(const std::string &state);
const std::string &roaming_state() const { return roaming_state_; }
bool is_auto_connecting() const {
return is_auto_connecting_;
}
const std::string &ppp_username() const { return ppp_username_; }
const std::string &ppp_password() const { return ppp_password_; }
void set_enforce_out_of_credits_detection(bool state) {
enforce_out_of_credits_detection_ = state;
}
bool out_of_credits() const { return out_of_credits_; }
void SetOutOfCredits(bool state);
// Overrides Load and Save from parent Service class. We will call
// the parent method.
virtual bool Load(StoreInterface *storage);
virtual bool Save(StoreInterface *storage);
Stringmap *GetUserSpecifiedApn();
Stringmap *GetLastGoodApn();
virtual void SetLastGoodApn(const Stringmap &apn_info);
virtual void ClearLastGoodApn();
virtual void OnAfterResume();
protected:
// Overrides IsAutoConnectable from parent Service class.
virtual bool IsAutoConnectable(const char **reason) const;
private:
friend class CellularCapabilityUniversalTest;
friend class CellularServiceTest;
FRIEND_TEST(CellularCapabilityGSMTest, SetupApnTryList);
FRIEND_TEST(CellularCapabilityTest, TryApns);
FRIEND_TEST(CellularCapabilityUniversalMainTest,
UpdatePendingActivationState);
FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateServiceName);
FRIEND_TEST(CellularCapabilityUniversalMainTest, UpdateStorageIdentifier);
FRIEND_TEST(CellularTest, Connect);
FRIEND_TEST(CellularTest, GetLogin); // ppp_username_, ppp_password_
FRIEND_TEST(CellularTest, OnConnectionHealthCheckerResult);
FRIEND_TEST(CellularServiceTest, SetApn);
FRIEND_TEST(CellularServiceTest, ClearApn);
FRIEND_TEST(CellularServiceTest, LastGoodApn);
FRIEND_TEST(CellularServiceTest, IsAutoConnectable);
FRIEND_TEST(CellularServiceTest, OutOfCreditsDetected);
FRIEND_TEST(CellularServiceTest,
OutOfCreditsDetectionNotSkippedAfterSlowResume);
FRIEND_TEST(CellularServiceTest, OutOfCreditsDetectionSkippedAfterResume);
FRIEND_TEST(CellularServiceTest,
OutOfCreditsDetectionSkippedAlreadyOutOfCredits);
FRIEND_TEST(CellularServiceTest,
OutOfCreditsDetectionSkippedExplicitDisconnect);
FRIEND_TEST(CellularServiceTest, OutOfCreditsNotDetectedConnectionNotDropped);
FRIEND_TEST(CellularServiceTest, OutOfCreditsNotDetectedIntermittentNetwork);
FRIEND_TEST(CellularServiceTest, OutOfCreditsNotEnforced);
FRIEND_TEST(CellularServiceTest, CustomSetterNoopChange);
static const char kAutoConnActivating[];
static const char kAutoConnDeviceDisabled[];
static const char kAutoConnOutOfCredits[];
static const char kAutoConnOutOfCreditsDetectionInProgress[];
static const int64 kOutOfCreditsConnectionDropSeconds;
static const int kOutOfCreditsMaxConnectAttempts;
static const int64 kOutOfCreditsResumeIgnoreSeconds;
void HelpRegisterDerivedStringmap(
const std::string &name,
Stringmap(CellularService::*get)(Error *error),
bool(CellularService::*set)(const Stringmap &value, Error *error));
virtual std::string GetDeviceRpcId(Error *error);
Stringmap GetApn(Error *error);
bool SetApn(const Stringmap &value, Error *error);
static void SaveApn(StoreInterface *storage,
const std::string &storage_group,
const Stringmap *apn_info,
const std::string &keytag);
static void SaveApnField(StoreInterface *storage,
const std::string &storage_group,
const Stringmap *apn_info,
const std::string &keytag,
const std::string &apntag);
static void LoadApn(StoreInterface *storage,
const std::string &storage_group,
const std::string &keytag,
Stringmap *apn_info);
static bool LoadApnField(StoreInterface *storage,
const std::string &storage_group,
const std::string &keytag,
const std::string &apntag,
Stringmap *apn_info);
void PerformOutOfCreditsDetection(ConnectState curr_state,
ConnectState new_state);
void OutOfCreditsReconnect();
void ResetOutOfCreditsState();
base::WeakPtrFactory<CellularService> weak_ptr_factory_;
// Properties
bool activate_over_non_cellular_network_;
std::string activation_state_;
Cellular::Operator serving_operator_;
std::string network_technology_;
std::string roaming_state_;
OLP olp_;
std::string usage_url_;
Stringmap apn_info_;
Stringmap last_good_apn_info_;
std::string ppp_username_;
std::string ppp_password_;
std::string storage_identifier_;
CellularRefPtr cellular_;
// Flag indicating that a connect request is an auto-connect request.
// Note: Since Connect() is asynchronous, this flag is only set during the
// call to Connect(). It does not remain set while the async request is
// in flight.
bool is_auto_connecting_;
// Flag indicating whether we need to perform out-of-credits detection.
bool enforce_out_of_credits_detection_;
// Time when the last connect request started.
base::Time connect_start_time_;
// Number of connect attempts.
int num_connect_attempts_;
// Flag indicating whether out-of-credits detection is in progress.
bool out_of_credits_detection_in_progress_;
// Flag indicating if the SIM is out-of-credits.
bool out_of_credits_;
// Time when the last resume occurred.
base::Time resume_start_time_;
DISALLOW_COPY_AND_ASSIGN(CellularService);
};
} // namespace shill
#endif // SHILL_CELLULAR_SERVICE_H_