blob: f67e8b0b3248d16cceae56905e8bd2f4acd7d4d5 [file] [log] [blame]
tylerliu01d63ca2020-10-06 16:29:23 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2017-2019, Regents of the University of California.
4 *
5 * This file is part of ndncert, a certificate management system based on NDN.
6 *
7 * ndncert is free software: you can redistribute it and/or modify it under the terms
8 * of the GNU General Public License as published by the Free Software Foundation, either
9 * version 3 of the License, or (at your option) any later version.
10 *
11 * ndncert is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License along with
16 * ndncert, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * See AUTHORS.md for complete list of ndncert authors and contributors.
19 */
20
21#include "assignment-funcs.hpp"
22#include <ndn-cxx/util/random.hpp>
23
24namespace ndn {
25namespace ndncert {
26
27NameAssignmentFuncFactory::NameAssignmentFuncFactory(const std::string& factoryType)
28 : FACTORY_TYPE(factoryType)
29{
30}
31
32bool
33NameAssignmentFuncFactory::isChallengeSupported(const std::string& challengeType)
34{
35 FuncFactoryFactory& factory = getFactory();
36 auto i = factory.find(challengeType);
37 return i != factory.end();
38}
39
40unique_ptr<NameAssignmentFuncFactory>
tylerliuafb27a02020-10-06 17:20:06 -070041NameAssignmentFuncFactory::createNameAssignmentFuncFactories(const std::string& challengeType)
tylerliu01d63ca2020-10-06 16:29:23 -070042{
43 FuncFactoryFactory& factory = getFactory();
44 auto i = factory.find(challengeType);
45 return i == factory.end() ? nullptr : i->second();
46}
47
48NameAssignmentFuncFactory::FuncFactoryFactory&
49NameAssignmentFuncFactory::getFactory()
50{
51 static NameAssignmentFuncFactory::FuncFactoryFactory factory;
52 return factory;
53}
54
55} // namespace ndncert
56} // namespace ndn