DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
CommandController.cpp
Go to the documentation of this file.
1/*
2 MIT License
3
4 DiscordCoreAPI, A bot library for Discord, written in C++, and featuring explicit multithreading through the usage of custom, asynchronous C++ CoRoutines.
5
6 Copyright 2022, 2023 Chris M. (RealTimeChris)
7
8 Permission is hereby granted, free of charge, to any person obtaining a copy
9 of this software and associated documentation files (the "Software"), to deal
10 in the Software without restriction, including without limitation the rights
11 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 copies of the Software, and to permit persons to whom the Software is
13 furnished to do so, subject to the following conditions:
14
15 The above copyright notice and this permission notice shall be included in all
16 copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24 SOFTWARE.
25*/
26/// CommandController.cpp - Source file for the command controller.
27/// May 20, 2021
28/// https://discordcoreapi.com
29/// \file CommandController.cpp
30
33
34namespace discord_core_api {
35
36 unordered_map<jsonifier::vector<jsonifier::string>, unique_ptr<base_function>> functions{};
37
38 void command_controller::registerFunction(const jsonifier::vector<jsonifier::string>& functionNames, unique_ptr<base_function> baseFunction) {
39 functions[functionNames] = std::move(baseFunction);
40 }
41
42 unordered_map<jsonifier::vector<jsonifier::string>, unique_ptr<base_function>>& command_controller::getFunctions() {
43 return functions;
44 };
45
46 co_routine<void> command_controller::checkForAndRunCommand(command_data&& commandData) {
47 unique_ptr<base_function_arguments> theArgsNew{ makeUnique<base_function_arguments>(commandData) };
48 co_await newThreadAwaitable<void>();
49 unique_ptr<base_function> functionPointer{ getCommand(theArgsNew->getCommandName()) };
50 if (!functionPointer.get()) {
51 co_return;
52 }
53
54 functionPointer->execute(*theArgsNew);
55 co_return;
56 }
57
58 unique_ptr<base_function> command_controller::getCommand(jsonifier::string_view commandName) {
59 jsonifier::string functionName{};
60 bool isItFound{};
61 if (commandName.size() > 0) {
62 for (auto const& [keyFirst, value]: functions) {
63 for (auto& key: keyFirst) {
64 if (key.find(convertToLowerCase(commandName)) != jsonifier::string::npos) {
65 isItFound = true;
66 functionName = convertToLowerCase(commandName.substr(0, key.size()));
67 break;
68 }
69 }
70 }
71 }
72 if (isItFound) {
73 return createFunction(functionName);
74 }
75 return unique_ptr<base_function>{};
76 }
77
78 unique_ptr<base_function> command_controller::createFunction(jsonifier::string_view functionName) {
79 for (auto& [key01, value01]: functions) {
80 for (auto& value02: key01) {
81 if (functionName == value02) {
82 return value01->create();
83 }
84 }
85 }
86 return unique_ptr<base_function>{};
87 }
88
89}
A co_routine - representing a potentially asynchronous operation/function.
unordered_map< jsonifier::vector< jsonifier::string >, unique_ptr< base_function > > & getFunctions()
For returning the contained map of functions.
void registerFunction(const jsonifier::vector< jsonifier::string > &functionNames, unique_ptr< base_function > baseFunction)
Registers a function to be called.
Command data, for functions executed by the command_controller.
A smart pointer class that provides unique ownership semantics.
Definition UniquePtr.hpp:44
DCA_INLINE auto newThreadAwaitable()
An awaitable that can be used to launch the co_routine onto a new thread - as well as return the hand...
DCA_INLINE unique_ptr< value_type, deleter > makeUnique(arg_types &&... args)
Helper function to create a unique_ptr for a non-array object.
The main namespace for the forward-facing interfaces.