blob: 501c510b80d1e62d6bc3cf444d8e23e479fe819e [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
Zhiyi Zhang8683ec92020-10-07 18:18:35 -070027NameAssignmentFuncFactory::NameAssignmentFuncFactory(const std::string& factoryType, const std::string& format)
tylerliu01d63ca2020-10-06 16:29:23 -070028 : FACTORY_TYPE(factoryType)
29{
Zhiyi Zhang8683ec92020-10-07 18:18:35 -070030 auto s = format;
31 size_t pos = 0;
32 while ((pos = s.find("/")) != std::string::npos) {
33 m_nameFormat.push_back(s.substr(0, pos));
34 s.erase(0, pos + 1);
35 }
36 m_nameFormat.push_back(s);
tylerliu01d63ca2020-10-06 16:29:23 -070037}
38
39unique_ptr<NameAssignmentFuncFactory>
Zhiyi Zhang8683ec92020-10-07 18:18:35 -070040NameAssignmentFuncFactory::createNameAssignmentFuncFactory(const std::string& challengeType, const std::string& format)
tylerliu01d63ca2020-10-06 16:29:23 -070041{
42 FuncFactoryFactory& factory = getFactory();
43 auto i = factory.find(challengeType);
Zhiyi Zhang8683ec92020-10-07 18:18:35 -070044 return i == factory.end() ? nullptr : i->second(format);
tylerliu01d63ca2020-10-06 16:29:23 -070045}
46
47NameAssignmentFuncFactory::FuncFactoryFactory&
48NameAssignmentFuncFactory::getFactory()
49{
50 static NameAssignmentFuncFactory::FuncFactoryFactory factory;
51 return factory;
52}
53
54} // namespace ndncert
55} // namespace ndn