aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/GlobalModuleContext.cpp
blob: 4195d7197f17c9298f4d49edda666bf6d08b1727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
/**
 * Copyright (C) 2021 Saturneric <[email protected]>
 *
 * This file is part of GpgFrontend.
 *
 * GpgFrontend is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * GpgFrontend is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GpgFrontend. If not, see <https://www.gnu.org/licenses/>.
 *
 * The initial version of the source code is inherited from
 * the gpg4usb project, which is under GPL-3.0-or-later.
 *
 * All the source code of GpgFrontend was modified and released by
 * Saturneric <[email protected]> starting on May 12, 2021.
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 *
 */

#include "GlobalModuleContext.h"

#include <boost/date_time.hpp>
#include <boost/format.hpp>
#include <boost/random.hpp>
#include <set>
#include <unordered_map>
#include <unordered_set>
#include <utility>

#include "core/module/Event.h"
#include "core/module/Module.h"
#include "core/thread/Task.h"
#include "model/DataObject.h"

namespace GpgFrontend::Module {

class GlobalModuleContext::Impl {
 public:
  explicit Impl(TaskRunnerPtr task_runner)
      : random_gen_(
            (boost::posix_time::microsec_clock::universal_time() -
             boost::posix_time::ptime(boost::gregorian::date(1970, 1, 1)))
                .total_milliseconds()),
        default_task_runner_(std::move(task_runner)) {
    // Initialize acquired channels with default values.
    acquired_channel_.insert(kGpgfrontendDefaultChannel);
    acquired_channel_.insert(kGpgfrontendNonAsciiChannel);
  }

  auto GetChannel(ModuleRawPtr module) -> int {
    // Search for the module in the register table.
    auto module_info_opt =
        search_module_register_table(module->GetModuleIdentifier());
    if (!module_info_opt.has_value()) {
      SPDLOG_ERROR(
          "cannot find module id {} at register table, fallbacking to "
          "default "
          "channel",
          module->GetModuleIdentifier());
      return GetDefaultChannel(module);
    }

    auto module_info = module_info_opt.value();
    return module_info->channel;
  }

  static auto GetDefaultChannel(ModuleRawPtr) -> int {
    return kGpgfrontendDefaultChannel;
  }

  auto GetTaskRunner(ModuleRawPtr module) -> std::optional<TaskRunnerPtr> {
    auto opt = search_module_register_table(module->GetModuleIdentifier());
    if (!opt.has_value()) {
      return std::nullopt;
    }
    return opt.value()->task_runner;
  }

  auto GetTaskRunner(ModuleIdentifier module_id)
      -> std::optional<TaskRunnerPtr> {
    // Search for the module in the register table.
    auto module_info_opt = search_module_register_table(module_id);
    if (!module_info_opt.has_value()) {
      SPDLOG_ERROR("cannot find module id {} at register table", module_id);
      return std::nullopt;
    }
    return module_info_opt.value()->task_runner;
  }

  auto GetGlobalTaskRunner() -> std::optional<TaskRunnerPtr> {
    return default_task_runner_;
  }

  auto RegisterModule(const ModulePtr& module) -> bool {
    SPDLOG_DEBUG("attempting to register module: {}",
                 module->GetModuleIdentifier());
    // Check if the module is null or already registered.
    if (module == nullptr ||
        module_register_table_.find(module->GetModuleIdentifier()) !=
            module_register_table_.end()) {
      SPDLOG_ERROR("module is null or have already registered this module");
      return false;
    }

    if (!module->Register()) {
      SPDLOG_ERROR("register module {} failed", module->GetModuleIdentifier());
      return false;
    }

    ModuleRegisterInfo register_info;
    register_info.module = module;
    register_info.channel = acquire_new_unique_channel();
    register_info.task_runner =
        GpgFrontend::SecureCreateSharedObject<Thread::TaskRunner>();
    register_info.task_runner->Start();

    // move module to its task runner' thread
    register_info.module->setParent(nullptr);
    register_info.module->moveToThread(register_info.task_runner->GetThread());

    // Register the module with its identifier.
    module_register_table_[module->GetModuleIdentifier()] =
        GpgFrontend::SecureCreateSharedObject<ModuleRegisterInfo>(
            std::move(register_info));

    SPDLOG_DEBUG("successfully registered module: {}",
                 module->GetModuleIdentifier());
    return true;
  }

