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"
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
{
36 typedef base::Callback
<void(scoped_ptr
<CompoundBuffer
>, const base::Closure
&)>
37 MessageReceivedCallback
;
38 typedef base::Callback
<void(int)> ReadFailedCallback
;
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
);
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
);
58 ReadFailedCallback read_failed_callback_
;
62 // Set to true, when we have a socket read pending, and expecting
63 // OnRead() to be called when new data is received.
66 // Number of messages that we received, but haven't finished
67 // processing yet, i.e. |done_task| hasn't been called for these
69 int pending_messages_
;
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_