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

Unified Diff: remoting/host/security_key/remote_security_key_message_writer.cc

Issue 1830433002: Adding the message writing class used for remote_security_key STDOUT communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@messages
Patch Set: Integrating security message changes Created 4 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: remoting/host/security_key/remote_security_key_message_writer.cc
diff --git a/remoting/host/security_key/remote_security_key_message_writer.cc b/remoting/host/security_key/remote_security_key_message_writer.cc
new file mode 100644
index 0000000000000000000000000000000000000000..c1ffea851069666e7faa65083a78b5870991331d
--- /dev/null
+++ b/remoting/host/security_key/remote_security_key_message_writer.cc
@@ -0,0 +1,81 @@
+// Copyright 2016 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 "remoting/host/security_key/remote_security_key_message_writer.h"
+
+#include <stddef.h>
+#include <stdint.h>
+
+#include <string>
+#include <utility>
+
+#include "remoting/host/security_key/security_key_message.h"
+
+namespace remoting {
+
+RemoteSecurityKeyMessageWriter::RemoteSecurityKeyMessageWriter(
+ base::File output_file)
+ : output_stream_(std::move(output_file)) {}
+
+RemoteSecurityKeyMessageWriter::~RemoteSecurityKeyMessageWriter() {}
+
+bool RemoteSecurityKeyMessageWriter::WriteMessage(
Sergey Ulanov 2016/03/28 18:20:07 Maybe call this WriteEmptyMessage()? Style guide i
joedow 2016/03/29 22:14:14 Done.
+ RemoteSecurityKeyMessageType message_type) {
+ return WriteMessage(message_type, std::string());
+}
+
+bool RemoteSecurityKeyMessageWriter::WriteMessage(
+ RemoteSecurityKeyMessageType message_type,
+ const std::string& message_payload) {
+ if (write_failed_) {
+ return false;
+ }
+
+ if (!output_stream_.IsValid()) {
Sergey Ulanov 2016/03/28 18:20:07 Why would it be invalid here? I think you can just
joedow 2016/03/29 22:14:14 The file representing output_stream could be valid
+ LOG(ERROR) << "Cannot write to invalid stream.";
+ write_failed_ = true;
+ return false;
+ }
+
+ uint32_t message_payload_size_bytes = message_payload.size();
+ uint32_t total_message_size_bytes =
+ sizeof(message_type) + message_payload_size_bytes;
Sergey Ulanov 2016/03/28 18:20:07 In remoting/host/security_key/security_key_message
joedow 2016/03/29 22:14:14 Done.
+ CHECK(SecurityKeyMessage::IsValidMessageSize(total_message_size_bytes));
+
+ // First we send the message header which is the length of the message_type
+ // and message_payload in bytes.
+ int result = output_stream_.WriteAtCurrentPos(
+ reinterpret_cast<char*>(&total_message_size_bytes),
+ SecurityKeyMessage::kHeaderSizeBytes);
+ if (result != SecurityKeyMessage::kHeaderSizeBytes) {
+ LOG(ERROR) << "Failed to send message header: " << result;
Sergey Ulanov 2016/03/28 18:20:07 result will be -1 on error. Print error_details()
joedow 2016/03/29 22:14:14 Done.
+ write_failed_ = true;
+ return false;
+ }
+
+ // Next we send the message_type.
+ result = output_stream_.WriteAtCurrentPos(
Sergey Ulanov 2016/03/28 18:20:08 In this function WriteAtCurrentPos is called in 3
joedow 2016/03/29 22:14:14 Done.
+ reinterpret_cast<char*>(&message_type), sizeof(message_type));
+ if (result != sizeof(message_type)) {
+ LOG(ERROR) << "Failed to send message type: " << result;
+ write_failed_ = true;
+ return false;
+ }
+
+ // Lastly, send the message data if appropriate.
+ if (!message_payload.empty()) {
+ result = output_stream_.WriteAtCurrentPos(message_payload.data(),
+ message_payload_size_bytes);
+ // The static cast is safe as we know the value is smaller than max int.
+ if (result != static_cast<int>(message_payload_size_bytes)) {
Sergey Ulanov 2016/03/28 18:20:07 nit: You wouldn't need this static_cast<> if messa
joedow 2016/03/29 22:14:14 Done.
+ LOG(ERROR) << "Failed to send message payload:" << result;
+ write_failed_ = true;
+ return false;
+ }
+ }
+
+ return true;
+}
+
+} // namespace remoting

Powered by Google App Engine
This is Rietveld 408576698