  auto ActiveModule(ModuleIdentifier module_id) -> bool {
    SPDLOG_DEBUG("attempting to activate module: {}", module_id);

    // Search for the module in the register table.
    auto module_info_opt = search_module_register_table(module_id);
    if (!module_info_opt.has_value()) {
      SPDLOG_ERROR("cannot find module id {} at register table", module_id);
      return false;
    }

    auto module_info = module_info_opt.value();
    // Activate the module if it is not already active.
    if (!module_info->activate && module_info->module->Active()) {
      module_info->activate = true;
    }

    SPDLOG_DEBUG("module activation status: {}", module_info->activate);
    return module_info->activate;
  }

  auto ListenEvent(ModuleIdentifier module_id, EventIdentifier event) -> bool {
    SPDLOG_DEBUG("module: {} is attempting to listen to event {}", module_id,
                 event);
    // Check if the event exists, if not, create it.
    auto met_it = module_events_table_.find(event);
    if (met_it == module_events_table_.end()) {
      module_events_table_[event] = std::unordered_set<ModuleIdentifier>();
      met_it = module_events_table_.find(event);
      SPDLOG_INFO("new event {} of module system created", event);
    }

    auto& listeners_set = met_it->second;
    // Add the listener (module) to the event.
    auto listener_it = listeners_set.find(module_id);
    if (listener_it == listeners_set.end()) {
      listeners_set.insert(module_id);
    }
    return true;
  }

  auto DeactivateModule(ModuleIdentifier module_id) -> bool {
    // Search for the module in the register table.
    auto module_info_opt = search_module_register_table(module_id);
    if (!module_info_opt.has_value()) {
      SPDLOG_ERROR("cannot find module id {} at register table", module_id);
      return false;
    }

    auto module_info = module_info_opt.value();
    // Activate the module if it is not already deactive.
    if (!module_info->activate && module_info->module->Deactive()) {
      module_info->activate = false;
    }

    return !module_info->activate;
  }

  auto TriggerEvent(const EventRefrernce& event) -> bool {
    auto event_id = event->GetIdentifier();
    SPDLOG_DEBUG("attempting to trigger event: {}", event_id);

    // Find the set of listeners associated with the given event in the table
    auto met_it = module_events_table_.find(event_id);
    if (met_it == module_events_table_.end()) {
      // Log a warning if the event is not registered and nobody is listening
      SPDLOG_WARN(
          "event {} is not listening by anyone and not registered as well",
          event_id);
      return false;
    }

    // Retrieve the set of listeners for this event
    auto& listeners_set = met_it->second;

    // Check if the set of listeners is empty
    if (listeners_set.empty()) {
      // Log a warning if nobody is listening to this event
      SPDLOG_WARN("event {} is not listening by anyone",
                  event->GetIdentifier());
      return false;
    }

    // Log the number of listeners for this event
    SPDLOG_DEBUG("event {}'s current listeners size: {}",
                 event->GetIdentifier(), listeners_set.size());

    // Iterate through each listener and execute the corresponding module
    for (const auto& listener_module_id : listeners_set) {
      // Search for the module's information in the registration table
      auto module_info_opt = search_module_register_table(listener_module_id);

      // Log an error if the module is not found in the registration table
      if (!module_info_opt.has_value()) {
        SPDLOG_ERROR("cannot find module id {} at register table",
                     listener_module_id);
        continue;
      }

      // Retrieve the module's information
      auto module_info = module_info_opt.value();
      auto module = module_info->module;

      SPDLOG_DEBUG(
          "module {} is listening to event {}, activate state: {}, task runner "
          "running state: {}",
          module_info->module->GetModuleIdentifier(), event->GetIdentifier(),
          module_info->activate, module_info->task_runner->IsRunning());

      // Check if the module is activated
      if (!module_info->activate) continue;

      Thread::Task::TaskRunnable exec_runnerable =
          [module, event](DataObjectPtr) -> int { return module->Exec(event); };

      Thread::Task::TaskCallback exec_callback = [listener_module_id, event_id](
                                                     int code, DataObjectPtr) {
        if (code < 0) {
          // Log an error if the module execution fails
          SPDLOG_ERROR(
              "module {} execution failed of event {}: exec return code {}",
              listener_module_id, event_id, code);
        }
      };

      module_info->task_runner->PostTask(
          new Thread::Task(exec_runnerable,
                           (boost::format("event/%1%/module/exec/%2%") %
                            event_id % listener_module_id)
                               .str(),
                           nullptr, exec_callback));
    }

    // Return true to indicate successful execution of all modules
    return true;
  }

