blob: 199ca51cd4346ca9f38ebae40b0c6cd6543c31db (
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
|
// Copyright 2015 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 BLIMP_NET_BLIMP_MESSAGE_PUMP_H_
#define BLIMP_NET_BLIMP_MESSAGE_PUMP_H_
#include <memory>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "blimp/net/blimp_net_export.h"
#include "net/base/completion_callback.h"
namespace net {
class GrowableIOBuffer;
}
namespace blimp {
class BlimpMessageProcessor;
class ConnectionErrorObserver;
class PacketReader;
// Reads and deserializes incoming packets from |reader_|, and forwards parsed
// BlimpMessages to |processor_|. When |processor_| is ready to take the next
// message, the BlimpMessagePump reads the next packet.
class BLIMP_NET_EXPORT BlimpMessagePump {
public:
// Caller ensures that |reader| outlives this object.
explicit BlimpMessagePump(PacketReader* reader);
~BlimpMessagePump();
// Sets the processor which will take BlimpMessages.
// Caller retains the ownership of |processor|.
// The processor can be unset by passing a null pointer when no reads are
// inflight, ie. after |processor_|->ProcessMessage() is called, but before
// ProcessMessage() invokes its completion callback.
void SetMessageProcessor(BlimpMessageProcessor* processor);
void set_error_observer(ConnectionErrorObserver* observer) {
error_observer_ = observer;
}
private:
// Read next packet from |reader_|.
void ReadNextPacket();
// Callback when next packet is ready in |buffer_|.
void OnReadPacketComplete(int result);
// Callback when |processor_| finishes processing a BlimpMessage.
// Any values other than net::OK indicate that |processor_| has encountered an
// error that should be handled. Currently all errors will cause the
// connection to be dropped; in the future we will need to add more
// sophisticated error handling logic here.
// TODO(kmarshall): Improve error handling.
void OnProcessMessageComplete(int result);
PacketReader* reader_;
ConnectionErrorObserver* error_observer_ = nullptr;
BlimpMessageProcessor* processor_ = nullptr;
scoped_refptr<net::GrowableIOBuffer> buffer_;
bool read_inflight_ = false;
// Used to abandon ProcessMessage completion callbacks if |this| is deleted.
base::WeakPtrFactory<BlimpMessagePump> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(BlimpMessagePump);
};
} // namespace blimp
#endif // BLIMP_NET_BLIMP_MESSAGE_PUMP_H_
|