Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(284)

Unified Diff: google_apis/gcm/engine/account_info.cc

Issue 423583004: [GCM] Adding AccountInfo structure to persist accounts mapped to GCM (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updates based on CR from zea@ Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « google_apis/gcm/engine/account_info.h ('k') | google_apis/gcm/engine/account_info_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/gcm/engine/account_info.cc
diff --git a/google_apis/gcm/engine/account_info.cc b/google_apis/gcm/engine/account_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..9ca7a321a41a1bb65f9bf3fd430e7764e5237799
--- /dev/null
+++ b/google_apis/gcm/engine/account_info.cc
@@ -0,0 +1,109 @@
+// Copyright 2014 The Chromium 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 "google_apis/gcm/engine/account_info.h"
+
+#include "base/strings/string_number_conversions.h"
+#include "base/strings/string_util.h"
+
+namespace gcm {
+
+namespace {
+
+const char kSeparator[] = "&";
+uint32 kEmailIndex = 0;
+uint32 kMessageTypeIndex = 1;
+uint32 kMessageIdIndex = 2;
+uint32 kMessageTimestampIndex = 3;
+uint32 kSizeWithNoMessage = kMessageTypeIndex + 1;
+uint32 kSizeWithMessage = kMessageTimestampIndex + 1;
+
+std::string MessageTypeToString(AccountInfo::MessageType type) {
+ switch (type) {
+ case AccountInfo::MSG_NONE:
+ return "none";
+ case AccountInfo::MSG_ADD:
+ return "add";
+ case AccountInfo::MSG_REMOVE:
+ return "remove";
+ default:
+ NOTREACHED();
+ }
+ return "";
+}
+
+AccountInfo::MessageType StringToMessageType(const std::string& type) {
+ if (type.compare("add") == 0)
+ return AccountInfo::MSG_ADD;
+ if (type.compare("remove") == 0)
+ return AccountInfo::MSG_REMOVE;
+ return AccountInfo::MSG_NONE;
+}
+
+} // namespace
+
+AccountInfo::AccountInfo() {
+}
+
+AccountInfo::~AccountInfo() {
+}
+
+std::string AccountInfo::SerializeAsString() const {
+ std::string value;
+ value.append(email);
+ value.append(kSeparator);
+ value.append(MessageTypeToString(last_message_type));
+ if (last_message_type != MSG_NONE) {
+ value.append(kSeparator);
+ value.append(last_message_id);
+ value.append(kSeparator);
+ value.append(base::Int64ToString(last_message_timestamp.ToInternalValue()));
+ }
+
+ return value;
+}
+
+bool AccountInfo::ParseFromString(const std::string& value) {
+ std::vector<std::string> values;
+ Tokenize(value, kSeparator, &values);
+ if (values.size() != kSizeWithNoMessage &&
+ values.size() != kSizeWithMessage) {
+ return false;
+ }
+
+ if (values[kEmailIndex].empty() ||
+ values[kMessageTypeIndex].empty()) {
+ return false;
+ }
+
+ if (values.size() == kSizeWithMessage &&
+ (values[kMessageIdIndex].empty() ||
+ values[kMessageTimestampIndex].empty())) {
+ return false;
+ }
+
+ if (values.size() == kSizeWithMessage) {
+ int64 timestamp = 0LL;
+ if (!base::StringToInt64(values[kMessageTimestampIndex], &timestamp))
+ return false;
+
+ MessageType message_type = StringToMessageType(values[kMessageTypeIndex]);
+ if (message_type == MSG_NONE)
+ return false;
+
+ last_message_type = message_type;
+ last_message_id = values[kMessageIdIndex];
+ last_message_timestamp = base::Time::FromInternalValue(timestamp);
+ } else {
+ last_message_type = MSG_NONE;
+ last_message_id.clear();
+ last_message_timestamp = base::Time();
+ }
+
+ email = values[kEmailIndex];
+
+ return true;
+}
+
+} // namespace gcm
« no previous file with comments | « google_apis/gcm/engine/account_info.h ('k') | google_apis/gcm/engine/account_info_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698