- Refactored `TouchDevice`: it can now start/stop LVGL separately, and it has an optional `TouchDriver` interface - Refactored `DisplayDevice`: it can now start/stop LVGL separately, and it has an optional `DisplayDriver` interface - Updated all boards and drivers for above changes - LVGL can now be stopped and (re)started on the fly - Fixed issues with restarting Gui and Statusbar services - Refactored `Gui` service to be class and renamed `Gui` to `GuiService` - Fixed `Statusbar` service: forgot to deregister one of the icons - Updated `esp_lcd_st7701` to v1.1.3 - `lv_textarea_create()` now automatically registers the hardware keyboard hooks (by wrapping the function) - Fixed and updated `tactility.py` - Cleanup of a lot of code - `BootInitLvglBegin` and `BootInitLvglEnd` are replaced by `LvglStarted` and `LvglStopped`. - Introduced `tt::service::State` which is accessible via `tt::service::getState()` (and internally via `ServiceInstance`) - Started replacing `#define TAG` with `constexpr auto TAG = "..";`
132 lines
4.1 KiB
C++
132 lines
4.1 KiB
C++
#include "Tactility/service/ServiceRegistry.h"
|
|
|
|
#include "Tactility/service/ServiceInstance.h"
|
|
#include "Tactility/service/ServiceManifest.h"
|
|
|
|
#include <Tactility/Mutex.h>
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <Tactility/app/AppInstance.h>
|
|
|
|
namespace tt::service {
|
|
|
|
#define TAG "service_registry"
|
|
|
|
typedef std::unordered_map<std::string, std::shared_ptr<const ServiceManifest>> ManifestMap;
|
|
typedef std::unordered_map<std::string, std::shared_ptr<ServiceInstance>> ServiceInstanceMap;
|
|
|
|
static ManifestMap service_manifest_map;
|
|
static ServiceInstanceMap service_instance_map;
|
|
|
|
static Mutex manifest_mutex(Mutex::Type::Normal);
|
|
static Mutex instance_mutex(Mutex::Type::Normal);
|
|
|
|
void addService(std::shared_ptr<const ServiceManifest> manifest, bool autoStart) {
|
|
// We'll move the manifest pointer, but we'll need to id later
|
|
std::string id = manifest->id;
|
|
|
|
TT_LOG_I(TAG, "Adding %s", id.c_str());
|
|
|
|
manifest_mutex.lock();
|
|
if (service_manifest_map[id] == nullptr) {
|
|
service_manifest_map[id] = std::move(manifest);
|
|
} else {
|
|
TT_LOG_E(TAG, "Service id in use: %s", id.c_str());
|
|
}
|
|
manifest_mutex.unlock();
|
|
|
|
if (autoStart) {
|
|
startService(id);
|
|
}
|
|
}
|
|
|
|
void addService(const ServiceManifest& manifest, bool autoStart) {
|
|
addService(std::make_shared<const ServiceManifest>(manifest), autoStart);
|
|
}
|
|
|
|
std::shared_ptr<const ServiceManifest> _Nullable findManifestId(const std::string& id) {
|
|
manifest_mutex.lock();
|
|
auto iterator = service_manifest_map.find(id);
|
|
auto manifest = iterator != service_manifest_map.end() ? iterator->second : nullptr;
|
|
manifest_mutex.unlock();
|
|
return manifest;
|
|
}
|
|
|
|
static std::shared_ptr<ServiceInstance> _Nullable findServiceInstanceById(const std::string& id) {
|
|
manifest_mutex.lock();
|
|
auto iterator = service_instance_map.find(id);
|
|
auto service = iterator != service_instance_map.end() ? iterator->second : nullptr;
|
|
manifest_mutex.unlock();
|
|
return service;
|
|
}
|
|
|
|
// TODO: Return proper error/status instead of BOOL?
|
|
bool startService(const std::string& id) {
|
|
TT_LOG_I(TAG, "Starting %s", id.c_str());
|
|
auto manifest = findManifestId(id);
|
|
if (manifest == nullptr) {
|
|
TT_LOG_E(TAG, "manifest not found for service %s", id.c_str());
|
|
return false;
|
|
}
|
|
|
|
auto service_instance = std::make_shared<ServiceInstance>(manifest);
|
|
|
|
// Register first, so that a service can retrieve itself during onStart()
|
|
instance_mutex.lock();
|
|
service_instance_map[manifest->id] = service_instance;
|
|
instance_mutex.unlock();
|
|
|
|
service_instance->setState(State::Starting);
|
|
service_instance->getService()->onStart(*service_instance);
|
|
service_instance->setState(State::Started);
|
|
|
|
TT_LOG_I(TAG, "Started %s", id.c_str());
|
|
|
|
return true;
|
|
}
|
|
|
|
std::shared_ptr<ServiceContext> _Nullable findServiceContextById(const std::string& id) {
|
|
return findServiceInstanceById(id);
|
|
}
|
|
|
|
std::shared_ptr<Service> _Nullable findServiceById(const std::string& id) {
|
|
auto instance = findServiceInstanceById(id);
|
|
return instance != nullptr ? instance->getService() : nullptr;
|
|
}
|
|
|
|
bool stopService(const std::string& id) {
|
|
TT_LOG_I(TAG, "Stopping %s", id.c_str());
|
|
auto service_instance = findServiceInstanceById(id);
|
|
if (service_instance == nullptr) {
|
|
TT_LOG_W(TAG, "Service not running: %s", id.c_str());
|
|
return false;
|
|
}
|
|
|
|
service_instance->setState(State::Stopping);
|
|
service_instance->getService()->onStop(*service_instance);
|
|
service_instance->setState(State::Stopped);
|
|
|
|
instance_mutex.lock();
|
|
service_instance_map.erase(id);
|
|
instance_mutex.unlock();
|
|
|
|
if (service_instance.use_count() > 1) {
|
|
TT_LOG_W(TAG, "Possible memory leak: service %s still has %ld references", service_instance->getManifest().id.c_str(), service_instance.use_count() - 1);
|
|
}
|
|
|
|
TT_LOG_I(TAG, "Stopped %s", id.c_str());
|
|
|
|
return true;
|
|
}
|
|
|
|
State getState(const std::string& id) {
|
|
auto service_instance = findServiceInstanceById(id);
|
|
if (service_instance == nullptr) {
|
|
return State::Stopped;
|
|
}
|
|
return service_instance->getState();
|
|
}
|
|
|
|
} // namespace
|