From 3e07e568a1ae478b89812d91438d75179c94ab35 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 16 Jan 2019 11:43:34 +0100 Subject: remove obsolete Tobii EyeX SDK --- .../include/eyex-cpp/InteractionAgentBase.inl | 183 --------------------- 1 file changed, 183 deletions(-) delete mode 100755 Tobii-EyeX/include/eyex-cpp/InteractionAgentBase.inl (limited to 'Tobii-EyeX/include/eyex-cpp/InteractionAgentBase.inl') diff --git a/Tobii-EyeX/include/eyex-cpp/InteractionAgentBase.inl b/Tobii-EyeX/include/eyex-cpp/InteractionAgentBase.inl deleted file mode 100755 index c949822..0000000 --- a/Tobii-EyeX/include/eyex-cpp/InteractionAgentBase.inl +++ /dev/null @@ -1,183 +0,0 @@ -/********************************************************************************************************************* - * Copyright 2013-2014 Tobii Technology AB. All rights reserved. - * InteractionAgentBase.inl - *********************************************************************************************************************/ - -#if !defined(__TOBII_TX_CLIENT_CPPBINDINGS_INTERACTIONAGENTBASE__INL__) -#define __TOBII_TX_CLIENT_CPPBINDINGS_INTERACTIONAGENTBASE__INL__ - -/*********************************************************************************************************************/ - -TX_NAMESPACE_BEGIN - -/*********************************************************************************************************************/ - -inline InteractionAgentBase::InteractionAgentBase(bool trackObjects) : -_trackObjects(trackObjects) -{ - memset(&_defaultLoggingModel, 0, sizeof(_defaultLoggingModel)); - _defaultLoggingModel.Targets = TX_LOGTARGET_CONSOLE; - -#if _DEBUG - _defaultLoggingModel.Targets = (TX_LOGTARGET)(_defaultLoggingModel.Targets | TX_LOGTARGET_TRACE); -#endif -} - -/*********************************************************************************************************************/ - -inline void InteractionAgentBase::Initialize() -{ - _isRunning = true; - _spSystem = InitializeEyeX(); - _spContext = Context::Create(_trackObjects); - - _connectionStateChangedHandlerTicket = _spContext->RegisterConnectionStateChangedHandler([this] (TX_CONNECTIONSTATE state) { - OnConnectionStateChanged(state); - }); - - auto eventHandlerTicket = _spContext->RegisterMessageHandler(TX_MESSAGETYPE_EVENT, nullptr, [this] (const std::unique_ptr& upAsyncData) { - auto spEvent = upAsyncData->GetDataAs(); - OnEvent(spEvent); - }); - - auto notificationHandlerTicket = _spContext->RegisterMessageHandler(TX_MESSAGETYPE_NOTIFICATION, nullptr, [this] (const std::unique_ptr& upAsyncData) { - auto spNotification = upAsyncData->GetDataAs(); - OnNotification(spNotification); - }); - - _messageHandlerTickets.push_back(eventHandlerTicket); - _messageHandlerTickets.push_back(notificationHandlerTicket); - - OnRegisterQueryHandlers(); - OnInitialize(); - - _spContext->EnableConnection(); -} - -/*********************************************************************************************************************/ - -inline void InteractionAgentBase::Uninitialize() -{ - _isRunning = false; - - OnUninitialize(); - _spContext->DisableConnection(); - - for(auto messageHandlerTicket : _messageHandlerTickets) - _spContext->UnregisterMessageHandler(messageHandlerTicket); - - _spContext->Shutdown(); - _spContext->UnregisterConnectionStateChangedHandler(_connectionStateChangedHandlerTicket); - - _spContext.reset(); - _spSystem.reset(); -} - -/*********************************************************************************************************************/ - -inline std::shared_ptr InteractionAgentBase::GetContext() const -{ - return _spContext; -} - -/*********************************************************************************************************************/ - -inline std::shared_ptr InteractionAgentBase::InitializeEyeX() -{ - auto pLoggingModel = GetLoggingModel(); - auto pThreadingModel = GetThreadingModel(); - auto pSchedulingModel = GetSchedulingModel(); - - auto overrideFlags = TX_EYEXCOMPONENTOVERRIDEFLAG_NONE; - - if(pLoggingModel) - overrideFlags = (TX_EYEXCOMPONENTOVERRIDEFLAGS)(overrideFlags | TX_EYEXCOMPONENTOVERRIDEFLAG_LOGGINGMODEL); - - if(pThreadingModel) - overrideFlags = (TX_EYEXCOMPONENTOVERRIDEFLAGS)(overrideFlags | TX_EYEXCOMPONENTOVERRIDEFLAG_INTERNAL_THREADINGMODEL); - - if(pSchedulingModel) - overrideFlags = (TX_EYEXCOMPONENTOVERRIDEFLAGS)(overrideFlags | TX_EYEXCOMPONENTOVERRIDEFLAG_INTERNAL_SCHEDULINGMODEL); - - return Environment::Initialize(overrideFlags, pLoggingModel, pThreadingModel, pSchedulingModel, nullptr); -} - -/*********************************************************************************************************************/ - -inline void InteractionAgentBase::OnRegisterQueryHandlers() -{ - auto currentProcessId = GetCurrentProcessId(); - auto currentProcessIdStr = std::to_string(currentProcessId); - RegisterQueryHandler(currentProcessIdStr); -} - -/*********************************************************************************************************************/ - -inline void InteractionAgentBase::RegisterQueryHandler(const std::string& processId) -{ - auto spOptions = _spContext->CreateBag(); - auto spProcessIdProeprty = spOptions->CreateProperty(TX_LITERAL_TARGETPROCESSID); - spProcessIdProeprty->SetValue(processId); - - auto fnQueryHandler = [this](const std::unique_ptr& upAsyncData) - { - auto spQuery = upAsyncData->GetDataAs(); - OnQuery(spQuery); - }; - - auto ticket = _spContext->RegisterMessageHandler(TX_MESSAGETYPE_QUERY, spOptions, fnQueryHandler); - _messageHandlerTickets.push_back(ticket); -} - -/*********************************************************************************************************************/ - -inline TX_LOGGINGMODEL* InteractionAgentBase::GetLoggingModel() -{ - return &_defaultLoggingModel; -} - -/*********************************************************************************************************************/ - -inline bool InteractionAgentBase::IsRunning() const -{ - return _isRunning; -} - -/*********************************************************************************************************************/ - -inline AutoRespondingInteractionAgentBase::AutoRespondingInteractionAgentBase(bool trackObjects) - : InteractionAgentBase(trackObjects) -{ } - -/*********************************************************************************************************************/ - -inline void AutoRespondingInteractionAgentBase::OnQuery(const std::shared_ptr& spQuery) -{ - auto spSnapshot = Snapshot::CreateSnapshotForQuery(spQuery); - - try - { - if(!PrepareSnapshot(spSnapshot)) - return; - } - catch(...) - { - GetContext()->WriteLogMessage(TX_LOGLEVEL_ERROR, "AutoRespondingInteractionAgentBase", "Custom snapshot preparation throw an exception"); - return; - } - - spSnapshot->CommitAsync([this](const std::unique_ptr& upAsyncData) - { - OnSnapshotResult(upAsyncData); - }); -} - -/*********************************************************************************************************************/ - -TX_NAMESPACE_END - -/*********************************************************************************************************************/ - -#endif // !defined(__TOBII_TX_CLIENT_CPPBINDINGS_INTERACTIONAGENTBASE__INL__) - -/*********************************************************************************************************************/ -- cgit v1.2.3