This source file includes following definitions.
- NotificationMethodToString
- StringToNotificationMethod
#include "jingle/notifier/base/notification_method.h"
#include "base/logging.h"
namespace notifier {
const NotificationMethod kDefaultNotificationMethod = NOTIFICATION_SERVER;
std::string NotificationMethodToString(
NotificationMethod notification_method) {
switch (notification_method) {
case NOTIFICATION_P2P:
return "NOTIFICATION_P2P";
break;
case NOTIFICATION_SERVER:
return "NOTIFICATION_SERVER";
break;
default:
LOG(WARNING) << "Unknown value for notification method: "
<< notification_method;
break;
}
return "<unknown notification method>";
}
NotificationMethod StringToNotificationMethod(const std::string& str) {
if (str == "p2p") {
return NOTIFICATION_P2P;
} else if (str == "server") {
return NOTIFICATION_SERVER;
}
LOG(WARNING) << "Unknown notification method \"" << str
<< "\"; using method "
<< NotificationMethodToString(kDefaultNotificationMethod);
return kDefaultNotificationMethod;
}
}