本文整理汇总了C++中CPVRClient::GetConnectionState方法的典型用法代码示例。如果您正苦于以下问题:C++ CPVRClient::GetConnectionState方法的具体用法?C++ CPVRClient::GetConnectionState怎么用?C++ CPVRClient::GetConnectionState使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CPVRClient
的用法示例。
在下文中一共展示了CPVRClient::GetConnectionState方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: PVRConnectionStateChange
void CAddonCallbacksPVR::PVRConnectionStateChange(void* addonData, const char* strConnectionString, PVR_CONNECTION_STATE newState, const char *strMessage)
{
CPVRClient *client = GetPVRClient(addonData);
if (!client || !strConnectionString)
{
CLog::Log(LOGERROR, "PVR - %s - invalid handler data", __FUNCTION__);
return;
}
const PVR_CONNECTION_STATE prevState(client->GetConnectionState());
if (prevState == newState)
return;
CLog::Log(LOGDEBUG, "PVR - %s - state for connection '%s' on client '%s' changed from '%d' to '%d'", __FUNCTION__, strConnectionString, client->Name().c_str(), prevState, newState);
client->SetConnectionState(newState);
std::string msg;
if (strMessage != nullptr)
msg = strMessage;
g_PVRManager.ConnectionStateChange(client->GetID(), std::string(strConnectionString), newState, msg);
}
示例2: PVRConnectionStateChange
void CAddonCallbacksPVR::PVRConnectionStateChange(void* addonData, const char* strConnectionString, PVR_CONNECTION_STATE newState, const char *strMessage)
{
CPVRClient *client = GetPVRClient(addonData);
if (!client || !strConnectionString)
{
CLog::Log(LOGERROR, "PVR - %s - invalid handler data", __FUNCTION__);
return;
}
const PVR_CONNECTION_STATE prevState(client->GetConnectionState());
if (prevState == newState)
return;
CLog::Log(LOGDEBUG, "PVR - %s - state for connection '%s' on client '%s' changed from '%d' to '%d'", __FUNCTION__, strConnectionString, client->Name().c_str(), prevState, newState);
client->SetConnectionState(newState);
int iMsg(-1);
bool bError(true);
bool bNotify(true);
switch (newState)
{
case PVR_CONNECTION_STATE_SERVER_UNREACHABLE:
iMsg = 35505; // Server is unreachable
break;
case PVR_CONNECTION_STATE_SERVER_MISMATCH:
iMsg = 35506; // Server does not respond properly
break;
case PVR_CONNECTION_STATE_VERSION_MISMATCH:
iMsg = 35507; // Server version is not compatible
break;
case PVR_CONNECTION_STATE_ACCESS_DENIED:
iMsg = 35508; // Access denied
break;
case PVR_CONNECTION_STATE_CONNECTED:
iMsg = 36034; // Connection established
bError = false;
// No notification for the first successful connect.
bNotify = (prevState != PVR_CONNECTION_STATE_UNKNOWN);
break;
case PVR_CONNECTION_STATE_DISCONNECTED:
iMsg = 36030; // Connection lost
break;
default:
CLog::Log(LOGERROR, "PVR - %s - unknown connection state", __FUNCTION__);
return;
}
// Use addon-supplied message, if present
std::string strMsg;
if (strMessage && strlen(strMessage) > 0)
strMsg = strMessage;
else
strMsg = g_localizeStrings.Get(iMsg);
// Notify user.
if (bNotify && !CSettings::GetInstance().GetBool(CSettings::SETTING_PVRMANAGER_HIDECONNECTIONLOSTWARNING))
CGUIDialogKaiToast::QueueNotification(
bError ? CGUIDialogKaiToast::Error : CGUIDialogKaiToast::Info, client->Name().c_str(), strMsg, 5000, true);
// Write event log entry.
CEventLog::GetInstance().Add(EventPtr(new CNotificationEvent(
client->Name(), strMsg, client->Icon(), bError ? EventLevel::Error : EventLevel::Information)));
}