blob: 224a75ba77633bd9d0a8c7424fd636e8db447f49 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014 Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 **/
25
26#include "websocket-factory.hpp"
27
28namespace nfd {
29
30using namespace boost::asio;
31
32NFD_LOG_INIT("WebSocketFactory");
33
34WebSocketFactory::WebSocketFactory(const std::string& defaultPort)
35 : m_defaultPort(defaultPort)
36{
37}
38
39shared_ptr<WebSocketChannel>
40WebSocketFactory::createChannel(const websocket::Endpoint& endpoint)
41{
42 shared_ptr<WebSocketChannel> channel = findChannel(endpoint);
43 if (static_cast<bool>(channel))
44 return channel;
45
46 channel = make_shared<WebSocketChannel>(boost::cref(endpoint));
47 m_channels[endpoint] = channel;
48
49 return channel;
50}
51
52shared_ptr<WebSocketChannel>
53WebSocketFactory::createChannel(const std::string& localIPAddress,
54 uint16_t localPort)
55{
56 boost::system::error_code ec;
57 ip::address address = ip::address::from_string(localIPAddress, ec);
58 if (ec)
59 {
60 throw Error("Invalid address format: " + localIPAddress);
61 }
62 websocket::Endpoint endpoint(address, localPort);
63 return createChannel(endpoint);
64}
65
66shared_ptr<WebSocketChannel>
67WebSocketFactory::findChannel(const websocket::Endpoint& localEndpoint)
68{
69 ChannelMap::iterator i = m_channels.find(localEndpoint);
70 if (i != m_channels.end())
71 return i->second;
72 else
73 return shared_ptr<WebSocketChannel>();
74}
75
76void
77WebSocketFactory::createFace(const FaceUri& uri,
78 const FaceCreatedCallback& onCreated,
79 const FaceConnectFailedCallback& onConnectFailed)
80{
81 throw Error("WebSocketFactory does not support 'createFace' operation");
82}
83
84} // namespace nfd