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

Unified Diff: sync/engine/traffic_recorder.cc

Issue 9732008: [Sync] Store the past 10 traffic records in memory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 8 years, 9 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
Index: sync/engine/traffic_recorder.cc
diff --git a/sync/engine/traffic_recorder.cc b/sync/engine/traffic_recorder.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bc2986950961a0083fd9ed1ef8a1532d178dc9de
--- /dev/null
+++ b/sync/engine/traffic_recorder.cc
@@ -0,0 +1,80 @@
+// Copyright (c) 2012 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 "sync/engine/traffic_recorder.h"
+
+#include "base/json/json_writer.h"
+#include "base/logging.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/values.h"
+#include "sync/protocol/proto_value_conversions.h"
+#include "sync/protocol/sync.pb.h"
+#include "sync/sessions/sync_session.h"
+
+namespace browser_sync {
+
+TrafficRecorder::TrafficRecord::TrafficRecord(const std::string& message,
+ TrafficMessageType message_type,
+ bool truncated) :
+ message(message),
+ message_type(message_type),
+ truncated(truncated) {
+}
+
+TrafficRecorder::TrafficRecord::TrafficRecord()
+ : message_type(UNKNOWN_MESSAGE_TYPE),
+ truncated(false) {
+}
+
+TrafficRecorder::TrafficRecord::~TrafficRecord() {
+}
+
+const unsigned int kMaxMessages = 10;
+const unsigned int kMaxMessageSize = 5 * 1024;
+
+TrafficRecorder::TrafficRecorder() {
+}
+
+TrafficRecorder::~TrafficRecorder() {
+}
+
+
+void TrafficRecorder::AddTrafficToQueue(const TrafficRecord& record) {
+ records_.push_back(record);
+
+ // We might have more records than our limit.
+ // Maintain the size invariant by deleting items.
+ while (records_.size() > browser_sync::kMaxMessages) {
+ records_.pop_front();
+ }
+}
+
+void TrafficRecorder::StoreProtoInQueue(
+ const ::google::protobuf::MessageLite& msg,
+ TrafficMessageType type) {
+ bool truncated = false;
+ std::string message;
+ if (msg.ByteSize() >= browser_sync::kMaxMessageSize) {
+ // TODO(lipalani): Trim the specifics to fit in size.
+ truncated = true;
+ } else {
+ msg.SerializeToString(&message);
+ }
+
+ TrafficRecord record(message, type, truncated);
+ AddTrafficToQueue(record);
+}
+
+void TrafficRecorder::RecordClientToServerMessage(
+ const sync_pb::ClientToServerMessage& msg) {
+ StoreProtoInQueue(msg, CLIENT_TO_SERVER_MESSAGE);
+}
+
+void TrafficRecorder::RecordClientToServerResponse(
+ const sync_pb::ClientToServerResponse& response) {
+ StoreProtoInQueue(response, CLIENT_TO_SERVER_RESPONSE);
+}
+
+} // namespace browser_sync
+

Powered by Google App Engine
This is Rietveld 408576698