79 lines
1.7 KiB
C++
79 lines
1.7 KiB
C++
#ifndef SENSE_API_MANAGER_H
|
|
#define SENSE_API_MANAGER_H
|
|
|
|
#include <config.h>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <optional>
|
|
#include <functional>
|
|
#include <componentThread.h>
|
|
#include <asynchronousLoop.h>
|
|
#include <senseApis/senseApiLib.h>
|
|
#include <user/deviceAttachmentSpec.h>
|
|
#include <callback.h>
|
|
#include <qutex.h>
|
|
|
|
namespace smo {
|
|
namespace sense_api {
|
|
|
|
class SenseApiManager
|
|
{
|
|
public:
|
|
static SenseApiManager& getInstance()
|
|
{
|
|
static SenseApiManager instance;
|
|
return instance;
|
|
}
|
|
|
|
void initialize(void)
|
|
{};
|
|
void finalize(void)
|
|
{};
|
|
|
|
SenseApiLib& loadSenseApiLib(
|
|
const std::string& libraryPath,
|
|
const std::shared_ptr<ComponentThread>& componentThread);
|
|
|
|
std::optional<std::shared_ptr<SenseApiLib>> getSenseApiLib(
|
|
const std::string& libraryPath);
|
|
std::optional<std::shared_ptr<SenseApiLib>> getSenseApiLibByApiName(
|
|
const std::string& apiName);
|
|
void unloadSenseApiLib(const std::string& libraryPath);
|
|
|
|
void initializeSenseApiLib(SenseApiLib& lib);
|
|
void finalizeSenseApiLib(SenseApiLib& lib);
|
|
|
|
void loadAllSenseApiLibsFromOptions(
|
|
const std::shared_ptr<ComponentThread>& componentThread);
|
|
|
|
void unloadAllSenseApiLibs(void);
|
|
void initializeAllSenseApiLibs(void);
|
|
void finalizeAllSenseApiLibs(void);
|
|
|
|
std::string stringifyLibs() const;
|
|
|
|
private:
|
|
SenseApiManager()
|
|
: qutex("SenseApiManager")
|
|
{}
|
|
~SenseApiManager() = default;
|
|
|
|
SenseApiManager(const SenseApiManager&) = delete;
|
|
SenseApiManager& operator=(const SenseApiManager&) = delete;
|
|
|
|
std::vector<std::shared_ptr<SenseApiLib>> senseApiLibs;
|
|
|
|
public:
|
|
Qutex qutex;
|
|
|
|
public:
|
|
static std::optional<std::string> searchForLibInSmoSearchPaths(
|
|
const std::string& libraryPath);
|
|
};
|
|
|
|
} // namespace sense_api
|
|
} // namespace smo
|
|
|
|
#endif // SENSE_API_MANAGER_H
|