blob: 5fbdf251a02559d31573e9a87747df6445a89ec4 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Chengyu Fan4381fb62015-01-14 11:37:04 -07003 * Copyright (c) 2014-2015, 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.
Wentao Shang53df1632014-04-21 12:01:32 -070010 *
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/>.
Steve DiBenedettoef04f272014-06-04 14:28:31 -060024 */
Wentao Shang53df1632014-04-21 12:01:32 -070025
26#include "websocket-factory.hpp"
27
28namespace nfd {
29
30using namespace boost::asio;
31
Wentao Shang53df1632014-04-21 12:01:32 -070032WebSocketFactory::WebSocketFactory(const std::string& defaultPort)
33 : m_defaultPort(defaultPort)
34{
35}
36
37shared_ptr<WebSocketChannel>
38WebSocketFactory::createChannel(const websocket::Endpoint& endpoint)
39{
40 shared_ptr<WebSocketChannel> channel = findChannel(endpoint);
41 if (static_cast<bool>(channel))
42 return channel;
43
Alexander Afanasyevf6980282014-05-13 18:28:40 -070044 channel = make_shared<WebSocketChannel>(endpoint);
Wentao Shang53df1632014-04-21 12:01:32 -070045 m_channels[endpoint] = channel;
46
47 return channel;
48}
49
50shared_ptr<WebSocketChannel>
Alexander Afanasyev0e156df2015-01-26 22:33:43 -080051WebSocketFactory::createChannel(const std::string& localIp, const std::string& port)
Wentao Shang53df1632014-04-21 12:01:32 -070052{
Alexander Afanasyev0e156df2015-01-26 22:33:43 -080053 using namespace boost::asio::ip;
54 websocket::Endpoint endpoint(address::from_string(localIp), boost::lexical_cast<uint16_t>(port));
Wentao Shang53df1632014-04-21 12:01:32 -070055 return createChannel(endpoint);
56}
57
58shared_ptr<WebSocketChannel>
59WebSocketFactory::findChannel(const websocket::Endpoint& localEndpoint)
60{
61 ChannelMap::iterator i = m_channels.find(localEndpoint);
62 if (i != m_channels.end())
63 return i->second;
64 else
65 return shared_ptr<WebSocketChannel>();
66}
67
68void
69WebSocketFactory::createFace(const FaceUri& uri,
70 const FaceCreatedCallback& onCreated,
71 const FaceConnectFailedCallback& onConnectFailed)
72{
73 throw Error("WebSocketFactory does not support 'createFace' operation");
74}
75
Steve DiBenedettoef04f272014-06-04 14:28:31 -060076std::list<shared_ptr<const Channel> >
77WebSocketFactory::getChannels() const
78{
79 std::list<shared_ptr<const Channel> > channels;
80 for (ChannelMap::const_iterator i = m_channels.begin(); i != m_channels.end(); ++i)
81 {
82 channels.push_back(i->second);
83 }
84
85 return channels;
86}
87
Wentao Shang53df1632014-04-21 12:01:32 -070088} // namespace nfd