  auto IsModuleExists(const ModuleIdentifier& m_id) const -> bool {
    return search_module_register_table(m_id).has_value();
  }

 private:
  struct ModuleRegisterInfo {
    int channel;
    TaskRunnerPtr task_runner;
    ModulePtr module;
    bool activate;
  };

  using ModuleRegisterInfoPtr = std::shared_ptr<ModuleRegisterInfo>;

  std::unordered_map<ModuleIdentifier, ModuleRegisterInfoPtr>
      module_register_table_;
  std::map<EventIdentifier, std::unordered_set<ModuleIdentifier>>
      module_events_table_;

  std::set<int> acquired_channel_;
  boost::random::mt19937 random_gen_;
  TaskRunnerPtr default_task_runner_;

  auto acquire_new_unique_channel() -> int {
    boost::random::uniform_int_distribution<> dist(1, 65535);

    int random_channel = dist(random_gen_);
    // Ensure the acquired channel is unique.
    while (acquired_channel_.find(random_channel) != acquired_channel_.end()) {
      random_channel = dist(random_gen_);
    }

    // Add the acquired channel to the set.
    acquired_channel_.insert(random_channel);
    return random_channel;
  }

  // Function to search for a module in the register table.
  auto search_module_register_table(const ModuleIdentifier& identifier) const
      -> std::optional<ModuleRegisterInfoPtr> {
    auto mrt_it = module_register_table_.find(identifier);
    if (mrt_it == module_register_table_.end()) {
      return std::nullopt;
    }
    return mrt_it->second;
  }
};

// Constructor for GlobalModuleContext, takes a TaskRunnerPtr as an argument.
GlobalModuleContext::GlobalModuleContext(TaskRunnerPtr task_runner)
    : p_(std::make_unique<Impl>(std::move(task_runner))) {}

GlobalModuleContext::~GlobalModuleContext() = default;

// Function to get the task runner associated with a module.
auto GlobalModuleContext::GetTaskRunner(ModuleRawPtr module)
    -> std::optional<TaskRunnerPtr> {
  return p_->GetTaskRunner(module);
}

// Function to get the task runner associated with a module.
auto GlobalModuleContext::GetTaskRunner(ModuleIdentifier module_id)
    -> std::optional<TaskRunnerPtr> {
  return p_->GetTaskRunner(std::move(module_id));
}

// Function to get the global task runner.
auto GlobalModuleContext::GetGlobalTaskRunner()
    -> std::optional<TaskRunnerPtr> {
  return p_->GetGlobalTaskRunner();
}

auto GlobalModuleContext::RegisterModule(ModulePtr module) -> bool {
  return p_->RegisterModule(std::move(module));
}

auto GlobalModuleContext::ActiveModule(ModuleIdentifier module_id) -> bool {
  return p_->ActiveModule(std::move(module_id));
}

auto GlobalModuleContext::ListenEvent(ModuleIdentifier module_id,
                                      EventIdentifier event) -> bool {
  return p_->ListenEvent(std::move(module_id), std::move(event));
}

auto GlobalModuleContext::DeactivateModule(ModuleIdentifier module_id) -> bool {
  return p_->DeactivateModule(std::move(module_id));
}

auto GlobalModuleContext::TriggerEvent(EventRefrernce event) -> bool {
  return p_->TriggerEvent(std::move(event));
}

auto GlobalModuleContext::GetChannel(ModuleRawPtr module) -> int {
  return p_->GetChannel(module);
}

auto GlobalModuleContext::GetDefaultChannel(ModuleRawPtr channel) -> int {
  return GlobalModuleContext::Impl::GetDefaultChannel(channel);
}

auto GlobalModuleContext::IsModuleExists(ModuleIdentifier m_id) -> bool {
  return p_->IsModuleExists(std::move(m_id));
}

}  // namespace GpgFrontend::Module