tylerliu | 01d63ca | 2020-10-06 16:29:23 -0700 | [diff] [blame] | 1 | /* -*- 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 | |
| 24 | namespace ndn { |
| 25 | namespace ndncert { |
| 26 | |
Zhiyi Zhang | 8683ec9 | 2020-10-07 18:18:35 -0700 | [diff] [blame^] | 27 | NameAssignmentFuncFactory::NameAssignmentFuncFactory(const std::string& factoryType, const std::string& format) |
tylerliu | 01d63ca | 2020-10-06 16:29:23 -0700 | [diff] [blame] | 28 | : FACTORY_TYPE(factoryType) |
| 29 | { |
Zhiyi Zhang | 8683ec9 | 2020-10-07 18:18:35 -0700 | [diff] [blame^] | 30 | 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); |
tylerliu | 01d63ca | 2020-10-06 16:29:23 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | unique_ptr<NameAssignmentFuncFactory> |
Zhiyi Zhang | 8683ec9 | 2020-10-07 18:18:35 -0700 | [diff] [blame^] | 40 | NameAssignmentFuncFactory::createNameAssignmentFuncFactory(const std::string& challengeType, const std::string& format) |
tylerliu | 01d63ca | 2020-10-06 16:29:23 -0700 | [diff] [blame] | 41 | { |
| 42 | FuncFactoryFactory& factory = getFactory(); |
| 43 | auto i = factory.find(challengeType); |
Zhiyi Zhang | 8683ec9 | 2020-10-07 18:18:35 -0700 | [diff] [blame^] | 44 | return i == factory.end() ? nullptr : i->second(format); |
tylerliu | 01d63ca | 2020-10-06 16:29:23 -0700 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | NameAssignmentFuncFactory::FuncFactoryFactory& |
| 48 | NameAssignmentFuncFactory::getFactory() |
| 49 | { |
| 50 | static NameAssignmentFuncFactory::FuncFactoryFactory factory; |
| 51 | return factory; |
| 52 | } |
| 53 | |
| 54 | } // namespace ndncert |
| 55 | } // namespace ndn |