mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
151 lines
3.5 KiB
C++
151 lines
3.5 KiB
C++
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#pragma once
|
|
|
|
#include "CC_Common.h"
|
|
#include <bitset>
|
|
#include <set>
|
|
#include <vector>
|
|
|
|
extern "C"
|
|
{
|
|
#include "ccapi_types.h"
|
|
}
|
|
|
|
namespace CSF
|
|
{
|
|
class ECC_API CC_LineInfo
|
|
{
|
|
protected:
|
|
CC_LineInfo() { }
|
|
|
|
public:
|
|
//Base class needs dtor to be declared as virtual
|
|
virtual ~CC_LineInfo() {};
|
|
|
|
/**
|
|
Get the line Name
|
|
|
|
@return string - line Name
|
|
*/
|
|
virtual std::string getName() = 0;
|
|
|
|
/**
|
|
Get the line DN Number
|
|
@return string - line DN
|
|
*/
|
|
virtual std::string getNumber() = 0;
|
|
|
|
/**
|
|
Get the physical button number on which this line is configured
|
|
|
|
@return cc_uint32_t - button number
|
|
*/
|
|
virtual cc_uint32_t getButton() = 0;
|
|
|
|
/**
|
|
Get the Line Type
|
|
|
|
@return cc_line_feature_t - line featureID ( Line )
|
|
*/
|
|
virtual cc_line_feature_t getLineType() = 0;
|
|
|
|
/**
|
|
|
|
@return bool - true if phone is currently registered with CM.
|
|
*/
|
|
virtual bool getRegState() = 0;
|
|
|
|
/**
|
|
Get the CFWDAll status for the line
|
|
|
|
@return bool - isForwarded
|
|
*/
|
|
virtual bool isCFWDActive() = 0;
|
|
|
|
/**
|
|
Get the CFWDAll destination
|
|
|
|
@return string - cfwd target
|
|
*/
|
|
virtual std::string getCFWDName() = 0;
|
|
|
|
/**
|
|
Get calls on line
|
|
|
|
@param [in] line - line
|
|
@return vector<CC_CallPtr>
|
|
*/
|
|
virtual std::vector<CC_CallPtr> getCalls (CC_LinePtr linePtr) = 0;
|
|
|
|
/**
|
|
Get calls on line by state
|
|
|
|
@param [in] line - line
|
|
@param [in] state - state
|
|
|
|
@return vector<CC_CallPtr>
|
|
*/
|
|
virtual std::vector<CC_CallPtr> getCallsByState (CC_LinePtr linePtr, cc_call_state_t state) = 0;
|
|
|
|
/**
|
|
Get the MWI Status
|
|
|
|
@return cc_uint32_t - MWI status (boolean 0 => no MWI)
|
|
*/
|
|
virtual bool getMWIStatus() = 0;
|
|
|
|
/**
|
|
Get the MWI Type
|
|
|
|
@return cc_uint32_t - MWI Type
|
|
*/
|
|
virtual cc_uint32_t getMWIType() = 0;
|
|
|
|
/**
|
|
Get the MWI new msg count
|
|
|
|
@return cc_uint32_t - MWI new msg count
|
|
*/
|
|
virtual cc_uint32_t getMWINewMsgCount() = 0;
|
|
|
|
/**
|
|
Get the MWI old msg count
|
|
|
|
@return cc_uint32_t - MWI old msg count
|
|
*/
|
|
virtual cc_uint32_t getMWIOldMsgCount() = 0;
|
|
|
|
/**
|
|
Get the MWI high priority new msg count
|
|
|
|
@return cc_uint32_t - MWI new msg count
|
|
*/
|
|
virtual cc_uint32_t getMWIPrioNewMsgCount() = 0;
|
|
|
|
/**
|
|
Get the MWI high priority old msg count
|
|
|
|
@return cc_uint32_t - MWI old msg count
|
|
*/
|
|
virtual cc_uint32_t getMWIPrioOldMsgCount() = 0;
|
|
|
|
/**
|
|
has capability - is the feature allowed
|
|
|
|
@param [in] capability - capability being queried to see if it's available
|
|
@return bool - is Allowed
|
|
*/
|
|
virtual bool hasCapability(ccapi_call_capability_e capability) = 0;
|
|
|
|
/**
|
|
get Allowed Feature set
|
|
|
|
@return cc_return_t - bitset of Line Capabilities.
|
|
*/
|
|
virtual std::bitset<CCAPI_CALL_CAP_MAX> getCapabilitySet() = 0;
|
|
};
|
|
};
|