[Sync] Test Android passphrase creation UI
[chromium-blink-merge.git] / remoting / protocol / message_reader.h
blob97023b6bdceff3287ad73d5e659cffc291015028
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_PROTOCOL_MESSAGE_READER_H_
6 #define REMOTING_PROTOCOL_MESSAGE_READER_H_
8 #include "base/callback.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "base/memory/weak_ptr.h"
11 #include "base/threading/non_thread_safe.h"
12 #include "remoting/base/compound_buffer.h"
13 #include "remoting/protocol/message_decoder.h"
15 namespace net {
16 class IOBuffer;
17 class Socket;
18 } // namespace net
20 namespace remoting {
21 namespace protocol {
23 // MessageReader reads data from the socket asynchronously and calls
24 // callback for each message it receives. It stops calling the
25 // callback as soon as the socket is closed, so the socket should
26 // always be closed before the callback handler is destroyed.
28 // In order to throttle the stream, MessageReader doesn't try to read
29 // new data from the socket until all previously received messages are
30 // processed by the receiver (|done_task| is called for each message).
31 // It is still possible that the MessageReceivedCallback is called
32 // twice (so that there is more than one outstanding message),
33 // e.g. when we the sender sends multiple messages in one TCP packet.
34 class MessageReader : public base::NonThreadSafe {
35 public:
36 typedef base::Callback<void(scoped_ptr<CompoundBuffer>, const base::Closure&)>
37 MessageReceivedCallback;
38 typedef base::Callback<void(int)> ReadFailedCallback;
40 MessageReader();
41 virtual ~MessageReader();
43 // Sets the callback to be called for each incoming message.
44 void SetMessageReceivedCallback(const MessageReceivedCallback& callback);
46 // Starts reading from |socket|.
47 void StartReading(net::Socket* socket,
48 const ReadFailedCallback& read_failed_callback);
50 private:
51 void DoRead();
52 void OnRead(int result);
53 void HandleReadResult(int result, bool* read_succeeded);
54 void OnDataReceived(net::IOBuffer* data, int data_size);
55 void RunCallback(scoped_ptr<CompoundBuffer> message);
56 void OnMessageDone();
58 ReadFailedCallback read_failed_callback_;
60 net::Socket* socket_;
62 // Set to true, when we have a socket read pending, and expecting
63 // OnRead() to be called when new data is received.
64 bool read_pending_;
66 // Number of messages that we received, but haven't finished
67 // processing yet, i.e. |done_task| hasn't been called for these
68 // messages.
69 int pending_messages_;
71 bool closed_;
72 scoped_refptr<net::IOBuffer> read_buffer_;
74 MessageDecoder message_decoder_;
76 // Callback is called when a message is received.
77 MessageReceivedCallback message_received_callback_;
79 base::WeakPtrFactory<MessageReader> weak_factory_;
81 DISALLOW_COPY_AND_ASSIGN(MessageReader);
84 } // namespace protocol
85 } // namespace remoting
87 #endif // REMOTING_PROTOCOL_MESSAGE_READER_H_