aboutsummaryrefslogtreecommitdiff
path: root/cast/common/channel/namespace_router.h
blob: 0b6b581c0e15720ac87fd56126ecfd59338a719b (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
// Copyright 2019 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 CAST_COMMON_CHANNEL_NAMESPACE_ROUTER_H_
#define CAST_COMMON_CHANNEL_NAMESPACE_ROUTER_H_

#include <map>
#include <string>

#include "cast/common/channel/cast_message_handler.h"
#include "cast/common/channel/proto/cast_channel.pb.h"

namespace openscreen {
namespace cast {

class NamespaceRouter final : public CastMessageHandler {
 public:
  NamespaceRouter();
  ~NamespaceRouter() override;

  void AddNamespaceHandler(std::string namespace_, CastMessageHandler* handler);
  void RemoveNamespaceHandler(const std::string& namespace_);

  // CastMessageHandler overrides.
  void OnMessage(VirtualConnectionRouter* router,
                 CastSocket* socket,
                 ::cast::channel::CastMessage message) override;

 private:
  std::map<std::string /* namespace */, CastMessageHandler*> handlers_;
};

}  // namespace cast
}  // namespace openscreen

#endif  // CAST_COMMON_CHANNEL_NAMESPACE_ROUTER_H_