summaryrefslogtreecommitdiffstats
path: root/remoting/base/protocol_decoder.h
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 22:46:00 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-06 22:46:00 +0000
commitc3af26f3314bf48f478cec8128b5c15cc3f98940 (patch)
tree0d3d0802a3a9b8e05487626f90c7dbf0dcecdea9 /remoting/base/protocol_decoder.h
parent5bcab699da1cedb4fc666c9f5d0099574a27c2fe (diff)
downloadchromium_src-c3af26f3314bf48f478cec8128b5c15cc3f98940.zip
chromium_src-c3af26f3314bf48f478cec8128b5c15cc3f98940.tar.gz
chromium_src-c3af26f3314bf48f478cec8128b5c15cc3f98940.tar.bz2
Use new Chromotocol code in host andclient.
1. ProtocolDecoder renamed to MessagesDecoder and moved to remoting/protocol. 2. base/protocol_util.[h|cc] split into base/util.[h|cc] and protocol/util.[h|cc]. 3. Added StreamReader and StreamWriter classes for events and video channels. 4. Client and host changed to use the new protocol code. BUG=None TEST=Unittests Review URL: http://codereview.chromium.org/3595012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/base/protocol_decoder.h')
-rw-r--r--remoting/base/protocol_decoder.h72
1 files changed, 0 insertions, 72 deletions
diff --git a/remoting/base/protocol_decoder.h b/remoting/base/protocol_decoder.h
deleted file mode 100644
index fed196f..0000000
--- a/remoting/base/protocol_decoder.h
+++ /dev/null
@@ -1,72 +0,0 @@
-// Copyright (c) 2010 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.
-
-#ifndef REMOTING_BASE_PROTOCOL_DECODER_H_
-#define REMOTING_BASE_PROTOCOL_DECODER_H_
-
-#include <deque>
-#include <list>
-
-#include "base/ref_counted.h"
-#include "google/protobuf/message_lite.h"
-#include "media/base/data_buffer.h"
-#include "remoting/base/protocol/chromotocol.pb.h"
-
-namespace remoting {
-
-typedef std::list<ChromotingHostMessage*> HostMessageList;
-typedef std::list<ChromotingClientMessage*> ClientMessageList;
-
-// A protocol decoder is used to decode data transmitted in the chromoting
-// network.
-// TODO(hclam): Defines the interface and implement methods.
-class ProtocolDecoder {
- public:
- ProtocolDecoder();
-
- virtual ~ProtocolDecoder();
-
- // Parse data received from network into ClientMessages. Ownership of |data|
- // is passed to this object and output is written to |messages|.
- virtual void ParseClientMessages(scoped_refptr<media::DataBuffer> data,
- ClientMessageList* messages);
-
- // Parse data received from network into HostMessages. Ownership of |data|
- // is passed to this object and output is written to |messages|.
- virtual void ParseHostMessages(scoped_refptr<media::DataBuffer> data,
- HostMessageList* messages);
-
- private:
- // A private method used to parse data received from network into protocol
- // buffers.
- template <typename T>
- void ParseMessages(scoped_refptr<media::DataBuffer> data,
- std::list<T*>* messages);
-
- // Parse one message from |data_list_|. Return true if sucessful.
- template <typename T>
- bool ParseOneMessage(T** messages);
-
- // A utility method to read payload size of the protocol buffer from the
- // data list. Return false if we don't have enough data.
- bool GetPayloadSize(int* size);
-
- typedef std::deque<scoped_refptr<media::DataBuffer> > DataList;
- DataList data_list_;
- size_t last_read_position_;
-
- // Count the number of bytes in |data_list_| not read.
- size_t available_bytes_;
-
- // Stores the size of the next payload if known.
- size_t next_payload_;
-
- // True if the size of the next payload is known. After one payload is read,
- // this is reset to false.
- bool next_payload_known_;
-};
-
-} // namespace remoting
-
-#endif // REMOTING_BASE_PROTOCOL_DECODER_H_