- Make all of ATSPI as internal/devel API.
- Only few (Say, PauseResume, SetForcefully, GetStatus) would be c# binded by the requirement from developers.
- Other ATSPI APIs would be merged and provided as devel-api later.
- Current dali Accessibility is maintained.
- Moving all ATSPI files into tizen-wayland/atspi/ folder. (tizen-common doesn't cover all profiles)
Change-Id: Ia7156ca520031743bcf2e96f2255542f500eee89
Signed-off-by: dongsug.song <dongsug.song@samsung.com>
--- /dev/null
+#ifndef DALI_DEVEL_ATSPI_ACCESSIBILITY_H
+#define DALI_DEVEL_ATSPI_ACCESSIBILITY_H
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <functional>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/dali-adaptor-common.h>
+
+namespace Dali
+{
+namespace AtspiAccessibility
+{
+/**
+ * @brief Reads given text by screen reader
+ * @param text The text to read
+ * @param discardable If TRUE, reading can be discarded by subsequent reading requests,
+ * if FALSE the reading must finish before next reading request can be started
+ * @param callback the callback function that is called on reading signals emitted
+ * during processing of this reading request.
+ * Callback can be one of the following signals:
+ * ReadingCancelled, ReadingStopped, ReadingSkipped
+ */
+DALI_ADAPTOR_API void Say( const std::string &text, bool discardable, std::function<void(std::string)> callback );
+
+/**
+ * @brief Force accessibility client to pause.
+ */
+DALI_ADAPTOR_API void Pause();
+
+/**
+ * @brief Force accessibility client to resume.
+ */
+DALI_ADAPTOR_API void Resume();
+
+/**
+ * @brief Set ATSPI to be turned On or Off forcibly.
+ *
+ * @param[in] turnOn true to turn on, false to turn off.
+ * @return The status of ATSPI : 0(ATSPI OFF, ScreenReader OFF), 1(ATSPI ON, ScreenReader OFF),
+ * 2 (ATSPI OFF, ScreenReader ON), 3(ATSPI ON, ScreenReader ON)
+ */
+DALI_ADAPTOR_API int SetForcefully( bool turnOn );
+
+/**
+ * @brief Get ATSPI status.
+ * @return Status of ATSPI : 0(ATSPI OFF, ScreenReader OFF), 1(ATSPI ON, ScreenReader OFF),
+ * 2 (ATSPI OFF, ScreenReader ON), 3(ATSPI ON, ScreenReader ON)
+ */
+DALI_ADAPTOR_API int GetStatus();
+
+} //namespace AtspiAccessibility
+} //namespace Dali
+
+#endif // DALI_DEVEL_ATSPI_ACCESSIBILITY_H
${adaptor_devel_api_dir}/adaptor-framework/accessibility-gesture-handler.h
${adaptor_devel_api_dir}/adaptor-framework/accessibility-gesture-event.h
${adaptor_devel_api_dir}/adaptor-framework/application-devel.h
+ ${adaptor_devel_api_dir}/adaptor-framework/atspi-accessibility.h
${adaptor_devel_api_dir}/adaptor-framework/bitmap-saver.h
${adaptor_devel_api_dir}/adaptor-framework/clipboard-event-notifier.h
${adaptor_devel_api_dir}/adaptor-framework/clipboard.h
SET( adaptor_accessibility_tizen_wayland_src_files
${adaptor_accessibility_dir}/tizen-wayland/tts-player-factory-tizen.cpp
${adaptor_accessibility_dir}/tizen-wayland/tts-player-impl-tizen.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/atspi-accessibility-tizen.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/accessibility-impl.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/accessible.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-accessible.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-action.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-base.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-collection.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-component.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-editable-text.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-impl.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-object.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-text.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/bridge-value.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/component.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/atspi/dbus-tizen.cpp
+
)
# module: accessibility, backend: tizen-common profile
SET( adaptor_accessibility_tizen_common_src_files
- ${adaptor_accessibility_dir}/tizen-wayland/tizen-common/accessibility-adaptor-impl-tizen.cpp
+ ${adaptor_accessibility_dir}/tizen-wayland/tizen-common/accessibility-adaptor-impl-tizen.cpp
)
# module: accessibility, backend: tizen-ivi profile
# module: accessibility, backend: generic
SET( adaptor_accessibility_ubuntu_src_files
${adaptor_accessibility_dir}/generic/accessibility-adaptor-impl-generic.cpp
+ ${adaptor_accessibility_dir}/generic/atspi-accessibility-generic.cpp
${adaptor_accessibility_dir}/generic/tts-player-factory-generic.cpp
${adaptor_accessibility_dir}/generic/tts-player-impl-generic.cpp
)
# module: accessibility, backend: generic
-SET( adaptor_accessibility_android_src_files
- ${adaptor_accessibility_dir}/generic/accessibility-adaptor-impl-generic.cpp
- ${adaptor_accessibility_dir}/generic/tts-player-factory-generic.cpp
+SET( adaptor_accessibility_android_src_files
+ ${adaptor_accessibility_dir}/generic/accessibility-adaptor-impl-generic.cpp
+ ${adaptor_accessibility_dir}/generic/tts-player-factory-generic.cpp
${adaptor_accessibility_dir}/generic/tts-player-impl-generic.cpp
)
-
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <dali/public-api/dali-adaptor-common.h>
+#include <dali/devel-api/adaptor-framework/atspi-accessibility.h>
+#include <dali/integration-api/debug.h>
+
+void Dali::AtspiAccessibility::Pause()
+{
+ DALI_LOG_ERROR("[ERROR] This is NOT supported\n");
+}
+
+void Dali::AtspiAccessibility::Resume()
+{
+ DALI_LOG_ERROR("[ERROR] This is NOT supported\n");
+}
+
+void Dali::AtspiAccessibility::Say( const std::string &text, bool discardable, std::function<void(std::string)> callback )
+{
+ DALI_LOG_ERROR("[ERROR] This is NOT supported\n");
+}
+
+int Dali::AtspiAccessibility::SetForcefully( bool turnOn )
+{
+ DALI_LOG_ERROR("[ERROR] This is NOT supported\n");
+ return -1;
+}
+
+int Dali::AtspiAccessibility::GetStatus()
+{
+ DALI_LOG_ERROR("[ERROR] This is NOT supported\n");
+ return -1;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ATSPI_ACCESSIBILITY_COMMON_H
+#define DALI_INTERNAL_ATSPI_ACCESSIBILITY_COMMON_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <dali/integration-api/debug.h>
+#include <iomanip>
+#include <sstream>
+#include <string>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/dali-adaptor-common.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/dbus.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/dbus-locators.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-impl.h>
+
+#define A11yDbusName "org.a11y.Bus"
+#define A11yDbusPath "/org/a11y/bus"
+#define A11yDbusStatusInterface "org.a11y.Status"
+#define AtspiDbusNameRegistry "org.a11y.atspi.Registry"
+#define AtspiDbusPathRoot "/org/a11y/atspi/accessible/root"
+#define AtspiDbusInterfaceSocket "org.a11y.atspi.Socket"
+#define AtspiPath "/org/a11y/atspi/accessible"
+#define AtspiDbusInterfaceAccessible "org.a11y.atspi.Accessible"
+#define AtspiDbusInterfaceAction "org.a11y.atspi.Action"
+#define AtspiDbusInterfaceApplication "org.a11y.atspi.Application"
+#define AtspiDbusInterfaceCollection "org.a11y.atspi.Collection"
+#define AtspiDbusInterfaceComponent "org.a11y.atspi.Component"
+#define AtspiDbusInterfaceDocument "org.a11y.atspi.Document"
+#define AtspiDbusInterfaceEditableText "org.a11y.atspi.EditableText"
+#define AtspiDbusInterfaceEventKeyboard "org.a11y.atspi.Event.Keyboard"
+#define AtspiDbusInterfaceEventMouse "org.a11y.atspi.Event.Mouse"
+#define AtspiDbusInterfaceEventObject "org.a11y.atspi.Event.Object"
+#define AtspiDbusInterfaceHyperlink "org.a11y.atspi.Hyperlink"
+#define AtspiDbusInterfaceHypertext "org.a11y.atspi.Hypertext"
+#define AtspiDbusInterfaceImage "org.a11y.atspi.Image"
+#define AtspiDbusInterfaceSelection "org.a11y.atspi.Selection"
+#define AtspiDbusInterfaceTable "org.a11y.atspi.Table"
+#define AtspiDbusInterfaceTableCell "org.a11y.atspi.TableCell"
+#define AtspiDbusInterfaceText "org.a11y.atspi.Text"
+#define AtspiDbusInterfaceValue "org.a11y.atspi.Value"
+#define AtspiDbusInterfaceSocket "org.a11y.atspi.Socket"
+#define AtspiDbusInterfaceEventWindow "org.a11y.atspi.Event.Window"
+
+#define AtspiDbusPathDec "/org/a11y/atspi/registry/deviceeventcontroller"
+#define AtspiDbusInterfaceDec "org.a11y.atspi.DeviceEventController"
+#define AtspiDbusInterfaceDeviceEventListener "org.a11y.atspi.DeviceEventListener"
+
+#define DirectReadingDBusName "org.tizen.ScreenReader"
+#define DirectReadingDBusPath "/org/tizen/DirectReading"
+#define DirectReadingDBusInterface "org.tizen.DirectReading"
+
+struct ObjectPath;
+
+/**
+ * @brief Enumeration used for quering Accessibility objects
+ */
+enum class MatchType : int32_t
+{
+ INVALID,
+ ALL,
+ ANY,
+ NONE,
+ EMPTY
+};
+
+/**
+ * @brief Enumeration used for quering Accessibility objects
+ * SortOrder::Canonical uses breadth-first search and sort objects in order of indexes in parent
+ * SortOrder::ReverseCanonical uses SortOrder::Canonical and reverse collection
+ * The rest of orders is not supported.
+ */
+enum class SortOrder : uint32_t
+{
+ INVALID,
+ CANONICAL,
+ FLOW,
+ TAB,
+ REVERSE_CANONICAL,
+ REVERSE_FLOW,
+ REVERSE_TAB,
+ LAST_DEFINED
+};
+
+namespace DBus
+{
+
+class CurrentBridgePtr
+{
+ static Dali::Accessibility::Bridge*& get()
+ {
+ static thread_local Dali::Accessibility::Bridge* b = nullptr;
+ return b;
+ }
+ Dali::Accessibility::Bridge* prev;
+ CurrentBridgePtr( const CurrentBridgePtr& ) = delete;
+ CurrentBridgePtr( CurrentBridgePtr&& ) = delete;
+ CurrentBridgePtr& operator=( const CurrentBridgePtr& ) = delete;
+ CurrentBridgePtr& operator=( CurrentBridgePtr&& ) = delete;
+
+public:
+ CurrentBridgePtr( Dali::Accessibility::Bridge* b )
+ : prev( get() )
+ {
+ get() = b;
+ }
+
+ ~CurrentBridgePtr()
+ {
+ get() = prev;
+ }
+
+ static Dali::Accessibility::Bridge* current()
+ {
+ return get();
+ }
+};
+
+namespace detail
+{
+
+template < typename T >
+struct signature_accessible_impl
+{
+
+using subtype = std::pair< std::string, ObjectPath >;
+
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "AtspiAccessiblePtr";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "(so)";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set( const DBusWrapper::MessageIterPtr& iter, T* t )
+ {
+ if( t )
+ {
+ auto v = t->GetAddress();
+ signature< subtype >::set( iter, { v.GetBus(), ObjectPath{std::string{ ATSPI_PREFIX_PATH } +v.GetPath()} } );
+ }
+ else
+ {
+ signature< subtype >::set( iter, { "", ObjectPath{ ATSPI_NULL_PATH } } );
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get( const DBusWrapper::MessageIterPtr& iter, T*& v )
+ {
+ subtype tmp;
+ if( !signature< subtype >::get( iter, tmp ) )
+ {
+ return false;
+ }
+
+ if( tmp.second.value == ATSPI_NULL_PATH )
+ {
+ v = nullptr;
+ return true;
+ }
+
+ if( tmp.second.value.substr( 0, strlen( ATSPI_PREFIX_PATH ) ) != ATSPI_PREFIX_PATH )
+ {
+ return false;
+ }
+
+ auto b = CurrentBridgePtr::current();
+ if( b->GetBusName() != tmp.first )
+ {
+ return false;
+ }
+
+ v = b->FindByPath( tmp.second.value.substr( strlen( ATSPI_PREFIX_PATH ) ) );
+ return v != nullptr;
+ }
+};
+
+template <>
+struct signature< Dali::Accessibility::Accessible* > : public signature_accessible_impl< Dali::Accessibility::Accessible >
+{
+};
+
+template <>
+struct signature< Dali::Accessibility::Address >
+{
+using subtype = std::pair< std::string, ObjectPath >;
+
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "AtspiAccessiblePtr";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "(so)";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set( const DBusWrapper::MessageIterPtr& iter, const Dali::Accessibility::Address& v )
+ {
+ if( v )
+ {
+ signature< subtype >::set( iter, { v.GetBus(), ObjectPath{ std::string{ ATSPI_PREFIX_PATH } + v.GetPath() } } );
+ }
+ else
+ {
+ signature< subtype >::set( iter, { v.GetBus(), ObjectPath{ ATSPI_NULL_PATH } } );
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get( const DBusWrapper::MessageIterPtr& iter, Dali::Accessibility::Address& v )
+ {
+ subtype tmp;
+ if( !signature< subtype >::get( iter, tmp ) )
+ {
+ return false;
+ }
+
+ if( tmp.second.value == ATSPI_NULL_PATH )
+ {
+ v = {};
+ return true;
+ }
+ if( tmp.second.value.substr( 0, strlen( ATSPI_PREFIX_PATH ) ) != ATSPI_PREFIX_PATH )
+ {
+ return false;
+ }
+
+ v = { std::move( tmp.first ), tmp.second.value.substr( strlen( ATSPI_PREFIX_PATH ) ) };
+ return true;
+ }
+};
+
+template <>
+struct signature< Dali::Accessibility::States >
+{
+using subtype = std::array< uint32_t, 2 >;
+
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return signature< subtype >::name();
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature< subtype >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set( const DBusWrapper::MessageIterPtr& iter, const Dali::Accessibility::States& v )
+ {
+ signature< subtype >::set( iter, v.GetRawData() );
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get( const DBusWrapper::MessageIterPtr& iter, Dali::Accessibility::States& v )
+ {
+ subtype tmp;
+ if( !signature< subtype >::get( iter, tmp ) )
+ {
+ return false;
+ }
+ v = Dali::Accessibility::States{ tmp };
+ return true;
+ }
+};
+}
+}
+
+struct _Logger
+{
+ const char* file;
+ int line;
+ std::ostringstream tmp;
+
+ _Logger( const char* f, int l )
+ : file( f ),
+ line( l ){}
+
+ ~_Logger()
+ {
+ Dali::Integration::Log::LogMessage( Dali::Integration::Log::DebugInfo, "%s:%d: %s", file, line, tmp.str().c_str() );
+ }
+
+ template < typename T >
+ _Logger& operator<<( T&& t )
+ {
+ tmp << std::forward< T >( t );
+ return *this;
+ }
+};
+
+struct _LoggerEmpty
+{
+ template < typename T >
+ _LoggerEmpty& operator<<( T&& t )
+ {
+ return *this;
+ }
+};
+
+struct _LoggerScope
+{
+ const char* file;
+ int line;
+
+ _LoggerScope( const char* f, int l )
+ : file( f ),
+ line( l )
+ {
+ Dali::Integration::Log::LogMessage( Dali::Integration::Log::DebugInfo, "%s:%d: +", file, line );
+ }
+
+ ~_LoggerScope()
+ {
+ Dali::Integration::Log::LogMessage( Dali::Integration::Log::DebugInfo, "%s:%d: -", file, line );
+ }
+};
+
+#define LOG() _Logger( __FILE__, __LINE__ )
+#define SCOPE() _LoggerScope _l##__LINE__( __FILE__, __LINE__ )
+
+#endif // DALI_INTERNAL_ATSPI_ACCESSIBILITY_COMMON_H
--- /dev/null
+/*
+ * Copyright 2019 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// CLASS HEADER
+
+// EXTERNAL INCLUDES
+#include <dali/integration-api/debug.h>
+#include <dali/public-api/actors/actor.h>
+#include <dali/public-api/actors/layer.h>
+#include <dali/public-api/common/stage.h>
+#include <dali/public-api/object/base-object.h>
+#include <dali/public-api/object/object-registry.h>
+#include <dali/public-api/object/type-info.h>
+#include <dali/public-api/object/type-registry-helper.h>
+#include <dali/devel-api/actors/actor-devel.h>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/dali-adaptor-common.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-impl.h>
+
+using namespace Dali::Accessibility;
+using namespace Dali;
+
+const std::string& Dali::Accessibility::Address::GetBus() const
+{
+ return mBus.empty() && Bridge::GetCurrentBridge() ? Bridge::GetCurrentBridge()->GetBusName() : mBus;
+}
+
+std::string EmptyAccessibleWithAddress::GetRoleName()
+{
+ return "";
+}
+
+std::string Accessible::GetLocalizedRoleName()
+{
+ return GetRoleName();
+}
+
+std::string Accessible::GetRoleName()
+{
+ switch( GetRole() )
+ {
+ case Role::INVALID:
+ {
+ return "invalid";
+ }
+ case Role::ACCELERATOR_LABEL:
+ {
+ return "accelerator label";
+ }
+ case Role::ALERT:
+ {
+ return "alert";
+ }
+ case Role::ANIMATION:
+ {
+ return "animation";
+ }
+ case Role::ARROW:
+ {
+ return "arrow";
+ }
+ case Role::CALENDAR:
+ {
+ return "calendar";
+ }
+ case Role::CANVAS:
+ {
+ return "canvas";
+ }
+ case Role::CHECK_BOX:
+ {
+ return "check box";
+ }
+ case Role::CHECK_MENU_ITEM:
+ {
+ return "check menu item";
+ }
+ case Role::COLOR_CHOOSER:
+ {
+ return "color chooser";
+ }
+ case Role::COLUMN_HEADER:
+ {
+ return "column header";
+ }
+ case Role::COMBO_BOX:
+ {
+ return "combo box";
+ }
+ case Role::DATE_EDITOR:
+ {
+ return "date editor";
+ }
+ case Role::DESKTOP_ICON:
+ {
+ return "desktop icon";
+ }
+ case Role::DESKTOP_FRAME:
+ {
+ return "desktop frame";
+ }
+ case Role::DIAL:
+ {
+ return "dial";
+ }
+ case Role::DIALOG:
+ {
+ return "dialog";
+ }
+ case Role::DIRECTORY_PANE:
+ {
+ return "directory pane";
+ }
+ case Role::DRAWING_AREA:
+ {
+ return "drawing area";
+ }
+ case Role::FILE_CHOOSER:
+ {
+ return "file chooser";
+ }
+ case Role::FILLER:
+ {
+ return "filler";
+ }
+ case Role::FOCUS_TRAVERSABLE:
+ {
+ return "focus traversable";
+ }
+ case Role::FONT_CHOOSER:
+ {
+ return "font chooser";
+ }
+ case Role::FRAME:
+ {
+ return "frame";
+ }
+ case Role::GLASS_PANE:
+ {
+ return "glass pane";
+ }
+ case Role::HTML_CONTAINER:
+ {
+ return "html container";
+ }
+ case Role::ICON:
+ {
+ return "icon";
+ }
+ case Role::IMAGE:
+ {
+ return "image";
+ }
+ case Role::INTERNAL_FRAME:
+ {
+ return "internal frame";
+ }
+ case Role::LABEL:
+ {
+ return "label";
+ }
+ case Role::LAYERED_PANE:
+ {
+ return "layered pane";
+ }
+ case Role::LIST:
+ {
+ return "list";
+ }
+ case Role::LIST_ITEM:
+ {
+ return "list item";
+ }
+ case Role::MENU:
+ {
+ return "menu";
+ }
+ case Role::MENU_BAR:
+ {
+ return "menu bar";
+ }
+ case Role::MENU_ITEM:
+ {
+ return "menu item";
+ }
+ case Role::OPTION_PANE:
+ {
+ return "option pane";
+ }
+ case Role::PAGE_TAB:
+ {
+ return "page tab";
+ }
+ case Role::PAGE_TAB_LIST:
+ {
+ return "page tab list";
+ }
+ case Role::PANEL:
+ {
+ return "panel";
+ }
+ case Role::PASSWORD_TEXT:
+ {
+ return "password text";
+ }
+ case Role::POPUP_MENU:
+ {
+ return "popup menu";
+ }
+ case Role::PROGRESS_BAR:
+ {
+ return "progress bar";
+ }
+ case Role::PUSH_BUTTON:
+ {
+ return "push button";
+ }
+ case Role::RADIO_BUTTON:
+ {
+ return "radio button";
+ }
+ case Role::RADIO_MENU_ITEM:
+ {
+ return "radio menu item";
+ }
+ case Role::ROOT_PANE:
+ {
+ return "root pane";
+ }
+ case Role::ROW_HEADER:
+ {
+ return "row header";
+ }
+ case Role::SCROLL_BAR:
+ {
+ return "scroll bar";
+ }
+ case Role::SCROLL_PANE:
+ {
+ return "scroll pane";
+ }
+ case Role::SEPARATOR:
+ {
+ return "separator";
+ }
+ case Role::SLIDER:
+ {
+ return "slider";
+ }
+ case Role::SPIN_BUTTON:
+ {
+ return "spin button";
+ }
+ case Role::SPLIT_PANE:
+ {
+ return "split pane";
+ }
+ case Role::STATUS_BAR:
+ {
+ return "status bar";
+ }
+ case Role::TABLE:
+ {
+ return "table";
+ }
+ case Role::TABLE_CELL:
+ {
+ return "table cell";
+ }
+ case Role::TABLE_COLUMN_HEADER:
+ {
+ return "table column header";
+ }
+ case Role::TABLE_ROW_HEADER:
+ {
+ return "table row header";
+ }
+ case Role::TEAROFF_MENU_ITEM:
+ {
+ return "tearoff menu item";
+ }
+ case Role::TERMINAL:
+ {
+ return "terminal";
+ }
+ case Role::TEXT:
+ {
+ return "text";
+ }
+ case Role::TOGGLE_BUTTON:
+ {
+ return "toggle button";
+ }
+ case Role::TOOL_BAR:
+ {
+ return "tool bar";
+ }
+ case Role::TOOL_TIP:
+ {
+ return "tool tip";
+ }
+ case Role::TREE:
+ {
+ return "tree";
+ }
+ case Role::TREE_TABLE:
+ {
+ return "tree table";
+ }
+ case Role::UNKNOWN:
+ {
+ return "unknown";
+ }
+ case Role::VIEWPORT:
+ {
+ return "viewport";
+ }
+ case Role::WINDOW:
+ {
+ return "window";
+ }
+ case Role::EXTENDED:
+ {
+ return "extended";
+ }
+ case Role::HEADER:
+ {
+ return "header";
+ }
+ case Role::FOOTER:
+ {
+ return "footer";
+ }
+ case Role::PARAGRAPH:
+ {
+ return "paragraph";
+ }
+ case Role::RULER:
+ {
+ return "ruler";
+ }
+ case Role::APPLICATION:
+ {
+ return "application";
+ }
+ case Role::AUTOCOMPLETE:
+ {
+ return "autocomplete";
+ }
+ case Role::EDITBAR:
+ {
+ return "edit bar";
+ }
+ case Role::EMBEDDED:
+ {
+ return "embedded";
+ }
+ case Role::ENTRY:
+ {
+ return "entry";
+ }
+ case Role::CHART:
+ {
+ return "chart";
+ }
+ case Role::CAPTION:
+ {
+ return "caution";
+ }
+ case Role::DOCUMENT_FRAME:
+ {
+ return "document frame";
+ }
+ case Role::HEADING:
+ {
+ return "heading";
+ }
+ case Role::PAGE:
+ {
+ return "page";
+ }
+ case Role::SECTION:
+ {
+ return "section";
+ }
+ case Role::REDUNDANT_OBJECT:
+ {
+ return "redundant object";
+ }
+ case Role::FORM:
+ {
+ return "form";
+ }
+ case Role::LINK:
+ {
+ return "link";
+ }
+ case Role::INPUT_METHOD_WINDOW:
+ {
+ return "input method window";
+ }
+ case Role::TABLE_ROW:
+ {
+ return "table row";
+ }
+ case Role::TREE_ITEM:
+ {
+ return "tree item";
+ }
+ case Role::DOCUMENT_SPREADSHEET:
+ {
+ return "document spreadsheet";
+ }
+ case Role::DOCUMENT_PRESENTATION:
+ {
+ return "document presentation";
+ }
+ case Role::DOCUMENT_TEXT:
+ {
+ return "document text";
+ }
+ case Role::DOCUMENT_WEB:
+ {
+ return "document web";
+ }
+ case Role::DOCUMENT_EMAIL:
+ {
+ return "document email";
+ }
+ case Role::COMMENT:
+ {
+ return "comment";
+ }
+ case Role::LIST_BOX:
+ {
+ return "list box";
+ }
+ case Role::GROUPING:
+ {
+ return "grouping";
+ }
+ case Role::IMAGE_MAP:
+ {
+ return "image map";
+ }
+ case Role::NOTIFICATION:
+ {
+ return "notification";
+ }
+ case Role::INFO_BAR:
+ {
+ return "info bar";
+ }
+ case Role::LEVEL_BAR:
+ {
+ return "level bar";
+ }
+ case Role::TITLE_BAR:
+ {
+ return "title bar";
+ }
+ case Role::BLOCK_QUOTE:
+ {
+ return "block quote";
+ }
+ case Role::AUDIO:
+ {
+ return "audio";
+ }
+ case Role::VIDEO:
+ {
+ return "video";
+ }
+ case Role::DEFINITION:
+ {
+ return "definition";
+ }
+ case Role::ARTICLE:
+ {
+ return "article";
+ }
+ case Role::LANDMARK:
+ {
+ return "landmark";
+ }
+ case Role::LOG:
+ {
+ return "log";
+ }
+ case Role::MARQUEE:
+ {
+ return "marquee";
+ }
+ case Role::MATH:
+ {
+ return "math";
+ }
+ case Role::RATING:
+ {
+ return "rating";
+ }
+ case Role::TIMER:
+ {
+ return "timer";
+ }
+ case Role::STATIC:
+ {
+ return "static";
+ }
+ case Role::MATH_FRACTION:
+ {
+ return "math fraction";
+ }
+ case Role::MATH_ROOT:
+ {
+ return "math root";
+ }
+ case Role::SUBSCRIPT:
+ {
+ return "subscript";
+ }
+ case Role::SUPERSCRIPT:
+ {
+ return "superscript";
+ }
+ case Role::MAX_COUNT:
+ {
+ break;
+ }
+ }
+ return "";
+}
+
+Dali::Actor Accessible::GetCurrentlyHighlightedActor()
+{
+ return IsUp() ? Bridge::GetCurrentBridge()->data->currentlyHighlightedActor : Dali::Actor{};
+}
+
+void Accessible::SetCurrentlyHighlightedActor(Dali::Actor actor)
+{
+ if (IsUp())
+ {
+ Bridge::GetCurrentBridge()->data->currentlyHighlightedActor = actor;
+ }
+}
+
+Dali::Actor Accessible::GetHighlightActor()
+{
+ return IsUp() ? Bridge::GetCurrentBridge()->data->highlightActor : Dali::Actor{};
+}
+
+void Accessible::SetHighlightActor(Dali::Actor actor)
+{
+ if (IsUp())
+ {
+ Bridge::GetCurrentBridge()->data->highlightActor = actor;
+ }
+}
+
+void Bridge::ForceDown()
+{
+ auto highlighted = Accessible::GetCurrentlyHighlightedActor();
+ if( highlighted )
+ {
+ auto p = dynamic_cast< Component* >( Accessible::Get( highlighted ) );
+ if( p )
+ {
+ p->ClearHighlight();
+ }
+ }
+ data = {};
+}
+
+void Bridge::SetIsOnRootLevel( Accessible* o )
+{
+ o->isOnRootLevel = true;
+}
+
+namespace
+{
+class NonControlAccessible : public virtual Accessible, public virtual Collection, public virtual Component
+{
+public:
+ Dali::Actor actor;
+ bool root = false;
+
+ NonControlAccessible( Dali::Actor actor, bool root ) : actor( actor ), root( root )
+ {
+ }
+
+ Dali::Rect<> GetExtents( Dali::Accessibility::CoordType ctype ) override
+ {
+ Vector2 screenPosition = actor.GetProperty( Dali::DevelActor::Property::SCREEN_POSITION ).Get< Vector2 >();
+ Vector3 size = actor.GetCurrentSize() * actor.GetCurrentWorldScale();
+ bool positionUsesAnchorPoint = actor.GetProperty( Dali::DevelActor::Property::POSITION_USES_ANCHOR_POINT ).Get< bool >();
+ Vector3 anchorPointOffSet = size * ( positionUsesAnchorPoint ? actor.GetCurrentAnchorPoint() : AnchorPoint::TOP_LEFT );
+ Vector2 position = Vector2( screenPosition.x - anchorPointOffSet.x, screenPosition.y - anchorPointOffSet.y );
+
+ return { position.x, position.y, size.x, size.y };
+ }
+ Dali::Accessibility::ComponentLayer GetLayer() override
+ {
+ return Dali::Accessibility::ComponentLayer::WINDOW;
+ }
+ int16_t GetMdiZOrder()
+ {
+ return 0;
+ }
+ double GetAlpha()
+ {
+ return 0;
+ }
+ bool GrabFocus() override
+ {
+ return false;
+ }
+ bool GrabHighlight() override
+ {
+ return false;
+ }
+ bool ClearHighlight() override
+ {
+ return false;
+ }
+ int GetHighlightIndex() override
+ {
+ return 0;
+ }
+ bool IsScrollable() override
+ {
+ return false;
+ }
+ std::string GetName() override
+ {
+ return actor.GetName();
+ }
+ std::string GetDescription() override
+ {
+ return "";
+ }
+ Accessible* GetParent() override
+ {
+ if( GetIsOnRootLevel() )
+ {
+ auto b = GetBridgeData();
+ return b->bridge->GetApplication();
+ }
+ return Get( actor.GetParent() );
+ }
+ size_t GetChildCount() override
+ {
+ return static_cast< size_t >( actor.GetChildCount() );
+ }
+ Accessible* GetChildAtIndex( size_t index ) override
+ {
+ auto s = static_cast< size_t >( actor.GetChildCount() );
+ if( index >= s )
+ {
+ throw std::domain_error{"invalid index " + std::to_string( index ) + " for object with " + std::to_string( s ) + " children"};
+ }
+ return Get( actor.GetChildAt( static_cast< unsigned int >( index ) ) );
+ }
+ size_t GetIndexInParent() override
+ {
+ auto parent = actor.GetParent();
+ if( !parent )
+ {
+ return 0;
+ }
+ auto size = static_cast< size_t >( parent.GetChildCount() );
+ for( auto i = 0u; i < size; ++i )
+ {
+ if( parent.GetChildAt( i ) == actor )
+ {
+ return i;
+ }
+ }
+ throw std::domain_error{"actor is not a child of it's parent"};
+ }
+ Role GetRole() override
+ {
+ return root ? Role::WINDOW : Role::REDUNDANT_OBJECT;
+ }
+ States GetStates() override
+ {
+ States s;
+ if( root )
+ {
+ s[State::HIGHLIGHTABLE] = true;
+ s[State::ENABLED] = true;
+ s[State::SENSITIVE] = true;
+ s[State::SHOWING] = true;
+ s[State::VISIBLE] = true;
+ s[State::ACTIVE] = true;
+ }
+ else
+ {
+ auto t = GetParent()->GetStates();
+ s[State::SHOWING] = t[State::SHOWING];
+ s[State::VISIBLE] = t[State::VISIBLE];
+ }
+ return s;
+ }
+ Attributes GetAttributes() override
+ {
+ Dali::TypeInfo type;
+ actor.GetTypeInfo( type );
+ return { {"t", type.GetName()}, };
+ }
+
+ bool DoGesture(const GestureInfo &gestureInfo) override
+ {
+ return false;
+ }
+
+ std::vector<Relation> GetRelationSet() override
+ {
+ return {};
+ }
+};
+
+using NonControlAccessiblesType = std::unordered_map< const Dali::RefObject*, std::unique_ptr< NonControlAccessible > >;
+
+NonControlAccessiblesType nonControlAccessibles;
+
+std::function< Accessible*( Dali::Actor ) > convertingFunctor = []( Dali::Actor ) -> Accessible*
+{
+ return nullptr;
+};
+
+}
+
+void Accessible::RegisterControlAccessibilityGetter( std::function< Accessible*( Dali::Actor ) > functor )
+{
+ convertingFunctor = functor;
+}
+
+Accessible* Accessible::Get( Dali::Actor actor, bool root )
+{
+ if( !actor )
+ {
+ return nullptr;
+ }
+ auto accessible = convertingFunctor( actor );
+ if( !accessible )
+ {
+ if( nonControlAccessibles.empty() )
+ {
+ auto registry = Dali::Stage::GetCurrent().GetObjectRegistry();
+ registry.ObjectDestroyedSignal().Connect( []( const Dali::RefObject* obj )
+ {
+ nonControlAccessibles.erase( obj );
+ }
+ );
+ }
+ auto it = nonControlAccessibles.emplace( &actor.GetBaseObject(), nullptr );
+ if( it.second )
+ {
+ it.first->second.reset( new NonControlAccessible( actor, root ) );
+ }
+ accessible = it.first->second.get();
+ }
+ return accessible;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ATSPI_ACCESSIBILITY_IMPL_H
+#define DALI_INTERNAL_ATSPI_ACCESSIBILITY_IMPL_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <dali/public-api/actors/actor.h>
+#include <dali/public-api/math/rect.h>
+#include <atomic>
+#include <bitset>
+#include <exception>
+#include <functional>
+#include <memory>
+#include <string>
+#include <unordered_map>
+#include <unordered_set>
+#include <vector>
+#include <stdexcept>
+
+//INTERNAL INCLUDES
+#include <dali/devel-api/adaptor-framework/atspi-accessibility.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility.h>
+#include <dali/integration-api/debug.h>
+
+namespace Dali
+{
+namespace Accessibility
+{
+class Accessible;
+class Text;
+class Value;
+class Component;
+class Collection;
+class Action;
+
+/**
+ * @brief Base class for different accessibility bridges
+ *
+ * Bridge is resposible for initializing and managing connection on accessibility bus.
+ * Accessibility clients will not get any information about UI without initialized and upraised bridge.
+ * Concrete implementation depends on the accessibility technology available on the platform.
+ *
+ * @note This class is singleton.
+ */
+struct Bridge
+{
+ enum class ForceUpResult
+ {
+ JUST_STARTED,
+ ALREADY_UP
+ };
+
+ /**
+ * @brief Destructor
+ */
+ virtual ~Bridge() = default;
+
+ /**
+ * @brief Get bus name which bridge is initialized on
+ */
+ virtual const std::string& GetBusName() const = 0;
+
+ /**
+ * @brief Registers top level window
+ *
+ * Hierarchy of objects visible for accessibility clients is based on tree-like
+ * structure created from Actors objects. This method allows to connect chosen
+ * object as direct ancestor of application and therefore make it visible for
+ * accessibility clients.
+ */
+ virtual void AddTopLevelWindow( Accessible* ) = 0;
+
+ /**
+ * @brief Removes top level window
+ *
+ * Hierarchy of objects visible for accessibility clients is based on tree-like
+ * structure created from Actors objects. This method removes previously added
+ * window from visible accessibility objects.
+ */
+ virtual void RemoveTopLevelWindow( Accessible* ) = 0;
+
+ /**
+ * @brief Adds popup window
+ *
+ * Hierarchy of objects visible for accessibility clients is based on tree-like
+ * structure created from Actors objects. This method adds new popup to the tree.
+ */
+ virtual void AddPopup( Accessible* ) = 0;
+
+ /**
+ * @brief Removes popup window
+ *
+ * Hierarchy of objects visible for accessibility clients is based on tree-like
+ * structure created from Actors objects. This method removes previously added
+ * popup window.
+ */
+ virtual void RemovePopup( Accessible* ) = 0;
+
+ /**
+ * @brief Set name of current application which will be visible on accessibility bus
+ */
+ virtual void SetApplicationName( std::string ) = 0;
+
+ /**
+ * @brief Get object being root of accessibility tree
+ *
+ * @return handler to accessibility object
+ */
+ virtual Accessible* GetApplication() const = 0;
+
+ /**
+ * @brief Find an object in accessibility tree
+ *
+ * @param[in] s path to object
+ *
+ * @return handler to accessibility object
+ */
+ virtual Accessible* FindByPath( const std::string& s) const = 0;
+
+ /**
+ * @brief Show application on accessibility bus
+ */
+ virtual void ApplicationShown() = 0;
+
+ /**
+ * @brief Hide application on accessibility bus
+ */
+ virtual void ApplicationHidden() = 0;
+
+ /**
+ * @brief Initialize accessibility bus
+ */
+ virtual void Initialize() = 0;
+
+ /**
+ * @brief Terminate accessibility bus
+ */
+ virtual void Terminate() = 0;
+
+ /**
+ * @brief This method is called, when bridge is being activated.
+ */
+ virtual ForceUpResult ForceUp()
+ {
+ if( data )
+ {
+ return ForceUpResult::ALREADY_UP;
+ }
+ data = std::make_shared< Data >();
+ data->bridge = this;
+ return ForceUpResult::JUST_STARTED;
+ }
+
+ /**
+ * @brief This method is called, when bridge is being deactivated.
+ */
+ virtual void ForceDown() = 0;
+
+ /**
+ * @brief Check if bridge is activated or not.
+ * @return True if brige is activated.
+ */
+ bool IsUp() const
+ {
+ return bool(data);
+ }
+
+ /**
+ * @brief Emits caret-moved event on at-spi bus.
+ **/
+ virtual void EmitCaretMoved( Accessible* obj, unsigned int cursorPosition ) = 0;
+
+ /**
+ * @brief Emits active-descendant-changed event on at-spi bus.
+ **/
+ virtual void EmitActiveDescendantChanged( Accessible* obj, Accessible *child ) = 0;
+
+ /**
+ * @brief Emits text-changed event on at-spi bus.
+ **/
+ virtual void EmitTextChanged( Accessible* obj, TextChangedState state, unsigned int position, unsigned int length, const std::string &content ) = 0;
+
+ /**
+ * @brief Emits state-changed event on at-spi bus.
+ **/
+ virtual void EmitStateChanged( Accessible* obj, State state, int val1, int val2 = 0 ) = 0;
+
+ /**
+ * @brief Emits window event on at-spi bus.
+ **/
+ virtual void Emit( Accessible* obj, WindowEvent we, unsigned int detail1 = 0 ) = 0;
+
+ /**
+ * @brief Emits property-changed event on at-spi bus.
+ **/
+ virtual void Emit( Accessible* obj, ObjectPropertyChangeEvent event ) = 0;
+
+ /**
+ * @brief Emits bounds-changed event on at-spi bus.
+ **/
+ virtual void EmitBoundsChanged( Accessible* obj, Rect<> rect ) = 0;
+
+ /**
+ * @brief Emits key event on at-spi bus.
+ *
+ * Screen-reader might receive this event and reply, that given keycode is consumed. In that case
+ * further processing of the keycode should be ignored.
+ **/
+ virtual Consumed Emit( KeyEventType type, unsigned int keyCode, const std::string& keyName, unsigned int timeStamp, bool isText ) = 0;
+
+ /**
+ * @brief Reads given text by screen reader
+ *
+ * @param text The text to read
+ * @param discardable If TRUE, reading can be discarded by subsequent reading requests,
+ * if FALSE the reading must finish before next reading request can be started
+ * @param callback the callback function that is called on reading signals emitted
+ * during processing of this reading request.
+ * Callback can be one of the following signals:
+ * ReadingCancelled, ReadingStopped, ReadingSkipped
+ */
+ virtual void Say( const std::string& text, bool discardable, std::function<void(std::string)> callback ) = 0;
+
+ /**
+ * @brief Force accessibility client to pause.
+ */
+ virtual void Pause() = 0;
+
+ /**
+ * @brief Force accessibility client to resume.
+ */
+ virtual void Resume() = 0;
+
+ /**
+ * @brief Get screen reader status.
+ */
+ virtual bool GetScreenReaderEnabled() = 0;
+
+ /**
+ * @brief Get ATSPI status.
+ */
+ virtual bool GetIsEnabled() = 0;
+
+ /**
+ * @brief Returns instance of bridge singleton object.
+ **/
+ static Bridge* GetCurrentBridge();
+
+protected:
+ struct Data
+ {
+ std::unordered_set< Accessible* > knownObjects;
+ std::string busName;
+ Bridge* bridge = nullptr;
+ Actor highlightActor, currentlyHighlightedActor;
+ };
+ std::shared_ptr< Data > data;
+ friend class Accessible;
+
+ /**
+ * @brief Registers accessible object to be known in bridge object
+ *
+ * Bridge must known about all currently alive accessible objects, as some requst
+ * might come and object will be identified by number id (it's memory address).
+ * To avoid memory corruption number id is checked against set of known objects.
+ **/
+ void RegisterOnBridge( Accessible* );
+
+ /**
+ * @brief Tells bridge, that given object is considered root (doesn't have any parents).
+ *
+ * All root objects will have the same parent - application object. Application object
+ * is controlled by bridge and private.
+ **/
+ void SetIsOnRootLevel( Accessible* );
+};
+
+/**
+ * @brief Check if ATSPI is activated or not.
+ * @return True if ATSPI is activated.
+ */
+inline bool IsUp()
+{
+ if( Bridge::GetCurrentBridge() == nullptr )
+ {
+ return false;
+ }
+ if( Bridge::GetCurrentBridge()->GetIsEnabled() == false )
+ {
+ return false;
+ }
+ return Bridge::GetCurrentBridge()->IsUp();
+}
+
+/**
+ * @brief Basic interface implemented by all accessibility objects
+ */
+class Accessible
+{
+public:
+ virtual ~Accessible();
+
+ using utf8_t = unsigned char;
+
+ /**
+ * @brief Calculaties word boundaries in given utf8 text.
+ *
+ * s and length represents source text pointer and it's length respectively. langauge represents
+ * language to use. Word boundaries are returned as non-zero values in table breaks, which
+ * must be of size at least length.
+ **/
+ void FindWordSeparationsUtf8( const utf8_t *s, size_t length, const char *language, char *breaks );
+
+ /**
+ * @brief Calculaties line boundaries in given utf8 text.
+ *
+ * s and length represents source text pointer and it's length respectively. langauge represents
+ * language to use. Line boundaries are returned as non-zero values in table breaks, which
+ * must be of size at least length.
+ **/
+ void FindLineSeparationsUtf8( const utf8_t *s, size_t length, const char *language, char *breaks );
+
+ /**
+ * @brief Helper function for emiting active-descendant-changed event
+ **/
+ void EmitActiveDescendantChanged( Accessible* obj, Accessible *child );
+
+ /**
+ * @brief Helper function for emiting state-changed event
+ **/
+ void EmitStateChanged( State state, int newValue1, int newValue2 = 0 );
+
+ /**
+ * @brief Helper function for emiting bounds-changed event
+ **/
+ void EmitBoundsChanged( Rect<> rect );
+
+ /**
+ * @brief Emit "showing" event.
+ * The method inform accessibility clients about "showing" state
+ *
+ * @param[in] showing flag pointing if object is showing
+ */
+ void EmitShowing( bool showing );
+
+ /**
+ * @brief Emit "visible" event.
+ * The method inform accessibility clients about "visible" state
+ *
+ * @param[in] visible flag pointing if object is visible
+ */
+ void EmitVisible( bool visible );
+
+ /**
+ * @brief Emit "highlighted" event.
+ * The method inform accessibility clients about "highlighted" state
+ *
+ * @param[in] set flag pointing if object is highlighted
+ */
+ void EmitHighlighted( bool set );
+
+ /**
+ * @brief Emit "focused" event.
+ * The method inform accessibility clients about "focused" state
+ *
+ * @param[in] set flag pointing if object is focused
+ */
+ void EmitFocused( bool set );
+
+ /**
+ * @brief Emit "text inserted" event
+ *
+ * @param[in] position caret position
+ * @param[in] length text length
+ * @param[in] content inserted text
+ */
+ void EmitTextInserted( unsigned int position, unsigned int length, const std::string &content );
+
+ /**
+ * @brief Emit "text deleted" event
+ *
+ * @param[in] position caret position
+ * @param[in] length text length
+ * @param[in] content deleted text
+ */
+ void EmitTextDeleted( unsigned int position, unsigned int length, const std::string &content );
+
+ /**
+ * @brief Emit "caret moved" event
+ *
+ * @param[in] cursorPosition new caret position
+ */
+ void EmitTextCaretMoved( unsigned int cursorPosition );
+
+ /**
+ * @brief Emit "highlighted" event
+ *
+ * @param[in] we enumerated window event
+ * @param[in] detail1 additional parameter which interpretation depends on chosen event
+ */
+ void Emit( WindowEvent we, unsigned int detail1 = 0 );
+
+ /**
+ * @brief Emits property-changed event
+ * @param[in] Property changed event
+ **/
+ void Emit( ObjectPropertyChangeEvent event );
+
+ /**
+ * @brief Get accessibility name
+ *
+ * @return string with name
+ */
+ virtual std::string GetName() = 0;
+
+ /**
+ * @brief Get accessibility description
+ *
+ * @return string with description
+ */
+ virtual std::string GetDescription() = 0;
+
+ /**
+ * @brief Get parent
+ *
+ * @return handler to accessibility object
+ */
+ virtual Accessible* GetParent() = 0;
+
+ /**
+ * @brief Get count of children
+ *
+ * @return unsigned integer value
+ */
+ virtual size_t GetChildCount() = 0;
+
+ /**
+ * @brief Get collection with all children
+ *
+ * @return collection of accessibility objects
+ */
+ virtual std::vector< Accessible* > GetChildren();
+
+ /**
+ * @brief Get nth child
+ *
+ * @return accessibility object
+ */
+ virtual Accessible* GetChildAtIndex( size_t index ) = 0;
+
+ /**
+ * @brief Get index that current object has in its parent's children collection
+ *
+ * @return unsigned integer index
+ */
+ virtual size_t GetIndexInParent() = 0;
+
+ /**
+ * @brief Get accessibility role
+ *
+ * @return Role enumeration
+ *
+ * @see Dali::Accessibility::Role
+ */
+ virtual Role GetRole() = 0;
+
+ /**
+ * @brief Get name of accessibility role
+ *
+ * @return string with human readable role converted from enumeration
+ *
+ * @see Dali::Accessibility::Role
+ * @see Accessibility::Accessible::GetRole
+ */
+ virtual std::string GetRoleName();
+
+ /**
+ * @brief Get localized name of accessibility role
+ *
+ * @return string with human readable role translated according to current
+ * translation domain
+ *
+ * @see Dali::Accessibility::Role
+ * @see Accessibility::Accessible::GetRole
+ * @see Accessibility::Accessible::GetRoleName
+ *
+ * @note translation is not supported in this version
+ */
+ virtual std::string GetLocalizedRoleName();
+
+ /**
+ * @brief Get accessibility states
+ *
+ * @return collection of states
+ *
+ * @note States class is instatation of ArrayBitset template class
+ *
+ * @see Dali::Accessibility::State
+ * @see Dali::Accessibility::ArrayBitset
+ */
+ virtual States GetStates() = 0;
+
+ /**
+ * @brief Get accessibility attributes
+ *
+ * @return map of attributes and their values
+ */
+ virtual Attributes GetAttributes() = 0;
+
+ /**
+ * @brief Check if this is proxy
+ *
+ * @return True if this is proxy
+ */
+ virtual bool IsProxy();
+
+ /**
+ * @brief Get unique address on accessibility bus
+ *
+ * @return class containing address
+ *
+ * @see Dali::Accessibility::Address
+ */
+ virtual Address GetAddress();
+
+ /**
+ * @brief Get accessibility object, which is "default label" for this object
+ */
+ virtual Accessible* GetDefaultLabel();
+
+ /**
+ * @brief Depute an object to perform provided gesture
+ *
+ * @param[in] gestureInfo structure describing the gesture
+ *
+ * @return true on success, false otherwise
+ *
+ * @see Dali::Accessibility::GestureInfo
+ */
+ virtual bool DoGesture(const GestureInfo &gestureInfo) = 0;
+
+ /**
+ * @brief Re-emits selected states of an Accessibility Object
+ *
+ * @param[in] states chosen states to re-emit
+ * @param[in] doRecursive if true all children of the Accessibility Object will also re-emit the states
+ */
+ void NotifyAccessibilityStateChange( Dali::Accessibility::States states, bool doRecursive );
+
+ /**
+ * @brief Get information about current object and all relations that connects
+ * it with other accessibility objects
+ *
+ * @return iterable collection of Relation objects
+ *
+ * @see Dali::Accessibility::Relation
+ */
+ virtual std::vector<Relation> GetRelationSet() = 0;
+
+ /**
+ * @brief Get all implemented interfaces
+ *
+ * @return collection of strings with implemented interfaces
+ */
+ std::vector< std::string > GetInterfaces();
+
+ /**
+ * @brief Check if object is on root level
+ */
+ bool GetIsOnRootLevel() const { return isOnRootLevel; }
+
+ /**
+ * @brief The method registers functor resposible for converting Actor into Accessible
+ * @param functor returning Accessible handle from Actor object
+ */
+ static void RegisterControlAccessibilityGetter( std::function< Accessible*( Dali::Actor ) > functor);
+
+ /**
+ * @brief Acquire Accessible object from Actor object
+ *
+ * @param[in] actor Actor object
+ * @param[in] root true, if it's top level object (window)
+ *
+ * @return handle to Accessible object
+ */
+ static Accessible* Get( Dali::Actor actor, bool root = false );
+
+protected:
+ Accessible();
+ Accessible( const Accessible& ) = delete;
+ Accessible( Accessible&& ) = delete;
+ Accessible& operator=( const Accessible& ) = delete;
+ Accessible& operator=( Accessible&& ) = delete;
+ std::shared_ptr< Bridge::Data > GetBridgeData();
+ static Dali::Actor GetHighlightActor();
+ static void SetHighlightActor(Dali::Actor actor);
+ static Dali::Actor GetCurrentlyHighlightedActor();
+ static void SetCurrentlyHighlightedActor(Dali::Actor);
+
+private:
+ friend class Bridge;
+
+ std::weak_ptr< Bridge::Data > bridgeData;
+ bool isOnRootLevel = false;
+};
+
+/**
+ * @brief Interface enabling to perform provided actions
+ */
+class Action : public virtual Accessible
+{
+public:
+ /**
+ * @brief Get name of action with given index
+ *
+ * @param[in] index index of action
+ *
+ * @return string with name of action
+ */
+ virtual std::string GetActionName( size_t index ) = 0;
+
+ /**
+ * @brief Get translated name of action with given index
+ *
+ * @param[in] index index of action
+ *
+ * @return string with name of action translated according to current translation domain
+ *
+ * @note translation is not supported in this version
+ */
+ virtual std::string GetLocalizedActionName( size_t index ) = 0;
+
+ /**
+ * @brief Get description of action with given index
+ *
+ * @param[in] index index of action
+ *
+ * @return string with description of action
+ */
+ virtual std::string GetActionDescription( size_t index ) = 0;
+
+ /**
+ * @brief Get key code binded to action with given index
+ *
+ * @param[in] index index of action
+ *
+ * @return string with key name
+ */
+ virtual std::string GetActionKeyBinding( size_t index ) = 0;
+
+ /**
+ * @brief Get number of provided actions
+ *
+ * @return unsigned integer with number of actions
+ */
+ virtual size_t GetActionCount() = 0;
+
+ /**
+ * @brief Perform an action with given index
+ *
+ * @param index index of action
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool DoAction( size_t index ) = 0;
+
+ /**
+ * @brief Perform an action with given name
+ *
+ * @param name name of action
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool DoAction( const std::string& name ) = 0;
+
+};
+
+/**
+ * @brief Interface enabling advanced quering of accessibility objects
+ *
+ * @note since all mathods can be implemented inside bridge,
+ * none methods have to be overrided
+ */
+class Collection : public virtual Accessible
+{
+public:
+};
+
+/**
+ * @brief Interface representing objects having screen coordinates
+ */
+class Component : public virtual Accessible
+{
+public:
+ /**
+ * @brief Get rectangle describing size
+ *
+ * @param[in] ctype enumeration with type of coordinate systems
+ *
+ * @return Rect<> object
+ *
+ * @see Dali::Rect
+ */
+ virtual Rect<> GetExtents( CoordType ctype ) = 0;
+
+ /**
+ * @brief Get layer current object is localized on
+ *
+ * @return enumeration pointing layer
+ *
+ * @see Dali::Accessibility::ComponentLayer
+ */
+ virtual ComponentLayer GetLayer() = 0;
+
+ /**
+ * @brief Get value of z-order
+ *
+ * @return value of z-order
+ */
+ virtual int16_t GetMdiZOrder() = 0;
+
+ /**
+ * @brief Set current object as "focused"
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool GrabFocus() = 0;
+
+ /**
+ * @brief Get value of alpha channel
+ *
+ * @return alpha channel value in range [0.0, 1.0]
+ */
+ virtual double GetAlpha() = 0;
+
+ /**
+ * @brief Set current object as "highlighted"
+ *
+ * The method assings "highlighted" state, simultaneously removing it
+ * from currently highlighted object.
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool GrabHighlight() = 0;
+
+ /**
+ * @brief Set current object as "unhighlighted"
+ *
+ * The method removes "highlighted" state from object.
+ *
+ * @return true on success, false otherwise
+ *
+ * @see Dali:Accessibility::State
+ */
+ virtual bool ClearHighlight() = 0;
+
+ /**
+ * @brief Get index of "highlighted" object
+ *
+ * @return The index of "highlighted" object
+ *
+ * @see Dali:Accessibility::State
+ */
+ virtual int GetHighlightIndex() = 0;
+
+ /**
+ * @brief Check whether object can be scrolled
+ *
+ * @return true if object is scrollable, false otherwise
+ *
+ * @see Dali:Accessibility::State
+ */
+ virtual bool IsScrollable();
+
+ /**
+ * @brief Get Accessible object containing given point
+ *
+ * @param[in] p two-dimensional point
+ * @param[in] ctype enumeration with type of coordinate system
+ *
+ * @return handle to last child of current object which contains given point
+ *
+ * @see Dali::Accessibility::Point
+ */
+ virtual Accessible* GetAccessibleAtPoint( Point p, CoordType ctype );
+
+ /**
+ * @brief Check if current object contains given point
+ *
+ * @param[in] p two-dimensional point
+ * @param[in] ctype enumeration with type of coordinate system
+ *
+ * @return handle to Accessible object
+ *
+ * @see Dali::Accessibility::Point
+ */
+ virtual bool Contains( Point p, CoordType ctype );
+};
+
+/**
+ * @brief Interface representing objects which can store numeric value
+ */
+class Value : public virtual Accessible
+{
+public:
+ /**
+ * @brief Get the lowest possible value
+ *
+ * @return double value
+ */
+ virtual double GetMinimum() = 0;
+
+ /**
+ * @brief Get current value
+ *
+ * @return double value
+ */
+ virtual double GetCurrent() = 0;
+
+ /**
+ * @brief Get the highest possible value
+ *
+ * @return double value
+ */
+ virtual double GetMaximum() = 0;
+
+ /**
+ * @brief Set value
+ *
+ * @param[in] val double value
+ *
+ * @return true if value could have been assigned, false otherwise
+ */
+ virtual bool SetCurrent( double val) = 0;
+
+ /**
+ * @brief Get the lowest increment that can be distinguished
+ *
+ * @return double value
+ */
+ virtual double GetMinimumIncrement() = 0;
+};
+
+/**
+ * @brief Interface representing objects which can store immutable texts
+ *
+ * @see Dali::Accessibility::EditableText
+ */
+class Text : public virtual Accessible
+{
+public:
+ /**
+ * @brief Get stored text in given range
+ *
+ * @param[in] startOffset index of first character
+ * @param[in] endOffset index of first character after the last one expected
+ *
+ * @return substring of stored text
+ */
+ virtual std::string GetText( size_t startOffset, size_t endOffset ) = 0;
+
+ /**
+ * @brief Get number of all stored characters
+ *
+ * @return number of characters
+ */
+ virtual size_t GetCharacterCount() = 0;
+
+ /**
+ * @brief Get caret offset
+ *
+ * @return Value of caret offset
+ */
+ virtual size_t GetCaretOffset() = 0;
+
+ /**
+ * @brief Set caret offset
+ *
+ * @param[in] caret offset
+ *
+ * @return True if successful
+ */
+ virtual bool SetCaretOffset(size_t offset) = 0;
+
+ /**
+ * @brief Get substring of stored text truncated in concrete gradation
+ *
+ * @param[in] offset position in stored text
+ * @param[in] boundary enumeration describing text gradation
+ *
+ * @return Range structure containing acquired text and offsets in original string
+ *
+ * @see Dali::Accessibility::Range
+ */
+ virtual Range GetTextAtOffset( size_t offset, TextBoundary boundary ) = 0;
+
+ /**
+ * @brief Get selected text
+ *
+ * @param[in] selectionNum selection index
+ * @note Currently only one selection (i.e. with index = 0) is supported
+ *
+ * @return Range structure containing acquired text and offsets in original string
+ *
+ * @see Dali::Accessibility::Range
+ */
+ virtual Range GetSelection( size_t selectionNum ) = 0;
+
+ /**
+ * @brief Remove selection
+ *
+ * @param[in] selectionNum selection index
+ * @note Currently only one selection (i.e. with index = 0) is supported
+ *
+ * @return bool on success, false otherwise
+ */
+ virtual bool RemoveSelection( size_t selectionNum ) = 0;
+
+ /**
+ * @brief Get selected text
+ *
+ * @param[in] selectionNum selection index
+ * @param[in] startOffset index of first character
+ * @param[in] endOffset index of first character after the last one expected
+ *
+ * @note Currently only one selection (i.e. with index = 0) is supported
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool SetSelection( size_t selectionNum, size_t startOffset, size_t endOffset ) = 0;
+};
+
+/**
+ * @brief Interface representing objects which can store editable texts
+ *
+ * @note Paste method is entirely implemented inside bridge
+ *
+ * @see Dali::Accessibility::EditableText
+ */
+class EditableText : public virtual Accessible
+{
+public:
+ /**
+ * @brief Copy text in range to system clipboard
+ *
+ * @param[in] startPosition index of first character
+ * @param[in] endPosition index of first character after the last one expected
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool CopyText( size_t startPosition, size_t endPosition ) = 0;
+
+ /**
+ * @brief Cut text in range to system clipboard
+ *
+ * @param[in] startPosition index of first character
+ * @param[in] endPosition index of first character after the last one expected
+ *
+ * @return true on success, false otherwise
+ */
+ virtual bool CutText( size_t startPosition, size_t endPosition ) = 0;
+};
+
+/**
+ * @brief minimalistic, always empty Accessible object with settable address
+ *
+ * For those situations, where you want to return address in different bridge
+ * (embedding for example), but the object itself ain't planned to be used otherwise.
+ * This object has null parent, no children, empty name and so on
+ */
+class EmptyAccessibleWithAddress : public virtual Accessible
+{
+public:
+ EmptyAccessibleWithAddress() = default;
+ EmptyAccessibleWithAddress( Address address ) : address( std::move( address ) ) {}
+
+ void SetAddress( Address address ) { this->address = std::move( address ); }
+
+ std::string GetName() override { return ""; }
+ std::string GetDescription() override { return ""; }
+ Accessible* GetParent() override { return nullptr; }
+ size_t GetChildCount() override { return 0; }
+ std::vector< Accessible* > GetChildren() override { return {}; }
+ Accessible* GetChildAtIndex( size_t index ) override
+ {
+ throw std::domain_error{"out of bounds index (" + std::to_string( index ) + ") - no children"};
+ }
+ size_t GetIndexInParent() override { return static_cast< size_t >( -1 ); }
+ Role GetRole() override { return {}; }
+ std::string GetRoleName() override;
+ States GetStates() override { return {}; }
+ Attributes GetAttributes() override { return {}; }
+ Address GetAddress() override
+ {
+ return address;
+ }
+ bool DoGesture(const GestureInfo &gestureInfo) override
+ {
+ return false;
+ }
+ std::vector<Relation> GetRelationSet() override
+ {
+ return {};
+ }
+
+private:
+ Address address;
+};
+
+}
+}
+
+#endif // DALI_INTERNAL_ATSPI_ACCESSIBILITY_IMPL_H
--- /dev/null
+#ifndef DALI_INTERNAL_ATSPI_ACCESSIBILITY_OPTIONAL_H
+#define DALI_INTERNAL_ATSPI_ACCESSIBILITY_OPTIONAL_H
+
+/*
+ * Copyright 2019 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// EXTERNAL INCLUDES
+#include <cassert>
+#include <new>
+#include <type_traits>
+#include <utility>
+
+/**
+ * Minimalistic implementation of standard library std::optional (c++17) for c++11 compiler.
+ *
+ * After project conversion to C++17 standard, this template class will be deleted and
+ * Optional will point to std::optional.
+ *
+ * Allowed operations (note, to make code simplier, than original, value class must have accessible copy and move constructor):
+ * - constructing empty (valueless) object
+ * - copying Optional (with and without value)
+ * - moving Optional (with and without value)
+ * - querying, if Optional has value (via explicit operator bool), for example:
+ * Optional<int> v = ...;
+ * if (v) ... // if v has value, then do something
+ * - accessing value (via operator *), for example:
+ * Optional<int> v = ...;
+ * auto z = *v; // z now has the same int, as v (copied)
+ * auto &y = *v; // y now has REFERENCE to int inside v, so modifying y modifies v
+ */
+
+template < typename A >
+class Optional
+{
+ union
+ {
+ A place;
+ };
+ bool hasValue = false;
+
+public:
+ /**
+ * @brief Empty constructor.
+ * Creates empty Optional object, which will be false in boolean context.
+ * So:
+ * \code{.cpp}
+ * Optional<int> o;
+ * if (o) printf("1\n");
+ * \endcode
+ * won't print 1.
+ */
+ Optional() {}
+
+ /**
+ * @brief Single element constructor, when implicit convertion can be applied.
+ * This constructor will be selected, when type of given argument (U) is
+ * implicitly convertable to expected type A. In other words following
+ * code must be valid:
+ * \code{.cpp}
+ * A foo() {
+ * return U();
+ * }
+ * \endcode
+ * @param a value held by Optional object will be initialized from a.
+ */
+ template < typename U = A, typename std::enable_if<
+ std::is_convertible< U&&, A >::value &&
+ std::is_constructible< A, U&& >::value &&
+ !std::is_same< typename std::decay< U >::type, Optional< A > >::value,
+ int* >::type = nullptr >
+ constexpr Optional( U&& a )
+ : place( std::forward< U >( a ) ),
+ hasValue( true )
+ {
+ }
+
+ /**
+ * @brief Single element constructor, when only explicit convertion can be applied.
+ * This constructor will be selected, when type of given argument (U) is
+ * convertable to expected type A.
+ * @param a value held by Optional object will be initialized from a.
+ */
+ template < typename U = A, typename std::enable_if<
+ !std::is_convertible< U&&, A >::value &&
+ std::is_constructible< A, U&& >::value &&
+ !std::is_same< typename std::decay< U >::type, Optional< A > >::value,
+ int* >::type = nullptr >
+ explicit constexpr Optional( U&& a )
+ : place( std::forward< U >( a ) ),
+ hasValue( true )
+ {
+ }
+
+ /**
+ * @brief Copy constructor.
+ * @param v Optional value to copy from. Will cause to copy data held by object v,
+ * if v has data.
+ */
+ Optional( const Optional& v ) : hasValue( v.hasValue )
+ {
+ if( hasValue )
+ {
+ new( &place ) A( v.place );
+ }
+ }
+
+ /**
+ * @brief Move constructor.
+ * @param v Optional value to copy from. Will move data help by v, if any.
+ * After construction \code{.cpp} bool(v) \endcode will be false.
+ */
+ Optional( Optional&& v ) : hasValue( v.hasValue )
+ {
+ if( hasValue )
+ {
+ new( &place ) A( std::move( v.place ) );
+ }
+ }
+
+ /**
+ * @brief Destructor.
+ */
+ ~Optional()
+ {
+ if( hasValue )
+ {
+ place.~A();
+ }
+ }
+
+ /**
+ * @brief Explicit bool operator
+ * Will return true if and only if object is helding data.
+ */
+ explicit operator bool() const
+ {
+ return hasValue;
+ }
+
+ /**
+ * @brief Accessor (*) operator
+ * Will return modifiable reference to held object. Will assert, if not object is held.
+ */
+ A& operator*()
+ {
+ assert( hasValue );
+ return place;
+ }
+
+ /**
+ * @brief Accessor (*) const operator
+ * Will return const reference to held object. Will assert, if not object is held.
+ */
+ const A& operator*() const
+ {
+ assert( hasValue );
+ return place;
+ }
+
+ /**
+ * @brief Accessor (->) operator
+ * Will return pointer to held object allowing access to the value's members.
+ * Will assert, if not object is held.
+ */
+ A* operator->()
+ {
+ assert( hasValue );
+ return &place;
+ }
+
+ /**
+ * @brief Accessor (->) operator
+ * Will return pointer to (const) held object allowing access to the value's members.
+ * Will assert, if not object is held.
+ */
+ const A* operator->() const
+ {
+ assert( hasValue );
+ return &place;
+ }
+
+ /**
+ * @brief Assignment operator
+ * Will copy held value from v, if any.
+ * @param v Value to copy from
+ */
+ Optional& operator=( const Optional& v )
+ {
+ if( this != &v )
+ {
+ if( hasValue != v.hasValue )
+ {
+ if( v.hasValue )
+ {
+ new( &place ) A( v.place );
+ }
+ else
+ {
+ place.~A();
+ }
+ hasValue = v.hasValue;
+ }
+ else if( hasValue )
+ {
+ place = v.place;
+ }
+ }
+ return *this;
+ }
+
+ /**
+ * @brief Assignment move operator
+ * Will move held value from v, if any. In all cases v won't held a value
+ * after assignment is done.
+ * @param v Value to copy from
+ */
+ Optional& operator=( Optional&& v )
+ {
+ if( this != &v )
+ {
+ if( hasValue != v.hasValue )
+ {
+ if( v.hasValue )
+ {
+ new( &place ) A( std::move( v.place ) );
+ }
+ else
+ {
+ place.~A();
+ }
+ hasValue = v.hasValue;
+ }
+ else if( hasValue )
+ {
+ place = std::move( v.place );
+ }
+ }
+ return *this;
+ }
+
+ /**
+ * @brief Assignment operator from value of type held.
+ * Will initialize held value from given parameter a.
+ * Type of the parameter must be the same (barring cv convertions),
+ * as the type of the value held.
+ * @param a Value to copy from
+ */
+ template < class U, class = typename std::enable_if<
+ std::is_same< typename std::remove_reference< U >::type, A >::value &&
+ std::is_constructible< A, U >::value &&
+ std::is_assignable< A&, U >::value >::type >
+ Optional& operator=( U&& a )
+ {
+ if( hasValue )
+ {
+ place = std::forward< U >( a );
+ }
+ else
+ {
+ hasValue = true;
+ new( &place ) A( std::forward< U >( a ) );
+ }
+ return *this;
+ }
+};
+
+#endif // DALI_INTERNAL_ATSPI_ACCESSIBILITY_OPTIONAL_H
--- /dev/null
+#ifndef DALI_ATSPI_ACCESSIBILITY_H\r
+#define DALI_ATSPI_ACCESSIBILITY_H\r
+/*\r
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ *\r
+ */\r
+\r
+// EXTERNAL INCLUDES\r
+\r
+#include <atomic>\r
+#include <bitset>\r
+#include <exception>\r
+#include <functional>\r
+#include <memory>\r
+#include <string>\r
+#include <map>\r
+#include <unordered_map>\r
+#include <vector>\r
+#include <list>\r
+#include <cassert>\r
+#include <sstream>\r
+#include <string.h>\r
+\r
+// INTERNAL INCLUDES\r
+#include <dali/public-api/dali-adaptor-common.h>\r
+\r
+namespace Dali\r
+{\r
+namespace Accessibility\r
+{\r
+\r
+/**\r
+ * @brief Enumeration describing a relation between accessible objects\r
+ * 1 to 0..N relation model is supported. By default relation is not symmetrical.\r
+ * Symmetry must be explicitly maintained.\r
+ */\r
+enum class RelationType : uint32_t\r
+{\r
+ NULL_OF, ///< Null Relation.\r
+ LABEL_FOR, ///< Label For.\r
+ LABELLED_BY, ///< Labelled By.\r
+ CONTROLLER_FOR, ///< Controller For.\r
+ CONTROLLED_BY, ///< Controlled By.\r
+ MEMBER_OF, ///< Member Of.\r
+ TOOLTIP_FOR, ///< ToolTip For.\r
+ NODE_CHILD_OF, ///< Node Child Of.\r
+ NODE_PARENT_OF, ///< Node Parent Of.\r
+ EXTENDED, ///< Extended.\r
+ FLOWS_TO, ///< Flows To.\r
+ FLOWS_FROM, ///< Flows From.\r
+ SUBWINDOW_OF, ///< Sub Window Of.\r
+ EMBEDS, ///< Embeds.\r
+ EMBEDDED_BY, ///< Embedded By.\r
+ POPUP_FOR, ///< Popup For\r
+ PARENT_WINDOW_OF, ///< Parent Window Of.\r
+ DESCRIPTION_FOR, ///< Description For.\r
+ DESCRIBED_BY, ///< Described By.\r
+ DETAILS, ///< Details.\r
+ DETAILS_FOR, ///< Details For.\r
+ ERROR_MESSAGE, ///< Error Message.\r
+ ERROR_FOR, ///< Error For.\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing if coordinates are relative to screen or window\r
+ * @see Accessibility::Component::GetExtents\r
+ * @see Accessibility::Component::Contains\r
+ */\r
+enum class CoordType\r
+{\r
+ SCREEN, ///< Screen.\r
+ WINDOW ///< Window.\r
+};\r
+\r
+/**\r
+ * @brief Enumeration indicating relative stacking order\r
+ * ComponentLayer allows to describe visibility of all parts of UI\r
+ * basing on the concrete stacking order\r
+ * @see Accessibility::Component::GetLayer\r
+ * @note currently only ComponentLayer::Window is supported\r
+ */\r
+enum class ComponentLayer\r
+{\r
+ INVALID, ///< Invalid.\r
+ BACKGROUND, ///< Background.\r
+ CANVAS, ///< Canvas.\r
+ WIDGET, ///< Widget.\r
+ MDI, ///< MDI.\r
+ POPUP, ///< Popup.\r
+ OVERLAY, ///< Overlay.\r
+ WINDOW, ///< Window.\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing role of the Accessibility object\r
+ * Object can be described by only one role.\r
+ * @see Accessibility::Accessible::GetRole\r
+ */\r
+enum class Role : uint32_t\r
+{\r
+ INVALID,\r
+ ACCELERATOR_LABEL,\r
+ ALERT,\r
+ ANIMATION,\r
+ ARROW,\r
+ CALENDAR,\r
+ CANVAS,\r
+ CHECK_BOX,\r
+ CHECK_MENU_ITEM,\r
+ COLOR_CHOOSER,\r
+ COLUMN_HEADER,\r
+ COMBO_BOX,\r
+ DATE_EDITOR,\r
+ DESKTOP_ICON,\r
+ DESKTOP_FRAME,\r
+ DIAL,\r
+ DIALOG,\r
+ DIRECTORY_PANE,\r
+ DRAWING_AREA,\r
+ FILE_CHOOSER,\r
+ FILLER,\r
+ FOCUS_TRAVERSABLE,\r
+ FONT_CHOOSER,\r
+ FRAME,\r
+ GLASS_PANE,\r
+ HTML_CONTAINER,\r
+ ICON,\r
+ IMAGE,\r
+ INTERNAL_FRAME,\r
+ LABEL,\r
+ LAYERED_PANE,\r
+ LIST,\r
+ LIST_ITEM,\r
+ MENU,\r
+ MENU_BAR,\r
+ MENU_ITEM,\r
+ OPTION_PANE,\r
+ PAGE_TAB,\r
+ PAGE_TAB_LIST,\r
+ PANEL,\r
+ PASSWORD_TEXT,\r
+ POPUP_MENU,\r
+ PROGRESS_BAR,\r
+ PUSH_BUTTON,\r
+ RADIO_BUTTON,\r
+ RADIO_MENU_ITEM,\r
+ ROOT_PANE,\r
+ ROW_HEADER,\r
+ SCROLL_BAR,\r
+ SCROLL_PANE,\r
+ SEPARATOR,\r
+ SLIDER,\r
+ SPIN_BUTTON,\r
+ SPLIT_PANE,\r
+ STATUS_BAR,\r
+ TABLE,\r
+ TABLE_CELL,\r
+ TABLE_COLUMN_HEADER,\r
+ TABLE_ROW_HEADER,\r
+ TEAROFF_MENU_ITEM,\r
+ TERMINAL,\r
+ TEXT,\r
+ TOGGLE_BUTTON,\r
+ TOOL_BAR,\r
+ TOOL_TIP,\r
+ TREE,\r
+ TREE_TABLE,\r
+ UNKNOWN,\r
+ VIEWPORT,\r
+ WINDOW,\r
+ EXTENDED,\r
+ HEADER,\r
+ FOOTER,\r
+ PARAGRAPH,\r
+ RULER,\r
+ APPLICATION,\r
+ AUTOCOMPLETE,\r
+ EDITBAR,\r
+ EMBEDDED,\r
+ ENTRY,\r
+ CHART,\r
+ CAPTION,\r
+ DOCUMENT_FRAME,\r
+ HEADING,\r
+ PAGE,\r
+ SECTION,\r
+ REDUNDANT_OBJECT,\r
+ FORM,\r
+ LINK,\r
+ INPUT_METHOD_WINDOW,\r
+ TABLE_ROW,\r
+ TREE_ITEM,\r
+ DOCUMENT_SPREADSHEET,\r
+ DOCUMENT_PRESENTATION,\r
+ DOCUMENT_TEXT,\r
+ DOCUMENT_WEB,\r
+ DOCUMENT_EMAIL,\r
+ COMMENT,\r
+ LIST_BOX,\r
+ GROUPING,\r
+ IMAGE_MAP,\r
+ NOTIFICATION,\r
+ INFO_BAR,\r
+ LEVEL_BAR,\r
+ TITLE_BAR,\r
+ BLOCK_QUOTE,\r
+ AUDIO,\r
+ VIDEO,\r
+ DEFINITION,\r
+ ARTICLE,\r
+ LANDMARK,\r
+ LOG,\r
+ MARQUEE,\r
+ MATH,\r
+ RATING,\r
+ TIMER,\r
+ STATIC,\r
+ MATH_FRACTION,\r
+ MATH_ROOT,\r
+ SUBSCRIPT,\r
+ SUPERSCRIPT,\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing states of the Accessibility object\r
+ * Object can be in many states at the same time.\r
+ * @see Accessibility::Accessible::GetStates\r
+ */\r
+enum class State : uint32_t\r
+{\r
+ INVALID,\r
+ ACTIVE,\r
+ ARMED,\r
+ BUSY,\r
+ CHECKED,\r
+ COLLAPSED,\r
+ DEFUNCT,\r
+ EDITABLE,\r
+ ENABLED,\r
+ EXPANDABLE,\r
+ EXPANDED,\r
+ FOCUSABLE,\r
+ FOCUSED,\r
+ HAS_TOOLTIP,\r
+ HORIZONTAL,\r
+ ICONIFIED,\r
+ MODAL,\r
+ MULTI_LINE,\r
+ MULTI_SELECTABLE,\r
+ OPAQUE,\r
+ PRESSED,\r
+ RESIZEABLE,\r
+ SELECTABLE,\r
+ SELECTED,\r
+ SENSITIVE,\r
+ SHOWING,\r
+ SINGLE_LINE,\r
+ STALE,\r
+ TRANSIENT,\r
+ VERTICAL,\r
+ VISIBLE,\r
+ MANAGES_DESCENDANTS,\r
+ INDETERMINATE,\r
+ REQUIRED,\r
+ TRUNCATED,\r
+ ANIMATED,\r
+ INVALID_ENTRY,\r
+ SUPPORTS_AUTOCOMPLETION,\r
+ SELECTABLE_TEXT,\r
+ IS_DEFAULT,\r
+ VISITED,\r
+ CHECKABLE,\r
+ HAS_POPUP,\r
+ READ_ONLY,\r
+ HIGHLIGHTED,\r
+ HIGHLIGHTABLE,\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing change of text object\r
+ */\r
+enum class TextChangedState : uint32_t\r
+{\r
+ INSERT,\r
+ DELETE,\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing change of object property\r
+ */\r
+enum class ObjectPropertyChangeEvent\r
+{\r
+ NAME,\r
+ DESCRIPTION,\r
+ VALUE,\r
+ ROLE,\r
+ PARENT,\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing change of window object\r
+ * @see Accessibility::Accessible::Emit\r
+ */\r
+enum class WindowEvent\r
+{\r
+ PROPERTY_CHANGE,\r
+ MINIMIZE,\r
+ MAXIMIZE,\r
+ RESTORE,\r
+ CLOSE,\r
+ CREATE,\r
+ REPARENT,\r
+ DESKTOP_CREATE,\r
+ DESKTOP_DESTROY,\r
+ DESTROY,\r
+ ACTIVATE,\r
+ DEACTIVATE,\r
+ RAISE,\r
+ LOWER,\r
+ MOVE,\r
+ RESIZE,\r
+ SHADE,\r
+ UU_SHADE,\r
+ RESTYLE,\r
+};\r
+\r
+/**\r
+ * @brief Enumeration used to acquire bounded text from accessible object having textual content.\r
+ * @see Accessibility::Text::GetTextAtOffset\r
+ * @note Currently only TextBoundary::Character is supported\r
+ */\r
+enum class TextBoundary : uint32_t\r
+{\r
+ CHARACTER, ///> Only one character is acquired.\r
+ WORD, ///> Not supported.\r
+ SENTENCE, ///> Not supported.\r
+ LINE, ///> Not supported.\r
+ PARAGRAPH, ///> Not supported.\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing type of gesture\r
+ * @see Accessibility::Accessible::DoGesture\r
+ */\r
+enum class Gesture : int32_t\r
+{\r
+ ONE_FINGER_HOVER,\r
+ TWO_FINGER_HOVER,\r
+ THREE_FINGER_HOVER,\r
+ ONE_FINGER_FLICK_LEFT,\r
+ ONE_FINGER_FLICK_RIGHT,\r
+ ONE_FINGER_FLICK_UP,\r
+ ONE_FINGER_FLICK_DOWN,\r
+ TWO_FINGERS_FLICK_LEFT,\r
+ TWO_FINGERS_FLICK_RIGHT,\r
+ TWO_FINGERS_FLICK_UP,\r
+ TWO_FINGERS_FLICK_DOWN,\r
+ THREE_FINGERS_FLICK_LEFT,\r
+ THREE_FINGERS_FLICK_RIGHT,\r
+ THREE_FINGERS_FLICK_UP,\r
+ THREE_FINGERS_FLICK_DOWN,\r
+ ONE_FINGER_SINGLE_TAP,\r
+ ONE_FINGER_DOUBLE_TAP,\r
+ ONE_FINGER_TRIPLE_TAP,\r
+ TWO_FINGERS_SINGLE_TAP,\r
+ TWO_FINGERS_DOUBLE_TAP,\r
+ TWO_FINGERS_TRIPLE_TAP,\r
+ THREE_FINGERS_SINGLE_TAP,\r
+ THREE_FINGERS_DOUBLE_TAP,\r
+ THREE_FINGERS_TRIPLE_TAP,\r
+ ONE_FINGER_FLICK_LEFT_RETURN,\r
+ ONE_FINGER_FLICK_RIGHT_RETURN,\r
+ ONE_FINGER_FLICK_UP_RETURN,\r
+ ONE_FINGER_FLICK_DOWN_RETURN,\r
+ TWO_FINGERS_FLICK_LEFT_RETURN,\r
+ TWO_FINGERS_FLICK_RIGHT_RETURN,\r
+ TWO_FINGERS_FLICK_UP_RETURN,\r
+ TWO_FINGERS_FLICK_DOWN_RETURN,\r
+ THREE_FINGERS_FLICK_LEFT_RETURN,\r
+ THREE_FINGERS_FLICK_RIGHT_RETURN,\r
+ THREE_FINGERS_FLICK_UP_RETURN,\r
+ THREE_FINGERS_FLICK_DOWN_RETURN,\r
+ ONE_FINGER_DOUBLE_TAP_N_HOLD,\r
+ TWO_FINGERS_DOUBLE_TAP_N_HOLD,\r
+ THREE_FINGERS_DOUBLE_TAP_N_HOLD,\r
+ MAX_COUNT\r
+};\r
+\r
+/**\r
+ * @brief Enumeration indicating current state of gesture\r
+ * @see Dali::Accessibility::GestureInfo\r
+ */\r
+enum class GestureState : int32_t\r
+{\r
+ BEGIN,\r
+ ONGOING,\r
+ ENDED,\r
+ ABORTED\r
+};\r
+\r
+/**\r
+ * @brief Enumeration of ReadingInfoType\r
+ */\r
+enum class ReadingInfoType\r
+{\r
+ NAME,\r
+ ROLE,\r
+ DESCRIPTION,\r
+ STATE\r
+};\r
+\r
+/**\r
+ * @brief Helper class for storing values treated as bit sets\r
+ * This class provides all bitset-like methods for bitset size larger, than long long int\r
+ * @see Dali::Accessibility::Accessible::GetStates\r
+ * @see Dali::Accessibility::Accessible::GetRoles\r
+ */\r
+template < size_t I, typename S >\r
+class BitSets\r
+{\r
+ std::array< uint32_t, I > data;\r
+\r
+ void _set()\r
+ {\r
+ }\r
+\r
+ static constexpr bool _accepts()\r
+ {\r
+ return true;\r
+ }\r
+\r
+ template < typename T > static constexpr bool _accepts()\r
+ {\r
+ return std::is_enum< T >::value;\r
+ }\r
+\r
+ template < typename T, typename T2, typename ... ARGS > static constexpr bool _accepts()\r
+ {\r
+ return std::is_enum< T >::value && _accepts< T2, ARGS... >();\r
+ }\r
+\r
+ template < typename T, typename ... ARGS > void _set(T t, ARGS ... args)\r
+ {\r
+ (*this)[t] = true;\r
+ _set(args...);\r
+ }\r
+public:\r
+ BitSets()\r
+ {\r
+ for( auto& u : data )\r
+ {\r
+ u = 0;\r
+ }\r
+ }\r
+ BitSets(const BitSets&) = default;\r
+ BitSets(BitSets&&) = default;\r
+\r
+ template < typename T, typename ... ARGS, typename std::enable_if< _accepts< T, ARGS... >() >::type * = nullptr >BitSets( T t, ARGS ... args )\r
+ {\r
+ for( auto& u : data )\r
+ u = 0;\r
+ _set( t, args... );\r
+ }\r
+\r
+ explicit BitSets( std::array< uint32_t, I > d )\r
+ {\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ data[i] = d[i];\r
+ }\r
+ }\r
+\r
+ explicit BitSets( std::array< int32_t, I > d )\r
+ {\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ data[i] = static_cast<uint32_t>( d[i] );\r
+ }\r
+ }\r
+\r
+ BitSets& operator = (const BitSets&) = default;\r
+ BitSets& operator = (BitSets&&) = default;\r
+\r
+ struct reference\r
+ {\r
+ std::array< uint32_t, I >& data;\r
+ size_t pos;\r
+\r
+ reference& operator=( reference r )\r
+ {\r
+ (*this) = static_cast<bool>( r );\r
+ return *this;\r
+ }\r
+\r
+ reference& operator=( bool v )\r
+ {\r
+ if( v )\r
+ {\r
+ data[pos / 32] |= 1 << (pos & 31);\r
+ }\r
+ else\r
+ {\r
+ data[pos / 32] &= ~(1 << (pos & 31));\r
+ }\r
+ return *this;\r
+ }\r
+\r
+ operator bool() const\r
+ {\r
+ auto i = static_cast<size_t>( pos );\r
+ return (data[i / 32] & (1 << (i & 31))) != 0;\r
+ }\r
+ };\r
+\r
+ reference operator[]( S index )\r
+ {\r
+ return { data, static_cast<size_t>( index ) };\r
+ }\r
+\r
+ bool operator[]( S index ) const\r
+ {\r
+ auto i = static_cast<size_t>( index );\r
+ return ( data[i / 32] & ( 1 << (i & 31) ) ) != 0;\r
+ }\r
+\r
+ std::array< uint32_t, I > GetRawData() const\r
+ {\r
+ return data;\r
+ }\r
+\r
+ BitSets operator|( BitSets b ) const\r
+ {\r
+ BitSets r;\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ r.data[i] = data[i] | b.data[i];\r
+ }\r
+ return r;\r
+ }\r
+\r
+ BitSets operator^( BitSets b ) const\r
+ {\r
+ BitSets r;\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ r.data[i] = data[i] ^ b.data[i];\r
+ }\r
+ return r;\r
+ }\r
+\r
+ BitSets operator&( BitSets b ) const\r
+ {\r
+ BitSets r;\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ r.data[i] = data[i] & b.data[i];\r
+ }\r
+ return r;\r
+ }\r
+\r
+ bool operator==( BitSets b ) const\r
+ {\r
+ for( auto i = 0u; i < I; ++i )\r
+ {\r
+ if( data[i] != b.data[i] )\r
+ {\r
+ return false;\r
+ }\r
+ }\r
+ return true;\r
+ }\r
+\r
+ bool operator!=(BitSets b) const\r
+ {\r
+ return !((*this) == b);\r
+ }\r
+\r
+ explicit operator bool() const\r
+ {\r
+ for( auto& u : data )\r
+ {\r
+ if( u )\r
+ {\r
+ return true;\r
+ }\r
+ }\r
+ return false;\r
+ }\r
+\r
+ size_t size() const\r
+ {\r
+ return I;\r
+ }\r
+};\r
+\r
+using ReadingInfoTypes = BitSets<1, ReadingInfoType>;\r
+using States = BitSets< 2, State >;\r
+using Attributes = std::unordered_map< std::string, std::string >;\r
+\r
+/**\r
+ * @brief Class representing unique object address on accessibility bus\r
+ * @see Dali::Accessibility::Accessible::GetAddress\r
+ */\r
+class Address\r
+{\r
+public:\r
+ Address() = default;\r
+\r
+ Address( std::string bus, std::string path )\r
+ : mBus(std::move(bus)),\r
+ mPath(std::move(path))\r
+ {\r
+ }\r
+\r
+ explicit operator bool() const\r
+ {\r
+ return !mPath.empty();\r
+ }\r
+\r
+ std::string ToString() const\r
+ {\r
+ return *this ? mBus + ":" + mPath : "::null";\r
+ }\r
+\r
+ const std::string& GetBus() const;\r
+\r
+ const std::string& GetPath() const\r
+ {\r
+ return mPath;\r
+ }\r
+\r
+ bool operator == ( const Address& a ) const\r
+ {\r
+ return mBus == a.mBus && mPath == a.mPath;\r
+ }\r
+\r
+ bool operator != ( const Address& a ) const\r
+ {\r
+ return !(*this == a);\r
+ }\r
+\r
+private:\r
+ mutable std::string mBus, mPath;\r
+};\r
+\r
+/**\r
+ * @brief Enumeration describing type of key event\r
+ * @see Adaptor::AccessibilityObserver::OnAccessibleKeyEvent\r
+ */\r
+enum class KeyEventType\r
+{\r
+ KEY_PRESSED,\r
+ KEY_RELEASED,\r
+};\r
+\r
+/**\r
+ * @brief Enumeration with human readable values describing state of event\r
+ * @see Dali::Accessibility::Bridge::Emit\r
+ */\r
+enum class Consumed\r
+{\r
+ NO,\r
+ YES\r
+};\r
+\r
+/**\r
+ * @brief Helper class representing two dimensional point with integer coordinates\r
+ */\r
+struct Point\r
+{\r
+ int x = 0;\r
+ int y = 0;\r
+\r
+ Point() = default;\r
+\r
+ Point( int x, int y )\r
+ : x(x),\r
+ y(y)\r
+ {\r
+ }\r
+\r
+ bool operator==(Point p) const\r
+ {\r
+ return x == p.x && y == p.y;\r
+ }\r
+ bool operator!=(Point p) const\r
+ {\r
+ return !(*this == p);\r
+ }\r
+};\r
+\r
+/**\r
+* @brief Helper class representing size of rectangle object with usage of two integer values\r
+*/\r
+struct Size\r
+{\r
+ int width = 0;\r
+ int height = 0;\r
+\r
+ Size() = default;\r
+\r
+ Size(int w, int h)\r
+ : width(w),\r
+ height(h)\r
+ {\r
+ }\r
+\r
+ bool operator==( Size p ) const\r
+ {\r
+ return width == p.width && height == p.height;\r
+ }\r
+\r
+ bool operator!=( Size p ) const\r
+ {\r
+ return !(*this == p);\r
+ }\r
+};\r
+\r
+/**\r
+ * @brief Helper class used to store data related with Accessibility::Text interface\r
+ * @see Dali::Accessibility::Text::GetTextAtOffset\r
+ * @see Dali::Accessibility::Text::GetSelection\r
+ */\r
+struct Range\r
+{\r
+ int32_t startOffset = 0;\r
+ int32_t endOffset = 0;\r
+ std::string content;\r
+\r
+ Range() = default;\r
+\r
+ Range(size_t start, size_t end)\r
+ : startOffset(start),\r
+ endOffset(end)\r
+ {\r
+ }\r
+\r
+ Range(size_t start, size_t end, std::string content)\r
+ : startOffset(start),\r
+ endOffset(end),\r
+ content(content)\r
+ {\r
+ }\r
+};\r
+\r
+/**\r
+ * @brief Structure containing all values needed to invoke Accessible::DoGesture\r
+ * type : numerated gesture type\r
+ * xBeg, yBeg : point where gesture begins\r
+ * xEnd, yEnd : point where gesture ends\r
+ * state : enumerated state of gesture\r
+ * eventTime : time when event occured\r
+ * @see Dali::Accessibility::Accessible::DoGesture\r
+ */\r
+struct GestureInfo\r
+{\r
+ GestureInfo() = default;\r
+ GestureInfo(Gesture type, int32_t xBeg, int32_t xEnd, int32_t yBeg, int32_t yEnd, GestureState state, uint32_t eventTime)\r
+ : type(type),\r
+ xBeg(xBeg),\r
+ xEnd(xEnd),\r
+ yBeg(yBeg),\r
+ yEnd(yEnd),\r
+ state(state),\r
+ eventTime(eventTime)\r
+ {\r
+ }\r
+\r
+ Gesture type{};\r
+ int32_t xBeg{};\r
+ int32_t xEnd{};\r
+ int32_t yBeg{};\r
+ int32_t yEnd{};\r
+ GestureState state{};\r
+ uint32_t eventTime{};\r
+};\r
+\r
+/**\r
+ * @brief Class representing accessibility relations\r
+ * Class connecting one source object with multiple target objects with usage\r
+ * of specific relation type.\r
+ * @note std::string representing source and targets are string values of Accessibility::Address\r
+ * @see Dali::Accessibility::Accessible::Address\r
+ * @see Dali::Accessibility::Accessible::RelationType\r
+ */\r
+struct Relation\r
+{\r
+Relation(RelationType relationType, std::vector<Address> targets)\r
+: relationType(relationType),\r
+ targets(targets)\r
+{\r
+}\r
+\r
+RelationType relationType;\r
+std::vector<Address> targets;\r
+};\r
+\r
+} // namespace Accessibility\r
+} // namespace Dali\r
+\r
+#endif // DALI_ATSPI_ACCESSIBILITY_H\r
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+ // CLASS HEADER
+
+ //INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-common.h>
+#include <third-party/libunibreak/wordbreak.h>
+#include <third-party/libunibreak/linebreak.h>
+
+using namespace Dali::Accessibility;
+
+std::vector< std::string > Accessible::GetInterfaces()
+{
+ std::vector< std::string > tmp;
+ tmp.push_back(AtspiDbusInterfaceAccessible);
+ if (dynamic_cast<Collection*>(this))
+ {
+ tmp.push_back(AtspiDbusInterfaceCollection);
+ }
+ if (dynamic_cast<Text*>(this))
+ {
+ tmp.push_back(AtspiDbusInterfaceText);
+ }
+ if (dynamic_cast<Value*>(this))
+ {
+ tmp.push_back(AtspiDbusInterfaceValue);
+ }
+ if (dynamic_cast<Component*>(this))
+ {
+ tmp.push_back(AtspiDbusInterfaceComponent);
+ }
+ if (auto d = dynamic_cast<Action*>(this))
+ {
+ if (d->GetActionCount() > 0)
+ {
+ tmp.push_back(AtspiDbusInterfaceAction);
+ }
+ }
+ return tmp;
+}
+
+Accessible::Accessible()
+{
+}
+
+Accessible::~Accessible()
+{
+ auto b = bridgeData.lock();
+ if (b)
+ b->knownObjects.erase(this);
+}
+
+void Accessible::EmitActiveDescendantChanged(Accessible* obj, Accessible* child)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitActiveDescendantChanged(obj, child);
+ }
+}
+
+void Accessible::EmitStateChanged(State state, int newValue1, int newValue2)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitStateChanged(this, state, newValue1, newValue2);
+ }
+}
+
+void Accessible::EmitShowing(bool showing)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitStateChanged(this, State::SHOWING, showing ? 1 : 0, 0);
+ }
+}
+
+void Accessible::EmitVisible(bool visible)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitStateChanged(this, State::VISIBLE, visible ? 1 : 0, 0);
+ }
+}
+
+void Accessible::EmitHighlighted(bool set)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitStateChanged(this, State::HIGHLIGHTED, set ? 1 : 0, 0);
+ }
+}
+
+void Accessible::EmitFocused(bool set)
+{
+ if (auto b = GetBridgeData()) {
+ b->bridge->EmitStateChanged(this, State::FOCUSED, set ? 1 : 0, 0);
+ }
+}
+void Accessible::EmitTextInserted(unsigned int position, unsigned int length, const std::string& content)
+{
+ if (auto b = GetBridgeData()) {
+ b->bridge->EmitTextChanged(this, TextChangedState::INSERT, position, length, content);
+ }
+}
+void Accessible::EmitTextDeleted(unsigned int position, unsigned int length, const std::string& content)
+{
+ if (auto b = GetBridgeData()) {
+ b->bridge->EmitTextChanged(this, TextChangedState::DELETE, position, length, content);
+ }
+}
+void Accessible::EmitTextCaretMoved(unsigned int cursorPosition)
+{
+ if (auto b = GetBridgeData()) {
+ b->bridge->EmitCaretMoved(this, cursorPosition);
+ }
+}
+void Accessible::Emit(WindowEvent we, unsigned int detail1)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->Emit(this, we, detail1);
+ }
+}
+void Accessible::Emit(ObjectPropertyChangeEvent ev)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->Emit(this, ev);
+ }
+}
+
+void Accessible::EmitBoundsChanged(Rect<> rect)
+{
+ if (auto b = GetBridgeData())
+ {
+ b->bridge->EmitBoundsChanged(this, rect);
+ }
+}
+
+std::vector< Accessible* > Accessible::GetChildren()
+{
+ std::vector< Accessible* > tmp(GetChildCount());
+ for (auto i = 0u; i < tmp.size(); ++i)
+ {
+ tmp[i] = GetChildAtIndex(i);
+ }
+ return tmp;
+}
+
+std::shared_ptr< Bridge::Data > Accessible::GetBridgeData()
+{
+ auto b = bridgeData.lock();
+ if (!b)
+ {
+ auto p = Bridge::GetCurrentBridge();
+ b = p->data;
+ }
+ return b;
+}
+
+Address Accessible::GetAddress()
+{
+ auto b = bridgeData.lock();
+ if (!b)
+ {
+ b = GetBridgeData();
+ if (b)
+ b->bridge->RegisterOnBridge(this);
+ }
+ std::ostringstream tmp;
+ tmp << this;
+ return { b ? b->busName : "", tmp.str() };
+}
+
+void Bridge::RegisterOnBridge(Accessible* obj)
+{
+ assert(!obj->bridgeData.lock() || obj->bridgeData.lock() == data);
+ if (!obj->bridgeData.lock())
+ {
+ assert(data);
+ data->knownObjects.insert(obj);
+ obj->bridgeData = data;
+ }
+}
+
+bool Accessible::IsProxy()
+{
+ return false;
+}
+
+Accessible* Accessible::GetDefaultLabel()
+{
+ return this;
+}
+
+void Accessible::NotifyAccessibilityStateChange(Dali::Accessibility::States states, bool doRecursive)
+{
+ if (auto b = GetBridgeData())
+ {
+ auto s = GetStates() & states;
+ for (auto i = 0u; i < s.size(); i++)
+ {
+ auto index = static_cast<Dali::Accessibility::State>(i);
+ if (s[index])
+ b->bridge->EmitStateChanged(this, index, 1, 0);
+ }
+ if (doRecursive)
+ {
+ auto children = GetChildren();
+ for (auto c : children)
+ c->NotifyAccessibilityStateChange(states, doRecursive);
+ }
+ }
+}
+
+void Accessible::FindWordSeparationsUtf8(const utf8_t* s, size_t length, const char* language, char* breaks)
+{
+ set_wordbreaks_utf8(s, length, language, breaks);
+}
+
+void Accessible::FindLineSeparationsUtf8(const utf8_t* s, size_t length, const char* language, char* breaks)
+{
+ set_linebreaks_utf8(s, length, language, breaks);
+}
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include <dali/devel-api/adaptor-framework/atspi-accessibility.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-impl.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-common.h>
+
+#include <mutex>
+#include <Eldbus.h>
+#include <Ecore_Input.h>
+#include <dali/integration-api/debug.h>
+
+void Dali::AtspiAccessibility::Pause()
+{
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ bridge->Pause();
+ }
+}
+
+void Dali::AtspiAccessibility::Resume()
+{
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ bridge->Resume();
+ }
+}
+
+void Dali::AtspiAccessibility::Say( const std::string& text, bool discardable, std::function<void( std::string )> callback )
+{
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ bridge->Say(text, discardable, callback);
+ }
+}
+
+int Dali::AtspiAccessibility::SetForcefully( bool turnOn )
+{
+ if( turnOn )
+ {
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ bridge->Initialize();
+ auto ret = bridge->ForceUp();
+ return (int)ret;
+ }
+ }
+ else
+ {
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ bridge->ForceDown();
+ return 0;
+ }
+ }
+ return -1;
+}
+
+int Dali::AtspiAccessibility::GetStatus()
+{
+ //0(ATSPI OFF, ScreenReader OFF), 1(ATSPI ON, ScreenReader OFF), 2 (ATSPI OFF, ScreenReader ON), 3(ATSPI ON, ScreenReader ON)
+ if( auto bridge = Dali::Accessibility::Bridge::GetCurrentBridge() )
+ {
+ if( bridge->GetScreenReaderEnabled() )
+ {
+ if( bridge->GetIsEnabled() )
+ {
+ return 3;
+ }
+ else
+ {
+ return 2;
+ }
+ }
+ else
+ {
+ if( bridge->GetIsEnabled() )
+ {
+ return 1;
+ }
+ else
+ {
+ return 0;
+ }
+ }
+ }
+ return -1;
+}
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-accessible.h>
+
+// EXTERNAL INCLUDES
+#include <iostream>
+
+//comment out 2 lines below to get more logs
+#undef LOG
+#define LOG() _LoggerEmpty()
+
+using namespace Dali::Accessibility;
+
+#define GET_NAVIGABLE_AT_POINT_MAX_RECURSION_DEPTH 10000
+
+BridgeAccessible::BridgeAccessible()
+{
+}
+
+void BridgeAccessible::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceAccessible};
+ AddGetPropertyToInterface( desc, "ChildCount", &BridgeAccessible::GetChildCount );
+ AddGetPropertyToInterface( desc, "Name", &BridgeAccessible::GetName );
+ AddGetPropertyToInterface( desc, "Description", &BridgeAccessible::GetDescription );
+ AddGetPropertyToInterface( desc, "Parent", &BridgeAccessible::GetParent );
+ AddFunctionToInterface( desc, "GetRole", &BridgeAccessible::GetRole );
+ AddFunctionToInterface( desc, "GetRoleName", &BridgeAccessible::GetRoleName );
+ AddFunctionToInterface( desc, "GetLocalizedRoleName", &BridgeAccessible::GetLocalizedRoleName );
+ AddFunctionToInterface( desc, "GetState", &BridgeAccessible::GetStates );
+ AddFunctionToInterface( desc, "GetAttributes", &BridgeAccessible::GetAttributes );
+ AddFunctionToInterface( desc, "GetInterfaces", &BridgeAccessible::GetInterfaces );
+ AddFunctionToInterface( desc, "GetChildAtIndex", &BridgeAccessible::GetChildAtIndex );
+ AddFunctionToInterface( desc, "GetChildren", &BridgeAccessible::GetChildren );
+ AddFunctionToInterface( desc, "GetIndexInParent", &BridgeAccessible::GetIndexInParent );
+ AddFunctionToInterface( desc, "GetNavigableAtPoint", &BridgeAccessible::GetNavigableAtPoint );
+ AddFunctionToInterface( desc, "GetNeighbor", &BridgeAccessible::GetNeighbor );
+ AddFunctionToInterface( desc, "GetDefaultLabelInfo", &BridgeAccessible::GetDefaultLabelInfo );
+ AddFunctionToInterface( desc, "DoGesture", &BridgeAccessible::DoGesture );
+ AddFunctionToInterface( desc, "GetReadingMaterial", &BridgeAccessible::GetReadingMaterial );
+ AddFunctionToInterface( desc, "GetRelationSet", &BridgeAccessible::GetRelationSet );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+static bool AcceptObjectCheckRole( Component* obj )
+{
+ if( !obj )
+ return false;
+ switch( obj->GetRole() )
+ {
+ case Role::APPLICATION:
+ case Role::FILLER:
+ case Role::SCROLL_PANE:
+ case Role::SPLIT_PANE:
+ case Role::WINDOW:
+ case Role::IMAGE:
+ case Role::IMAGE_MAP:
+ case Role::LIST:
+ case Role::ICON:
+ case Role::TOOL_BAR:
+ case Role::REDUNDANT_OBJECT:
+ case Role::COLOR_CHOOSER:
+ case Role::TREE_TABLE:
+ case Role::PAGE_TAB_LIST:
+ case Role::PAGE_TAB:
+ case Role::SPIN_BUTTON:
+ case Role::INPUT_METHOD_WINDOW:
+ case Role::EMBEDDED:
+ case Role::INVALID:
+ case Role::NOTIFICATION:
+ case Role::DATE_EDITOR:
+ case Role::TABLE:
+ {
+ return false;
+ }
+ default:
+ {
+ break;
+ }
+ }
+
+ return true;
+}
+
+static bool AcceptObjectCheckRelations( Component* obj)
+{
+ auto r = obj->GetRelationSet();
+
+ for (const auto& it : r)
+ if (it.relationType == RelationType::CONTROLLED_BY)
+ return false;
+
+ return true;
+}
+
+static Component* GetScrollableParent( Accessible* obj )
+{
+ while( obj )
+ {
+ obj = obj->GetParent();
+ auto comp = dynamic_cast< Component* >( obj );
+ if( comp && comp->IsScrollable() )
+ return comp;
+ }
+ return nullptr;
+}
+
+static bool ObjectIsItem( Component* obj )
+{
+ if( !obj )
+ return false;
+ auto role = obj->GetRole();
+ return role == Role::LIST_ITEM || role == Role::MENU_ITEM;
+}
+
+static bool ObjectIsCollapsed( Component* obj )
+{
+ if( !obj )
+ return false;
+ const auto states = obj->GetStates();
+ return states[State::EXPANDABLE] && !states[State::EXPANDED];
+}
+
+static bool OobjectIsZeroSize( Component* obj )
+{
+ if( !obj )
+ return false;
+ auto extents = obj->GetExtents( CoordType::WINDOW );
+ return extents.height == 0 || extents.width == 0;
+}
+
+static bool AcceptObject( Component* obj )
+{
+ if( !obj )
+ return false;
+ const auto states = obj->GetStates();
+ if( !states[State::VISIBLE] )
+ return false;
+ if( !AcceptObjectCheckRole( obj ) )
+ return false;
+ if ( !AcceptObjectCheckRelations( obj ) )
+ return false;
+ // if (CALL(get_object_in_relation_by_type, obj, ATSPI_RELATION_CONTROLLED_BY) != NULL) return 0;
+ if ( !AcceptObjectCheckRelations( obj ) )
+ return false;
+ if( !states[State::HIGHLIGHTABLE] )
+ return false;
+
+ if( GetScrollableParent( obj ) != nullptr )
+ {
+ auto parent = dynamic_cast< Component* >( obj->GetParent() );
+
+ if( parent )
+ {
+ return !ObjectIsItem( obj ) || !ObjectIsCollapsed( parent );
+ }
+ }
+ else
+ {
+ if( OobjectIsZeroSize( obj ) )
+ {
+ return false;
+ }
+ if( !states[State::SHOWING] )
+ {
+ return false;
+ }
+ }
+ return true;
+}
+
+static bool AcceptObject( Accessible* obj )
+{
+ auto c = dynamic_cast< Component* >( obj );
+ return AcceptObject( c );
+}
+
+static std::string objDump( Component* obj )
+{
+ if ( !obj )
+ return "nullptr";
+ std::ostringstream o;
+ auto e = obj->GetExtents( CoordType::SCREEN );
+ o << "name: " << obj->GetName() << " extent: (" << e.x << ", "
+ << e.y << "), [" << e.width << ", " << e.height << "]";
+ return o.str();
+}
+
+Component * BridgeAccessible::GetObjectInRelation( Accessible * obj, RelationType ralationType )
+{
+ if ( !obj )
+ return nullptr;
+ for ( auto &relation : obj->GetRelationSet() )
+ {
+ if ( relation.relationType == ralationType )
+ {
+ for ( auto &address : relation.targets )
+ {
+ auto component = dynamic_cast<Component*>( Find( address ) );
+ if ( component )
+ return component;
+ }
+ }
+ }
+ return nullptr;
+}
+
+static std::string makeIndent( unsigned int maxRecursionDepth )
+{
+ return std::string( GET_NAVIGABLE_AT_POINT_MAX_RECURSION_DEPTH - maxRecursionDepth, ' ' );
+}
+
+Component* BridgeAccessible::CalculateNavigableAccessibleAtPoint( Accessible* root, Point p, CoordType cType, unsigned int maxRecursionDepth )
+{
+ if( !root || maxRecursionDepth == 0 )
+ return nullptr;
+ auto root_component = dynamic_cast< Component* >( root );
+ LOG() << "CalculateNavigableAccessibleAtPoint: checking: " << makeIndent(maxRecursionDepth) << objDump(root_component);
+
+ if( root_component && !root_component->Contains( p, cType ) )
+ return nullptr;
+
+ auto children = root->GetChildren();
+ for( auto childIt = children.rbegin(); childIt != children.rend(); childIt++ )
+ {
+ //check recursively all children first
+ auto result = CalculateNavigableAccessibleAtPoint( *childIt, p, cType, maxRecursionDepth - 1 );
+ if( result )
+ return result;
+ }
+ if( root_component )
+ {
+ //Found a candidate, all its children are already checked
+ auto controledBy = GetObjectInRelation( root_component, RelationType::CONTROLLED_BY );
+ if ( !controledBy )
+ controledBy = root_component;
+
+ if ( controledBy->IsProxy() || AcceptObject( controledBy ) )
+ {
+ LOG() << "CalculateNavigableAccessibleAtPoint: found: " << makeIndent(maxRecursionDepth) << objDump( root_component );
+ return controledBy;
+ }
+ }
+ return nullptr;
+}
+
+BridgeAccessible::ReadingMaterialType BridgeAccessible::GetReadingMaterial()
+{
+ auto self = FindSelf();
+ auto attributes = self->GetAttributes();
+ auto name = self->GetName();
+ std::string labeledByName = "";
+ std::string textIfceName = "";
+ auto role = static_cast< uint32_t >( self->GetRole() );
+ auto states = self->GetStates();
+ auto localizedName = self->GetLocalizedRoleName();
+ auto childCount = static_cast< int32_t >( self->GetChildCount() );
+
+ double currentValue = 0.0;
+ double minimumIncrement = 0.0;
+ double maximumValue = 0.0;
+ double minimumValue = 0.0;
+
+ auto description = self->GetDescription();
+ auto indexInParent = static_cast< int32_t >( self->GetIndexInParent() );
+ bool isSelectedInParent = false;
+ bool hasCheckBoxChild = false;
+ int32_t firstSelectedChildIndex = 0;
+ int32_t selectedChildCount = 0;
+
+ for( auto i = 0u; i < static_cast< size_t >( childCount ); ++i )
+ {
+ auto q = self->GetChildAtIndex( i );
+ auto s = q->GetStates();
+ if( s[State::SELECTABLE] )
+ {
+ ++selectedChildCount;
+ if( s[State::SELECTED] )
+ {
+ if( firstSelectedChildIndex < 0 )
+ firstSelectedChildIndex = static_cast< int32_t >( i );
+ }
+ }
+ if( q->GetRole() == Role::CHECK_BOX )
+ hasCheckBoxChild = true;
+ }
+
+ int32_t listChildrenCount = 0;
+ Accessible* parent = self->GetParent();
+ auto parentStateSet = parent ? parent->GetStates() : States{};
+ auto parentChildCount = parent ? static_cast< int32_t >( parent->GetChildCount() ) : 0;
+ auto parentRole = static_cast< uint32_t >( parent ? parent->GetRole() : Role{} );
+ Accessible* describedByObject = nullptr;
+
+ return {
+ attributes,
+ name,
+ labeledByName,
+ textIfceName,
+ role,
+ states,
+ localizedName,
+ childCount,
+ currentValue,
+ minimumIncrement,
+ maximumValue,
+ minimumValue,
+ description,
+ indexInParent,
+ isSelectedInParent,
+ hasCheckBoxChild,
+ listChildrenCount,
+ firstSelectedChildIndex,
+ parent,
+ parentStateSet,
+ parentChildCount,
+ parentRole,
+ selectedChildCount,
+ describedByObject};
+}
+
+DBus::ValueOrError< bool > BridgeAccessible::DoGesture( Dali::Accessibility::Gesture type, int32_t xBeg, int32_t xEnd, int32_t yBeg, int32_t yEnd, Dali::Accessibility::GestureState state, uint32_t eventTime )
+{
+ return FindSelf()->DoGesture( Dali::Accessibility::GestureInfo {type, xBeg, xEnd, yBeg, yEnd, state, eventTime});
+}
+
+DBus::ValueOrError< Accessible*, uint8_t, Accessible* > BridgeAccessible::GetNavigableAtPoint( int32_t x, int32_t y, uint32_t coordType )
+{
+ Accessible* deputy = nullptr;
+ auto accessible = FindSelf();
+ auto cType = static_cast< CoordType >( coordType );
+ LOG() << "GetNavigableAtPoint: " << x << ", " << y << " type: " << coordType;
+ auto component = CalculateNavigableAccessibleAtPoint( accessible, {x, y}, cType, GET_NAVIGABLE_AT_POINT_MAX_RECURSION_DEPTH );
+ bool recurse = false;
+ if( component )
+ {
+ const auto states = component->GetStates();
+ if( states[State::MODAL] )
+ {
+ component = nullptr;
+ }
+ }
+ if( component )
+ {
+ recurse = component->IsProxy();
+ }
+ //TODO: add deputy
+ return {component, recurse, deputy};
+}
+
+static bool CheckChainEndWithAttribute( Accessible* obj, unsigned char forward )
+{
+ if( !obj )
+ return false;
+ auto attrs = obj->GetAttributes();
+ for( auto& attr : attrs )
+ {
+ if( attr.first == "relation_chain_end" )
+ {
+ if( ( attr.second == "prev,end" && forward == 0 ) || ( attr.second == "next,end" && forward == 1 ) || attr.second == "prev,next,end" )
+ {
+ return true;
+ }
+ }
+ }
+ return false;
+}
+
+static Accessible* DeputyOfProxyInParentGet( Accessible* obj )
+{
+ return nullptr;
+}
+
+Accessible* BridgeAccessible::GetCurrentlyHighlighted()
+{
+ //TODO: add currently highlighted object
+ return nullptr;
+}
+
+std::vector< Accessible* > BridgeAccessible::ValidChildrenGet( const std::vector< Accessible* >& children, Accessible* start, Accessible* root )
+{
+ return children;
+}
+
+static bool DeputyIs( Accessible* obj )
+{
+ //TODO: add deputy
+ return false;
+}
+
+static Accessible* ProxyInParentGet( Accessible* obj )
+{
+ if( !obj )
+ return nullptr;
+ auto children = obj->GetChildren();
+ for( auto& child : children )
+ {
+ if( child->IsProxy() )
+ return child;
+ }
+ return nullptr;
+}
+
+static bool ObjectRoleIsAcceptableWhenNavigatingNextPrev( Accessible* obj )
+{
+ if( !obj )
+ return false;
+ auto role = obj->GetRole();
+ return role != Role::POPUP_MENU && role != Role::DIALOG;
+}
+
+template < class T >
+struct CycleDetection
+{
+ CycleDetection( const T value ) : key( value ), currentSearchSize( 1 ), counter( 1 ) {}
+ bool check( const T value )
+ {
+ if( key == value )
+ return true;
+ if( --counter == 0 )
+ {
+ currentSearchSize <<= 1;
+ if( currentSearchSize == 0 )
+ return true; // UNDEFINED BEHAVIOR
+ counter = currentSearchSize;
+ key = value;
+ }
+ return false;
+ }
+ T key;
+ unsigned int currentSearchSize;
+ unsigned int counter;
+};
+
+static Accessible* FindNonDefunctChild( const std::vector< Accessible* >& children, unsigned int currentIndex, unsigned char forward )
+{
+ unsigned int childrenCount = children.size();
+ for( ; currentIndex < childrenCount; forward ? ++currentIndex : --currentIndex )
+ {
+ Accessible* n = children[currentIndex];
+ if( n && !n->GetStates()[State::DEFUNCT] )
+ return n;
+ }
+ return nullptr;
+}
+
+static Accessible* DirectionalDepthFirstSearchTryNonDefunctChild( Accessible* node, const std::vector< Accessible* >& children, unsigned char forward )
+{
+ if( !node )
+ return nullptr;
+ auto childrenCount = children.size();
+ if( childrenCount > 0 )
+ {
+ const bool isShowing = GetScrollableParent( node ) == nullptr ? node->GetStates()[State::SHOWING] : true;
+ if( isShowing )
+ {
+ return FindNonDefunctChild( children, forward ? 0 : childrenCount - 1, forward );
+ }
+ }
+ return nullptr;
+}
+
+Accessible* BridgeAccessible::GetNextNonDefunctSibling( Accessible* obj, Accessible* start, Accessible* root, unsigned char forward )
+{
+ if( !obj )
+ return nullptr;
+ auto parent = obj->GetParent();
+ if( !parent )
+ return nullptr;
+
+ auto children = ValidChildrenGet( parent->GetChildren(), start, root );
+
+ unsigned int children_count = children.size();
+ if( children_count == 0 )
+ {
+ return nullptr;
+ }
+ unsigned int current = 0;
+ for( ; current < children_count && children[current] != obj; ++current )
+ ;
+ if( current >= children_count )
+ {
+ return nullptr;
+ }
+ forward ? ++current : --current;
+ auto ret = FindNonDefunctChild( children, current, forward );
+ return ret;
+}
+
+Accessible* BridgeAccessible::DirectionalDepthFirstSearchTryNonDefunctSibling( bool& all_children_visited, Accessible* node, Accessible* start, Accessible* root, unsigned char forward )
+{
+ while( true )
+ {
+ Accessible* sibling = GetNextNonDefunctSibling( node, start, root, forward );
+ if( sibling )
+ {
+ node = sibling;
+ all_children_visited = false;
+ break;
+ }
+ // walk up...
+ node = node->GetParent();
+ if( node == nullptr || node == root )
+ return nullptr;
+
+ // in backward traversing stop the walk up on parent
+ if( !forward )
+ break;
+ }
+ return node;
+}
+
+Accessible* BridgeAccessible::CalculateNeighbor( Accessible* root, Accessible* start, unsigned char forward, BridgeAccessible::GetNeighborSearchMode search_mode )
+{
+ if( start && CheckChainEndWithAttribute( start, forward ) )
+ return start;
+ if( root && root->GetStates()[State::DEFUNCT] )
+ return NULL;
+ if( start && start->GetStates()[State::DEFUNCT] )
+ {
+ start = NULL;
+ forward = 1;
+ }
+
+ if( search_mode == BridgeAccessible::GetNeighborSearchMode::recurseToOutside )
+ {
+ // This only works if we navigate backward, and it is not possible to
+ // find in embedded process. In this case the deputy should be used */
+ return DeputyOfProxyInParentGet( start );
+ }
+
+ Accessible* node = start ? start : root;
+ if( !node )
+ return nullptr;
+
+ // initialization of all-children-visited flag for start node - we assume
+ // that when we begin at start node and we navigate backward, then all children
+ // are visited, so navigation will ignore start's children and go to
+ // previous sibling available.
+ // Regarding condtion (start != root):
+ // The last object can be found only if all_children_visited is false.
+ // The start is same with root, when looking for the last object.
+ bool all_children_visited = ( start != root ) && ( search_mode != BridgeAccessible::GetNeighborSearchMode::recurseFromRoot && !forward );
+ // true, if starting element should be ignored. this is only used in rare case of
+ // recursive search failing to find an object.
+ // consider tree, where element A on bus BUS_A has child B on bus BUS_B. when going "next" from
+ // element A algorithm has to descend into BUS_B and search element B and its children. this is done
+ // by returning to our caller object B with special flag set (meaning - continue the search from B on bus BUS_B).
+ // if next object will be found there (on BUS_B), then search ends. but if not, then our caller will find it out
+ // and will call us again with object A and flag search_mode set to NEIGHBOR_SEARCH_MODE_CONTINUE_AFTER_FAILED_RECURSING.
+ // this flag means, that object A was already checked previously and we should skip it and its children.
+ bool force_next = ( search_mode == BridgeAccessible::GetNeighborSearchMode::continueAfterFailedRecursion );
+
+ CycleDetection< Accessible* > cycleDetection( node );
+ while( node )
+ {
+ if( node->GetStates()[State::DEFUNCT] )
+ return nullptr;
+
+ // always accept proxy object from different world
+ if( !force_next && node->IsProxy() )
+ return node;
+
+ auto children = node->GetChildren();
+ children = ValidChildrenGet( children, start, root );
+
+ // do accept:
+ // 1. not start node
+ // 2. parent after all children in backward traversing
+ // 3. Nodes with roles: ATSPI_ROLE_PAGE_TAB, ATSPI_ROLE_POPUP_MENU and ATSPI_ROLE_DIALOG, only when looking for first or last element.
+ // Objects with those roles shouldnt be reachable, when navigating next / prev.
+ bool all_children_visited_or_moving_forward = ( children.size() == 0 || forward || all_children_visited );
+ if( !force_next && node != start && all_children_visited_or_moving_forward && AcceptObject( node ) )
+ {
+ if( start == NULL || ObjectRoleIsAcceptableWhenNavigatingNextPrev( node ) )
+ return node;
+ }
+
+ Accessible* next_related_in_direction = !force_next ? GetObjectInRelation( node, forward ? RelationType::FLOWS_TO : RelationType::FLOWS_FROM ) : nullptr;
+ // force_next means that the search_mode is NEIGHBOR_SEARCH_MODE_CONTINUE_AFTER_FAILED_RECURSING
+ // in this case the node is elm_layout which is parent of proxy object.
+ // There is an access object working for the proxy object, and the access
+ // object could have relation information. This relation information should
+ // be checked first before using the elm_layout as a node.
+ if( force_next && forward )
+ {
+ auto deputy = DeputyOfProxyInParentGet( node );
+ next_related_in_direction =
+ GetObjectInRelation( deputy, forward ? RelationType::FLOWS_TO : RelationType::FLOWS_FROM );
+ }
+
+ if( next_related_in_direction && start->GetStates()[State::DEFUNCT] )
+ next_related_in_direction = NULL;
+ unsigned char want_cycle_detection = 0;
+ if( next_related_in_direction )
+ {
+ // Check next_related_in_direction is deputy object
+ Accessible* parent;
+ if( !forward )
+ {
+ // If the prev object is deputy, then go to inside of its proxy first
+ if( DeputyIs( next_related_in_direction ) )
+ {
+ parent = next_related_in_direction->GetParent();
+ next_related_in_direction = ProxyInParentGet( parent );
+ }
+ }
+ else
+ {
+ // If current object is deputy, and it has relation next object,
+ // then do not use the relation next object, and use proxy first
+ if( DeputyIs( node ) )
+ {
+ parent = node->GetParent();
+ next_related_in_direction = ProxyInParentGet( parent );
+ }
+ }
+ node = next_related_in_direction;
+ want_cycle_detection = 1;
+ }
+ else
+ {
+ auto child = !force_next && !all_children_visited ? DirectionalDepthFirstSearchTryNonDefunctChild( node, children, forward ) : nullptr;
+ if( child )
+ {
+ want_cycle_detection = 1;
+ }
+ else
+ {
+ if( !force_next && node == root )
+ return NULL;
+ all_children_visited = true;
+ child = DirectionalDepthFirstSearchTryNonDefunctSibling( all_children_visited, node, start, root, forward );
+ }
+ node = child;
+ }
+ force_next = 0;
+ if( want_cycle_detection && cycleDetection.check( node ) )
+ {
+ return NULL;
+ }
+ }
+ return NULL;
+}
+
+DBus::ValueOrError< Accessible*, uint8_t > BridgeAccessible::GetNeighbor( std::string rootPath, int32_t direction, int32_t search_mode )
+{
+ auto start = FindSelf();
+ rootPath = StripPrefix( rootPath );
+ auto root = !rootPath.empty() ? Find( rootPath ) : nullptr;
+ auto accessible = CalculateNeighbor( root, start, direction == 1, static_cast< GetNeighborSearchMode >( search_mode ) );
+ unsigned char recurse = 0;
+ if( accessible )
+ {
+ recurse = accessible->IsProxy();
+ }
+ return {accessible, recurse};
+}
+
+Accessible* BridgeAccessible::GetParent()
+{
+ // NOTE: currently bridge supports single application root element.
+ // only element set as application root might return nullptr from GetParent
+ // if you want more, then you need to change setApplicationRoot to
+ // add/remove ApplicationRoot and make roots a vector.
+ auto p = FindSelf()->GetParent();
+ assert( p );
+ return p;
+}
+DBus::ValueOrError< std::vector< Accessible* > > BridgeAccessible::GetChildren()
+{
+ return FindSelf()->GetChildren();
+}
+std::string BridgeAccessible::GetDescription()
+{
+ return FindSelf()->GetDescription();
+}
+DBus::ValueOrError< uint32_t > BridgeAccessible::GetRole()
+{
+ return static_cast< unsigned int >( FindSelf()->GetRole() );
+}
+DBus::ValueOrError< std::string > BridgeAccessible::GetRoleName()
+{
+ return FindSelf()->GetRoleName();
+}
+DBus::ValueOrError< std::string > BridgeAccessible::GetLocalizedRoleName()
+{
+ return FindSelf()->GetLocalizedRoleName();
+}
+DBus::ValueOrError< int32_t > BridgeAccessible::GetIndexInParent()
+{
+ return FindSelf()->GetIndexInParent();
+}
+DBus::ValueOrError< std::array< uint32_t, 2 > > BridgeAccessible::GetStates()
+{
+ return FindSelf()->GetStates().GetRawData();
+}
+DBus::ValueOrError< std::unordered_map< std::string, std::string > > BridgeAccessible::GetAttributes()
+{
+ return FindSelf()->GetAttributes();
+}
+DBus::ValueOrError< std::vector< std::string > > BridgeAccessible::GetInterfaces()
+{
+ return FindSelf()->GetInterfaces();
+}
+int BridgeAccessible::GetChildCount()
+{
+ return FindSelf()->GetChildCount();
+}
+DBus::ValueOrError< Accessible* > BridgeAccessible::GetChildAtIndex( int index )
+{
+ if( index < 0 )
+ throw std::domain_error{"negative index (" + std::to_string( index ) + ")"};
+ return FindSelf()->GetChildAtIndex( static_cast< size_t >( index ) );
+}
+
+std::string BridgeAccessible::GetName()
+{
+ return FindSelf()->GetName();
+}
+
+DBus::ValueOrError< Accessible*, uint32_t , std::unordered_map< std::string, std::string > > BridgeAccessible::GetDefaultLabelInfo()
+{
+ auto defaultLabel = FindSelf()->GetDefaultLabel();
+ return {defaultLabel, static_cast< uint32_t >( defaultLabel->GetRole() ) , defaultLabel->GetAttributes()};
+}
+
+DBus::ValueOrError<std::vector< BridgeAccessible::Relation >> BridgeAccessible::GetRelationSet()
+{
+ auto relations = FindSelf()->GetRelationSet();
+ std::vector< BridgeAccessible::Relation > ret;
+
+ for (auto &it : relations)
+ ret.emplace_back(Relation{static_cast<uint32_t>(it.relationType), it.targets});
+
+ return ret;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACCESSIBLE_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACCESSIBLE_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <array>
+#include <string>
+#include <unordered_map>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include "bridge-base.h"
+
+class BridgeAccessible : public virtual BridgeBase
+{
+protected:
+ BridgeAccessible();
+
+ void RegisterInterfaces();
+
+public:
+ enum class GetNeighborSearchMode
+ {
+ normal = 0,
+ recurseFromRoot = 1,
+ continueAfterFailedRecursion = 2,
+ recurseToOutside = 3,
+ };
+ int GetChildCount();
+ DBus::ValueOrError< Dali::Accessibility::Accessible* > GetChildAtIndex( int index );
+ Dali::Accessibility::Accessible* GetParent();
+ DBus::ValueOrError< std::vector< Dali::Accessibility::Accessible* > > GetChildren();
+ std::string GetName();
+ std::string GetDescription();
+ DBus::ValueOrError< uint32_t > GetRole();
+ DBus::ValueOrError< std::string > GetRoleName();
+ DBus::ValueOrError< std::string > GetLocalizedRoleName();
+ DBus::ValueOrError< int32_t > GetIndexInParent();
+ DBus::ValueOrError< std::array< uint32_t, 2 > > GetStates();
+ DBus::ValueOrError< std::unordered_map< std::string, std::string > > GetAttributes();
+ DBus::ValueOrError< std::vector< std::string > > GetInterfaces();
+ DBus::ValueOrError< Dali::Accessibility::Accessible*, uint8_t, Dali::Accessibility::Accessible* > GetNavigableAtPoint( int32_t x, int32_t y, uint32_t coordType );
+ DBus::ValueOrError< Dali::Accessibility::Accessible*, uint8_t > GetNeighbor( std::string root_path, int32_t direction, int32_t search_mode );
+ DBus::ValueOrError< Dali::Accessibility::Accessible*, uint32_t , std::unordered_map< std::string, std::string > > GetDefaultLabelInfo();
+ using ReadingMaterialType = DBus::ValueOrError<
+ std::unordered_map< std::string, std::string >, // attributes
+ std::string, // name
+ std::string, // labeledByName
+ std::string, // textIfceName
+ uint32_t,
+ Dali::Accessibility::States,
+ std::string, // localized name
+ int32_t, // child count
+ double, // current value
+ double, // minimum increment
+ double, // maximum value
+ double, // minimum value
+ std::string, // description
+ int32_t, // index in parent
+ bool, // isSelectedInParent
+ bool, // hasCheckBoxChild
+ int32_t, // listChildrenCount
+ int32_t, // firstSelectedChildIndex
+ Dali::Accessibility::Accessible*, // parent
+ Dali::Accessibility::States, // parentStateSet
+ int32_t, // parentChildCount
+ uint32_t, // parentRole
+ int32_t, // selectedChildCount,
+ Dali::Accessibility::Accessible* // describedByObject
+ >;
+
+ ReadingMaterialType GetReadingMaterial();
+
+ DBus::ValueOrError< bool > DoGesture( Dali::Accessibility::Gesture type, int32_t xBeg, int32_t xEnd, int32_t yBeg, int32_t yEnd, Dali::Accessibility::GestureState state, uint32_t eventTime );
+
+ using Relation = std::tuple< uint32_t, std::vector< Dali::Accessibility::Address > >;
+ DBus::ValueOrError<std::vector< Relation >> GetRelationSet();
+
+private:
+ Dali::Accessibility::Accessible* CalculateNeighbor( Dali::Accessibility::Accessible* root, Dali::Accessibility::Accessible* start, unsigned char forward, GetNeighborSearchMode search_mode );
+ std::vector< Dali::Accessibility::Accessible* > ValidChildrenGet( const std::vector< Dali::Accessibility::Accessible* >& children, Dali::Accessibility::Accessible* start, Dali::Accessibility::Accessible* root );
+ Dali::Accessibility::Accessible* GetCurrentlyHighlighted();
+ Dali::Accessibility::Accessible* DirectionalDepthFirstSearchTryNonDefunctSibling( bool& all_children_visited, Dali::Accessibility::Accessible* node, Dali::Accessibility::Accessible* start, Dali::Accessibility::Accessible* root, unsigned char forward );
+ Dali::Accessibility::Accessible* GetNextNonDefunctSibling( Dali::Accessibility::Accessible* obj, Dali::Accessibility::Accessible* start, Dali::Accessibility::Accessible* root, unsigned char forward );
+ Dali::Accessibility::Component* CalculateNavigableAccessibleAtPoint( Dali::Accessibility::Accessible* root, Dali::Accessibility::Point p, Dali::Accessibility::CoordType cType, unsigned int maxRecursionDepth );
+ Dali::Accessibility::Component * GetObjectInRelation(Dali::Accessibility::Accessible * obj, Dali::Accessibility::RelationType ralationType);
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACCESSIBLE_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-action.h>
+
+// EXTERNAL INCLUDES
+#include <iostream>
+
+using namespace Dali::Accessibility;
+
+void BridgeAction::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceAction};
+
+ AddGetPropertyToInterface( desc, "NActions", &BridgeAction::GetActionCount );
+
+ AddFunctionToInterface( desc, "GetName", &BridgeAction::GetActionName );
+ AddFunctionToInterface( desc, "GetLocalizedName", &BridgeAction::GetLocalizedActionName );
+ AddFunctionToInterface( desc, "GetDescription", &BridgeAction::GetActionDescription );
+ AddFunctionToInterface( desc, "GetKeyBinding", &BridgeAction::GetActionKeyBinding );
+ AddFunctionToInterface( desc, "DoAction", &BridgeAction::DoAction );
+ AddFunctionToInterface( desc, "DoActionName", &BridgeAction::DoActionName );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+Action* BridgeAction::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< Action* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Action interface"};
+ return s2;
+}
+
+DBus::ValueOrError< std::string > BridgeAction::GetActionName( int32_t index )
+{
+ return FindSelf()->GetActionName( index );
+}
+
+DBus::ValueOrError< std::string > BridgeAction::GetLocalizedActionName( int32_t index )
+{
+ return FindSelf()->GetLocalizedActionName( index );
+}
+
+DBus::ValueOrError< std::string > BridgeAction::GetActionDescription( int32_t index )
+{
+ return FindSelf()->GetActionDescription( index );
+}
+
+DBus::ValueOrError< std::string > BridgeAction::GetActionKeyBinding( int32_t index )
+{
+ return FindSelf()->GetActionKeyBinding( index );
+}
+
+DBus::ValueOrError< int32_t > BridgeAction::GetActionCount()
+{
+ return FindSelf()->GetActionCount();
+ ;
+}
+
+DBus::ValueOrError< bool > BridgeAction::DoAction( int32_t index )
+{
+ return FindSelf()->DoAction( index );
+}
+
+DBus::ValueOrError< bool > BridgeAction::DoActionName( std::string name )
+{
+ auto self = FindSelf();
+ auto cnt = self->GetActionCount();
+ for( auto i = 0u; i < cnt; ++i )
+ {
+ if( self->GetActionName( i ) == name )
+ {
+ return self->DoAction( i );
+ }
+ }
+ throw std::domain_error{"object " + self->GetAddress().ToString() + " doesn't have action '" + name + "'"};
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACTION_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACTION_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <tuple>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeAction : public virtual BridgeBase
+{
+protected:
+ BridgeAction() = default;
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::Action* FindSelf() const;
+
+public:
+ DBus::ValueOrError< std::string > GetActionName( int32_t index );
+ DBus::ValueOrError< std::string > GetLocalizedActionName( int32_t index );
+ DBus::ValueOrError< std::string > GetActionDescription( int32_t index );
+ DBus::ValueOrError< std::string > GetActionKeyBinding( int32_t index );
+ DBus::ValueOrError< int32_t > GetActionCount();
+ DBus::ValueOrError< bool > DoAction( int32_t index );
+ DBus::ValueOrError< bool > DoActionName( std::string name );
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_ACTION_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+// EXTERNAL INCLUDES
+#include <atomic>
+#include <cstdlib>
+#include <memory>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/adaptor-framework/timer.h>
+
+using namespace Dali::Accessibility;
+
+static Dali::Timer tickTimer;
+
+BridgeBase::~BridgeBase()
+{
+}
+
+BridgeBase::BridgeBase()
+{
+}
+
+void BridgeBase::addFilteredEvent( FilteredEvents kind, Dali::Accessibility::Accessible* obj, float delay, std::function<void()> functor )
+{
+ if( delay < 0 )
+ {
+ delay = 0;
+ }
+
+ auto it = filteredEvents.insert({ { kind, obj }, { static_cast<unsigned int>(delay * 10), {} } });
+ if (it.second)
+ {
+ functor();
+ }
+ else
+ {
+ it.first->second.second = std::move(functor);
+ }
+
+ if (!tickTimer)
+ {
+ tickTimer = Dali::Timer::New(100);
+ tickTimer.TickSignal().Connect(this, &BridgeBase::tickFilteredEvents);
+ }
+}
+
+bool BridgeBase::tickFilteredEvents()
+{
+ for(auto it = filteredEvents.begin(); it != filteredEvents.end(); )
+ {
+ if (it->second.first)
+ {
+ --it->second.first;
+ }
+ else
+ {
+ if (it->second.second)
+ {
+ it->second.second();
+ it->second.second = {};
+ }
+ else
+ {
+ it = filteredEvents.erase(it);
+ continue;
+ }
+ }
+ ++it;
+ }
+ return !filteredEvents.empty();
+}
+
+BridgeBase::ForceUpResult BridgeBase::ForceUp()
+{
+ if( Bridge::ForceUp() == ForceUpResult::ALREADY_UP )
+ {
+ return ForceUpResult::ALREADY_UP;
+ }
+ auto proxy = DBus::DBusClient{dbusLocators::atspi::BUS, dbusLocators::atspi::OBJ_PATH, dbusLocators::atspi::BUS_INTERFACE, DBus::ConnectionType::SESSION};
+ auto addr = proxy.method< std::string() >( dbusLocators::atspi::GET_ADDRESS ).call();
+
+ if( !addr )
+ {
+ throw std::domain_error{std::string( "failed at call '" ) + dbusLocators::atspi::GET_ADDRESS + "': " + addr.getError().message};
+ }
+
+ con = DBusWrapper::Installed()->eldbus_address_connection_get_impl( std::get< 0 >( addr ) );
+ data->busName = DBus::getConnectionName( con );
+ dbusServer = { con };
+
+ {
+ DBus::DBusInterfaceDescription desc{"org.a11y.atspi.Cache"};
+ AddFunctionToInterface( desc, "GetItems", &BridgeBase::GetItems );
+ dbusServer.addInterface( "/org/a11y/atspi/cache", desc );
+ }
+ {
+ DBus::DBusInterfaceDescription desc{"org.a11y.atspi.Application"};
+ AddGetSetPropertyToInterface( desc, "Id", &BridgeBase::IdGet, &BridgeBase::IdSet );
+ dbusServer.addInterface( AtspiPath, desc );
+ }
+
+ return ForceUpResult::JUST_STARTED;
+}
+
+void BridgeBase::ForceDown()
+{
+ Bridge::ForceDown();
+ dbusServer = {};
+ con = {};
+}
+
+const std::string& BridgeBase::GetBusName() const
+{
+ static std::string empty;
+ return data ? data->busName : empty;
+}
+
+Accessible* BridgeBase::FindByPath( const std::string& name ) const
+{
+ try
+ {
+ return Find( name );
+ }
+ catch( std::domain_error )
+ {
+ return nullptr;
+ }
+}
+
+void BridgeBase::AddPopup( Accessible* obj )
+{
+ if( std::find( popups.begin(), popups.end(), obj ) != popups.end() )
+ {
+ return;
+ }
+ popups.push_back( obj );
+ if (IsUp())
+ {
+ obj->Emit( WindowEvent::ACTIVATE, 0 );
+ }
+}
+
+void BridgeBase::RemovePopup( Accessible* obj )
+{
+ auto it = std::find( popups.begin(), popups.end(), obj );
+ if( it == popups.end() )
+ {
+ return;
+ }
+ popups.erase( it );
+ if (IsUp())
+ {
+ obj->Emit( WindowEvent::DEACTIVATE, 0 );
+ if( popups.empty() )
+ {
+ application.children.back()->Emit( WindowEvent::ACTIVATE, 0 );
+ }
+ else
+ {
+ popups.back()->Emit( WindowEvent::ACTIVATE, 0 );
+ }
+ }
+}
+
+void BridgeBase::AddTopLevelWindow( Accessible* root )
+{
+ application.children.push_back( root );
+ SetIsOnRootLevel( root );
+}
+
+void BridgeBase::RemoveTopLevelWindow( Accessible* root )
+{
+ for(auto i = 0u; i < application.children.size(); ++i)
+ {
+ if( application.children[i] == root )
+ {
+ application.children.erase(application.children.begin() + i);
+ break;
+ }
+ }
+}
+
+std::string BridgeBase::StripPrefix( const std::string& path )
+{
+ auto size = strlen( AtspiPath );
+ return path.substr( size + 1 );
+}
+
+Accessible* BridgeBase::Find( const std::string& path ) const
+{
+ if( path == "root" )
+ {
+ return &application;
+ }
+ void* p;
+ std::istringstream tmp{ path };
+ if (! ( tmp >> p) )
+ {
+ throw std::domain_error{"invalid path '" + path + "'"};
+ }
+ auto it = data->knownObjects.find( static_cast<Accessible*>( p ) );
+ if( it == data->knownObjects.end() )
+ {
+ throw std::domain_error{"unknown object '" + path + "'"};
+ }
+ return static_cast<Accessible*>( p );
+}
+
+Accessible* BridgeBase::Find( const Address& ptr ) const
+{
+ assert( ptr.GetBus() == data->busName );
+ return Find( ptr.GetPath() );
+}
+
+Accessible* BridgeBase::FindSelf() const
+{
+ auto pth = DBus::DBusServer::getCurrentObjectPath();
+ auto size = strlen( AtspiPath );
+ if( pth.size() <= size )
+ {
+ throw std::domain_error{"invalid path '" + pth + "'"};
+ }
+ if( pth.substr( 0, size ) != AtspiPath )
+ {
+ throw std::domain_error{"invalid path '" + pth + "'"};
+ }
+ if( pth[size] != '/' )
+ {
+ throw std::domain_error{"invalid path '" + pth + "'"};
+ }
+ return Find( StripPrefix( pth ) );
+}
+
+void BridgeBase::IdSet( int id )
+{
+ this->id = id;
+}
+
+int BridgeBase::IdGet()
+{
+ return this->id;
+}
+
+auto BridgeBase::GetItems() -> DBus::ValueOrError< std::vector< CacheElementType > >
+{
+ auto root = &application;
+
+ std::vector< CacheElementType > res;
+
+ std::function< void(Accessible*) > proc =
+ [&]( Accessible* item )
+ {
+ res.emplace_back( std::move( CreateCacheElement( root ) ) );
+ for( auto i = 0u; i < item->GetChildCount(); ++i )
+ {
+ proc( item->GetChildAtIndex( i ) );
+ }
+ };
+
+ return res;
+}
+
+auto BridgeBase::CreateCacheElement( Accessible* item ) -> CacheElementType
+{
+ if( !item )
+ {
+ return {};
+ }
+
+ auto root = &application;
+ auto parent = item->GetParent();
+
+ std::vector< Address > children;
+ for( auto i = 0u; i < item->GetChildCount(); ++i )
+ {
+ children.emplace_back( item->GetChildAtIndex( i )->GetAddress() );
+ }
+
+ return std::make_tuple(
+ item->GetAddress(),
+ root->GetAddress(),
+ parent ? parent->GetAddress() : Address{},
+ children,
+ item->GetInterfaces(),
+ item->GetName(),
+ item->GetRole(),
+ item->GetDescription(),
+ item->GetStates().GetRawData()
+ );
+}
+
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_BASE_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_BASE_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <dali/public-api/signals/connection-tracker.h>
+#include <memory>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-common.h>
+
+class AppAccessible : public virtual Dali::Accessibility::Accessible, public virtual Dali::Accessibility::Collection
+{
+public:
+ Dali::Accessibility::EmptyAccessibleWithAddress parent;
+ std::vector< Dali::Accessibility::Accessible* > children;
+ std::string name;
+
+ std::string GetName() override
+ {
+ return name;
+ }
+
+ std::string GetDescription() override
+ {
+ return "";
+ }
+
+ Dali::Accessibility::Accessible* GetParent() override
+ {
+ return &parent;
+ }
+
+ size_t GetChildCount() override
+ {
+ return children.size();
+ }
+
+ Dali::Accessibility::Accessible* GetChildAtIndex( size_t index ) override
+ {
+ auto s = children.size();
+ if( index >= s )
+ throw std::domain_error{"invalid index " + std::to_string( index ) + " for object with " + std::to_string( s ) + " children"};
+ return children[index];
+ }
+
+ size_t GetIndexInParent() override
+ {
+ throw std::domain_error{"can't call GetIndexInParent on application object"};
+ }
+
+ Dali::Accessibility::Role GetRole() override
+ {
+ return Dali::Accessibility::Role::APPLICATION;
+ }
+
+ Dali::Accessibility::States GetStates() override
+ {
+ return {};
+ }
+
+ Dali::Accessibility::Attributes GetAttributes() override
+ {
+ return {};
+ }
+
+ Dali::Accessibility::Accessible* getActiveWindow()
+ {
+ return children.empty() ? nullptr : children[0];
+ }
+
+ bool DoGesture(const Dali::Accessibility::GestureInfo &gestureInfo) override
+ {
+ return false;
+ }
+
+ std::vector<Dali::Accessibility::Relation> GetRelationSet() override
+ {
+ return {};
+ }
+
+ Dali::Accessibility::Address GetAddress() override {
+ return { "", "root" };
+ }
+
+};
+
+
+enum class FilteredEvents {
+ boundsChanged
+};
+
+
+namespace std {
+ template <> struct hash<std::pair<FilteredEvents, Dali::Accessibility::Accessible*>> {
+ size_t operator () (std::pair<FilteredEvents, Dali::Accessibility::Accessible*> v) const {
+ return (static_cast<size_t>(v.first) * 131) ^ reinterpret_cast<size_t>(v.second);
+ }
+ };
+}
+
+
+class BridgeBase : public Dali::Accessibility::Bridge, public Dali::ConnectionTracker
+{
+ std::unordered_map<std::pair<FilteredEvents, Dali::Accessibility::Accessible*>, std::pair<unsigned int, std::function<void()>>> filteredEvents;
+
+ bool tickFilteredEvents();
+
+public:
+
+ void addFilteredEvent(FilteredEvents kind, Dali::Accessibility::Accessible* obj, float delay, std::function<void()> functor);
+
+ const std::string& GetBusName() const override;
+ void AddTopLevelWindow( Dali::Accessibility::Accessible* window ) override;
+ void RemoveTopLevelWindow( Dali::Accessibility::Accessible* window ) override;
+ void AddPopup( Dali::Accessibility::Accessible* ) override;
+ void RemovePopup( Dali::Accessibility::Accessible* ) override;
+
+ Dali::Accessibility::Accessible* GetApplication() const override
+ {
+ return &application;
+ }
+
+ template < typename SELF, typename... RET, typename... ARGS >
+ void AddFunctionToInterface(
+ DBus::DBusInterfaceDescription& desc, const std::string& funcName,
+ DBus::ValueOrError< RET... > ( SELF::*funcPtr )( ARGS... ) )
+ {
+ if ( auto self = dynamic_cast< SELF* >( this ) )
+ desc.addMethod< DBus::ValueOrError< RET... >( ARGS... ) >( funcName,
+ [=]( ARGS... args ) -> DBus::ValueOrError< RET... > {
+ try
+ {
+ return ( self->*funcPtr )( std::move( args )... );
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ } );
+ }
+
+ template < typename T, typename SELF >
+ void AddGetPropertyToInterface( DBus::DBusInterfaceDescription& desc,
+ const std::string& funcName, T ( SELF::*funcPtr )() )
+ {
+ if ( auto self = dynamic_cast< SELF* >( this ) )
+ desc.addProperty< T >( funcName,
+ [=]() -> DBus::ValueOrError< T > {
+ try
+ {
+ return ( self->*funcPtr )();
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ },
+ {} );
+ }
+
+ template < typename T, typename SELF >
+ void AddSetPropertyToInterface( DBus::DBusInterfaceDescription& desc,
+ const std::string& funcName, void ( SELF::*funcPtr )( T ) )
+ {
+ if ( auto self = dynamic_cast< SELF* >( this ) )
+ desc.addProperty< T >( funcName, {},
+ [=]( T t ) -> DBus::ValueOrError< void > {
+ try
+ {
+ ( self->*funcPtr )( std::move( t ) );
+ return {};
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ } );
+ }
+
+ template < typename T, typename T1, typename SELF >
+ void AddGetSetPropertyToInterface( DBus::DBusInterfaceDescription& desc,
+ const std::string& funcName, T1 ( SELF::*funcPtrGet )(), DBus::ValueOrError< void > ( SELF::*funcPtrSet )( T ) )
+ {
+ if ( auto self = dynamic_cast< SELF* >( this ) )
+ desc.addProperty< T >( funcName,
+ [=]() -> DBus::ValueOrError< T > {
+ try
+ {
+ return ( self->*funcPtrGet )();
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ },
+ [=]( T t ) -> DBus::ValueOrError< void > {
+ try
+ {
+ ( self->*funcPtrSet )( std::move( t ) );
+ return {};
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ } );
+ }
+ template < typename T, typename T1, typename SELF >
+ void AddGetSetPropertyToInterface( DBus::DBusInterfaceDescription& desc,
+ const std::string& funcName, T1 ( SELF::*funcPtrGet )(), void ( SELF::*funcPtrSet )( T ) )
+ {
+ if ( auto self = dynamic_cast< SELF* >( this ) )
+ desc.addProperty< T >( funcName,
+ [=]() -> DBus::ValueOrError< T > {
+ try
+ {
+ return ( self->*funcPtrGet )();
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ },
+ [=]( T t ) -> DBus::ValueOrError< void > {
+ try
+ {
+ ( self->*funcPtrSet )( std::move( t ) );
+ return {};
+ }
+ catch( std::domain_error& e )
+ {
+ return DBus::Error{e.what()};
+ }
+ } );
+ }
+ static std::string StripPrefix( const std::string& path );
+
+ Dali::Accessibility::Accessible* Find( const std::string& path ) const;
+ Dali::Accessibility::Accessible* Find( const Dali::Accessibility::Address& ptr ) const;
+ Dali::Accessibility::Accessible* FindSelf() const;
+ Dali::Accessibility::Accessible* FindByPath( const std::string& name ) const override;
+ void SetApplicationName( std::string name ) override
+ {
+ application.name = std::move( name );
+ }
+
+protected:
+ mutable AppAccessible application;
+ std::vector<Dali::Accessibility::Accessible*> popups;
+private:
+ void IdSet( int id );
+ int IdGet();
+
+ using CacheElementType = std::tuple<
+ Dali::Accessibility::Address, Dali::Accessibility::Address, Dali::Accessibility::Address,
+ std::vector< Dali::Accessibility::Address >,
+ std::vector< std::string >,
+ std::string,
+ Dali::Accessibility::Role,
+ std::string,
+ std::array< uint32_t, 2 > >;
+ DBus::ValueOrError< std::vector< CacheElementType > > GetItems();
+ CacheElementType CreateCacheElement( Dali::Accessibility::Accessible* item );
+
+protected:
+ BridgeBase();
+ virtual ~BridgeBase();
+
+ ForceUpResult ForceUp() override;
+ void ForceDown() override;
+
+ DBus::DBusServer dbusServer;
+ DBusWrapper::ConnectionPtr con;
+ int id = 0;
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_BASE_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-collection.h>
+
+// EXTERNAL INCLUDES
+#include <algorithm>
+#include <iostream>
+#include <unordered_set>
+#include <vector>
+
+using namespace Dali::Accessibility;
+
+void BridgeCollection::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceCollection};
+ AddFunctionToInterface( desc, "GetMatches", &BridgeCollection::GetMatches );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+Collection* BridgeCollection::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< Collection* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Collection interface"};
+ return s2;
+}
+
+enum
+{
+ ATSPI_Collection_MATCH_INVALID,
+ ATSPI_Collection_MATCH_ALL,
+ ATSPI_Collection_MATCH_ANY,
+ ATSPI_Collection_MATCH_NONE,
+ ATSPI_Collection_MATCH_EMPTY,
+ ATSPI_Collection_MATCH_LAST_DEFINED,
+};
+
+struct BridgeCollection::Comparer
+{
+ using Mode = MatchType;
+
+ enum class CompareFuncExit
+ {
+ FIRST_FOUND,
+ FIRST_NOT_FOUND
+ };
+
+ static Mode ConvertToMatchType( int32_t mode )
+ {
+ switch( mode )
+ {
+ case ATSPI_Collection_MATCH_INVALID:
+ {
+ return Mode::INVALID;
+ }
+ case ATSPI_Collection_MATCH_ALL:
+ {
+ return Mode::ALL;
+ }
+ case ATSPI_Collection_MATCH_ANY:
+ {
+ return Mode::ANY;
+ }
+ case ATSPI_Collection_MATCH_NONE:
+ {
+ return Mode::NONE;
+ }
+ case ATSPI_Collection_MATCH_EMPTY:
+ {
+ return Mode::EMPTY;
+ }
+ }
+ return Mode::INVALID;
+ }
+
+ struct ComparerInterfaces
+ {
+ std::unordered_set< std::string > object;
+ std::vector< std::string > requested;
+ Mode mode = Mode::INVALID;
+
+ ComparerInterfaces( MatchRule* rule ) : mode( ConvertToMatchType( std::get< Index::InterfacesMatchType >( *rule ) ) )
+ {
+ requested = {std::get< Index::Interfaces >( *rule ).begin(), std::get< Index::Interfaces >( *rule ).end()};
+ }
+ void Update( Accessible* obj )
+ {
+ object.clear();
+ for( auto& q : obj->GetInterfaces() )
+ object.insert( std::move( q ) );
+ }
+ bool RequestEmpty() const { return requested.empty(); }
+ bool ObjectEmpty() const { return object.empty(); }
+ bool Compare( CompareFuncExit exit )
+ {
+ bool foundAny = false;
+ for( auto& iname : requested )
+ {
+ bool found = ( object.find( iname ) != object.end() );
+ if( found )
+ foundAny = true;
+ if( found == ( exit == CompareFuncExit::FIRST_FOUND ) )
+ return found;
+ }
+ return foundAny;
+ }
+ };
+ struct ComparerAttributes
+ {
+ std::unordered_map< std::string, std::string > requested, object;
+ Mode mode = Mode::INVALID;
+
+ ComparerAttributes( MatchRule* rule ) : mode( ConvertToMatchType( std::get< Index::AttributesMatchType >( *rule ) ) )
+ {
+ requested = std::get< Index::Attributes >( *rule );
+ }
+ void Update( Accessible* obj )
+ {
+ object = obj->GetAttributes();
+ }
+ bool RequestEmpty() const { return requested.empty(); }
+ bool ObjectEmpty() const { return object.empty(); }
+ bool Compare( CompareFuncExit exit )
+ {
+ bool foundAny = false;
+ for( auto& iname : requested )
+ {
+ auto it = object.find( iname.first );
+ bool found = it != object.end() && iname.second == it->second;
+ if( found )
+ foundAny = true;
+ if( found == ( exit == CompareFuncExit::FIRST_FOUND ) )
+ {
+ return found;
+ }
+ }
+ return foundAny;
+ }
+ };
+ struct ComparerRoles
+ {
+ using Roles = BitSets< 4, Role >;
+ Roles requested, object;
+ Mode mode = Mode::INVALID;
+
+ ComparerRoles( MatchRule* rule ) : mode( ConvertToMatchType( std::get< Index::RolesMatchType >( *rule ) ) )
+ {
+ requested = Roles{std::get< Index::Roles >( *rule )};
+ }
+ void Update( Accessible* obj )
+ {
+ object = {};
+ object[obj->GetRole()] = true;
+ assert( object );
+ }
+ bool RequestEmpty() const { return !requested; }
+ bool ObjectEmpty() const { return !object; }
+ bool Compare( CompareFuncExit exit )
+ {
+ switch( mode )
+ {
+ case Mode::INVALID:
+ {
+ return true;
+ }
+ case Mode::EMPTY:
+ case Mode::ALL:
+ {
+ return requested == ( object & requested );
+ }
+ case Mode::ANY:
+ {
+ return bool( object & requested );
+ }
+ case Mode::NONE:
+ {
+ return bool( object & requested );
+ }
+ }
+ return false;
+ }
+ };
+ struct ComparerStates
+ {
+ States requested, object;
+ Mode mode = Mode::INVALID;
+
+ ComparerStates( MatchRule* rule ) : mode( ConvertToMatchType( std::get< Index::StatesMatchType >( *rule ) ) )
+ {
+ requested = States{std::get< Index::States >( *rule )};
+ }
+ void Update( Accessible* obj )
+ {
+ object = obj->GetStates();
+ }
+ bool RequestEmpty() const { return !requested; }
+ bool ObjectEmpty() const { return !object; }
+ bool Compare( CompareFuncExit exit )
+ {
+ switch( mode )
+ {
+ case Mode::INVALID:
+ {
+ return true;
+ }
+ case Mode::EMPTY:
+ case Mode::ALL:
+ {
+ return requested == ( object & requested );
+ }
+ case Mode::ANY:
+ {
+ return bool( object & requested );
+ }
+ case Mode::NONE:
+ {
+ return bool( object & requested );
+ }
+ }
+ return false;
+ }
+ };
+
+ template < typename T >
+ bool compareFunc( T& cmp, Accessible* obj )
+ {
+ if( cmp.mode == Mode::INVALID )
+ return true;
+ cmp.Update( obj );
+ switch( cmp.mode )
+ {
+ case Mode::ANY:
+ {
+ if( cmp.RequestEmpty() || cmp.ObjectEmpty() )
+ return false;
+ break;
+ }
+ case Mode::ALL:
+ {
+ if( cmp.RequestEmpty() )
+ return true;
+ if( cmp.ObjectEmpty() )
+ return false;
+ break;
+ }
+ case Mode::NONE:
+ {
+ if( cmp.RequestEmpty() || cmp.ObjectEmpty() )
+ return true;
+ break;
+ }
+ case Mode::EMPTY:
+ {
+ if( cmp.RequestEmpty() && cmp.ObjectEmpty() )
+ return true;
+ if( cmp.RequestEmpty() || cmp.ObjectEmpty() )
+ return false;
+ break;
+ }
+ case Mode::INVALID:
+ {
+ return true;
+ }
+ }
+
+ switch( cmp.mode )
+ {
+ case Mode::EMPTY:
+ case Mode::ALL:
+ {
+ if( !cmp.Compare( CompareFuncExit::FIRST_NOT_FOUND ) )
+ return false;
+ break;
+ }
+ case Mode::ANY:
+ {
+ if( cmp.Compare( CompareFuncExit::FIRST_FOUND ) )
+ return true;
+ break;
+ }
+ case Mode::NONE:
+ {
+ if( cmp.Compare( CompareFuncExit::FIRST_FOUND ) )
+ return false;
+ break;
+ }
+ case Mode::INVALID:
+ {
+ return true;
+ }
+ }
+ switch( cmp.mode )
+ {
+ case Mode::EMPTY:
+ case Mode::ALL:
+ case Mode::NONE:
+ {
+ return true;
+ }
+ case Mode::ANY:
+ {
+ return false;
+ }
+ case Mode::INVALID:
+ {
+ return true;
+ }
+ }
+ return false;
+ }
+
+ ComparerInterfaces ci;
+ ComparerAttributes ca;
+ ComparerRoles cr;
+ ComparerStates cs;
+
+ Comparer( MatchRule* mr ) : ci( mr ), ca( mr ), cr( mr ), cs( mr ) {}
+
+ bool operator()( Accessible* obj )
+ {
+ return compareFunc( ci, obj ) &&
+ compareFunc( ca, obj ) &&
+ compareFunc( cr, obj ) &&
+ compareFunc( cs, obj );
+ }
+};
+
+void BridgeCollection::VisitNodes( Accessible* obj, std::vector< Accessible* >& result, Comparer& cmp, size_t maxCount )
+{
+ if( result.size() >= maxCount )
+ return;
+
+ if( cmp( obj ) )
+ result.emplace_back( obj );
+
+ for( auto i = 0u; i < obj->GetChildCount(); ++i )
+ VisitNodes( obj->GetChildAtIndex( i ), result, cmp, maxCount );
+}
+
+DBus::ValueOrError< std::vector< Accessible* > > BridgeCollection::GetMatches( MatchRule rule, uint32_t sortBy, int32_t count, bool traverse )
+{
+ std::vector< Accessible* > res;
+ auto self = BridgeBase::FindSelf();
+ auto matcher = Comparer{&rule};
+ VisitNodes( self, res, matcher, count );
+
+ switch( static_cast< SortOrder >( sortBy ) )
+ {
+ case SortOrder::CANONICAL:
+ {
+ break;
+ }
+
+ case SortOrder::REVERSE_CANONICAL:
+ {
+ std::reverse( res.begin(), res.end() );
+ break;
+ }
+
+ default:
+ {
+ throw std::domain_error{"unsupported sorting order"};
+ }
+ //TODO: other cases
+ }
+
+ return res;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COLLECTION_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COLLECTION_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <array>
+#include <tuple>
+#include <unordered_map>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeCollection : public virtual BridgeBase
+{
+private:
+ struct Comparer;
+ static void VisitNodes( Dali::Accessibility::Accessible* obj, std::vector< Dali::Accessibility::Accessible* >& result, Comparer& cmp, size_t maxCount );
+
+protected:
+ BridgeCollection() = default;
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::Collection* FindSelf() const;
+
+public:
+ using MatchRule = std::tuple<
+ std::array< int32_t, 2 >, int32_t,
+ std::unordered_map< std::string, std::string >, int32_t,
+ std::array< int32_t, 4 >, int32_t,
+ std::vector< std::string >, int32_t,
+ bool >;
+ struct Index
+ {
+ enum
+ {
+ States,
+ StatesMatchType,
+ Attributes,
+ AttributesMatchType,
+ Roles,
+ RolesMatchType,
+ Interfaces,
+ InterfacesMatchType,
+ };
+ };
+
+ DBus::ValueOrError< std::vector< Dali::Accessibility::Accessible* > > GetMatches( MatchRule rule, uint32_t sortBy, int32_t count, bool traverse );
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COLLECTION_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-component.h>
+
+// EXTERNAL INCLUDES
+#include <iostream>
+
+#define DBUS_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties"
+
+using namespace Dali::Accessibility;
+
+BridgeComponent::BridgeComponent()
+{
+}
+
+void BridgeComponent::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceComponent};
+ AddFunctionToInterface( desc, "Contains", &BridgeComponent::Contains );
+ AddFunctionToInterface( desc, "GetAccessibleAtPoint", &BridgeComponent::GetAccessibleAtPoint );
+ AddFunctionToInterface( desc, "GetExtents", &BridgeComponent::GetExtents );
+ AddFunctionToInterface( desc, "GetPosition", &BridgeComponent::GetPosition );
+ AddFunctionToInterface( desc, "GetSize", &BridgeComponent::GetSize );
+ AddFunctionToInterface( desc, "GetLayer", &BridgeComponent::GetLayer );
+ AddFunctionToInterface( desc, "GetAlpha", &BridgeComponent::GetAlpha );
+ AddFunctionToInterface( desc, "GetMDIZOrder", &BridgeComponent::GetMdiZOrder );
+ AddFunctionToInterface( desc, "GrabHighlight", &BridgeComponent::GrabHighlight );
+ AddFunctionToInterface( desc, "GrabFocus", &BridgeComponent::GrabFocus );
+ AddFunctionToInterface( desc, "ClearHighlight", &BridgeComponent::ClearHighlight );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+Component* BridgeComponent::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< Component* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Component interface"};
+ return s2;
+}
+
+DBus::ValueOrError< bool > BridgeComponent::Contains( int32_t x, int32_t y, uint32_t coordType )
+{
+ return FindSelf()->Contains( {x, y}, static_cast< CoordType >( coordType ) );
+}
+DBus::ValueOrError< Accessible* > BridgeComponent::GetAccessibleAtPoint( int32_t x, int32_t y, uint32_t coordType )
+{
+ return FindSelf()->GetAccessibleAtPoint( {x, y}, static_cast< CoordType >( coordType ) );
+}
+DBus::ValueOrError< std::tuple< int32_t, int32_t, int32_t, int32_t > > BridgeComponent::GetExtents( uint32_t coordType )
+{
+ auto p = FindSelf()->GetExtents( static_cast< CoordType >( coordType ) );
+ return std::tuple< int32_t, int32_t, int32_t, int32_t >{p.x, p.y, p.width, p.height};
+}
+DBus::ValueOrError< int32_t, int32_t > BridgeComponent::GetPosition( uint32_t coordType )
+{
+ auto p = FindSelf()->GetExtents( static_cast< CoordType >( coordType ) );
+ return { static_cast<int32_t>(p.x), static_cast<int32_t>(p.y) };
+}
+DBus::ValueOrError< int32_t, int32_t > BridgeComponent::GetSize( uint32_t coordType )
+{
+ auto p = FindSelf()->GetExtents( static_cast< CoordType >( coordType ) );
+ return { static_cast<int32_t>(p.width), static_cast<int32_t>(p.height) };
+}
+DBus::ValueOrError< ComponentLayer > BridgeComponent::GetLayer()
+{
+ return FindSelf()->GetLayer();
+}
+DBus::ValueOrError< double > BridgeComponent::GetAlpha()
+{
+ return FindSelf()->GetAlpha();
+}
+DBus::ValueOrError< bool > BridgeComponent::GrabFocus()
+{
+ return FindSelf()->GrabFocus();
+}
+DBus::ValueOrError< bool > BridgeComponent::GrabHighlight()
+{
+ return FindSelf()->GrabHighlight();
+}
+DBus::ValueOrError< bool > BridgeComponent::ClearHighlight()
+{
+ return FindSelf()->ClearHighlight();
+}
+DBus::ValueOrError< int16_t > BridgeComponent::GetMdiZOrder()
+{
+ return FindSelf()->GetMdiZOrder();
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COMPONENT_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COMPONENT_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <array>
+#include <string>
+#include <tuple>
+#include <unordered_map>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeComponent : public virtual BridgeBase
+{
+protected:
+ BridgeComponent();
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::Component* FindSelf() const;
+
+public:
+ DBus::ValueOrError< bool > Contains( int32_t x, int32_t y, uint32_t coordType );
+ DBus::ValueOrError< Dali::Accessibility::Accessible* > GetAccessibleAtPoint( int32_t x, int32_t y, uint32_t coordType );
+ DBus::ValueOrError< std::tuple< int32_t, int32_t, int32_t, int32_t > > GetExtents( uint32_t coordType );
+ DBus::ValueOrError< int32_t, int32_t > GetPosition( uint32_t coordType );
+ DBus::ValueOrError< int32_t, int32_t > GetSize( uint32_t coordType );
+ DBus::ValueOrError< Dali::Accessibility::ComponentLayer > GetLayer();
+ DBus::ValueOrError< double > GetAlpha();
+ DBus::ValueOrError< bool > GrabFocus();
+ DBus::ValueOrError< bool > GrabHighlight();
+ DBus::ValueOrError< bool > ClearHighlight();
+ DBus::ValueOrError< int16_t > GetMdiZOrder();
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_COMPONENT_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-editable-text.h>
+
+// INTERNAL INCLUDES
+#include <dali/internal/clipboard/common/clipboard-impl.h>
+
+using namespace Dali::Accessibility;
+
+void BridgeEditableText::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceEditableText};
+ AddFunctionToInterface( desc, "CopyText", &BridgeEditableText::CopyText );
+ AddFunctionToInterface( desc, "CutText", &BridgeEditableText::CutText );
+ AddFunctionToInterface( desc, "PasteText", &BridgeEditableText::PasteText );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+EditableText* BridgeEditableText::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< EditableText* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Text interface"};
+ return s2;
+}
+
+DBus::ValueOrError< bool > BridgeEditableText::CopyText( int32_t startPos, int32_t endPos )
+{
+ return FindSelf()->CopyText( startPos, endPos );
+}
+
+DBus::ValueOrError< bool > BridgeEditableText::CutText( int32_t startPos, int32_t endPos )
+{
+ return FindSelf()->CutText( startPos, endPos );
+}
+
+DBus::ValueOrError< bool > BridgeEditableText::PasteText( int32_t pos )
+{
+ // auto imfManager = Dali::Internal::Adaptor::ImfManager::Get();
+ // imfManager.SetCursorPosition( pos );
+ // auto clipboard = Dali::Internal::Adaptor::Clipboard::Get();
+ // clipboard.RequestItem();
+ // return true;
+ return false;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_EDITABLE_TEXT_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_EDITABLE_TEXT_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeEditableText : public virtual BridgeBase
+{
+protected:
+ BridgeEditableText() = default;
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::EditableText* FindSelf() const;
+
+public:
+ DBus::ValueOrError< bool > CopyText( int32_t startPos, int32_t endPos );
+ DBus::ValueOrError< bool > CutText( int32_t startPos, int32_t endPos );
+ DBus::ValueOrError< bool > PasteText( int32_t pos );
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_EDITABLE_TEXT_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+
+// EXTERNAL INCLUDES
+#include <dali/integration-api/debug.h>
+#include <iostream>
+#include <unordered_map>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-accessible.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-action.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-collection.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-component.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-object.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-value.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-text.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-editable-text.h>
+
+using namespace Dali::Accessibility;
+
+class BridgeImpl : public virtual BridgeBase,
+ public BridgeAccessible,
+ public BridgeObject,
+ public BridgeComponent,
+ public BridgeCollection,
+ public BridgeAction,
+ public BridgeValue,
+ public BridgeText,
+ public BridgeEditableText
+{
+ DBus::DBusClient listenOnAtspiEnabledSignalClient;
+ DBus::DBusClient registryClient, directReadingClient;
+ bool screenReaderEnabled = false;
+ bool isEnabled = false;
+ bool isShown = false;
+ std::unordered_map <int32_t, std::function<void(std::string)>> directReadingCallbacks;
+ Dali::Actor highlightedActor;
+ std::function<void(Dali::Actor)> highlightClearAction;
+
+public:
+ BridgeImpl()
+ {
+ listenOnAtspiEnabledSignalClient = DBus::DBusClient{ A11yDbusName, A11yDbusPath, A11yDbusStatusInterface, DBus::ConnectionType::SESSION };
+
+ listenOnAtspiEnabledSignalClient.addPropertyChangedEvent< bool >( "ScreenReaderEnabled", [this]( bool res )
+ {
+ screenReaderEnabled = res;
+ if( screenReaderEnabled || isEnabled )
+ {
+ ForceUp();
+ }
+ else
+ {
+ ForceDown();
+ }
+ }
+ );
+
+ listenOnAtspiEnabledSignalClient.addPropertyChangedEvent< bool >( "IsEnabled", [this]( bool res )
+ {
+ isEnabled = res;
+ if( screenReaderEnabled || isEnabled )
+ {
+ ForceUp();
+ }
+ else
+ {
+ ForceDown();
+ }
+ }
+ );
+ }
+
+ Consumed Emit( KeyEventType type, unsigned int keyCode, const std::string& keyName, unsigned int timeStamp, bool isText ) override
+ {
+ if (!IsUp())
+ {
+ return Consumed::NO;
+ }
+
+ unsigned int evType = 0;
+
+ switch( type )
+ {
+ case KeyEventType::KEY_PRESSED:
+ {
+ evType = 0;
+ break;
+ }
+ case KeyEventType::KEY_RELEASED:
+ {
+ evType = 1;
+ break;
+ }
+ default:
+ {
+ return Consumed::NO;
+ }
+ }
+ auto m = registryClient.method< bool( std::tuple< uint32_t, int32_t, int32_t, int32_t, int32_t, std::string, bool > ) >( "NotifyListenersSync" );
+ auto result = m.call( std::tuple< uint32_t, int32_t, int32_t, int32_t, int32_t, std::string, bool >{evType, 0, static_cast< int32_t >( keyCode ), 0, static_cast< int32_t >( timeStamp ), keyName, isText ? 1 : 0} );
+ if( !result )
+ {
+ LOG() << result.getError().message;
+ return Consumed::NO;
+ }
+ return std::get< 0 >( result ) ? Consumed::YES : Consumed::NO;
+ }
+
+ void Pause() override
+ {
+ auto r = directReadingClient.method< DBus::ValueOrError< void >( bool ) > ( "PauseResume" ).call( true );
+ if (!r)
+ {
+ LOG() << "Direct reading command failed (" << r.getError().message << ")";
+ }
+ }
+
+ void Resume() override
+ {
+ auto r = directReadingClient.method< DBus::ValueOrError< void >( bool ) > ( "PauseResume" ).call( false );
+ if (!r)
+ {
+ LOG() << "Direct reading command failed (" << r.getError().message << ")";
+ }
+ }
+
+ void Say( const std::string& text, bool discardable, std::function< void(std::string) > callback ) override
+ {
+ auto commandId = directReadingClient.method< DBus::ValueOrError< std::string, bool, int32_t >( std::string, bool ) > ( "ReadCommand" ).call( text, discardable );
+ if ( !commandId )
+ {
+ LOG() << "Direct reading command failed (" << commandId.getError().message << ")";
+ }
+ else if( callback )
+ {
+ directReadingCallbacks.emplace( std::get< 2 >( commandId ), callback);
+ }
+ }
+
+ void ForceDown() override
+ {
+ if (data)
+ {
+ if (data->currentlyHighlightedActor && data->highlightActor)
+ {
+ data->currentlyHighlightedActor.Remove(data->highlightActor);
+ }
+ data->currentlyHighlightedActor = {};
+ data->highlightActor = {};
+ }
+ highlightedActor = {};
+ highlightClearAction = {};
+ BridgeAccessible::ForceDown();
+ registryClient = {};
+ directReadingClient = {};
+ directReadingCallbacks.clear();
+ }
+
+ void Terminate() override
+ {
+ if (data)
+ {
+ data->currentlyHighlightedActor = {};
+ data->highlightActor = {};
+ }
+ ForceDown();
+ listenOnAtspiEnabledSignalClient = {};
+ dbusServer = {};
+ con = {};
+ }
+
+ ForceUpResult ForceUp() override
+ {
+ if( BridgeAccessible::ForceUp() == ForceUpResult::ALREADY_UP )
+ {
+ return ForceUpResult::ALREADY_UP;
+ }
+
+ BridgeObject::RegisterInterfaces();
+ BridgeAccessible::RegisterInterfaces();
+ BridgeComponent::RegisterInterfaces();
+ BridgeCollection::RegisterInterfaces();
+ BridgeAction::RegisterInterfaces();
+ BridgeValue::RegisterInterfaces();
+ BridgeText::RegisterInterfaces();
+ BridgeEditableText::RegisterInterfaces();
+
+ RegisterOnBridge( &application );
+
+ registryClient = { AtspiDbusNameRegistry, AtspiDbusPathDec, AtspiDbusInterfaceDec, con };
+ directReadingClient = DBus::DBusClient{ DirectReadingDBusName, DirectReadingDBusPath, DirectReadingDBusInterface, con };
+ directReadingClient.addSignal< void(int32_t, std::string) >( "ReadingStateChanged", [=]( int32_t id, std::string readingState )
+ {
+ auto it = directReadingCallbacks.find( id );
+ if (it != directReadingCallbacks.end())
+ {
+ it->second( readingState );
+ directReadingCallbacks.erase( it );
+ }
+ }
+ );
+
+ auto proxy = DBus::DBusClient{AtspiDbusNameRegistry, AtspiDbusPathRoot, AtspiDbusInterfaceSocket, con};
+ Address root{"", "root"};
+ auto res = proxy.method< Address( Address ) >( "Embed" ).call( root );
+ if (!res)
+ {
+ LOG() << "Call to Embed failed: " << res.getError().message;
+ }
+ assert( res );
+ application.parent.SetAddress( std::move( std::get< 0 >( res ) ) );
+ if (isShown)
+ {
+ EmitActivate();
+ }
+ return ForceUpResult::JUST_STARTED;
+ }
+
+ void EmitActivate()
+ {
+ auto win = application.getActiveWindow();
+ if (win)
+ {
+ win->Emit( WindowEvent::ACTIVATE, 0 );
+ }
+ }
+
+ void EmitDeactivate()
+ {
+ auto win = application.getActiveWindow();
+ if (win)
+ {
+ win->Emit( WindowEvent::DEACTIVATE, 0 );
+ }
+ }
+
+ void ApplicationHidden() override
+ {
+ if ( isShown && IsUp() )
+ {
+ EmitDeactivate();
+ }
+ isShown = false;
+ }
+
+ void ApplicationShown() override
+ {
+ if ( !isShown && IsUp() )
+ {
+ EmitActivate();
+ }
+ isShown = true;
+ }
+
+ void Initialize() override
+ {
+ auto req = DBus::DBusClient{A11yDbusName, A11yDbusPath, A11yDbusStatusInterface, DBus::ConnectionType::SESSION};
+ auto p = req.property< bool >( "ScreenReaderEnabled" ).get();
+ if( p )
+ {
+ screenReaderEnabled = std::get< 0 >( p );
+ }
+ p = req.property< bool >( "IsEnabled" ).get();
+ if( p )
+ {
+ isEnabled = std::get< 0 >( p );
+ }
+ if( screenReaderEnabled || isEnabled )
+ {
+ ForceUp();
+ }
+ }
+
+ bool GetScreenReaderEnabled()
+ {
+ return screenReaderEnabled;
+ }
+
+ bool GetIsEnabled()
+ {
+ return isEnabled;
+ }
+
+};
+
+Bridge* Bridge::GetCurrentBridge()
+{
+ static BridgeImpl *bridge = new BridgeImpl;
+ return bridge;
+}
+
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-object.h>
+
+// EXTERNAL INCLUDES
+#include <iostream>
+#include <string>
+
+using namespace Dali::Accessibility;
+
+BridgeObject::BridgeObject()
+{
+}
+
+void BridgeObject::RegisterInterfaces()
+{
+ // DBus::DBusInterfaceDescription desc{ AtspiDbusInterfaceEventObject };
+ // stateChanged = addSignal<std::string, int, int, DBus::EldbusVariant<int>, Accessible*>(desc, "StateChanged");
+ // dbusServer.addInterface("/", desc, true);
+}
+
+void BridgeObject::EmitActiveDescendantChanged( Accessible* obj, Accessible *child )
+{
+ if (!IsUp()) return;
+ auto index = child->GetIndexInParent();
+
+ auto addr = obj->GetAddress();
+ const auto prefixPath = "/org/a11y/atspi/accessible/";
+ const auto nullPath = "/org/a11y/atspi/null";
+ std::string p;
+ if( addr )
+ p = prefixPath + addr.GetPath();
+ else
+ p = nullPath;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< Address >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "ActiveDescendantChanged",
+ "",
+ index,
+ 0,
+ { child->GetAddress() },
+ {"", "root"} );
+}
+
+void BridgeObject::Emit( Accessible* obj, Dali::Accessibility::ObjectPropertyChangeEvent ev )
+{
+ if (!IsUp()) return;
+ const char* name = nullptr;
+ switch( ev )
+ {
+ case ObjectPropertyChangeEvent::NAME:
+ {
+ name = "accessible-name";
+ break;
+ }
+ case ObjectPropertyChangeEvent::DESCRIPTION:
+ {
+ name = "accessible-description";
+ break;
+ }
+ case ObjectPropertyChangeEvent::VALUE:
+ {
+ name = "accessible-value";
+ break;
+ }
+ case ObjectPropertyChangeEvent::PARENT:
+ {
+ name = "accessible-parent";
+ break;
+ }
+ case ObjectPropertyChangeEvent::ROLE:
+ {
+ name = "accessible-role";
+ break;
+ }
+ }
+ if( name )
+ {
+ auto addr = obj->GetAddress();
+ std::string p;
+ if( addr )
+ p = ATSPI_PREFIX_PATH + addr.GetPath();
+ else
+ p = ATSPI_NULL_PATH;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< int >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "PropertyChange",
+ name,
+ 0,
+ 0,
+ {0},
+ {"", "root"} );
+ }
+}
+
+void BridgeObject::Emit( Accessible* obj, WindowEvent we, unsigned int detail1 )
+{
+ if (!IsUp()) return;
+ const char* name = nullptr;
+ switch( we )
+ {
+ case WindowEvent::PROPERTY_CHANGE:
+ {
+ name = "PropertyChange";
+ break;
+ }
+ case WindowEvent::MINIMIZE:
+ {
+ name = "Minimize";
+ break;
+ }
+ case WindowEvent::MAXIMIZE:
+ {
+ name = "Maximize";
+ break;
+ }
+ case WindowEvent::RESTORE:
+ {
+ name = "Restore";
+ break;
+ }
+ case WindowEvent::CLOSE:
+ {
+ name = "Close";
+ break;
+ }
+ case WindowEvent::CREATE:
+ {
+ name = "Create";
+ break;
+ }
+ case WindowEvent::REPARENT:
+ {
+ name = "Reparent";
+ break;
+ }
+ case WindowEvent::DESKTOP_CREATE:
+ {
+ name = "DesktopCreate";
+ break;
+ }
+ case WindowEvent::DESKTOP_DESTROY:
+ {
+ name = "DesktopDestroy";
+ break;
+ }
+ case WindowEvent::DESTROY:
+ {
+ name = "Destroy";
+ break;
+ }
+ case WindowEvent::ACTIVATE:
+ {
+ name = "Activate";
+ break;
+ }
+ case WindowEvent::DEACTIVATE:
+ {
+ name = "Deactivate";
+ break;
+ }
+ case WindowEvent::RAISE:
+ {
+ name = "Raise";
+ break;
+ }
+ case WindowEvent::LOWER:
+ {
+ name = "Lower";
+ break;
+ }
+ case WindowEvent::MOVE:
+ {
+ name = "Move";
+ break;
+ }
+ case WindowEvent::RESIZE:
+ {
+ name = "Resize";
+ break;
+ }
+ case WindowEvent::SHADE:
+ {
+ name = "Shade";
+ break;
+ }
+ case WindowEvent::UU_SHADE:
+ {
+ name = "uUshade";
+ break;
+ }
+ case WindowEvent::RESTYLE:
+ {
+ name = "Restyle";
+ break;
+ }
+ }
+ if( name )
+ {
+ auto addr = obj->GetAddress();
+ std::string p;
+ if( addr )
+ p = ATSPI_PREFIX_PATH + addr.GetPath();
+ else
+ p = ATSPI_NULL_PATH;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< int >, Address >(
+ p,
+ AtspiDbusInterfaceEventWindow,
+ name,
+ "",
+ detail1,
+ 0,
+ {0},
+ {"", "root"} );
+ }
+}
+
+void BridgeObject::EmitStateChanged( Accessible* obj, State state, int newValue1, int newValue2 )
+{
+ if (!IsUp()) return;
+ const char* stateName = nullptr;
+ switch( state )
+ {
+ case State::INVALID:
+ {
+ stateName = "invalid";
+ break;
+ }
+ case State::ACTIVE:
+ {
+ stateName = "active";
+ break;
+ }
+ case State::ARMED:
+ {
+ stateName = "armed";
+ break;
+ }
+ case State::BUSY:
+ {
+ stateName = "busy";
+ break;
+ }
+ case State::CHECKED:
+ {
+ stateName = "checked";
+ break;
+ }
+ case State::COLLAPSED:
+ {
+ stateName = "collapsed";
+ break;
+ }
+ case State::DEFUNCT:
+ {
+ stateName = "defunct";
+ break;
+ }
+ case State::EDITABLE:
+ {
+ stateName = "editable";
+ break;
+ }
+ case State::ENABLED:
+ {
+ stateName = "enabled";
+ break;
+ }
+ case State::EXPANDABLE:
+ {
+ stateName = "expandable";
+ break;
+ }
+ case State::EXPANDED:
+ {
+ stateName = "expanded";
+ break;
+ }
+ case State::FOCUSABLE:
+ {
+ stateName = "focusable";
+ break;
+ }
+ case State::FOCUSED:
+ {
+ stateName = "focused";
+ break;
+ }
+ case State::HAS_TOOLTIP:
+ {
+ stateName = "has-tooltip";
+ break;
+ }
+ case State::HORIZONTAL:
+ {
+ stateName = "horizontal";
+ break;
+ }
+ case State::ICONIFIED:
+ {
+ stateName = "iconified";
+ break;
+ }
+ case State::MODAL:
+ {
+ stateName = "modal";
+ break;
+ }
+ case State::MULTI_LINE:
+ {
+ stateName = "multi-line";
+ break;
+ }
+ case State::MULTI_SELECTABLE:
+ {
+ stateName = "multiselectable";
+ break;
+ }
+ case State::OPAQUE:
+ {
+ stateName = "opaque";
+ break;
+ }
+ case State::PRESSED:
+ {
+ stateName = "pressed";
+ break;
+ }
+ case State::RESIZEABLE:
+ {
+ stateName = "resizable";
+ break;
+ }
+ case State::SELECTABLE:
+ {
+ stateName = "selectable";
+ break;
+ }
+ case State::SELECTED:
+ {
+ stateName = "selected";
+ break;
+ }
+ case State::SENSITIVE:
+ {
+ stateName = "sensitive";
+ break;
+ }
+ case State::SHOWING:
+ {
+ stateName = "showing";
+ break;
+ }
+ case State::SINGLE_LINE:
+ {
+ stateName = "single-line";
+ break;
+ }
+ case State::STALE:
+ {
+ stateName = "stale";
+ break;
+ }
+ case State::TRANSIENT:
+ {
+ stateName = "transient";
+ break;
+ }
+ case State::VERTICAL:
+ {
+ stateName = "vertical";
+ break;
+ }
+ case State::VISIBLE:
+ {
+ stateName = "visible";
+ break;
+ }
+ case State::MANAGES_DESCENDANTS:
+ {
+ stateName = "manages-descendants";
+ break;
+ }
+ case State::INDETERMINATE:
+ {
+ stateName = "indeterminate";
+ break;
+ }
+ case State::REQUIRED:
+ {
+ stateName = "required";
+ break;
+ }
+ case State::TRUNCATED:
+ {
+ stateName = "truncated";
+ break;
+ }
+ case State::ANIMATED:
+ {
+ stateName = "animated";
+ break;
+ }
+ case State::INVALID_ENTRY:
+ {
+ stateName = "invalid-entry";
+ break;
+ }
+ case State::SUPPORTS_AUTOCOMPLETION:
+ {
+ stateName = "supports-autocompletion";
+ break;
+ }
+ case State::SELECTABLE_TEXT:
+ {
+ stateName = "selectable-text";
+ break;
+ }
+ case State::IS_DEFAULT:
+ {
+ stateName = "is-default";
+ break;
+ }
+ case State::VISITED:
+ {
+ stateName = "visited";
+ break;
+ }
+ case State::CHECKABLE:
+ {
+ stateName = "checkable";
+ break;
+ }
+ case State::HAS_POPUP:
+ {
+ stateName = "has-popup";
+ break;
+ }
+ case State::READ_ONLY:
+ {
+ stateName = "read-only";
+ break;
+ }
+ case State::HIGHLIGHTED:
+ {
+ stateName = "highlighted";
+ break;
+ }
+ case State::HIGHLIGHTABLE:
+ {
+ stateName = "highlightable";
+ break;
+ }
+ case State::MAX_COUNT:
+ {
+ break;
+ }
+ }
+ if( stateName )
+ {
+ auto addr = obj->GetAddress();
+ std::string p;
+ if( addr )
+ p = ATSPI_PREFIX_PATH + addr.GetPath();
+ else
+ p = ATSPI_NULL_PATH;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< int >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "StateChanged",
+ stateName,
+ newValue1,
+ newValue2,
+ {0},
+ {"", "root"} );
+ }
+}
+
+void BridgeObject::EmitBoundsChanged( Accessible* obj, Dali::Rect<> rect )
+{
+ auto addr = obj->GetAddress();
+ const auto prefixPath = "/org/a11y/atspi/accessible/";
+ const auto nullPath = "/org/a11y/atspi/null";
+ std::string p;
+ if( addr )
+ p = prefixPath + addr.GetPath();
+ else
+ p = nullPath;
+ DBus::EldbusVariant< std::tuple<int32_t, int32_t, int32_t, int32_t> > tmp {
+ std::tuple<int32_t, int32_t, int32_t, int32_t>{ rect.x, rect.y, rect.width, rect.height } };
+ addFilteredEvent(FilteredEvents::boundsChanged, obj, 1.0f, [=]() {
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< std::tuple<int32_t, int32_t, int32_t, int32_t> >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "BoundsChanged",
+ "",
+ 0,
+ 0,
+ tmp,
+ {"", "root"} );
+ });
+}
+
+void BridgeObject::EmitCaretMoved( Accessible* obj, unsigned int cursorPosition )
+{
+ auto addr = obj->GetAddress();
+ std::string p = addr ? ATSPI_PREFIX_PATH + addr.GetPath() : ATSPI_NULL_PATH;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< int >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "TextCaretMoved",
+ "",
+ cursorPosition,
+ 0,
+ {0},
+ {"", "root"} );
+}
+
+void BridgeObject::EmitTextChanged( Accessible* obj, TextChangedState state, unsigned int position, unsigned int length, const std::string &content )
+{
+ const char* stateName = nullptr;
+ switch( state )
+ {
+ case TextChangedState::INSERT:
+ {
+ stateName = "insert";
+ break;
+ }
+ case TextChangedState::DELETE:
+ {
+ stateName = "delete";
+ break;
+ }
+ case TextChangedState::MAX_COUNT:
+ {
+ break;
+ }
+ }
+ if( stateName )
+ {
+ auto addr = obj->GetAddress();
+ std::string p = addr ? ATSPI_PREFIX_PATH + addr.GetPath() : ATSPI_NULL_PATH;
+ dbusServer.emit2< std::string, int, int, DBus::EldbusVariant< std::string >, Address >(
+ p,
+ AtspiDbusInterfaceEventObject,
+ "TextChanged",
+ stateName,
+ position,
+ length,
+ {content},
+ {"", "root"} );
+ }
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_OBJECT_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_OBJECT_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <array>
+#include <string>
+#include <unordered_map>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+#include <dali/public-api/math/rect.h>
+
+class BridgeObject : public virtual BridgeBase
+{
+protected:
+ BridgeObject();
+
+ void RegisterInterfaces();
+
+ DBus::DBusInterfaceDescription::SignalId stateChanged;
+
+ void EmitActiveDescendantChanged( Dali::Accessibility::Accessible* obj, Dali::Accessibility::Accessible *child ) override;
+ void EmitCaretMoved( Dali::Accessibility::Accessible* obj, unsigned int cursorPosition ) override;
+ void EmitTextChanged( Dali::Accessibility::Accessible* obj, Dali::Accessibility::TextChangedState state, unsigned int position, unsigned int length, const std::string &content ) override;
+ void EmitStateChanged( Dali::Accessibility::Accessible* obj, Dali::Accessibility::State state, int val1, int val2 ) override;
+ void Emit( Dali::Accessibility::Accessible* obj, Dali::Accessibility::WindowEvent we, unsigned int detail1 ) override;
+ void Emit( Dali::Accessibility::Accessible* obj, Dali::Accessibility::ObjectPropertyChangeEvent we ) override;
+ void EmitBoundsChanged( Dali::Accessibility::Accessible* obj, Dali::Rect<> rect ) override;
+
+public:
+ int GetChildCount();
+ DBus::ValueOrError< Dali::Accessibility::Accessible* > GetChildAtIndex( int index );
+ Dali::Accessibility::Accessible* GetParent();
+ DBus::ValueOrError< std::vector< Dali::Accessibility::Accessible* > > GetChildren();
+ std::string GetName();
+ std::string GetDescription();
+ DBus::ValueOrError< uint32_t > GetRole();
+ DBus::ValueOrError< std::string > GetRoleName();
+ DBus::ValueOrError< std::string > GetLocalizedRoleName();
+ DBus::ValueOrError< int32_t > GetIndexInParent();
+ DBus::ValueOrError< std::array< uint32_t, 2 > > GetStates();
+ DBus::ValueOrError< std::unordered_map< std::string, std::string > > GetAttributes();
+ DBus::ValueOrError< std::vector< std::string > > GetInterfaces();
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_OBJECT_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-text.h>
+
+// INTERNAL INCLUDES
+#include <dali/internal/input/common/input-method-context-factory.h>
+
+using namespace Dali::Accessibility;
+
+void BridgeText::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceText};
+ AddFunctionToInterface( desc, "GetText", &BridgeText::GetText );
+ AddGetPropertyToInterface( desc, "CharacterCount", &BridgeText::GetCharacterCount );
+ AddGetPropertyToInterface( desc, "CaretOffset", &BridgeText::GetCaretOffset );
+ AddFunctionToInterface( desc, "SetCaretOffset", &BridgeText::SetCaretOffset );
+ AddFunctionToInterface( desc, "GetTextAtOffset", &BridgeText::GetTextAtOffset );
+ AddFunctionToInterface( desc, "GetSelection", &BridgeText::GetSelection );
+ AddFunctionToInterface( desc, "SetSelection", &BridgeText::SetSelection );
+ AddFunctionToInterface( desc, "RemoveSelection", &BridgeText::RemoveSelection );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+Text* BridgeText::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< Text* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Text interface"};
+ return s2;
+}
+
+DBus::ValueOrError< std::string > BridgeText::GetText( int startOffset, int endOffset )
+{
+ return FindSelf()->GetText( startOffset, endOffset );
+}
+
+DBus::ValueOrError< int32_t > BridgeText::GetCharacterCount()
+{
+ return FindSelf()->GetCharacterCount();
+}
+
+DBus::ValueOrError< int32_t > BridgeText::GetCaretOffset()
+{
+ return FindSelf()->GetCaretOffset();
+}
+
+DBus::ValueOrError< bool > BridgeText::SetCaretOffset( int32_t offset )
+{
+ return FindSelf()->SetCaretOffset(offset);
+}
+
+DBus::ValueOrError< std::string, int, int > BridgeText::GetTextAtOffset( int32_t offset, uint32_t boundary )
+{
+ auto r = FindSelf()->GetTextAtOffset( offset, static_cast< TextBoundary >( boundary ) );
+ return {r.content, static_cast< int >( r.startOffset ), static_cast< int >( r.endOffset )};
+}
+
+DBus::ValueOrError< int, int > BridgeText::GetSelection( int32_t selectionNum )
+{
+ auto r = FindSelf()->GetSelection( selectionNum );
+ return {static_cast< int >( r.startOffset ), static_cast< int >( r.endOffset )};
+}
+
+DBus::ValueOrError< bool > BridgeText::RemoveSelection( int32_t selectionNum )
+{
+ return FindSelf()->RemoveSelection( selectionNum );
+}
+
+DBus::ValueOrError< bool > BridgeText::SetSelection( int32_t selectionNum, int32_t startOffset, int32_t endOffset )
+{
+ return FindSelf()->SetSelection( selectionNum, startOffset, endOffset );
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_TEXT_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_TEXT_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeText : public virtual BridgeBase
+{
+protected:
+ BridgeText() = default;
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::Text* FindSelf() const;
+
+public:
+ DBus::ValueOrError< std::string > GetText( int startOffset, int endOffset );
+ DBus::ValueOrError< int32_t > GetCharacterCount();
+ DBus::ValueOrError< int32_t > GetCaretOffset();
+ DBus::ValueOrError< bool > SetCaretOffset( int32_t offset );
+ DBus::ValueOrError< std::string, int, int > GetTextAtOffset( int32_t offset, uint32_t boundary );
+ DBus::ValueOrError< int, int > GetSelection( int32_t selectionNum );
+ DBus::ValueOrError< bool > RemoveSelection( int32_t selectionNum );
+ DBus::ValueOrError< bool > SetSelection( int32_t selectionNum, int32_t startOffset, int32_t endOffset );
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_TEXT_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-value.h>
+
+// EXTERNAL INCLUDES
+#include <iostream>
+
+using namespace Dali::Accessibility;
+
+BridgeValue::BridgeValue()
+{
+}
+
+void BridgeValue::RegisterInterfaces()
+{
+ DBus::DBusInterfaceDescription desc{AtspiDbusInterfaceValue};
+ AddGetSetPropertyToInterface( desc, "CurrentValue", &BridgeValue::GetCurrentValue, &BridgeValue::SetCurrentValue );
+ AddGetPropertyToInterface( desc, "MaximumValue", &BridgeValue::GetMaximumValue );
+ AddGetPropertyToInterface( desc, "MinimumIncrement", &BridgeValue::GetMinimumIncrement );
+ AddGetPropertyToInterface( desc, "MinimumValue", &BridgeValue::GetMinimumValue );
+ dbusServer.addInterface( "/", desc, true );
+}
+
+Value* BridgeValue::FindSelf() const
+{
+ auto s = BridgeBase::FindSelf();
+ assert( s );
+ auto s2 = dynamic_cast< Value* >( s );
+ if( !s2 )
+ throw std::domain_error{"object " + s->GetAddress().ToString() + " doesn't have Value interface"};
+ return s2;
+}
+double BridgeValue::GetCurrentValue()
+{
+ return FindSelf()->GetCurrent();
+}
+void BridgeValue::SetCurrentValue( double new_value )
+{
+ FindSelf()->SetCurrent( new_value );
+}
+double BridgeValue::GetMaximumValue()
+{
+ return FindSelf()->GetMaximum();
+}
+double BridgeValue::GetMinimumIncrement()
+{
+ return FindSelf()->GetMinimumIncrement();
+}
+double BridgeValue::GetMinimumValue()
+{
+ return FindSelf()->GetMinimum();
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_VALUE_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_VALUE_H
+
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// EXTERNAL INCLUDES
+#include <array>
+#include <string>
+#include <tuple>
+#include <unordered_map>
+#include <vector>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/bridge-base.h>
+
+class BridgeValue : public virtual BridgeBase
+{
+protected:
+ BridgeValue();
+
+ void RegisterInterfaces();
+
+ Dali::Accessibility::Value* FindSelf() const;
+
+public:
+ double GetCurrentValue();
+ void SetCurrentValue( double new_value );
+ double GetMaximumValue();
+ double GetMinimumIncrement();
+ double GetMinimumValue();
+};
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_VALUE_H
--- /dev/null
+/*
+ * Copyright (c) 2019 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+// CLASS HEADER
+
+// EXTERNAL INCLUDES
+#include <iostream>
+
+// INTERNAL INCLUDES
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-common.h>
+
+using namespace Dali::Accessibility;
+
+bool Component::Contains( Point p, CoordType ctype )
+{
+ auto extents = GetExtents( ctype );
+ return p.x >= extents.x && p.y >= extents.y && p.x <= extents.x + extents.width && p.y <= extents.y + extents.height;
+}
+
+Accessible* Component::GetAccessibleAtPoint( Point p, CoordType ctype )
+{
+ auto children = GetChildren();
+ for( auto childIt = children.rbegin(); childIt != children.rend(); childIt++ )
+ {
+ auto component = dynamic_cast< Component* >( *childIt );
+ if( component && component->Contains( p, ctype ) )
+ {
+ return component;
+ }
+ }
+ return nullptr;
+}
+
+bool Component::IsScrollable()
+{
+ return false;
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_LOCATORS_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_LOCATORS_H
+
+/*
+ * Copyright 2019 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+namespace dbusLocators
+{
+namespace callmgr
+{
+static constexpr const char* BUS = "org.tizen.callmgr";
+static constexpr const char* OBJ_PATH = "/org/tizen/callmgr";
+static constexpr const char* INTERFACE = "org.tizen.callmgr";
+}
+
+namespace accessibilityEMod
+{
+static constexpr const char* BUS = "org.enlightenment.wm-screen-reader";
+static constexpr const char* OBJ_PATH = "/org/tizen/GestureNavigation";
+static constexpr const char* INTERFACE = "org.tizen.GestureNavigation";
+
+static constexpr const char* ACCESSORIES_SP_ENABLED = "AccessoriesSwitchProviderEnabled";
+static constexpr const char* KEY_DOWN_SIGNAL = "KeyDown";
+static constexpr const char* KEY_UP_SIGNAL = "KeyUp";
+
+static constexpr const char* SCREEN_SP_ENABLED = "ScreenSwitchProviderEnabled";
+static constexpr const char* MOUSE_DOWN_SIGNAL = "MouseDown";
+static constexpr const char* MOUSE_UP_SIGNAL = "MouseUp";
+
+static constexpr const char* BACK_BUTTON_INTERCEPTION_ENABLED = "BackButtonInterceptionEnabled";
+static constexpr const char* BACK_BUTTON_DOWN_SIGNAL = "BackButtonDown";
+static constexpr const char* BACK_BUTTON_UP_SIGNAL = "BackButtonUp";
+}
+
+namespace freeDesktop
+{
+static constexpr const char* BUS = "org.freedesktop.DBus";
+static constexpr const char* OBJ_PATH = "/org/freedesktop/DBus";
+static constexpr const char* INTERFACE = "org.freedesktop.DBus";
+static constexpr const char* PROPERTIES_INTERFACE = "org.freedesktop.DBus.Properties";
+static constexpr const char* GET_CONNECTION_UNIX_PROCESS_ID = "GetConnectionUnixProcessID";
+static constexpr const char* SET = "Set";
+static constexpr const char* GET = "Get";
+}
+
+namespace windowManager
+{
+static constexpr const char* BUS = "org.enlightenment.wm";
+static constexpr const char* OBJ_PATH = "/org/enlightenment/wm";
+static constexpr const char* INTERFACE = "org.enlightenment.wm.proc";
+static constexpr const char* GET_VISIBLE_WIN_INFO = "GetVisibleWinInfo";
+static constexpr const char* GET_FOCUS_PROC = "GetFocusProc";
+}
+
+namespace atspi
+{
+static constexpr const char* BUS = "org.a11y.Bus";
+static constexpr const char* OBJ_PATH = "/org/a11y/bus";
+static constexpr const char* BUS_INTERFACE = "org.a11y.Bus";
+static constexpr const char* STATUS_INTERFACE = "org.a11y.Status";
+
+static constexpr const char* GET_ADDRESS = "GetAddress";
+static constexpr const char* IS_ENABLED = "IsEnabled";
+static constexpr const char* GET_ATTRIBUTES = "GetAttributes";
+static constexpr const char* DO_ACTION_NAME = "DoActionName";
+static constexpr const char* PARENT = "Parent";
+static constexpr const char* GET_MATCHES = "GetMatches";
+static constexpr const char* GET_INDEX_IN_PARENT = "GetIndexInParent";
+static constexpr const char* SELECT_CHILD = "SelectChild";
+static constexpr const char* NAME = "Name";
+static constexpr const char* GET_ROLE = "GetRole";
+static constexpr const char* CHILD_COUNT = "ChildCount";
+static constexpr const char* GET_CHILD_AT_INDEX = "GetChildAtIndex";
+static constexpr const char* GET_STATE = "GetState";
+static constexpr const char* GET_RELATION_SET = "GetRelationSet";
+static constexpr const char* GET_EXTENTS = "GetExtents";
+static constexpr const char* CURRENT_VALUE = "CurrentValue";
+static constexpr const char* MAXIMUM_VALUE = "MaximumValue";
+static constexpr const char* MINIMUM_VALUE = "MinimumValue";
+static constexpr const char* GET_INTERFACES = "GetInterfaces";
+static constexpr const char* GET_NAVIGABLE_AT_POINT = "GetNavigableAtPoint";
+}
+}
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_LOCATORS_H
--- /dev/null
+/*
+ * Copyright 2019 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+// CLASS HEADER
+#include <dali/internal/accessibility/tizen-wayland/atspi/dbus.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-common.h>
+
+// EXTERNAL INCLUDES
+#include <sstream>
+#include <iostream>
+#include <mutex>
+
+#include <Eldbus.h>
+#include <Ecore_Input.h>
+
+// INTERNAL INCLUDES
+#include <dali/public-api/dali-adaptor-common.h>
+
+#define DBUS_INTERFACE_PROPERTIES "org.freedesktop.DBus.Properties"
+
+#undef EINA_FALSE
+#undef EINA_TRUE
+#define EINA_TRUE static_cast< Eina_Bool >( 1 )
+#define EINA_FALSE static_cast< Eina_Bool >( 0 )
+
+//#define DBUS_DEBUG(...) do { DBus::debugPrint(__FILE__, __LINE__, __VA_ARGS__); } while (0)
+
+std::atomic< unsigned int > DBus::detail::CallId::LastId{0};
+static std::function< void( const char*, size_t ) > debugPrinter;
+static std::mutex debugLock;
+
+thread_local std::string DBus::DBusServer::currentObjectPath;
+thread_local DBusWrapper::ConnectionPtr DBus::DBusServer::currentConnection;
+
+void DBus::setDebugPrinter( std::function< void( const char*, size_t ) > printer )
+{
+ std::lock_guard< std::mutex > lock( debugLock );
+ debugPrinter = std::move( printer );
+}
+
+void DBus::debugPrint( const char* file, size_t line, const char* format, ... )
+{
+ std::function< void( const char*, size_t ) > debugPrintFunc;
+ {
+ std::lock_guard< std::mutex > lock( debugLock );
+ if( !debugPrinter )
+ return;
+ debugPrintFunc = debugPrinter;
+ }
+ std::vector< char > buf( 4096 );
+ int offset;
+ while( true )
+ {
+ offset = snprintf( buf.data(), buf.size(), "%s:%u: ", file, static_cast< unsigned int >( line ) );
+ if( offset < 0 )
+ return;
+ if( static_cast< size_t >( offset ) < buf.size() )
+ break;
+ buf.resize( offset + 1 );
+ }
+
+ while( true )
+ {
+ va_list args;
+ va_start( args, format );
+ int z = vsnprintf( buf.data() + offset, buf.size() - offset, format, args );
+ va_end( args );
+ if( z < 0 )
+ return;
+ bool done = static_cast< size_t >( z ) + static_cast< size_t >( offset ) < buf.size();
+ buf.resize( static_cast< size_t >( z ) + static_cast< size_t >( offset ) );
+ if( done )
+ break;
+ }
+ debugPrintFunc( buf.data(), buf.size() );
+}
+
+DBusWrapper::ConnectionPtr DBus::getDBusConnectionByName( const std::string& name )
+{
+ return DBUS_W->eldbus_address_connection_get_impl( name );
+}
+
+DBusWrapper::ConnectionPtr DBus::getDBusConnectionByType( ConnectionType connectionType )
+{
+ return DBUS_W->eldbus_connection_get_impl(connectionType);
+}
+
+DBus::DBusClient::DBusClient( std::string busName, std::string pathName, std::string interfaceName, ConnectionType tp ) : DBusClient( std::move( busName ), std::move( pathName ), std::move( interfaceName ), getDBusConnectionByType( tp ) )
+{
+}
+
+DBus::DBusClient::DBusClient( std::string busName, std::string pathName, std::string interfaceName, const DBusWrapper::ConnectionPtr &conn )
+{
+ if( !conn )
+ connectionState->connection = getDBusConnectionByType( ConnectionType::SESSION );
+ else
+ connectionState->connection = conn;
+
+ std::ostringstream o;
+ o << "bus = " << busName << " path = " << pathName << " connection = " << DBUS_W->eldbus_connection_unique_name_get_impl( connectionState->connection );
+ info = o.str();
+
+ connectionState->object = DBUS_W->eldbus_object_get_impl( connectionState->connection, busName.c_str(), pathName.c_str() );
+ if( connectionState->object )
+ {
+ connectionState->proxy = DBUS_W->eldbus_proxy_get_impl( connectionState->object, interfaceName );
+ if( interfaceName != DBUS_INTERFACE_PROPERTIES )
+ {
+ connectionState->propertiesProxy = DBUS_W->eldbus_proxy_get_impl( connectionState->object, DBUS_INTERFACE_PROPERTIES );
+ }
+ else
+ {
+ connectionState->propertiesProxy = DBUS_W->eldbus_proxy_copy_impl( connectionState->proxy );
+ }
+ }
+ connectionInfo = std::make_shared< ConnectionInfo >();
+ connectionInfo->busName = std::move( busName );
+ connectionInfo->pathName = std::move( pathName );
+ connectionInfo->interfaceName = std::move( interfaceName );
+}
+
+DBus::DBusServer::DBusServer( ConnectionType tp ) : DBus::DBusServer( DBus::getDBusConnectionByType( tp ) )
+{
+}
+
+DBus::DBusServer::DBusServer( const DBusWrapper::ConnectionPtr &conn )
+{
+ if( !conn )
+ connection = getDBusConnectionByType( ConnectionType::SESSION );
+ else
+ connection = conn;
+}
+
+DBus::DBusInterfaceDescription::DBusInterfaceDescription( std::string interfaceName ) : interfaceName( std::move( interfaceName ) )
+{
+}
+
+void DBus::DBusServer::addInterface( const std::string& pathName, DBusInterfaceDescription& dscr, bool fallback )
+{
+ DBUS_W->add_interface_impl( fallback, pathName, connection, destructorObject->destructors, dscr.interfaceName, dscr.methods, dscr.properties, dscr.signals );
+}
+
+std::string DBus::DBusServer::getBusName() const
+{
+ return getConnectionName( connection );
+}
+
+std::string DBus::getConnectionName( const DBusWrapper::ConnectionPtr &c )
+{
+ return DBUS_W->eldbus_connection_unique_name_get_impl( c );
+}
+
+bool DBus::DBusClient::getFromEinaValue(const _Eina_Value *v, void *dst)
+{
+ return eina_value_get(const_cast<Eina_Value*>(v), dst);
+}
+
+static std::unique_ptr<DBusWrapper> InstalledWrapper;
+
+struct DefaultDBusWrapper : public DBusWrapper
+{
+ constexpr static int ELDBUS_CALL_TIMEOUT = 1000;
+
+ DefaultDBusWrapper()
+ {
+ }
+
+ ~DefaultDBusWrapper()
+ {
+ }
+
+ #define DEFINE_GS(name, eldbus_name, unref_call) \
+ static eldbus_name *get(const std::shared_ptr<name> &a) { \
+ return static_cast<name ## Impl*>(a.get())->Value; \
+ } \
+ static eldbus_name *release(const std::shared_ptr<name> &a) { \
+ auto z = static_cast<name ## Impl*>(a.get())->Value; \
+ static_cast<name ## Impl*>(a.get())->Value = nullptr; \
+ return z; \
+ } \
+ template <typename ... ARGS> static std::shared_ptr<name> create(const eldbus_name *v, ARGS && ... args) { \
+ return std::make_shared<name ## Impl>(const_cast<eldbus_name*>(v), std::forward<ARGS>(args)...); \
+ }
+
+ #define DEFINE_TYPE(name, eldbus_name, unref_call) \
+ struct name ## Impl : public name { \
+ eldbus_name *Value = nullptr; \
+ bool EraseOnExit = false; \
+ name ## Impl(eldbus_name *Value, bool EraseOnExit = false) : Value(Value), EraseOnExit(EraseOnExit) { } \
+ ~name ## Impl() { \
+ if (EraseOnExit && Value) { unref_call; } \
+ } \
+ }; \
+ DEFINE_GS(name, eldbus_name, unref_call)
+
+ struct ConnectionImpl : public Connection
+ {
+ Eldbus_Connection *Value = nullptr;
+ bool EraseOnExit = false;
+ ConnectionImpl(Eldbus_Connection *Value, bool EraseOnExit = false) : Value(Value), EraseOnExit(EraseOnExit)
+ {
+ ecore_event_init();
+ eldbus_init();
+ }
+
+ ~ConnectionImpl()
+ {
+ if (EraseOnExit && Value)
+ {
+ eldbus_connection_unref( Value );
+ }
+ eldbus_shutdown();
+ ecore_event_shutdown();
+ }
+ };
+
+ struct MessageIterImpl : public MessageIter
+ {
+ Eldbus_Message_Iter *Value = nullptr, *Parent = nullptr;
+ bool EraseOnExit = false;
+ MessageIterImpl(Eldbus_Message_Iter *Value, Eldbus_Message_Iter *Parent, bool EraseOnExit = false) : Value(Value), Parent(Parent), EraseOnExit(EraseOnExit)
+ {
+ }
+
+ ~MessageIterImpl()
+ {
+ if (EraseOnExit && Value && Parent)
+ {
+ eldbus_message_iter_container_close(Parent, Value);
+ }
+ }
+ };
+
+ DEFINE_GS(Connection, Eldbus_Connection, )
+ DEFINE_GS(MessageIter, Eldbus_Message_Iter, )
+ DEFINE_TYPE(Message, Eldbus_Message, eldbus_message_unref( Value ))
+ DEFINE_TYPE(Proxy, Eldbus_Proxy, )
+ DEFINE_TYPE(Object, Eldbus_Object, eldbus_object_unref( Value ))
+ DEFINE_TYPE(Pending, Eldbus_Pending, )
+ DEFINE_TYPE(EventPropertyChanged, Eldbus_Proxy_Event_Property_Changed, )
+ #undef DEFINE_TYPE
+
+ std::shared_ptr<Connection> eldbus_address_connection_get_impl(const std::string &addr) override
+ {
+ eldbus_init();
+ auto p = eldbus_address_connection_get(addr.c_str());
+ auto w = create(p, true);
+ eldbus_shutdown();
+ return w;
+ }
+
+#define eldbus_message_iter_arguments_append_impl_basic(type, sig) \
+ void eldbus_message_iter_arguments_append_impl(const MessageIterPtr &it, type src) override { \
+ eldbus_message_iter_arguments_append( get(it), #sig, src ); \
+ } \
+ bool eldbus_message_iter_get_and_next_impl(const MessageIterPtr &it, type &dst) override { \
+ return eldbus_message_iter_get_and_next( get(it), (#sig)[0], &dst ); \
+ }
+
+ eldbus_message_iter_arguments_append_impl_basic(uint8_t, y)
+ eldbus_message_iter_arguments_append_impl_basic(uint16_t, q)
+ eldbus_message_iter_arguments_append_impl_basic(uint32_t, u)
+ eldbus_message_iter_arguments_append_impl_basic(uint64_t, t)
+ eldbus_message_iter_arguments_append_impl_basic(int16_t, n)
+ eldbus_message_iter_arguments_append_impl_basic(int32_t, i)
+ eldbus_message_iter_arguments_append_impl_basic(int64_t, x)
+ eldbus_message_iter_arguments_append_impl_basic(double, d)
+
+#undef eldbus_message_iter_arguments_append_impl_basic
+
+ void eldbus_message_iter_arguments_append_impl(const MessageIterPtr &it, bool src) override
+ {
+ eldbus_message_iter_arguments_append( get(it), "b", src ? 1 : 0 );
+ }
+
+ bool eldbus_message_iter_get_and_next_impl(const MessageIterPtr &it, bool &dst) override
+ {
+ unsigned char q;
+ auto z = eldbus_message_iter_get_and_next( get(it), 'b', &q );
+ dst = q != 0;
+ return z;
+ }
+
+ void eldbus_message_iter_arguments_append_impl(const MessageIterPtr &it, const std::string &src) override
+ {
+ eldbus_message_iter_arguments_append( get(it), "s", src.c_str() );
+ }
+
+ bool eldbus_message_iter_get_and_next_impl(const MessageIterPtr &it, std::string &dst) override
+ {
+ auto iter = get(it);
+ const char* q;
+ if( !eldbus_message_iter_get_and_next( iter, 's', &q ) )
+ {
+ if( !eldbus_message_iter_get_and_next( iter, 'o', &q ) )
+ {
+ return false;
+ }
+ }
+ dst = q;
+ return true;
+ }
+
+ void eldbus_message_iter_arguments_append_impl(const MessageIterPtr &it, const ObjectPath &src) override
+ {
+ eldbus_message_iter_arguments_append( get(it), "o", src.value.c_str() );
+ }
+
+ bool eldbus_message_iter_get_and_next_impl(const MessageIterPtr &it, ObjectPath &dst) override
+ {
+ const char* q;
+ if( !eldbus_message_iter_get_and_next( get(it), 'o', &q ) )
+ {
+ return false;
+ }
+ dst.value = q;
+ return true;
+ }
+
+ MessageIterPtr eldbus_message_iter_container_new_impl(const MessageIterPtr &it, int type, const std::string &sig) override
+ {
+ auto z = eldbus_message_iter_container_new( get(it), type, !sig.empty() ? sig.c_str() : NULL );
+ return create(z, get(it), true);
+ }
+
+ MessageIterPtr eldbus_message_iter_get_and_next_by_type_impl(const MessageIterPtr &it, int type) override
+ {
+ Eldbus_Message_Iter* entry;
+ if (!eldbus_message_iter_get_and_next( get(it), type, &entry ) )
+ {
+ return {};
+ }
+ return create(entry, get(it), false);
+ }
+
+ MessageIterPtr eldbus_message_iter_get_impl(const MessagePtr &msg, bool) override
+ {
+ return create(eldbus_message_iter_get(get(msg)), nullptr, false);
+ }
+
+ MessagePtr eldbus_proxy_method_call_new_impl(const ProxyPtr &proxy, const std::string &funcName)
+ {
+ return create(eldbus_proxy_method_call_new( get(proxy), funcName.c_str() ) );
+ }
+
+ MessagePtr eldbus_proxy_send_and_block_impl(const ProxyPtr &proxy, const MessagePtr &msg) override
+ {
+ return create(eldbus_proxy_send_and_block(get(proxy), release(msg), ELDBUS_CALL_TIMEOUT) );
+ }
+
+ bool eldbus_message_error_get_impl(const MessagePtr &msg, std::string &name, std::string &text) override
+ {
+ const char *errname, *errmsg;
+ if( eldbus_message_error_get( get(msg), &errname, &errmsg ) )
+ {
+ name = errname;
+ text = errmsg;
+ return true;
+ }
+ return false;
+ }
+
+ std::string eldbus_message_signature_get_impl(const MessagePtr &msg) override
+ {
+ return eldbus_message_signature_get(get(msg));
+ }
+
+ static void callAsyncCb( void* data, const Eldbus_Message *msg, Eldbus_Pending *pending )
+ {
+ auto d = static_cast< SendCallback* >( data );
+ (*d)( create(msg, false) );
+ }
+
+ static void pendingFreeCb( void* data, const void* )
+ {
+ auto d = static_cast< SendCallback* >( data );
+ delete d;
+ }
+
+ static void listenerCallbackFree( void* data, const void* )
+ {
+ auto d = static_cast< std::function< void( const Eldbus_Message* msg ) >* >( data );
+ delete d;
+ }
+
+ PendingPtr eldbus_proxy_send_impl(const ProxyPtr &proxy, const MessagePtr &msg, const SendCallback &callback) override
+ {
+ auto cb = new SendCallback{ callback };
+ auto pending = eldbus_proxy_send( get(proxy), release(msg), callAsyncCb, cb, ELDBUS_CALL_TIMEOUT );
+ if( pending )
+ {
+ eldbus_pending_free_cb_add( pending, pendingFreeCb, cb );
+ }
+ else
+ {
+ delete cb;
+ }
+ return create(pending, false);
+ }
+
+ std::string eldbus_proxy_interface_get_impl(const ProxyPtr &proxy) override
+ {
+ return eldbus_proxy_interface_get( get(proxy) );
+ }
+
+ static void listenerCallback( void* data, const Eldbus_Message* msg )
+ {
+ auto p = static_cast< std::function< void( const Eldbus_Message* msg ) >* >( data );
+ ( *p )( msg );
+ }
+
+ void eldbus_proxy_signal_handler_add_impl(const ProxyPtr &proxy, const std::string &member, const std::function<void(const MessagePtr &)> &cb) override
+ {
+ auto tmp = new std::function< void( const Eldbus_Message* msg ) >
+ {
+ [cb](const Eldbus_Message* msg)
+ {
+ cb(create(msg, false));
+ }
+ };
+ auto handler = eldbus_proxy_signal_handler_add( get(proxy), member.c_str(), listenerCallback, tmp );
+ if( handler )
+ {
+ eldbus_proxy_free_cb_add( get(proxy), listenerCallbackFree, tmp );
+ }
+ else
+ {
+ delete tmp;
+ }
+ }
+
+ std::string eldbus_message_iter_signature_get_impl(const MessageIterPtr &iter) override
+ {
+ return eldbus_message_iter_signature_get( get(iter) );
+ }
+
+ MessagePtr eldbus_message_method_return_new_impl( const MessagePtr &msg) override
+ {
+ return create(eldbus_message_method_return_new( get(msg) ) );
+ }
+
+ MessagePtr eldbus_message_error_new_impl( const MessagePtr &msg, const std::string &err, const std::string &txt ) override
+ {
+ return create(eldbus_message_error_new( get(msg), err.c_str(), txt.c_str() ) );
+ }
+
+ PendingPtr eldbus_connection_send_impl(const ConnectionPtr &conn, const MessagePtr &msg) override
+ {
+ return create(eldbus_connection_send( get(conn), get(msg), NULL, NULL, -1 ) );
+ }
+
+ MessagePtr eldbus_message_signal_new_impl(const std::string &path, const std::string &iface, const std::string &name) override
+ {
+ return create(eldbus_message_signal_new( path.c_str(), iface.c_str(), name.c_str() ) );
+ }
+
+ MessagePtr eldbus_message_ref_impl(const MessagePtr &msg) override
+ {
+ return create(eldbus_message_ref( get(msg) ), true );
+ }
+
+ ConnectionPtr eldbus_connection_get_impl(ConnectionType type) override
+ {
+ Eldbus_Connection_Type eldbusType = ELDBUS_CONNECTION_TYPE_SYSTEM;
+
+ switch( type )
+ {
+ case ConnectionType::SYSTEM:
+ {
+ eldbusType = ELDBUS_CONNECTION_TYPE_SYSTEM;
+ break;
+ }
+ case ConnectionType::SESSION:
+ {
+ eldbusType = ELDBUS_CONNECTION_TYPE_SESSION;
+ break;
+ }
+ }
+
+ eldbus_init();
+ auto p = eldbus_connection_get( eldbusType );
+ auto w = create(p, true);
+ eldbus_shutdown();
+ return w;
+ }
+
+ std::string eldbus_connection_unique_name_get_impl(const ConnectionPtr &conn) override
+ {
+ return eldbus_connection_unique_name_get( get(conn) );
+ }
+
+ ObjectPtr eldbus_object_get_impl( const ConnectionPtr &conn, const std::string &bus, const std::string &path ) override
+ {
+ return create(eldbus_object_get(get(conn), bus.c_str(), path.c_str() ), true );
+ }
+
+ ProxyPtr eldbus_proxy_get_impl( const ObjectPtr &obj, const std::string &interface ) override
+ {
+ return create(eldbus_proxy_get(get(obj), interface.c_str() ), false );
+ }
+
+ ProxyPtr eldbus_proxy_copy_impl( const ProxyPtr &ptr) override
+ {
+ return create(get(ptr), false );
+ }
+
+ struct Implementation
+ {
+ Eldbus_Service_Interface_Desc dsc;
+ std::vector< std::vector< Eldbus_Arg_Info > > argsInfos;
+ std::vector< Eldbus_Method > methods;
+ std::vector< Eldbus_Signal > signals;
+ std::vector< Eldbus_Property > properties;
+
+ std::unordered_map< std::string, DBusWrapper::MethodInfo > methodsMap;
+ std::unordered_map< std::string, DBusWrapper::PropertyInfo > propertiesMap;
+ std::unordered_map< unsigned int, DBusWrapper::SignalInfo > signalsMap;
+
+ DBusWrapper::ConnectionWeakPtr connection;
+ };
+
+ static std::unordered_map< const Eldbus_Service_Interface*, std::unique_ptr< Implementation > > globalEntries;
+ static std::mutex globalEntriesMutex;
+
+#undef EINA_FALSE
+#undef EINA_TRUE
+#define EINA_FALSE static_cast<Eina_Bool>(0)
+#define EINA_TRUE static_cast<Eina_Bool>(1)
+
+ static Eina_Bool property_get_callback( const Eldbus_Service_Interface* iface, const char* propertyName, Eldbus_Message_Iter* iter,
+ const Eldbus_Message* message, Eldbus_Message** error )
+ {
+ Implementation* impl = nullptr;
+ {
+ std::lock_guard< std::mutex > lock( globalEntriesMutex );
+ auto it = globalEntries.find( iface );
+ if( it != globalEntries.end() )
+ {
+ impl = it->second.get();
+ }
+ }
+ if( !impl )
+ {
+ return EINA_FALSE;
+ }
+
+ auto it = impl->propertiesMap.find( propertyName );
+ if( it == impl->propertiesMap.end() || !it->second.getCallback )
+ {
+ return EINA_FALSE;
+ }
+
+ auto connection = impl->connection.lock();
+ if( !connection )
+ {
+ return EINA_FALSE;
+ }
+
+ DBus::DBusServer::CurrentObjectSetter currentObjectSetter( connection, eldbus_message_path_get( message ) );
+ auto reply = it->second.getCallback( create(message, false), create(iter, nullptr, false) );
+ if( !reply.empty() )
+ {
+ if( error )
+ {
+ *error = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", reply.c_str() );
+ }
+ return EINA_FALSE;
+ }
+
+ return EINA_TRUE;
+ }
+
+ static Eldbus_Message* property_set_callback( const Eldbus_Service_Interface* iface, const char* propertyName, Eldbus_Message_Iter* iter,
+ const Eldbus_Message* message )
+ {
+ Implementation* impl = nullptr;
+ {
+ std::lock_guard< std::mutex > lock( globalEntriesMutex );
+ auto it = globalEntries.find( iface );
+ if( it != globalEntries.end() )
+ {
+ impl = it->second.get();
+ }
+ }
+ if( !impl )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Unknown interface" );
+ return ret;
+ }
+ auto it = impl->propertiesMap.find( propertyName );
+ if( it == impl->propertiesMap.end() || !it->second.setCallback )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Unknown setter" );
+ return ret;
+ }
+ auto connection = impl->connection.lock();
+ if( !connection )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Connection lost" );
+ return ret;
+ }
+
+ DBus::DBusServer::CurrentObjectSetter currentObjectSetter( connection, eldbus_message_path_get( message ) );
+ auto reply = it->second.setCallback( create(message, false), create(iter, nullptr, false) );
+
+ Eldbus_Message* ret = nullptr;
+ if( !reply.empty() )
+ {
+ ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", reply.c_str() );
+ }
+ else
+ {
+ ret = eldbus_message_method_return_new( message );
+ }
+ return ret;
+ }
+
+ static Eldbus_Message* method_callback( const Eldbus_Service_Interface* iface, const Eldbus_Message* message )
+ {
+ Implementation* impl = nullptr;
+ {
+ std::lock_guard< std::mutex > lock( globalEntriesMutex );
+ auto it = globalEntries.find( iface );
+ if( it != globalEntries.end() )
+ impl = it->second.get();
+ }
+ if( !impl )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Unknown interface" );
+ return ret;
+ }
+ std::string memberName = eldbus_message_member_get( message );
+ auto it = impl->methodsMap.find( memberName );
+ if( it == impl->methodsMap.end() )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Unknown method" );
+ return ret;
+ }
+ auto connection = impl->connection.lock();
+ if( !connection )
+ {
+ auto ret = eldbus_message_error_new( message, "org.freedesktop.DBus.Error.Failed", "Connection lost" );
+ return ret;
+ }
+ DBus::DBusServer::CurrentObjectSetter currentObjectSetter( connection, eldbus_message_path_get( message ) );
+ auto reply = it->second.callback( create(message) );
+ return release(reply);
+ }
+
+ void add_interface_impl( bool fallback, const std::string& pathName,
+ const ConnectionPtr &connection,
+ std::vector<std::function<void()>> &destructors,
+ const std::string& interfaceName,
+ std::vector< MethodInfo >& dscrMethods,
+ std::vector< PropertyInfo >& dscrProperties,
+ std::vector< SignalInfo >& dscrSignals ) override
+ {
+ std::vector< Eldbus_Method > methods;
+ std::vector< Eldbus_Signal > signals;
+ std::vector< Eldbus_Property > properties;
+ std::vector< std::vector< Eldbus_Arg_Info > > argsInfos;
+ std::unordered_map< std::string, DBus::DBusInterfaceDescription::MethodInfo > methodsMap;
+ std::unordered_map< std::string, DBus::DBusInterfaceDescription::PropertyInfo > propertiesMap;
+ std::unordered_map< unsigned int, DBus::DBusInterfaceDescription::SignalInfo > signalsMap;
+
+ DBUS_DEBUG( "interface %s path %s on bus %s", interfaceName.c_str(), pathName.c_str(), DBus::getConnectionName( connection ).c_str() );
+ auto makeArgInfo = [&](const std::vector<std::pair<std::string, std::string>> &input) {
+ argsInfos.push_back({});
+ auto &dst = argsInfos.back();
+ for(auto &s : input)
+ {
+ auto a = Strings.add(s.first);
+ auto b = Strings.add(s.second);
+ dst.push_back({ a, b });
+ }
+ dst.push_back({ nullptr, nullptr });
+ return dst.data();
+ };
+ for( auto& ee : dscrMethods )
+ {
+ auto key = ee.memberName;
+ DBUS_DEBUG( "adding method %s", ee.memberName.c_str() );
+ for( auto& r : ee.in )
+ {
+ DBUS_DEBUG( "in %s '%s'", r.first.c_str(), r.second.c_str() );
+ }
+ for( auto& r : ee.out )
+ {
+ DBUS_DEBUG( "out %s '%s'", r.first.c_str(), r.second.c_str() );
+ }
+ auto& e = ( methodsMap[key] = std::move( ee ) );
+ methods.push_back( {} );
+ auto& m = methods.back();
+ m.member = e.memberName.c_str();
+ m.in = makeArgInfo(e.in);
+ m.out = makeArgInfo(e.out);
+ m.cb = method_callback;
+ m.flags = 0;
+ }
+ for( auto& ee : dscrProperties )
+ {
+ auto key = ee.memberName;
+ DBUS_DEBUG( "adding property %s", ee.memberName.c_str() );
+ auto& e = ( propertiesMap[key] = std::move( ee ) );
+ properties.push_back( {} );
+ auto& m = properties.back();
+ m.name = e.memberName.c_str();
+ m.type = e.typeSignature.c_str();
+ m.get_func = e.getCallback ? property_get_callback : nullptr;
+ m.set_func = e.setCallback ? property_set_callback : nullptr;
+ m.flags = 0;
+ }
+ dscrMethods.clear();
+ dscrProperties.clear();
+ dscrSignals.clear();
+
+ methods.push_back( {nullptr, nullptr, nullptr, nullptr, 0} );
+ signals.push_back( {nullptr, nullptr, 0} );
+ properties.push_back( {nullptr, nullptr, nullptr, nullptr, 0} );
+
+ auto impl = std::unique_ptr< Implementation >( new Implementation{
+ {interfaceName.c_str(),
+ methods.data(),
+ signals.data(),
+ properties.data(),
+ nullptr,
+ nullptr},
+ std::move( argsInfos ),
+ std::move( methods ),
+ std::move( signals ),
+ std::move( properties ),
+ std::move( methodsMap ),
+ std::move( propertiesMap ),
+ std::move( signalsMap ),
+ connection} );
+
+ {
+ std::lock_guard< std::mutex > lock( globalEntriesMutex );
+ auto v = fallback ? eldbus_service_interface_fallback_register( get(connection), pathName.c_str(), &impl->dsc ) : eldbus_service_interface_register( get(connection), pathName.c_str(), &impl->dsc );
+ assert( v );
+ globalEntries[v] = std::move( impl );
+ DBUS_DEBUG( "registering interface %p (%d)", v, fallback ? 1 : 0 );
+ destructors.push_back([=]()
+ {
+ DBUS_DEBUG( "unregistering interface %p", v );
+ eldbus_service_interface_unregister( v );
+ std::lock_guard< std::mutex > lock( globalEntriesMutex );
+ globalEntries.erase( v );
+ }
+ );
+ }
+ }
+
+ static void listenerEventChangedCallback( void* data, Eldbus_Proxy* proxy EINA_UNUSED, void* event )
+ {
+ auto p = static_cast< std::function< void( Eldbus_Proxy_Event_Property_Changed* ) >* >( data );
+ ( *p )( static_cast< Eldbus_Proxy_Event_Property_Changed* >( event ) );
+ }
+
+ static void ProxyEventCallbackDelCb( void* data, const void *obj )
+ {
+ auto d = static_cast< std::function< void( Eldbus_Proxy_Event_Property_Changed* ) >* >( data );
+ delete d;
+ }
+
+ void add_property_changed_event_listener_impl( const ProxyPtr &proxy, const std::string &interface, const std::string &name, std::function< void( const Eina_Value * ) > cb) override
+ {
+ auto callbackLambdaPtr = new std::function< void( Eldbus_Proxy_Event_Property_Changed *epc ) >
+ {
+ [cb, name, interface]( Eldbus_Proxy_Event_Property_Changed *ev )
+ {
+ const char* ifc = eldbus_proxy_interface_get( ev->proxy );
+ if( ev->name && ev->name == name && ifc && interface == ifc )
+ {
+ cb(ev->value);
+ }
+ }
+ };
+ auto p = get(proxy);
+ eldbus_proxy_event_callback_add( p, ELDBUS_PROXY_EVENT_PROPERTY_CHANGED, listenerEventChangedCallback, callbackLambdaPtr );
+ eldbus_proxy_free_cb_add( p, ProxyEventCallbackDelCb, callbackLambdaPtr );
+ }
+};
+
+std::unordered_map< const Eldbus_Service_Interface*, std::unique_ptr< DefaultDBusWrapper::Implementation > > DefaultDBusWrapper::globalEntries;
+std::mutex DefaultDBusWrapper::globalEntriesMutex;
+
+DBusWrapper *DBusWrapper::Installed()
+{
+ if (!InstalledWrapper)
+ {
+ InstalledWrapper.reset(new DefaultDBusWrapper);
+ }
+ return InstalledWrapper.get();
+}
+
+void DBusWrapper::Install(std::unique_ptr<DBusWrapper> w)
+{
+ InstalledWrapper = std::move(w);
+}
--- /dev/null
+#ifndef DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_H
+#define DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_H
+
+/*
+ * Copyright 2019 Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+ // EXTERNAL INCLUDES
+#include <memory>
+#include <array>
+#include <atomic>
+#include <cstdint>
+#include <map>
+#include <sstream>
+#include <string>
+#include <thread>
+#include <tuple>
+#include <type_traits>
+#include <unordered_map>
+#include <vector>
+#include <functional>
+#include <string.h>
+
+// INTERNAL INCLUDES
+#include <dali/devel-api/adaptor-framework/atspi-accessibility.h>
+#include <dali/internal/accessibility/tizen-wayland/atspi/accessibility-optional.h>
+
+#define ATSPI_PREFIX_PATH "/org/a11y/atspi/accessible/"
+#define ATSPI_NULL_PATH "/org/a11y/atspi/null"
+
+struct _Eina_Value;
+
+struct ObjectPath
+{
+ std::string value;
+};
+
+struct DALI_ADAPTOR_API DBusWrapper
+{
+ virtual ~DBusWrapper() = default;
+
+ enum class ConnectionType
+ {
+ SYSTEM,
+ SESSION
+ };
+
+#define DEFINE_TYPE(name, eldbus_name, unref_call) \
+ struct name { virtual ~name() = default; }; \
+ using name ## Ptr = std::shared_ptr<name>; \
+ using name ## WeakPtr = std::weak_ptr<name>; \
+
+ DEFINE_TYPE(Connection, Eldbus_Connection, )
+ DEFINE_TYPE(MessageIter, Eldbus_Message_Iter, eldbus_message_iter_container_close(Value))
+ DEFINE_TYPE(Message, Eldbus_Message, eldbus_message_unref(Value))
+ DEFINE_TYPE(Proxy, Eldbus_Proxy, eldbus_proxy_unref(Value))
+ DEFINE_TYPE(Object, Eldbus_Object, eldbus_object_unref(Value))
+ DEFINE_TYPE(Pending, Eldbus_Pending, )
+ DEFINE_TYPE(EventPropertyChanged, Eldbus_Proxy_Event_Property_Changed, )
+
+#undef DEFINE_TYPE
+ virtual ConnectionPtr eldbus_address_connection_get_impl(const std::string& addr) = 0;
+
+#define eldbus_message_iter_arguments_append_impl_basic_impl(type_set, type_get, sig) \
+ virtual void eldbus_message_iter_arguments_append_impl(const MessageIterPtr &it, type_set src) = 0; \
+ virtual bool eldbus_message_iter_get_and_next_impl(const MessageIterPtr &it, type_get &dst) = 0;
+#define eldbus_message_iter_arguments_append_impl_basic(type, sig) \
+ eldbus_message_iter_arguments_append_impl_basic_impl(type, type, sig)
+
+ eldbus_message_iter_arguments_append_impl_basic(uint8_t, y)
+ eldbus_message_iter_arguments_append_impl_basic(uint16_t, q)
+ eldbus_message_iter_arguments_append_impl_basic(uint32_t, u)
+ eldbus_message_iter_arguments_append_impl_basic(uint64_t, t)
+ eldbus_message_iter_arguments_append_impl_basic(int16_t, n)
+ eldbus_message_iter_arguments_append_impl_basic(int32_t, i)
+ eldbus_message_iter_arguments_append_impl_basic(int64_t, x)
+ eldbus_message_iter_arguments_append_impl_basic(double, d)
+ eldbus_message_iter_arguments_append_impl_basic(bool, b)
+ eldbus_message_iter_arguments_append_impl_basic_impl(const std::string&, std::string, s)
+ eldbus_message_iter_arguments_append_impl_basic_impl(const ObjectPath&, ObjectPath, o)
+
+#undef eldbus_message_iter_arguments_append_impl_basic
+#undef eldbus_message_iter_arguments_append_impl_basic_impl
+
+ virtual MessageIterPtr eldbus_message_iter_container_new_impl(const MessageIterPtr& it, int type, const std::string& sig) = 0;
+ virtual MessageIterPtr eldbus_message_iter_get_and_next_by_type_impl(const MessageIterPtr& it, int type) = 0;
+ virtual MessageIterPtr eldbus_message_iter_get_impl(const MessagePtr& it, bool write) = 0;
+ virtual MessagePtr eldbus_proxy_method_call_new_impl(const ProxyPtr& proxy, const std::string& funcName) = 0;
+ virtual MessagePtr eldbus_proxy_send_and_block_impl(const ProxyPtr& proxy, const MessagePtr& msg) = 0;
+ virtual bool eldbus_message_error_get_impl(const MessagePtr& msg, std::string& name, std::string& text) = 0;
+ virtual std::string eldbus_message_signature_get_impl(const MessagePtr& msg) = 0;
+
+ using SendCallback = std::function<void(const MessagePtr & msg)>;
+ virtual PendingPtr eldbus_proxy_send_impl(const ProxyPtr& proxy, const MessagePtr& msg, const SendCallback& callback) = 0;
+ virtual std::string eldbus_proxy_interface_get_impl(const ProxyPtr&) = 0;
+ virtual void eldbus_proxy_signal_handler_add_impl(const ProxyPtr& proxy, const std::string& member, const std::function<void(const MessagePtr&)>& cb) = 0;
+ virtual std::string eldbus_message_iter_signature_get_impl(const MessageIterPtr& iter) = 0;
+ virtual MessagePtr eldbus_message_method_return_new_impl(const MessagePtr& msg) = 0;
+ virtual MessagePtr eldbus_message_error_new_impl(const MessagePtr& msg, const std::string& err, const std::string& txt) = 0;
+ virtual PendingPtr eldbus_connection_send_impl(const ConnectionPtr& conn, const MessagePtr& msg) = 0;
+ virtual MessagePtr eldbus_message_signal_new_impl(const std::string& path, const std::string& iface, const std::string& name) = 0;
+ virtual MessagePtr eldbus_message_ref_impl(const MessagePtr& msg) = 0;
+ virtual ConnectionPtr eldbus_connection_get_impl(ConnectionType type) = 0;
+ virtual std::string eldbus_connection_unique_name_get_impl(const ConnectionPtr& conn) = 0;
+ virtual ObjectPtr eldbus_object_get_impl(const ConnectionPtr& conn, const std::string& bus, const std::string& path) = 0;
+ virtual ProxyPtr eldbus_proxy_get_impl(const ObjectPtr& obj, const std::string& interface) = 0;
+ virtual ProxyPtr eldbus_proxy_copy_impl(const ProxyPtr& ptr) = 0;
+
+ class StringStorage
+ {
+ public:
+ struct char_ptr_deleter
+ {
+ void operator()(char* p)
+ {
+ free(p);
+ }
+ };
+ std::vector< std::unique_ptr< char, char_ptr_deleter > > storage;
+
+ const char* add(const char* txt)
+ {
+ auto ptr = strdup(txt);
+ storage.push_back(std::unique_ptr< char, char_ptr_deleter >(ptr));
+ return storage.back().get();
+ }
+ const char* add(const std::string& txt)
+ {
+ return add(txt.c_str());
+ }
+ };
+
+ struct CallId
+ {
+ static std::atomic< unsigned int > LastId;
+ unsigned int id = ++LastId;
+ };
+ struct MethodInfo
+ {
+ CallId id;
+ std::string memberName;
+ std::vector< std::pair<std::string, std::string> > in, out; // _Eldbus_Arg_Info
+ std::function< DBusWrapper::MessagePtr(const DBusWrapper::MessagePtr & msg) > callback;
+ };
+ struct SignalInfo
+ {
+ CallId id;
+ std::string memberName;
+ std::vector< std::pair<std::string, std::string> > args;
+ unsigned int uniqueId;
+ };
+ struct PropertyInfo
+ {
+ CallId setterId, getterId;
+ std::string memberName, typeSignature;
+ std::function< std::string(const DBusWrapper::MessagePtr & src, const DBusWrapper::MessageIterPtr & dst) > getCallback, setCallback;
+ };
+ struct SignalId
+ {
+ CallId id;
+
+ SignalId() = default;
+ SignalId(CallId id) : id(id) {}
+ };
+ virtual void add_interface_impl(bool fallback, const std::string& pathName,
+ const ConnectionPtr& connection,
+ std::vector<std::function<void()>>& destructors,
+ const std::string& interfaceName,
+ std::vector< MethodInfo >& dscrMethods,
+ std::vector< PropertyInfo >& dscrProperties,
+ std::vector< SignalInfo >& dscrSignals) = 0;
+ virtual void add_property_changed_event_listener_impl(const ProxyPtr& proxy, const std::string& interface, const std::string& name, std::function< void(const _Eina_Value*) > cb) = 0;
+ static DBusWrapper* Installed();
+ static void Install(std::unique_ptr<DBusWrapper>);
+
+ StringStorage Strings;
+};
+
+namespace detail {
+ enum class MethodType {
+ Method, Getter, Setter
+ };
+}
+
+namespace std {
+ template <> struct hash<std::tuple<std::string, std::string, std::string>> {
+ size_t operator () (const std::tuple<std::string, std::string, std::string>& a) const {
+ auto a1 = std::hash<std::string>()(std::get<0>(a));
+ auto a2 = std::hash<std::string>()(std::get<1>(a));
+ auto a3 = std::hash<std::string>()(std::get<2>(a));
+ size_t v = a1;
+ v = (v * 11400714819323198485llu) + a2;
+ v = (v * 11400714819323198485llu) + a3;
+ return v;
+ }
+ };
+ template <> struct hash<std::tuple<std::string, std::string, std::string, detail::MethodType>> {
+ size_t operator () (const std::tuple<std::string, std::string, std::string, detail::MethodType>& a) const {
+ auto a1 = std::hash<std::string>()(std::get<0>(a));
+ auto a2 = std::hash<std::string>()(std::get<1>(a));
+ auto a3 = std::hash<std::string>()(std::get<2>(a));
+ auto a4 = static_cast<size_t>(std::get<3>(a));
+ size_t v = a1;
+ v = (v * 11400714819323198485llu) + a2;
+ v = (v * 11400714819323198485llu) + a3;
+ v = (v * 11400714819323198485llu) + a4;
+ return v;
+ }
+ };
+ template <> struct hash<std::tuple<std::string, std::string, unsigned int>> {
+ size_t operator () (const std::tuple<std::string, std::string, unsigned int>& a) const {
+ auto a1 = std::hash<std::string>()(std::get<0>(a));
+ auto a2 = std::hash<std::string>()(std::get<1>(a));
+ auto a3 = std::get<2>(a);
+ size_t v = a1;
+ v = (v * 11400714819323198485llu) + a2;
+ v = (v * 11400714819323198485llu) + a3;
+ return v;
+ }
+ };
+}
+
+namespace detail {
+ template <typename T> struct DBusSigImpl { enum { value = 0, end = 0 }; };
+ template <typename T> struct DBusSig { enum { value = DBusSigImpl<typename std::decay<T>::type>::value, end = DBusSigImpl<typename std::decay<T>::type>::end }; };
+ template <typename T, typename Q, size_t I, size_t S> struct IndexFromTypeTupleImpl {
+ enum { value = std::is_same<typename std::decay<typename std::tuple_element<I, T>::type>::type, Q>::value ? I : IndexFromTypeTupleImpl<T, Q, I + 1, S>::value };
+ };
+ template <typename T, typename Q, size_t S> struct IndexFromTypeTupleImpl<T, Q, S, S> { enum { value = S }; };
+ template <typename T, typename Q> struct IndexFromTypeTuple {
+ enum { value = IndexFromTypeTupleImpl<T, typename std::decay<Q>::type, 0, std::tuple_size<T>::value>::value };
+ };
+ template <typename T, typename = void> struct Encoder;
+ template <size_t I, size_t S, typename ... ARGS> struct EncoderTuple;
+}
+
+namespace detail {
+ template <> struct DBusSigImpl<uint8_t> { enum { value = 'y', end = 0 }; };
+ template <> struct DBusSigImpl<uint16_t> { enum { value = 'q', end = 0 }; };
+ template <> struct DBusSigImpl<uint32_t> { enum { value = 'u', end = 0 }; };
+ template <> struct DBusSigImpl<uint64_t> { enum { value = 't', end = 0 }; };
+ template <> struct DBusSigImpl<int16_t> { enum { value = 'n', end = 0 }; };
+ template <> struct DBusSigImpl<int32_t> { enum { value = 'i', end = 0 }; };
+ template <> struct DBusSigImpl<int64_t> { enum { value = 'x', end = 0 }; };
+ template <> struct DBusSigImpl<double> { enum { value = 'd', end = 0 }; };
+ template <> struct DBusSigImpl<bool> { enum { value = 'b', end = 0 }; };
+ template <> struct DBusSigImpl<std::string> { enum { value = 's', end = 0 }; };
+ template <> struct DBusSigImpl<ObjectPath> { enum { value = 'o', end = 0 }; };
+}
+
+
+#define DBUS_DEBUG( ... ) \
+ do \
+ { \
+ DBus::debugPrint( __FILE__, __LINE__, __VA_ARGS__ ); \
+ } while( 0 )
+
+#define DBUS_W DBusWrapper::Installed()
+
+/**
+ * @brief Template based, single file, wrapper library around eldbus for DBUS based communication.
+ *
+ * Main motivation was missing asynchronous calls in AT-SPI library and difficulties,
+ * when using eldbus from C++.
+ *
+ * The library:
+ * - takes care of marshalling arguments to and from DBUS calls.
+ * - allows synchronous and asynchronous calls.
+ * - allows synchronous and asynchronous listeners on signals.
+ * - manages all involved objects' lifetimes.
+ * - errors are passed as optional-alike objects, no exceptions are used.
+ * - allows setting additional debug-print function for more details about
+ * what's going on
+ *
+ * DBUS's method signatures (and expected return values) are specified as template argument,
+ * using functor syntax. For example:
+ * \code{.cpp}
+ * auto dbus = DBusClient{ ... };
+ * auto v = dbus.method<std::tuple<int, float>(float, float, std::string)>("foo").call(1.0f, 2.0f, "qwe");
+ * \endcode
+ * means (synchronous) call on dbus object, which takes three arguments (thus making call signature \b dds)
+ * of types float, float and string (float will be automatically converted to double).
+ * Expected return value is std::tuple<int, float>, which gives signature <B>(id)</B> - std::tuple acts
+ * as struct container. Returned value v will be of type ValueOrError<std::tuple<int, float>>.\n
+ * Slightly different (asynchronous) example:
+ * \code{.cpp}
+ * auto dbus = DBusClient{ ... };
+ * std::function<void(ValueOrError<int, float>)> callback;
+ * dbus.method<ValueOrError<int, float>(float, float, std::string)>("foo").asyncCall(callback, 1.0f, 2.0f, "qwe");
+ * \endcode
+ * Now the call takes the same arguments and has the same signature. But expected values are different -
+ * now the signature is simply \b id. ValueOrError acts in this case as placeholder for list of values,
+ * which DBUS allows as return data. The call itself is asynchronous - instead of expecting reply
+ * you need to pass a callback, which will be called either with received data and error message.
+ *
+ * Library is not thread-safe, the same object shouldn't be called from different threads without
+ * synchronization. There's no guarantee, that callbacks will be executed on the same thread.
+ */
+namespace DBus
+{
+
+ class DBusServer;
+ class DBusClient;
+ class DBusInterfaceDescription;
+
+ /**
+ * @brief Formats debug message and calls debug printer (if any) with it
+ */
+ void debugPrint(const char* file, size_t line, const char* format, ...);
+
+ /**
+ * @brief Sets debug printer callback, which will be called with debug messages
+ *
+ * Callback will be called in various moments of DBus activity. First value passed to callback
+ * is pointer to text, second it's length. Text is ended with 0 (not counted towards it's size),
+ * user can safely printf it.
+ */
+ void setDebugPrinter(std::function< void(const char*, size_t) >);
+
+ struct Error
+ {
+ std::string message;
+
+ Error() = default;
+ Error(std::string msg) : message(std::move(msg))
+ {
+ assert(!message.empty());
+ }
+ };
+
+ struct Success
+ {
+ };
+
+
+ /**
+ * @brief Value representing data, that came from DBUS or error message
+ *
+ * Object of this class either helds series of values (of types ARGS...)
+ * or error message. This object will be true in boolean context, if has data
+ * and false, if an error occured.
+ * It's valid to create ValueOrError object with empty argument list or void:
+ * \code{.cpp}
+ * ValueOrError<> v1;
+ * ValueOrError<void> v2;
+ * \endcode
+ * Both mean the same - ValueOrError containing no real data and being a marker,
+ * wherever operation successed or failed and containing possible error message.
+ */
+ template < typename... ARGS >
+ class ValueOrError
+ {
+ public:
+ /**
+ * @brief Empty constructor. Valid only, if all ARGS types are default constructible.
+ */
+ ValueOrError() = default;
+
+ /**
+ * @brief Value constructor.
+ *
+ * This will be initialized as success with passed in values.
+ */
+ ValueOrError(ARGS... t) : value(std::move(t)...) {}
+
+ /**
+ * @brief Alternative Value constructor.
+ *
+ * This will be initialized as success with passed in values.
+ */
+ ValueOrError(std::tuple< ARGS... > t) : value(std::move(t)) {}
+
+ /**
+ * @brief Error constructor. This will be initialized as failure with given error message.
+ */
+ ValueOrError(Error e) : error(std::move(e))
+ {
+ assert(!error.message.empty());
+ }
+
+ /**
+ * @brief bool operator.
+ *
+ * Returns true, if operation was successful (getValues member is callable), or false
+ * when operation failed (getError is callable).
+ */
+ explicit operator bool() const
+ {
+ return error.message.empty();
+ }
+
+ /**
+ * @brief Returns error message object.
+ *
+ * Returns object containing error message associated with the failed operation.
+ * Only callable, if operation actually failed, otherwise will assert.
+ */
+ const Error& getError() const
+ {
+ return error;
+ }
+
+ /**
+ * @brief Returns modifiable tuple of held data.
+ *
+ * Returns reference to the internal tuple containing held data.
+ * User can modify (or move) data safely.
+ * Only callable, if operation actually successed, otherwise will assert.
+ */
+ std::tuple< ARGS... >& getValues()
+ {
+ assert(*this);
+ return value;
+ }
+
+ /**
+ * @brief Returns const tuple of held data.
+ *
+ * Returns const reference to the internal tuple containing held data.
+ * Only callable, if operation actually successed, otherwise will assert.
+ */
+ const std::tuple< ARGS... >& getValues() const
+ {
+ assert(*this);
+ return value;
+ }
+
+ protected:
+ std::tuple< ARGS... > value;
+ Error error;
+
+ };
+
+
+ template <>
+ class ValueOrError<>
+ {
+ public:
+ ValueOrError() = default;
+ ValueOrError(std::tuple<> t) {}
+ ValueOrError(Error e) : error(std::move(e))
+ {
+ assert(!error.message.empty());
+ }
+
+ explicit operator bool() const
+ {
+ return error.message.empty();
+ }
+ const Error& getError() const
+ {
+ return error;
+ }
+ std::tuple<>& getValues()
+ {
+ assert(*this);
+ static std::tuple<> t;
+ return t;
+ }
+ std::tuple<> getValues() const
+ {
+ assert(*this);
+ return {};
+ }
+
+ protected:
+ Error error;
+ };
+
+ template <>
+ class ValueOrError< void >
+ {
+ public:
+ ValueOrError() = default;
+ ValueOrError(Success) {}
+ ValueOrError(Error e) : error(std::move(e))
+ {
+ assert(!error.message.empty());
+ }
+
+ explicit operator bool() const
+ {
+ return error.message.empty();
+ }
+ const Error& getError() const
+ {
+ return error;
+ }
+ std::tuple<>& getValues()
+ {
+ assert(*this);
+ static std::tuple<> t;
+ return t;
+ }
+ std::tuple<> getValues() const
+ {
+ assert(*this);
+ return {};
+ }
+
+ protected:
+ Error error;
+ };
+
+ using ObjectPath = ObjectPath;
+
+
+ /**
+ * @brief Class used to marshall DBUS's variant type
+ *
+ * Minimalistic class, that allows user to specify DBUS variant type
+ * as argument or return value. You need to pass real type hidden under variant as
+ * template type \b A. At this point library doesn't allow to expected one of few classes
+ * as return data in variant. So for example user can't specify method call, which on return
+ * expects DBUS variant holding either string or int.
+ */
+ template < typename A >
+ struct EldbusVariant
+ {
+ A value;
+ };
+
+ /**
+ * @brief Namespace for private, internal functions and classes
+ */
+ namespace detail
+ {
+ template < typename T, typename = void >
+ struct signature;
+ template < typename... ARGS >
+ struct signature< std::tuple< ARGS... > >;
+ template < typename A, typename B >
+ struct signature< std::pair< A, B > >;
+ template < typename A >
+ struct signature< std::vector< A > >;
+ template < typename A, size_t N >
+ struct signature< std::array< A, N > >;
+ template < typename A, typename B >
+ struct signature< std::unordered_map< A, B > >;
+ template < typename A, typename B >
+ struct signature< std::map< A, B > >;
+
+ /**
+ * @brief Signature class for marshalling uint8 type.
+ */
+ template <>
+ struct signature< uint8_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "uint8_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "y";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, uint8_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, uint8_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling uint16 type.
+ */
+ template <>
+ struct signature< uint16_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "uint16_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "q";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, uint16_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, uint16_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling uint32 type.
+ */
+ template <>
+ struct signature< uint32_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "uint32_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "u";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, uint32_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, uint32_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling uint64 type.
+ */
+ template <>
+ struct signature< uint64_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "uint64_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "t";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, uint64_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, uint64_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling int16 type.
+ */
+ template <>
+ struct signature< int16_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "int16_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "n";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, int16_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, int16_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling int32 type.
+ */
+ template <>
+ struct signature< int32_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "int32_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "i";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, int32_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, int32_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling int64 type.
+ */
+ template <>
+ struct signature< int64_t >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "int64_t";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "x";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, int64_t v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, int64_t& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling double type.
+ */
+ template <>
+ struct signature< double >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "double";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "d";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, double v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, double& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, float& v2)
+ {
+ double v = 0;
+ auto r = DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ v2 = static_cast<float>(v);
+ return r;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling float type.
+ */
+ template <>
+ struct signature< float >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "float";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "d";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, float v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, double& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, float& v2)
+ {
+ double v = 0;
+ auto r = DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ v2 = static_cast<float>(v);
+ return r;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling boolean type.
+ */
+ template <>
+ struct signature< bool >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "bool";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "b";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, bool v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, bool& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ template < typename T >
+ struct signature< T, typename std::enable_if< std::is_enum< T >::value, void >::type >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "enum";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature<typename std::underlying_type<T>::type>::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, T v)
+ {
+ signature<typename std::underlying_type<T>::type>::set(iter, static_cast<int64_t>(v));
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, T& v)
+ {
+ typename std::underlying_type<T>::type q = 0;
+ if (!signature<typename std::underlying_type<T>::type>::get(iter, q))
+ return false;
+
+ v = static_cast<T>(q);
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling string type.
+ *
+ * Both (const) char * and std::string types are accepted as value to send.
+ * Only std::string is accepted as value to receive.
+ */
+ template <>
+ struct signature< std::string >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "string";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "s";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::string& v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::string& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+ };
+
+ template <>
+ struct signature< ObjectPath >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "path";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "o";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::string& v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, ObjectPath{ v });
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const ObjectPath& v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const char* v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, ObjectPath{ v });
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, ObjectPath& v)
+ {
+ return DBUS_W->eldbus_message_iter_get_and_next_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::string& v)
+ {
+ ObjectPath q;
+ if (!DBUS_W->eldbus_message_iter_get_and_next_impl(iter, q)) return false;
+ v = std::move(q.value);
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling (const) char * type.
+ *
+ * Both (const) char * and std::string types are accepted as value to send.
+ * You can't use (const) char * variable type to receive value.
+ */
+ template <>
+ struct signature< char* >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "string";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "s";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::string& v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, v);
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const char* v)
+ {
+ DBUS_W->eldbus_message_iter_arguments_append_impl(iter, std::string{ v });
+ }
+ };
+
+ template < size_t INDEX, typename A, typename... ARGS >
+ struct signature_tuple_element_type_helper
+ {
+ using type = typename signature_tuple_element_type_helper< INDEX - 1, ARGS... >::type;
+ };
+
+ template < typename A, typename... ARGS >
+ struct signature_tuple_element_type_helper< 0, A, ARGS... >
+ {
+ using type = A;
+ };
+
+ /**
+ * @brief Helper class to marshall tuples
+ *
+ * This class marshals all elements of the tuple value starting at the index INDEX
+ * and incrementing. This class recursively calls itself with increasing INDEX value
+ * until INDEX is equal to SIZE, where recursive calling ends.
+ */
+ template < size_t INDEX, size_t SIZE, typename... ARGS >
+ struct signature_tuple_helper
+ {
+ using current_type = typename signature_tuple_element_type_helper< INDEX, ARGS... >::type;
+
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ if (INDEX + 1 >= SIZE)
+ return signature< current_type >::name();
+ return signature< current_type >::name() + ", " + signature_tuple_helper< INDEX + 1, SIZE, ARGS... >::name();
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature< current_type >::sig() + signature_tuple_helper< INDEX + 1, SIZE, ARGS... >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::tuple< ARGS... >& args)
+ {
+ signature< current_type >::set(iter, std::get< INDEX >(args));
+ signature_tuple_helper< INDEX + 1, SIZE, ARGS... >::set(iter, args);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::tuple< ARGS... >& args)
+ {
+ return signature< current_type >::get(iter, std::get< INDEX >(args)) &&
+ signature_tuple_helper< INDEX + 1, SIZE, ARGS... >::get(iter, args);
+ }
+ };
+
+ /**
+ * @brief Helper class to marshall tuples
+ *
+ * This class marks end of the tuple marshalling. Members of this class are called
+ * when INDEX value is equal to SIZE.
+ */
+ template < size_t SIZE, typename... ARGS >
+ struct signature_tuple_helper< SIZE, SIZE, ARGS... >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::tuple< ARGS... >& args)
+ {
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::tuple< ARGS... >& args)
+ {
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling tuple of values
+ *
+ * This class marshalls tuple of values. This represents
+ * DBUS struct typle, encoded with character 'r'
+ */
+ template < typename... ARGS >
+ struct signature< std::tuple< ARGS... > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "tuple<" + signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "(" + signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::sig() + ")";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::tuple< ARGS... >& args)
+ {
+ auto entry = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'r', "");
+ signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::set(entry, args);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::tuple< ARGS... >& args)
+ {
+ auto entry = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'r');
+ if (!entry) return false;
+ return signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::get(entry, args);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling ValueOrError template type
+ *
+ * ValueOrError template type is used to marshall list of values passed to
+ * DBUS (or received from) at the "top" level. For example ss(s) is represented as
+ * \code{.cpp} ValueOrError<std::string, std::string, std::tuple<std::string>> \endcode
+ * While (ss(s)) is represented as
+ * \code{.cpp} std::tuple<std::string, std::string, std::tuple<std::string>> \endcode
+ * or
+ * \code{.cpp} ValueOrError<std::tuple<std::string, std::string, std::tuple<std::string>>> \endcode
+ */
+ template < typename... ARGS >
+ struct signature< ValueOrError< ARGS... > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "ValueOrError<" + signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const ValueOrError< ARGS... >& args)
+ {
+ signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::set(iter, args.getValues());
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, ValueOrError< ARGS... >& args)
+ {
+ return signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::get(iter, args.getValues());
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling ValueOrError<void> type
+ */
+ template <>
+ struct signature< ValueOrError< void > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "ValueOrError<void>";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const ValueOrError< void >& args)
+ {
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, ValueOrError< void >& args)
+ {
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling ValueOrError<> type
+ */
+ template <>
+ struct signature< ValueOrError<> >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "ValueOrError<>";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const ValueOrError<>& args)
+ {
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, ValueOrError<>& args)
+ {
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling pair of types
+ */
+ template < typename A, typename B >
+ struct signature< std::pair< A, B > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "pair<" + signature_tuple_helper< 0, 2, A, B >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "(" + signature_tuple_helper< 0, 2, A, B >::sig() + ")";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::pair< A, B >& ab, bool dictionary = false)
+ {
+ auto entry = DBUS_W->eldbus_message_iter_container_new_impl(iter, dictionary ? 'e' : 'r', "");
+ signature_tuple_helper< 0, 2, A, B >::set(entry, ab);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::pair< A, B >& ab)
+ {
+ auto entry = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'r');
+ if (!entry) {
+ entry = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, '{');
+ if (!entry) return false;
+ }
+
+ std::tuple< A, B > ab_tmp;
+ auto z = signature_tuple_helper< 0, 2, A, B >::get(entry, ab_tmp);
+ if (z)
+ {
+ ab.first = std::move(std::get< 0 >(ab_tmp));
+ ab.second = std::move(std::get< 1 >(ab_tmp));
+ }
+ return z;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling std::vector template type
+ *
+ * This marshals container's content as DBUS a ascii character type code.
+ */
+ template < typename A >
+ struct signature< std::vector< A > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "vector<" + signature< A >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "a" + signature< A >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::vector< A >& v)
+ {
+ auto lst = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'a', signature< A >::sig());
+ assert(lst);
+ for (auto& a : v)
+ {
+ signature< A >::set(lst, a);
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::vector< A >& v)
+ {
+ auto s = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'a');
+ if (!s) return false;
+ v.clear();
+ A a;
+ while (signature< A >::get(s, a))
+ v.push_back(std::move(a));
+
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling std::array template type
+ *
+ * This marshals container's content as DBUS a ascii character type code.
+ */
+ template < typename A, size_t N >
+ struct signature< std::array< A, N > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "array<" + signature< A >::name() + ", " + std::to_string(N) + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "a" + signature< A >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::array< A, N >& v)
+ {
+ auto lst = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'a', signature< A >::sig());
+ assert(lst);
+ for (auto& a : v)
+ {
+ signature< A >::set(lst, a);
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::array< A, N >& v)
+ {
+ auto s = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'a');
+ if (!s)
+ return false;
+ for (auto& a : v)
+ {
+ if (!signature< A >::get(s, a))
+ return false;
+ }
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling EldbusVariant type
+ *
+ * This marshals variant's content as DBUS v ascii character type code.
+ */
+ template < typename A >
+ struct signature< EldbusVariant< A > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "variant<" + signature< A >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "v";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const EldbusVariant< A >& v)
+ {
+ set(iter, v.value);
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const A& v)
+ {
+ auto var = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'v', signature< A >::sig());
+ signature< A >::set(var, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, EldbusVariant< A >& v)
+ {
+ auto s = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'v');
+ if (!s)
+ return false;
+ return signature< A >::get(s, v.value);
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling std::unordered_map template type
+ *
+ * This marshals container's content as DBUS {} ascii character type code.
+ * Note, that library doesnt check, if the key is basic type, as DBUS
+ * specification mandates.
+ * User can always exchange std::unordered_map for std::map and the reverse.
+ * User can receive such values as std::vector of std::pair<key, value> values.
+ * Order of such values is unspecified.
+ */
+ template < typename A, typename B >
+ struct signature< std::unordered_map< A, B > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "unordered_map<" + signature< A >::name() + ", " + signature< B >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "a{" + signature_tuple_helper< 0, 2, A, B >::sig() + "}";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::unordered_map< A, B >& v)
+ {
+ auto sig = "{" + signature_tuple_helper< 0, 2, A, B >::sig() + "}";
+ auto lst = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'a', sig);
+ assert(lst);
+ for (auto& a : v)
+ {
+ signature< std::pair< A, B > >::set(lst, a, true);
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::unordered_map< A, B >& v)
+ {
+ auto s = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'a');
+ v.clear();
+ if (!s)
+ return false;
+ std::pair< A, B > a;
+ while (signature< std::pair< A, B > >::get(s, a))
+ v.insert(std::move(a));
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature class for marshalling std::unordered_map template type
+ *
+ * This marshals container's content as DBUS {} ascii character type code.
+ * Note, that library doesnt check, if the key is basic type, as DBUS
+ * specification mandates.
+ * User can always exchange std::unordered_map for std::map and the reverse.
+ * User can receive such values as std::vector of std::pair<key, value> values.
+ * Order of such values is unspecified.
+ */
+ template < typename A, typename B >
+ struct signature< std::map< A, B > >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "map<" + signature< A >::name() + ", " + signature< B >::name() + ">";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return "a{" + signature_tuple_helper< 0, 2, A, B >::sig() + "}";
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const std::map< A, B >& v)
+ {
+ auto sig = "{" + signature_tuple_helper< 0, 2, A, B >::sig() + "}";
+ auto lst = DBUS_W->eldbus_message_iter_container_new_impl(iter, 'a', sig);
+ assert(lst);
+ for (auto& a : v)
+ {
+ signature< std::pair< A, B > >::set(lst, a, true);
+ }
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static bool get(const DBusWrapper::MessageIterPtr& iter, std::map< A, B >& v)
+ {
+ auto s = DBUS_W->eldbus_message_iter_get_and_next_by_type_impl(iter, 'a');
+ if (!s)
+ return false;
+ std::pair< A, B > a;
+ while (signature< std::pair< A, B > >::get(s, a))
+ v.insert(std::move(a));
+ return true;
+ }
+ };
+
+ /**
+ * @brief Signature helper class for marshalling const reference types
+ */
+ template < typename A >
+ struct signature< const A& >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "const " + signature< A >::name() + "&";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature< A >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const A& v)
+ {
+ signature< A >::set(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static void get(const DBusWrapper::MessageIterPtr& iter, A& v)
+ {
+ signature< A >::get(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature helper class for marshalling reference types
+ */
+ template < typename A >
+ struct signature< A& >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return signature< A >::name() + "&";
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature< A >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const A& v)
+ {
+ signature< A >::set(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static void get(const DBusWrapper::MessageIterPtr& iter, A& v)
+ {
+ signature< A >::get(iter, v);
+ }
+ };
+
+ /**
+ * @brief Signature helper class for marshalling const types
+ */
+ template < typename A >
+ struct signature< const A >
+ {
+ /**
+ * @brief Returns name of type marshalled, for informative purposes
+ */
+ static std::string name()
+ {
+ return "const " + signature< A >::name();
+ }
+
+ /**
+ * @brief Returns DBUS' signature of type marshalled
+ */
+ static std::string sig()
+ {
+ return signature< A >::sig();
+ }
+
+ /**
+ * @brief Marshals value v as marshalled type into message
+ */
+ static void set(const DBusWrapper::MessageIterPtr& iter, const A& v)
+ {
+ signature< A >::set(iter, v);
+ }
+
+ /**
+ * @brief Marshals value from marshalled type into variable v
+ */
+ static void get(const DBusWrapper::MessageIterPtr& iter, A& v)
+ {
+ signature< A >::get(iter, v);
+ }
+ };
+
+ using CallId = DBusWrapper::CallId;
+
+ template < typename ValueType >
+ ValueType unpackValues(CallId callId, const DBusWrapper::MessagePtr& msg)
+ {
+ auto iter = DBUS_W->eldbus_message_iter_get_impl(msg, false);
+ ValueType r;
+
+ if (iter)
+ {
+ if (!signature< ValueType >::get(iter, r))
+ {
+ DBUS_DEBUG("ValueType is %s", signature< ValueType >::name().c_str());
+ r = Error{ "call " + std::to_string(callId.id) + ": failed to unpack values, got signature '" +
+ DBUS_W->eldbus_message_signature_get_impl(msg) + "', expected '" + signature< ValueType >::sig() + "'" };
+ }
+ }
+ else
+ {
+ r = Error{ "call " + std::to_string(callId.id) + ": failed to get iterator" };
+ }
+ return r;
+ }
+
+ inline void packValues_helper(const DBusWrapper::MessageIterPtr&) {}
+
+ template < typename A, typename... ARGS >
+ void packValues_helper(const DBusWrapper::MessageIterPtr& iter, A&& a, ARGS&&... r)
+ {
+ signature< A >::set(iter, std::forward< A >(a));
+ packValues_helper(iter, std::forward< ARGS >(r)...);
+ }
+
+ template < typename... ARGS >
+ void packValues(CallId callId, const DBusWrapper::MessagePtr& msg, ARGS&&... r)
+ {
+ auto iter = DBUS_W->eldbus_message_iter_get_impl(msg, true);
+ packValues_helper(iter, std::forward< ARGS >(r)...);
+ }
+
+ template < typename >
+ struct ReturnType;
+ template < typename R, typename... ARGS >
+ struct ReturnType< R(ARGS...) >
+ {
+ using type = R;
+ };
+
+ template < typename R, typename... ARGS >
+ struct ReturnType< std::function< R(ARGS...) > >
+ {
+ using type = R;
+ };
+
+ template < int... >
+ struct sequence
+ {
+ };
+
+ template < int N, int... S >
+ struct sequence_gen : sequence_gen< N - 1, N - 1, S... >
+ {
+ };
+
+ template < int... S >
+ struct sequence_gen< 0, S... >
+ {
+ typedef sequence< S... > type;
+ };
+
+ template < typename C, typename... ARGS >
+ struct apply_helper
+ {
+ const std::function< C >& c;
+ const std::tuple< ARGS... >& args;
+
+ template < int... S >
+ auto apply_2(sequence< S... >) const -> decltype(c(std::get< S >(args)...))
+ {
+ return c(std::get< S >(args)...);
+ }
+ auto apply_1() const -> decltype(apply_2(typename sequence_gen< sizeof...(ARGS) >::type()))
+ {
+ return apply_2(typename sequence_gen< sizeof...(ARGS) >::type());
+ }
+ };
+
+ template < typename C, typename A, typename... ARGS >
+ struct apply_helper_2
+ {
+ const std::function< C >& c;
+ const A& a;
+ const std::tuple< ARGS... >& args;
+
+ template < int... S >
+ auto apply_2(sequence< S... >) const -> decltype(c(a, std::get< S >(args)...))
+ {
+ return c(a, std::get< S >(args)...);
+ }
+ auto apply_1() const -> decltype(apply_2(typename sequence_gen< sizeof...(ARGS) >::type()))
+ {
+ return apply_2(typename sequence_gen< sizeof...(ARGS) >::type());
+ }
+ };
+
+ template < typename C, typename... ARGS >
+ auto apply(const std::function< C >& c, const std::tuple< ARGS... >& args) -> typename ReturnType< C >::type
+ {
+ apply_helper< C, ARGS... > ah{ c, args };
+ return ah.apply_1();
+ }
+
+ template < typename C, typename D, typename... ARGS >
+ auto apply(const std::function< C >& c, const D& d, const std::tuple< ARGS... >& args) -> typename ReturnType< C >::type
+ {
+ apply_helper_2< C, D, ARGS... > ah{ c, d, args };
+ return ah.apply_1();
+ }
+
+ struct ConnectionState
+ {
+ DBusWrapper::ConnectionPtr connection;
+ DBusWrapper::ObjectPtr object;
+ DBusWrapper::ProxyPtr proxy, propertiesProxy;
+ };
+
+ template < typename RETTYPE, typename... ARGS >
+ RETTYPE call(CallId callId, const ConnectionState& connectionState, bool property, const std::string& funcName, const ARGS&... args)
+ {
+ const auto& proxy = property ? connectionState.propertiesProxy : connectionState.proxy;
+ if (!proxy)
+ {
+ DBUS_DEBUG("call %d: not initialized", callId.id);
+ return Error{ "not initialized" };
+ }
+
+ DBUS_DEBUG("call %d: calling '%s'", callId.id, funcName.c_str());
+ auto msg = DBUS_W->eldbus_proxy_method_call_new_impl(proxy, funcName);
+ if (!msg)
+ {
+ DBUS_DEBUG("call %d: failed", callId.id);
+ return Error{ "failed to create message" };
+ }
+
+ detail::packValues(callId, msg, args...);
+ auto reply = DBUS_W->eldbus_proxy_send_and_block_impl(proxy, msg);
+ DBUS_DEBUG("call %d: calling '%s' done", callId.id, funcName.c_str());
+ if (!reply)
+ {
+ DBUS_DEBUG("call %d: failed", callId.id);
+ return Error{ "eldbus returned null as reply" };
+ }
+ std::string errname, errmsg;
+ if (DBUS_W->eldbus_message_error_get_impl(reply, errname, errmsg))
+ {
+ DBUS_DEBUG("call %d: %s: %s", callId.id, errname.c_str(), errmsg.c_str());
+ return Error{ errname + ": " + errmsg };
+ }
+ DBUS_DEBUG("call %d: got reply with signature '%s'", callId.id,
+ DBUS_W->eldbus_message_signature_get_impl(reply).c_str());
+ return detail::unpackValues< RETTYPE >(callId, reply);
+ }
+
+ template < typename RETTYPE, typename... ARGS >
+ void asyncCall(CallId callId, const ConnectionState& connectionState,
+ bool property, const std::string& funcName,
+ std::function< void(RETTYPE) > callback, const ARGS&... args)
+ {
+ const auto& proxy = property ? connectionState.propertiesProxy : connectionState.proxy;
+ if (!proxy)
+ {
+ DBUS_DEBUG("call %d: not initialized", callId.id);
+ callback(Error{ "not initialized" });
+ return;
+ }
+
+ auto msg = DBUS_W->eldbus_proxy_method_call_new_impl(proxy, funcName);
+ if (!msg)
+ {
+ DBUS_DEBUG("call %d: failed", callId.id);
+ callback(Error{ "failed to create message" });
+ return;
+ }
+
+ detail::packValues(callId, msg, args...);
+ auto pending = DBUS_W->eldbus_proxy_send_impl(proxy, msg, [callback, callId, proxy](const DBusWrapper::MessagePtr& reply) {
+ DBUS_DEBUG("call %d: calling done", callId.id);
+ if (!reply)
+ {
+ DBUS_DEBUG("call %d: failed", callId.id);
+ callback(Error{ "eldbus returned null as reply" });
+ }
+ else
+ {
+ std::string errname, errmsg;
+ if (DBUS_W->eldbus_message_error_get_impl(reply, errname, errmsg))
+ {
+ DBUS_DEBUG("call %d: %s: %s", callId.id, errname.c_str(), errmsg.c_str());
+ callback(Error{ errname + ": " + errmsg });
+ }
+ else
+ {
+ DBUS_DEBUG("call %d: got reply with signature '%s'", callId.id,
+ DBUS_W->eldbus_message_signature_get_impl(reply).c_str());
+ callback(detail::unpackValues< RETTYPE >(callId, reply));
+ }
+ }
+ }
+ );
+ if (pending)
+ {
+ DBUS_DEBUG("call %d: call sent", callId.id);
+ }
+ else
+ {
+ DBUS_DEBUG("call %d: failed to send call", callId.id);
+ callback(Error{ "failed to send call" });
+ }
+ }
+
+ inline void displayDebugCallInfo(CallId callId, const std::string& funcName, const std::string& info, const std::string& interfaceName)
+ {
+ DBUS_DEBUG("call %d: %s iname = %s fname = %s", callId.id, info.c_str(), interfaceName.c_str(), funcName.c_str());
+ }
+
+ inline void displayDebugCallInfoSignal(CallId callId, const std::string& funcName, const std::string& info, const std::string& interfaceName)
+ {
+ DBUS_DEBUG("call %d: %s signal iname = %s fname = %s", callId.id, info.c_str(), interfaceName.c_str(), funcName.c_str());
+ }
+
+ inline void displayDebugCallInfoProperty(CallId callId, const std::string& funcName, std::string info, const std::string& interfaceName,
+ const std::string& propertyName)
+ {
+ DBUS_DEBUG("call %d: %s iname = %s pname = %s", callId.id, info.c_str(), interfaceName.c_str(), propertyName.c_str());
+ }
+
+ using StringStorage = DBusWrapper::StringStorage;
+
+ template < typename A, typename... ARGS >
+ struct EldbusArgGenerator_Helper
+ {
+ static void add(std::vector< std::pair<std::string, std::string> >& r)
+ {
+ auto s = r.size();
+ auto sig = signature< A >::sig();
+ assert(!sig.empty());
+ auto name = "p" + std::to_string(s + 1);
+ r.push_back({ std::move(sig), std::move(name) });
+ EldbusArgGenerator_Helper<ARGS...>::add(r);
+ }
+ };
+
+ template <>
+ struct EldbusArgGenerator_Helper< void >
+ {
+ static void add(std::vector< std::pair<std::string, std::string> >&)
+ {
+ }
+ };
+
+ template <>
+ struct EldbusArgGenerator_Helper< ValueOrError< void >, void >
+ {
+ static void add(std::vector< std::pair<std::string, std::string> >&)
+ {
+ }
+ };
+ template <>
+ struct EldbusArgGenerator_Helper< ValueOrError<>, void >
+ {
+ static void add(std::vector< std::pair<std::string, std::string> >&)
+ {
+ }
+ };
+
+ template < typename... ARGS >
+ struct EldbusArgGenerator_Helper< std::tuple< ARGS... > >
+ {
+ static void add(std::vector< std::pair<std::string, std::string> >& r)
+ {
+ EldbusArgGenerator_Helper< ARGS..., void >::add(r);
+ }
+ };
+
+ template < typename RetType >
+ struct dbus_interface_return_type_traits
+ {
+ using type = ValueOrError< RetType >;
+ };
+
+ template < typename... ARGS >
+ struct dbus_interface_return_type_traits< ValueOrError< ARGS... > >
+ {
+ using type = ValueOrError< ARGS... >;
+ };
+
+ template < typename T >
+ struct dbus_interface_traits;
+ template < typename RetType, typename... ARGS >
+ struct dbus_interface_traits< RetType(ARGS...) >
+ {
+ using Ret = typename dbus_interface_return_type_traits< RetType >::type;
+ using SyncCB = std::function< Ret(ARGS...) >;
+ using AsyncCB = std::function< void(std::function< void(Ret) >, ARGS...) >;
+ using VEArgs = ValueOrError< ARGS... >;
+ };
+
+ template < typename T >
+ struct EldbusArgGenerator_Args;
+ template < typename RetType, typename... ARGS >
+ struct EldbusArgGenerator_Args< RetType(ARGS...) >
+ {
+ static std::string name()
+ {
+ return signature_tuple_helper< 0, sizeof...(ARGS), ARGS... >::name();
+ }
+ static std::vector< std::pair<std::string, std::string> > get()
+ {
+ std::vector< std::pair<std::string, std::string> > tmp;
+ EldbusArgGenerator_Helper< ARGS..., void >::add(tmp);
+ return tmp;
+ }
+ };
+
+ template < typename T >
+ struct EldbusArgGenerator_ReturnType;
+ template < typename RetType, typename... ARGS >
+ struct EldbusArgGenerator_ReturnType< RetType(ARGS...) >
+ {
+ static std::string name()
+ {
+ return signature< RetType >::name();
+ }
+ static std::vector< std::pair<std::string, std::string> > get()
+ {
+ std::vector< std::pair<std::string, std::string> > tmp;
+ EldbusArgGenerator_Helper< RetType, void >::add(tmp);
+ return tmp;
+ }
+ };
+
+ template < typename T >
+ struct EldbusArgGenerator_ReturnType;
+ template < typename... ARGS >
+ struct EldbusArgGenerator_ReturnType< void(ARGS...) >
+ {
+ static std::string name()
+ {
+ return "";
+ }
+ static std::vector< std::pair<std::string, std::string> > get()
+ {
+ return {};
+ }
+ };
+
+ }
+
+ using ConnectionType = DBusWrapper::ConnectionType;
+
+ /**
+ * @brief Class representing client's end of DBUS connection
+ *
+ * Allows calling (synchronous and asynchronos) methods on selected interface
+ * Allows (synchronous and asynchronos) setting / getting properties.
+ * Allows registering signals.
+ */
+ class DBusClient
+ {
+ struct ConnectionInfo
+ {
+ std::string interfaceName, busName, pathName;
+ };
+ public:
+ /**
+ * @brief Default constructor, creates non-connected object.
+ */
+ DBusClient() = default;
+
+ /**
+ * @brief Connects to dbus choosen by tp, using given arguments
+ *
+ * @param bus_name name of the bus to connect to
+ * @param path_name object's path
+ * @param interface_name interface name
+ */
+ DBusClient(std::string busName_, std::string pathName_, std::string interfaceName_,
+ ConnectionType tp);
+
+ /**
+ * @brief Connects to dbus using connection conn
+ *
+ * @param bus_name name of the bus to connect to
+ * @param path_name object's path
+ * @param interface_name interface name
+ * @param conn connection object from getDBusConnectionByType call
+ */
+ DBusClient(std::string busName_, std::string pathName_, std::string interfaceName_,
+ const DBusWrapper::ConnectionPtr& conn = {});
+
+ /**
+ * @brief Destructor object.
+ *
+ * All signals added will be disconnected.
+ * All asynchronous calls will be cancelled, their callback's will be called
+ * with failure message.
+ */
+ ~DBusClient() = default;
+ DBusClient(const DBusClient&) = delete;
+ DBusClient(DBusClient&&) = default;
+
+ DBusClient& operator=(DBusClient&&) = default;
+ DBusClient& operator=(const DBusClient&) = delete;
+
+ /**
+ * @brief bool operator
+ *
+ * Returns true, if object is connected to DBUS
+ */
+ explicit operator bool() const
+ {
+ return bool(connectionState->proxy);
+ }
+
+ /**
+ * @brief Helper class for calling a method
+ *
+ * Template type T defines both arguments sent to the method
+ * and expected values. Receiving different values will be reported as
+ * error. For example:
+ * \code{.cpp} Method<int(float, float)> \endcode
+ * defines method, which takes two arguments (two floats) and return
+ * single value of type int.
+ */
+ template < typename T >
+ struct Method
+ {
+ using RetType = typename detail::dbus_interface_traits< T >::Ret;
+ const detail::ConnectionState& connectionState;
+ std::string funcName;
+ std::string info;
+ std::shared_ptr< ConnectionInfo > connectionInfo;
+
+ /**
+ * @brief Executes synchronous call on DBUS's method
+ *
+ * The function returns ValueOrError<...> object, which
+ * contains either received values or error message.
+ *
+ * @param args arguments to pass to the method
+ */
+ template < typename... ARGS >
+ RetType call(const ARGS&... args)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfo(callId, funcName, info, connectionInfo->interfaceName);
+ return detail::call< RetType >(callId, connectionState, false, funcName, args...);
+ }
+
+ /**
+ * @brief Executes asynchronous call on DBUS's method
+ *
+ * The function calls callback with either received values or error message.
+ *
+ * @param callback callback functor, which will be called with return value(s) or error message
+ * @param args arguments to pass to the method
+ */
+ template < typename... ARGS >
+ void asyncCall(std::function< void(RetType) > callback, const ARGS&... args)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfo(callId, funcName, info, connectionInfo->interfaceName);
+ detail::asyncCall< RetType >(callId, connectionState, false, funcName, std::move(callback), args...);
+ }
+ };
+
+ /**
+ * @brief Helper class for calling a property
+ *
+ * Template type T defines type of the value hidden under property.
+ * Note, that library automatically wraps both sent and received value into
+ * DBUS's wrapper type.
+ */
+ template < typename T >
+ struct Property
+ {
+ using RetType = typename detail::dbus_interface_return_type_traits< T >::type;
+ using VariantRetType = typename detail::dbus_interface_return_type_traits< EldbusVariant< T > >::type;
+ const detail::ConnectionState& connectionState;
+ std::string propName;
+ std::string info;
+ std::shared_ptr< ConnectionInfo > connectionInfo;
+
+ /**
+ * @brief executes synchronous get on property
+ *
+ * The function returns ValueOrError<...> object, which
+ * contains either received values or error message.
+ */
+ RetType get()
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoProperty(callId, "Get", info, connectionInfo->interfaceName, propName);
+ auto z = detail::call< VariantRetType >(callId, connectionState, true, "Get", connectionInfo->interfaceName, propName);
+ if (!z)
+ return z.getError();
+ return { std::get< 0 >(z.getValues()).value };
+ }
+
+ /**
+ * @brief executes asynchronous get on property
+ *
+ * The function calls callback with either received values or error message.
+ *
+ * @param callback callback functor, which will be called with return value(s) or error message
+ */
+ void asyncGet(std::function< void(RetType) > callback)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoProperty(callId, "Get", info, connectionInfo->interfaceName, propName);
+ auto cc = [callback](VariantRetType reply) {
+ if (reply)
+ callback(std::move(std::get< 0 >(reply.getValues()).value));
+ else
+ callback(reply.getError());
+ };
+ detail::asyncCall< VariantRetType >(callId, connectionState, true, "Get", std::move(cc), connectionInfo->interfaceName, propName);
+ }
+
+ /**
+ * @brief executes synchronous set on property
+ *
+ * The function returns ValueOrError<void> object, with
+ * possible error message.
+ */
+ ValueOrError< void > set(const T& r)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoProperty(callId, "Set", info, connectionInfo->interfaceName, propName);
+ EldbusVariant< T > variantValue{ std::move(r) };
+ return detail::call< ValueOrError< void > >(callId, connectionState, true, "Set", connectionInfo->interfaceName, propName, variantValue);
+ }
+
+ /**
+ * @brief executes asynchronous get on property
+ *
+ * The function calls callback with either received values or error message.
+ *
+ * @param callback callback functor, which will be called with return value(s) or error message
+ */
+ void asyncSet(std::function< void(ValueOrError< void >) > callback, const T& r)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoProperty(callId, "Set", info, connectionInfo->interfaceName, propName);
+ EldbusVariant< T > variantValue{ std::move(r) };
+ detail::asyncCall< ValueOrError< void > >(callId, connectionState, true, "Set", std::move(callback), connectionInfo->interfaceName, propName, variantValue);
+ }
+ };
+
+ /**
+ * @brief Constructs Property<...> object for calling properties
+ *
+ * The function constructs and returns proxy object for calling property.
+ *
+ * @param propName property name to set and / or query
+ */
+ template < typename PropertyType >
+ Property< PropertyType > property(std::string propName)
+ {
+ return Property< PropertyType >{*connectionState, std::move(propName), info, connectionInfo};
+ }
+
+ /**
+ * @brief Constructs Method<...> object for calling methods
+ *
+ * The function constructs and returns proxy object for calling method.
+ *
+ * @param funcName function name to call
+ */
+ template < typename MethodType >
+ Method< MethodType > method(std::string funcName)
+ {
+ return Method< MethodType >{*connectionState, std::move(funcName), info, connectionInfo};
+ }
+
+ /**
+ * @brief Registers notification callback, when property has changed
+ *
+ * The callback will be called with new value, when property's value has changed.
+ * Note, that template type V must match expected type, otherwise undefined behavior will occur,
+ * there's no check for this.
+ */
+ template < typename V >
+ void addPropertyChangedEvent(std::string propertyName, std::function< void(V) > callback)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoSignal(callId, propertyName, info, connectionInfo->interfaceName);
+ DBUS_DEBUG("call %d: adding property", callId.id);
+ auto& cI = this->connectionInfo;
+ DBUS_W->add_property_changed_event_listener_impl(connectionState->proxy, cI->interfaceName, propertyName,
+ [callback](const _Eina_Value* newValue) {
+ V val = 0;
+ if (!getFromEinaValue(newValue, &val))
+ {
+ DBUS_DEBUG("unable to get property's value");
+ return;
+ }
+ callback(val);
+ });
+ }
+
+ /**
+ * @brief Registers callback on the DBUS' signal
+ *
+ * The function registers callback signalName. When signal comes, callback will be called.
+ * Callback object will exists as long as signal is registered. You can unregister signal
+ * by destroying DBusClient object.
+ *
+ * @param signalName name of the signal to register
+ * @param callback callback to call
+ */
+ template < typename SignalType >
+ void addSignal(std::string signalName, std::function< SignalType > callback)
+ {
+ detail::CallId callId;
+ detail::displayDebugCallInfoSignal(callId, signalName, info, connectionInfo->interfaceName);
+ DBUS_W->eldbus_proxy_signal_handler_add_impl(connectionState->proxy, signalName,
+ [callId, callback, signalName](const DBusWrapper::MessagePtr& msg) -> void {
+ std::string errname, aux;
+ if (DBUS_W->eldbus_message_error_get_impl(msg, errname, aux))
+ {
+ DBUS_DEBUG("call %d: Eldbus error: %s %s", callId.id, errname.c_str(), aux.c_str());
+ return;
+ }
+ DBUS_DEBUG("call %d: received signal with signature '%s'", callId.id, DBUS_W->eldbus_message_signature_get_impl(msg).c_str());
+ using ParamsType = typename detail::dbus_interface_traits< SignalType >::VEArgs;
+ auto params = detail::unpackValues< ParamsType >(callId, msg);
+ if (!params)
+ {
+ DBUS_DEBUG("call %d: failed: %s", callId.id, params.getError().message.c_str());
+ return;
+ }
+ try
+ {
+ detail::apply(callback, params.getValues());
+ }
+ catch (...)
+ {
+ DBUS_DEBUG("unhandled exception");
+ assert(0);
+ }
+ });
+ }
+
+ private:
+ std::unique_ptr<detail::ConnectionState> connectionState{ new detail::ConnectionState };
+ std::string info;
+ std::shared_ptr< ConnectionInfo > connectionInfo;
+
+ static bool getFromEinaValue(const _Eina_Value* v, void* dst);
+ };
+
+ /**
+ * @brief Helper class describing DBUS's server interface
+ *
+ */
+ class DBusInterfaceDescription
+ {
+ friend class DBusServer;
+
+ public:
+ using MethodInfo = DBusWrapper::MethodInfo;
+ using SignalInfo = DBusWrapper::SignalInfo;
+ using PropertyInfo = DBusWrapper::PropertyInfo;
+ using SignalId = DBusWrapper::SignalId;
+
+ /**
+ * @brief Creates empty interface description with given name
+ *
+ * @param interfaceName name of the interface
+ */
+ DBusInterfaceDescription(std::string interfaceName);
+
+ /**
+ * @brief adds new, synchronous method to the interface
+ *
+ * When method memberName is called on DBUS, callback functor will be called
+ * with values received from DBUS. callback won't be called, if method was
+ * called with invalid signature. Value returned from functor (or error message)
+ * will be marshalled back to the caller.
+ *
+ * Template type T defines both arguments sent to the method
+ * and expected values. Receiving different values will be reported as
+ * error. For example:
+ * \code{.cpp} Method<int(float, float)> \endcode
+ * defines method, which takes two arguments (two floats) and return
+ * single value of type int.
+ *
+ * @param memberName name of the method
+ * @param callback functor, which will be called
+ */
+ template < typename T >
+ void addMethod(const std::string& memberName, typename detail::dbus_interface_traits< T >::SyncCB callback)
+ {
+ detail::CallId callId;
+ MethodInfo mi;
+ methods.push_back(std::move(mi));
+ auto& z = methods.back();
+ z.in = detail::EldbusArgGenerator_Args< T >::get();
+ z.out = detail::EldbusArgGenerator_ReturnType< T >::get();
+ z.memberName = memberName;
+ DBUS_DEBUG("call %d: method %s, in %s, out %s", callId.id, memberName.c_str(),
+ detail::EldbusArgGenerator_Args< T >::name().c_str(),
+ detail::EldbusArgGenerator_ReturnType< T >::name().c_str());
+ z.callback = construct< T >(callId, callback);
+ z.id = callId;
+ }
+
+ /**
+ * @brief adds new, synchronous property to the interface
+ *
+ * When property memberName is called on DBUS, respective callback functor will be called
+ * with values received from DBUS. callback won't be called, if method was
+ * called with invalid signature. Value returned from functor (or error message)
+ * will be marshalled back to the caller.
+ *
+ * Template type T defines type of the value hidden under property.
+ * Note, that library automatically wraps both sent and received value into
+ * DBUS's wrapper type.
+ *
+ * @param memberName name of the method
+ * @param getter functor, which will be called when property is being read
+ * @param setter functor, which will be called when property is being set
+ */
+ template < typename T >
+ void addProperty(const std::string& memberName, std::function< ValueOrError< T >() > getter, std::function< ValueOrError< void >(T) > setter)
+ {
+ properties.push_back({});
+ auto& z = properties.back();
+ z.memberName = memberName;
+ z.typeSignature = detail::signature< T >::sig();
+ if (getter)
+ {
+ detail::CallId getterId;
+ z.getterId = getterId;
+ DBUS_DEBUG("call %d: property %s (get) type %s", getterId.id, memberName.c_str(), detail::signature< T >::name().c_str());
+ z.getCallback = [=](const DBusWrapper::MessagePtr& src, const DBusWrapper::MessageIterPtr& dst) -> std::string {
+ try
+ {
+ auto v = detail::apply(getter, std::tuple<>{});
+ if (v)
+ {
+ detail::signature< T >::set(dst, std::get< 0 >(v.getValues()));
+ DBUS_DEBUG("call %d: success", getterId.id);
+ return "";
+ }
+ DBUS_DEBUG("call %d: failed: %s", getterId.id, v.getError().message.c_str());
+ return v.getError().message;
+ }
+ catch (std::exception & e)
+ {
+ return std::string("unhandled exception (") + e.what() + ")";
+ }
+ catch (...)
+ {
+ return "unhandled exception";
+ }
+ };
+ }
+ if (setter)
+ {
+ detail::CallId setterId;
+ z.setterId = setterId;
+ DBUS_DEBUG("call %d: property %s (set) type %s", setterId.id, memberName.c_str(), detail::signature< T >::name().c_str());
+ z.setCallback = [=](const DBusWrapper::MessagePtr& src, const DBusWrapper::MessageIterPtr& src_iter) -> std::string {
+ std::tuple< T > value;
+ auto src_signature = DBUS_W->eldbus_message_iter_signature_get_impl(src_iter);
+ if (detail::signature< T >::get(src_iter, std::get< 0 >(value)))
+ {
+ try
+ {
+ auto v = detail::apply(setter, std::move(value));
+ if (v)
+ {
+ DBUS_DEBUG("call %d: success", setterId.id);
+ return "";
+ }
+ DBUS_DEBUG("call %d: failed: %s", setterId.id, v.getError().message.c_str());
+ return v.getError().message;
+ }
+ catch (std::exception & e)
+ {
+ return std::string("unhandled exception (") + e.what() + ")";
+ }
+ catch (...)
+ {
+ return "unhandled exception";
+ }
+ }
+ DBUS_DEBUG("call %d: failed to unpack values, got signature '%s', expected '%s'", setterId.id,
+ src_signature.c_str(), detail::signature< T >::sig().c_str());
+ return "call " + std::to_string(setterId.id) + ": failed to unpack values, got signature '" +
+ src_signature + "', expected '" + detail::signature< T >::sig() + "'";
+ };
+ }
+ }
+
+ /**
+ * @brief adds new signal to the interface
+ *
+ * Template types ARGS defines values, which will be emited with the signal
+ *
+ * @param memberName name of the method
+ */
+ template < typename... ARGS >
+ SignalId addSignal(const std::string& memberName)
+ {
+ detail::CallId callId;
+ signals.push_back({});
+ auto& z = signals.back();
+ z.memberName = memberName;
+ z.args = detail::EldbusArgGenerator_Args< void(ARGS...) >::get(DBUS_W->Strings);
+ z.id = callId;
+ DBUS_DEBUG("call %d: signal %s", callId.id, memberName.c_str());
+ return SignalId{ callId };
+ }
+
+ private:
+ std::vector< MethodInfo > methods;
+ std::vector< PropertyInfo > properties;
+ std::vector< SignalInfo > signals;
+ std::string interfaceName;
+
+ template < typename T >
+ std::function< DBusWrapper::MessagePtr(const DBusWrapper::MessagePtr & msg) > construct(detail::CallId callId,
+ typename detail::dbus_interface_traits< T >::SyncCB callback)
+ {
+ using VEArgs = typename detail::dbus_interface_traits< T >::VEArgs;
+ return [=](const DBusWrapper::MessagePtr& msg) -> DBusWrapper::MessagePtr {
+ DBUS_DEBUG("call %d: entering", callId.id);
+ DBusWrapper::MessagePtr ret = {};
+ auto args = detail::unpackValues< VEArgs >(callId, msg);
+ if (args)
+ {
+ try
+ {
+ auto v = detail::apply(callback, std::move(args.getValues()));
+ if (v)
+ {
+ DBUS_DEBUG("call %d: success", callId.id);
+ ret = DBUS_W->eldbus_message_method_return_new_impl(msg);
+ detail::packValues(callId, ret, v);
+ }
+ else
+ {
+ DBUS_DEBUG("call %d: failed: %s", callId.id, v.getError().message.c_str());
+ ret = DBUS_W->eldbus_message_error_new_impl(msg, "org.freedesktop.DBus.Error.Failed", v.getError().message);
+ }
+ }
+ catch (std::exception & e)
+ {
+ auto txt = std::string("unhandled exception (") + e.what() + ")";
+ DBUS_DEBUG("call %d: failed: %s", callId.id, txt.c_str());
+ ret = DBUS_W->eldbus_message_error_new_impl(msg, "org.freedesktop.DBus.Error.Failed", txt);
+ }
+ catch (...)
+ {
+ DBUS_DEBUG("call %d: failed: %s", callId.id, "unhandled exception");
+ ret = DBUS_W->eldbus_message_error_new_impl(msg, "org.freedesktop.DBus.Error.Failed", "unhandled exception");
+ }
+ }
+ else
+ {
+ std::ostringstream err;
+ err << "expected signature '" << detail::signature< VEArgs >::sig() << "', got '" << DBUS_W->eldbus_message_signature_get_impl(msg) << "'";
+ auto str = err.str();
+ DBUS_DEBUG("call %d: failed: %s", callId.id, str.c_str());
+ ret = DBUS_W->eldbus_message_error_new_impl(msg, "org.freedesktop.DBus.Error.InvalidArgs", str);
+ }
+ return ret;
+ };
+ }
+ };
+
+ /**
+ * @brief Class representing server's end of DBUS connection
+ *
+ * Allows listening (synchronously and asynchronosly) on methods on selected interface
+ * Allows listening (synchronously and asynchronosly) on setting / getting properties.
+ * Allows emiting signals.
+ */
+ class DBusServer
+ {
+ public:
+ /**
+ * @brief Constructs non-connected dbus server.
+ */
+ DBusServer() = default;
+
+ /**
+ * @brief Constructs dbus server on either system or user dbus connection.
+ */
+ DBusServer(ConnectionType tp);
+
+ /**
+ * @brief Constructs dbus server on connection from getDBusConnectionByType
+ */
+ DBusServer(const DBusWrapper::ConnectionPtr& conn);
+
+ /**
+ * @brief Destructor
+ *
+ * Destructor will properly destroy everything. Destructor will cancel
+ * pending replies.
+ */
+ ~DBusServer() = default;
+
+ DBusServer(const DBusServer&) = delete;
+ DBusServer(DBusServer&&) = default;
+
+ DBusServer& operator=(DBusServer&&) = default;
+ DBusServer& operator=(const DBusServer&) = delete;
+
+ /**
+ * @brief Registers interface on given path name
+ *
+ * @param pathName path object to register interface on.
+ * @param dscr
+ * @param fallback
+ */
+ void addInterface(const std::string& pathName, DBusInterfaceDescription& dscr, bool fallback = false);
+
+ /**
+ * @brief Gets bus name of the current connection (must be connected)
+ */
+ std::string getBusName() const;
+
+ /**
+ * @brief Returns connection object for this dbus server object
+ *
+ * @return connection object
+ */
+ DBusWrapper::ConnectionPtr getConnection();
+
+ /**
+ * @brief Emits signal
+ *
+ * Emits signal based only on data passed to the function
+ *
+ * @param signal identifier of the signal
+ * @param args values to emit
+ */
+ template < typename... ARGS >
+ void emit2(const std::string& path, const std::string& interfaceName,
+ const std::string& signalName, const ARGS&... args)
+ {
+ auto msg = DBUS_W->eldbus_message_signal_new_impl(path, interfaceName, signalName);
+ detail::CallId id;
+ detail::packValues(id, msg, args...);
+ DBUS_W->eldbus_connection_send_impl(connection, msg);
+ }
+
+ /**
+ * @brief Returns current object path, when handling call to property / method
+ *
+ * User can call this function from inside callback used to handle property / method calls.
+ * It will retrieve object's path used in the call. Note, that in asynchronous handling
+ * of those calls user need to retrieve and store the current object / current connection
+ * as the value will change at the moment user's callback handling will exit. For example:
+ * \code{.cpp}
+ * DBusInterfaceDescription interface{"name"};
+ * auto handler_later = [](std::function<void(void)> done_cb) {
+ * // process something later on
+ * DBusServer::getCurrentObjectPath(); // this will return empty string
+ * };
+ * interface.addAsyncMethod<void()>("m", [=](std::function<void(void)> done_cb) {
+ * DBusServer::getCurrentObjectPath(); // this will current object's path
+ *
+ * // do some processing later on and call done_cb, when it's done
+ * register_to_call_sometime_later_on(std::move(done_cb));
+ * };
+ * \endcode
+ */
+ static std::string getCurrentObjectPath() { return currentObjectPath; }
+
+ /**
+ * @brief Returns current connection object, when handling call to property / method
+ *
+ * User can call this function from inside callback used to handle property / method calls.
+ * It will retrieve object's path used in the call. Note, that in asynchronous handling
+ * of those calls user need to retrieve and store the current object / current connection
+ * as the value will change at the moment user's callback handling will exit. For example:
+ * \code{.cpp}
+ * DBusInterfaceDescription interface{"name"};
+ * auto handler_later = [](std::function<void(void)> done_cb) {
+ * // process something later on
+ * DBusServer::getCurrentObjectPath(); // this will return empty string
+ * };
+ * interface.addAsyncMethod<void()>("m", [=](std::function<void(void)> done_cb) {
+ * DBusServer::getCurrentObjectPath(); // this will current object's path
+ *
+ * // do some processing later on and call done_cb, when it's done
+ * register_to_call_sometime_later_on(std::move(done_cb));
+ * };
+ * \endcode
+ */
+ static const DBusWrapper::ConnectionPtr& getCurrentConnection() { return currentConnection; }
+
+ /// \cond
+ class CurrentObjectSetter
+ {
+ public:
+ CurrentObjectSetter(DBusWrapper::ConnectionPtr con, std::string path)
+ {
+ currentObjectPath = std::move(path);
+ currentConnection = std::move(con);
+ }
+ ~CurrentObjectSetter()
+ {
+ currentObjectPath = "";
+ currentConnection = {};
+ }
+ CurrentObjectSetter(const CurrentObjectSetter&) = delete;
+ CurrentObjectSetter(CurrentObjectSetter&&) = delete;
+ void operator=(const CurrentObjectSetter&) = delete;
+ void operator=(CurrentObjectSetter&&) = delete;
+ };
+
+ private:
+ DBusWrapper::ConnectionPtr connection;
+ struct DestructorObject {
+ std::vector<std::function<void()>> destructors;
+ ~DestructorObject() {
+ for (auto& a : destructors) a();
+ }
+ };
+
+ std::unique_ptr<DestructorObject> destructorObject{ new DestructorObject() };
+ static thread_local std::string currentObjectPath;
+ static thread_local DBusWrapper::ConnectionPtr currentConnection;
+
+ };
+
+ DBusWrapper::ConnectionPtr getDBusConnectionByType(ConnectionType tp);
+ DBusWrapper::ConnectionPtr getDBusConnectionByName(const std::string& name);
+ std::string getConnectionName(const DBusWrapper::ConnectionPtr&);
+}
+
+namespace std
+{
+ template < size_t INDEX, typename... ARGS >
+ inline auto get(DBus::ValueOrError< ARGS... >& v) -> decltype(std::get< INDEX >(v.getValues()))&
+ {
+ return std::get< INDEX >(v.getValues());
+ }
+
+ template < size_t INDEX, typename... ARGS >
+ inline auto get(const DBus::ValueOrError< ARGS... >& v) -> decltype(std::get< INDEX >(v.getValues()))
+ {
+ return std::get< INDEX >(v.getValues());
+ }
+}
+
+#endif // DALI_INTERNAL_ACCESSIBILITY_BRIDGE_DBUS_H