blob: 65d52d0a8bbe5cfb34965be2ef64eb982e8220e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
// 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.
#ifndef REMOTING_PROTOCOL_MESSAGE_READER_H_
#define REMOTING_PROTOCOL_MESSAGE_READER_H_
#include "base/callback.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/non_thread_safe.h"
#include "remoting/base/compound_buffer.h"
#include "remoting/protocol/message_decoder.h"
namespace net {
class IOBuffer;
class Socket;
} // namespace net
namespace remoting {
namespace protocol {
// MessageReader reads data from the socket asynchronously and calls
// callback for each message it receives. It stops calling the
// callback as soon as the socket is closed, so the socket should
// always be closed before the callback handler is destroyed.
//
// In order to throttle the stream, MessageReader doesn't try to read
// new data from the socket until all previously received messages are
// processed by the receiver (|done_task| is called for each message).
// It is still possible that the MessageReceivedCallback is called
// twice (so that there is more than one outstanding message),
// e.g. when we the sender sends multiple messages in one TCP packet.
class MessageReader : public base::NonThreadSafe {
public:
typedef base::Callback<void(scoped_ptr<CompoundBuffer>, const base::Closure&)>
MessageReceivedCallback;
MessageReader();
virtual ~MessageReader();
// Sets the callback to be called for each incoming message.
void SetMessageReceivedCallback(const MessageReceivedCallback& callback);
// Starts reading from |socket|.
void StartReading(net::Socket* socket);
private:
void DoRead();
void OnRead(int result);
void HandleReadResult(int result);
void OnDataReceived(net::IOBuffer* data, int data_size);
void RunCallback(scoped_ptr<CompoundBuffer> message);
void OnMessageDone();
net::Socket* socket_;
// Set to true, when we have a socket read pending, and expecting
// OnRead() to be called when new data is received.
bool read_pending_;
// Number of messages that we received, but haven't finished
// processing yet, i.e. |done_task| hasn't been called for these
// messages.
int pending_messages_;
bool closed_;
scoped_refptr<net::IOBuffer> read_buffer_;
MessageDecoder message_decoder_;
// Callback is called when a message is received.
MessageReceivedCallback message_received_callback_;
base::WeakPtrFactory<MessageReader> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(MessageReader);
};
} // namespace protocol
} // namespace remoting
#endif // REMOTING_PROTOCOL_MESSAGE_READER_H_
|