From 791bc981aea7073d81b9ef7516aabcec4791974f Mon Sep 17 00:00:00 2001 From: raster Date: Sun, 17 Aug 2008 07:44:18 +0000 Subject: [PATCH] move around - flatter. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@35497 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- .cvsignore | 20 + AUTHORS | 1 + COPYING | 20 + ChangeLog | 0 Doxyfile | 1252 ++++++++++++++++++++++++ INSTALL | 236 +++++ Makefile.am | 18 + NEWS | 0 README | 19 + autogen.sh | 14 + configure.in | 115 +++ debian/.cvsignore | 1 + debian/changelog.in | 6 + debian/compat | 1 + debian/control | 28 + debian/copyright | 49 + debian/libedbus-dev.install | 4 + debian/libedbus0.install | 1 + debian/rules | 9 + doc/e.css | 161 +++ doc/foot.html | 6 + doc/head.html | 43 + doc/images/_.gif | Bin 0 -> 266 bytes doc/images/b.png | Bin 0 -> 40323 bytes doc/images/e.css | 161 +++ doc/images/foot.html | 6 + doc/images/head.html | 43 + doc/images/n.gif | Bin 0 -> 1700 bytes doc/images/n.png | Bin 0 -> 2057 bytes doc/images/t.gif | Bin 0 -> 979 bytes doc/images/t.png | Bin 0 -> 316 bytes doc/images/tl.gif | Bin 0 -> 74209 bytes doc/images/tl.png | Bin 0 -> 88378 bytes e_dbus.spec.in | 64 ++ edbus.pc.in | 11 + ehal.pc.in | 11 + enm.pc.in | 11 + enotify.pc.in | 11 + gendoc | 10 + src/.cvsignore | 2 + src/Makefile.am | 2 + src/bin/.cvsignore | 11 + src/bin/Makefile.am | 95 ++ src/bin/hal.c | 830 ++++++++++++++++ src/bin/nm.c | 249 +++++ src/bin/notification_daemon.c | 175 ++++ src/bin/notify-send.c | 127 +++ src/bin/notify.c | 82 ++ src/bin/test.c | 103 ++ src/bin/test_client.c | 68 ++ src/lib/.cvsignore | 3 + src/lib/Makefile.am | 3 + src/lib/dbus/.cvsignore | 12 + src/lib/dbus/E_DBus.h | 162 +++ src/lib/dbus/Makefile.am | 23 + src/lib/dbus/e_dbus.c | 586 +++++++++++ src/lib/dbus/e_dbus_interfaces.c | 107 ++ src/lib/dbus/e_dbus_message.c | 116 +++ src/lib/dbus/e_dbus_methods.c | 76 ++ src/lib/dbus/e_dbus_object.c | 572 +++++++++++ src/lib/dbus/e_dbus_private.h | 43 + src/lib/dbus/e_dbus_signal.c | 250 +++++ src/lib/dbus/e_dbus_util.c | 92 ++ src/lib/hal/.cvsignore | 8 + src/lib/hal/E_Hal.h | 134 +++ src/lib/hal/Makefile.am | 23 + src/lib/hal/e_hal_device.c | 307 ++++++ src/lib/hal/e_hal_device.h | 14 + src/lib/hal/e_hal_manager.c | 146 +++ src/lib/hal/e_hal_manager.h | 21 + src/lib/hal/e_hal_util.c | 99 ++ src/lib/hal/e_hal_util.h | 14 + src/lib/nm/.cvsignore | 6 + src/lib/nm/E_Nm.h | 176 ++++ src/lib/nm/Makefile.am | 30 + src/lib/nm/README | 2 + src/lib/nm/e_nm.c | 120 +++ src/lib/nm/e_nm_device.c | 165 ++++ src/lib/nm/e_nm_manager.c | 76 ++ src/lib/nm/e_nm_network.c | 96 ++ src/lib/nm/e_nm_private.h | 50 + src/lib/nm/e_nm_util.c | 232 +++++ src/lib/notification/.cvsignore | 6 + src/lib/notification/E_Notification_Daemon.h | 92 ++ src/lib/notification/E_Notify.h | 188 ++++ src/lib/notification/Makefile.am | 26 + src/lib/notification/client.c | 61 ++ src/lib/notification/daemon.c | 219 +++++ src/lib/notification/e_notify_private.h | 92 ++ src/lib/notification/marshal.c | 590 +++++++++++ src/lib/notification/notification-spec-0.9.txt | 827 ++++++++++++++++ src/lib/notification/notification.c | 402 ++++++++ 92 files changed, 10343 insertions(+) create mode 100644 .cvsignore create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 Doxyfile create mode 100644 INSTALL create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100755 autogen.sh create mode 100644 configure.in create mode 100644 debian/.cvsignore create mode 100644 debian/changelog.in create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/libedbus-dev.install create mode 100644 debian/libedbus0.install create mode 100755 debian/rules create mode 100644 doc/e.css create mode 100644 doc/foot.html create mode 100644 doc/head.html create mode 100644 doc/images/_.gif create mode 100644 doc/images/b.png create mode 100644 doc/images/e.css create mode 100644 doc/images/foot.html create mode 100644 doc/images/head.html create mode 100644 doc/images/n.gif create mode 100644 doc/images/n.png create mode 100644 doc/images/t.gif create mode 100644 doc/images/t.png create mode 100644 doc/images/tl.gif create mode 100644 doc/images/tl.png create mode 100644 e_dbus.spec.in create mode 100644 edbus.pc.in create mode 100644 ehal.pc.in create mode 100644 enm.pc.in create mode 100644 enotify.pc.in create mode 100755 gendoc create mode 100644 src/.cvsignore create mode 100644 src/Makefile.am create mode 100644 src/bin/.cvsignore create mode 100644 src/bin/Makefile.am create mode 100644 src/bin/hal.c create mode 100644 src/bin/nm.c create mode 100644 src/bin/notification_daemon.c create mode 100644 src/bin/notify-send.c create mode 100644 src/bin/notify.c create mode 100644 src/bin/test.c create mode 100644 src/bin/test_client.c create mode 100644 src/lib/.cvsignore create mode 100644 src/lib/Makefile.am create mode 100644 src/lib/dbus/.cvsignore create mode 100644 src/lib/dbus/E_DBus.h create mode 100644 src/lib/dbus/Makefile.am create mode 100644 src/lib/dbus/e_dbus.c create mode 100644 src/lib/dbus/e_dbus_interfaces.c create mode 100644 src/lib/dbus/e_dbus_message.c create mode 100644 src/lib/dbus/e_dbus_methods.c create mode 100644 src/lib/dbus/e_dbus_object.c create mode 100644 src/lib/dbus/e_dbus_private.h create mode 100644 src/lib/dbus/e_dbus_signal.c create mode 100644 src/lib/dbus/e_dbus_util.c create mode 100644 src/lib/hal/.cvsignore create mode 100644 src/lib/hal/E_Hal.h create mode 100644 src/lib/hal/Makefile.am create mode 100644 src/lib/hal/e_hal_device.c create mode 100644 src/lib/hal/e_hal_device.h create mode 100644 src/lib/hal/e_hal_manager.c create mode 100644 src/lib/hal/e_hal_manager.h create mode 100644 src/lib/hal/e_hal_util.c create mode 100644 src/lib/hal/e_hal_util.h create mode 100644 src/lib/nm/.cvsignore create mode 100644 src/lib/nm/E_Nm.h create mode 100644 src/lib/nm/Makefile.am create mode 100644 src/lib/nm/README create mode 100644 src/lib/nm/e_nm.c create mode 100644 src/lib/nm/e_nm_device.c create mode 100644 src/lib/nm/e_nm_manager.c create mode 100644 src/lib/nm/e_nm_network.c create mode 100644 src/lib/nm/e_nm_private.h create mode 100644 src/lib/nm/e_nm_util.c create mode 100644 src/lib/notification/.cvsignore create mode 100644 src/lib/notification/E_Notification_Daemon.h create mode 100644 src/lib/notification/E_Notify.h create mode 100644 src/lib/notification/Makefile.am create mode 100644 src/lib/notification/client.c create mode 100644 src/lib/notification/daemon.c create mode 100644 src/lib/notification/e_notify_private.h create mode 100644 src/lib/notification/marshal.c create mode 100644 src/lib/notification/notification-spec-0.9.txt create mode 100644 src/lib/notification/notification.c diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..7a9dcad --- /dev/null +++ b/.cvsignore @@ -0,0 +1,20 @@ +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +compile +config.guess +config.h +config.h.in +config.log +config.status +config.sub +configure +depcomp +install-sh +libtool +ltmain.sh +missing +stamp-h1 +*.pc +e_dbus.spec diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..5fd000b --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Brian Mattern diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..52d1cbd --- /dev/null +++ b/COPYING @@ -0,0 +1,20 @@ +Copyright (C) 2006 Brian Mattern and various contributors (see AUTHORS) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to +deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +sell copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies of the Software, its documentation and marketing & publicity +materials, and acknowledgment shall be given in the documentation, materials +and software packages that this Software was used. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..3d3346e --- /dev/null +++ b/Doxyfile @@ -0,0 +1,1252 @@ +# Doxyfile 1.4.7 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project +# +# All text after a hash (#) is considered a comment and will be ignored +# The format is: +# TAG = value [value, ...] +# For lists items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (" ") + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded +# by quotes) that should identify the project. + +PROJECT_NAME = e_dbus + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. +# This could be handy for archiving the generated documentation or +# if some version control system is used. + +PROJECT_NUMBER = 0.1.0 + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# If a relative path is entered, it will be relative to the location +# where doxygen was started. If left blank the current directory will be used. + +OUTPUT_DIRECTORY = doc + +# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create +# 4096 sub-directories (in 2 levels) under the output directory of each output +# format and will distribute the generated files over these directories. +# Enabling this option can be useful when feeding doxygen a huge amount of +# source files, where putting all generated files in the same directory would +# otherwise cause performance problems for the file system. + +CREATE_SUBDIRS = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# The default language is English, other supported languages are: +# Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish, +# Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese, +# Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian, +# Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish, +# Swedish, and Ukrainian. + +OUTPUT_LANGUAGE = English + +# This tag can be used to specify the encoding used in the generated output. +# The encoding is not always determined by the language that is chosen, +# but also whether or not the output is meant for Windows or non-Windows users. +# In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES +# forces the Windows encoding (this is the default for the Windows binary), +# whereas setting the tag to NO uses a Unix-style encoding (the default for +# all platforms other than Windows). + +USE_WINDOWS_ENCODING = NO + +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will +# include brief member descriptions after the members that are listed in +# the file and class documentation (similar to JavaDoc). +# Set to NO to disable this. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend +# the brief description of a member or function before the detailed description. +# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator +# that is used to form the text in various listings. Each string +# in this list, if found as the leading text of the brief description, will be +# stripped from the text and the result after processing the whole list, is +# used as the annotated text. Otherwise, the brief description is used as-is. +# If left blank, the following values are used ("$name" is automatically +# replaced with the name of the entity): "The $name class" "The $name widget" +# "The $name file" "is" "provides" "specifies" "contains" +# "represents" "a" "an" "the" + +ABBREVIATE_BRIEF = + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# Doxygen will generate a detailed section even if there is only a brief +# description. + +ALWAYS_DETAILED_SEC = YES + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full +# path before files name in the file list and in the header files. If set +# to NO the shortest path that makes the file name unique will be used. + +FULL_PATH_NAMES = YES + +# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag +# can be used to strip a user-defined part of the path. Stripping is +# only done if one of the specified strings matches the left-hand part of +# the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the +# path to strip. + +STRIP_FROM_PATH = src/ + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of +# the path mentioned in the documentation of a class, which tells +# the reader which header file to include in order to use a class. +# If left blank only the name of the header file containing the class +# definition is used. Otherwise one should specify the include paths that +# are normally passed to the compiler using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful is your file systems +# doesn't support long names like on DOS, Mac, or CD-ROM. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen +# will interpret the first line (until the first dot) of a JavaDoc-style +# comment as the brief description. If set to NO, the JavaDoc +# comments will behave just like the Qt-style comments (thus requiring an +# explicit @brief command for a brief description. + +JAVADOC_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen +# treat a multi-line C++ special comment block (i.e. a block of //! or /// +# comments) as a brief description. This used to be the default behaviour. +# The new default is to treat a multi-line C++ comment block as a detailed +# description. Set this tag to YES if you prefer the old behaviour instead. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the DETAILS_AT_TOP tag is set to YES then Doxygen +# will output the detailed description near the top, like JavaDoc. +# If set to NO, the detailed description appears after the member +# documentation. + +DETAILS_AT_TOP = YES + +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it +# re-implements. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce +# a new page for each member. If set to NO, the documentation of a member will +# be part of the file/class/namespace that contains it. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# Doxygen uses this value to replace tabs by spaces in code fragments. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that acts +# as commands in the documentation. An alias has the form "name=value". +# For example adding "sideeffect=\par Side Effects:\n" will allow you to +# put the command \sideeffect (or @sideeffect) in the documentation, which +# will result in a user-defined paragraph with heading "Side Effects:". +# You can put \n's in the value part of an alias to insert newlines. + +ALIASES = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C +# sources only. Doxygen will then generate output that is more tailored for C. +# For instance, some of the names that are used will be different. The list +# of all members will be omitted, etc. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for Java. +# For instance, namespaces will be presented as packages, qualified scopes +# will look different, etc. + +OPTIMIZE_OUTPUT_JAVA = NO + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to +# include (a tag file for) the STL sources as input, then you should +# set this tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. +# func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. + +BUILTIN_STL_SUPPORT = NO + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES, then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. + +DISTRIBUTE_GROUP_DOC = NO + +# Set the SUBGROUPING tag to YES (the default) to allow class member groups of +# the same type (for instance a group of public functions) to be put as a +# subgroup of that type (e.g. under the Public Functions section). Set it to +# NO to prevent subgrouping. Alternatively, this can be done per class using +# the \nosubgrouping command. + +SUBGROUPING = YES + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in +# documentation are documented, even if no documentation was available. +# Private class members and static file members will be hidden unless +# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES all private members of a class +# will be included in the documentation. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file +# will be included in the documentation. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) +# defined locally in source files will be included in the documentation. +# If set to NO only classes defined in header files are included. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. When set to YES local +# methods, which are defined in the implementation section but not in +# the interface are included in the documentation. +# If set to NO (the default) only methods in the interface are included. + +EXTRACT_LOCAL_METHODS = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) these members will be included in the +# various overviews, but no documentation section is generated. +# This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. +# If set to NO (the default) these classes will be included in the various +# overviews. This option has no effect if EXTRACT_ALL is enabled. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the +# documentation. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any +# documentation blocks found inside the body of a function. +# If set to NO (the default) these blocks will be appended to the +# function's detailed documentation block. + +HIDE_IN_BODY_DOCS = YES + +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. +# Set it to YES to include the internal documentation. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate +# file names in lower-case letters. If set to YES upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the +# documentation. If set to YES the scope will be hidden. + +HIDE_SCOPE_NAMES = NO + +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation +# of that file. + +SHOW_INCLUDE_FILES = YES + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# is inserted in the documentation for inline members. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen +# will sort the (detailed) documentation of file and class members +# alphabetically by member name. If set to NO the members will appear in +# declaration order. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in +# declaration order. + +SORT_BRIEF_DOCS = YES + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be +# sorted by fully-qualified names, including namespaces. If set to +# NO (the default), the class list will be sorted only by class name, +# not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the +# alphabetical list. + +SORT_BY_SCOPE_NAME = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or +# disable (NO) the todo list. This list is created by putting \todo +# commands in the documentation. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or +# disable (NO) the test list. This list is created by putting \test +# commands in the documentation. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or +# disable (NO) the bug list. This list is created by putting \bug +# commands in the documentation. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or +# disable (NO) the deprecated list. This list is created by putting +# \deprecated commands in the documentation. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional +# documentation sections, marked by \if sectionname ... \endif. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or define consists of for it to appear in +# the documentation. If the initializer consists of more lines than specified +# here it will be hidden. Use a value of 0 to hide initializers completely. +# The appearance of the initializer of individual variables and defines in the +# documentation can be controlled using \showinitializer or \hideinitializer +# command in the documentation regardless of this setting. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated +# at the bottom of the documentation of classes and structs. If set to YES the +# list will mention the files that were used to generate the documentation. + +SHOW_USED_FILES = YES + +# If the sources in your project are distributed over multiple directories +# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy +# in the documentation. The default is NO. + +SHOW_DIRECTORIES = NO + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from the +# version control system). Doxygen will invoke the program by executing (via +# popen()) the command , where is the value of +# the FILE_VERSION_FILTER tag, and is the name of an input file +# provided by doxygen. Whatever the program writes to standard output +# is used as the file version. See the manual for examples. + +FILE_VERSION_FILTER = + +#--------------------------------------------------------------------------- +# configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated +# by doxygen. Possible values are YES and NO. If left blank NO is used. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank +# NO is used. + +WARNINGS = YES + +# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings +# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# automatically be disabled. + +WARN_IF_UNDOCUMENTED = YES + +# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some +# parameters in a documented function, or documenting parameters that +# don't exist or using markup commands wrongly. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be abled to get warnings for +# functions that are documented, but have no documentation for their parameters +# or return value. If set to NO (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of +# documentation. + +WARN_NO_PARAMDOC = YES + +# The WARN_FORMAT tag determines the format of the warning messages that +# doxygen can produce. The string should contain the $file, $line, and $text +# tags, which will be replaced by the file and line number from which the +# warning originated and the warning text. Optionally the format may contain +# $version, which will be replaced by the version of the file (if it could +# be obtained via FILE_VERSION_FILTER) + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning +# and error messages should be written. If left blank the output is written +# to stderr. + +WARN_LOGFILE = e_dbus_doxy_warnings.txt + +#--------------------------------------------------------------------------- +# configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag can be used to specify the files and/or directories that contain +# documented source files. You may enter file names like "myfile.cpp" or +# directories like "/usr/src/myproject". Separate the files or directories +# with spaces. + +INPUT = src/lib + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx +# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py + +FILE_PATTERNS = + +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. +# If left blank NO is used. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used select whether or not files or +# directories that are symbolic links (a Unix filesystem feature) are excluded +# from the input. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. Note that the wildcards are matched +# against the file with absolute path, so to exclude all test directories +# for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or +# directories that contain example code fragments that are included (see +# the \include command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +# and *.h) to filter out the source-files in the directories. If left +# blank all files are included. + +EXAMPLE_PATTERNS = + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude +# commands irrespective of the value of the RECURSIVE tag. +# Possible values are YES and NO. If left blank NO is used. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see +# the \image command). + +IMAGE_PATH = doc/images/ + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command , where +# is the value of the INPUT_FILTER tag, and is the name of an +# input file. Doxygen will then use the output that the filter program writes +# to standard output. If FILTER_PATTERNS is specified, this tag will be +# ignored. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: +# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further +# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER +# is applied to all files. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source +# files to browse (i.e. when SOURCE_BROWSER is set to YES). + +FILTER_SOURCE_FILES = NO + +#--------------------------------------------------------------------------- +# configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will +# be generated. Documented entities will be cross-referenced with these sources. +# Note: To get rid of all source code in the generated output, make sure also +# VERBATIM_HEADERS is set to NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body +# of functions and classes directly in the documentation. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C and C++ comments will always remain visible. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES (the default) +# then for each documented function all documented +# functions referencing it will be listed. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES (the default) +# then for each documented function all documented entities +# called/used by that function will be listed. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) +# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from +# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will +# link to the source code. Otherwise they will link to the documentstion. + +REFERENCES_LINK_SOURCE = YES + +# If the USE_HTAGS tag is set to YES then the references to source code +# will point to the HTML generated by the htags(1) tool instead of doxygen +# built-in source browser. The htags tool is part of GNU's global source +# tagging system (see http://www.gnu.org/software/global/global.html). You +# will need version 4.8.6 or higher. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen +# will generate a verbatim copy of the header file for each class for +# which an include is specified. Set to NO to disable this. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index +# of all compounds will be generated. Enable this if the project +# contains a lot of classes, structs, unions or interfaces. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# in which this list will be split (can be a number in the range [1..20]) + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all +# classes will be put under the same header in the alphabetical index. +# The IGNORE_PREFIX tag can be used to specify one or more prefixes that +# should be ignored while generating the index headers. + +IGNORE_PREFIX = e_ E_ + +#--------------------------------------------------------------------------- +# configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# generate HTML output. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `html' will be used as the default path. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank +# doxygen will generate files with .html extension. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. + +HTML_HEADER = doc/head.html + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. + +HTML_FOOTER = doc/foot.html + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading +# style sheet that is used by each HTML page. It can be used to +# fine-tune the look of the HTML output. If the tag is left blank doxygen +# will generate a default style sheet. Note that doxygen will try to copy +# the style sheet file to the HTML output directory, so don't put your own +# stylesheet in the HTML output directory as well, or it will be erased! + +HTML_STYLESHEET = doc/e.css + +# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, +# files or namespaces will be aligned in HTML using tables. If set to +# NO a bullet list will be used. + +HTML_ALIGN_MEMBERS = YES + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) +# of the generated HTML documentation. + +GENERATE_HTMLHELP = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can +# be used to specify the file name of the resulting .chm file. You +# can add a path in front of the file if the result should not be +# written to the html output directory. + +CHM_FILE = + +# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can +# be used to specify the location (absolute path including file name) of +# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run +# the HTML help compiler on the generated index.hhp. + +HHC_LOCATION = + +# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag +# controls if a separate .chi index file is generated (YES) or that +# it should be included in the master .chm file (NO). + +GENERATE_CHI = NO + +# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag +# controls whether a binary table of contents is generated (YES) or a +# normal table of contents (NO) in the .chm file. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members +# to the contents of the HTML help documentation and to the tree view. + +TOC_EXPAND = NO + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index at +# top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. + +DISABLE_INDEX = YES + +# This tag can be used to set the number of enum values (range [1..20]) +# that doxygen will group on one line in the generated HTML documentation. + +ENUM_VALUES_PER_LINE = 4 + +# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be +# generated containing a tree-like index structure (just like the one that +# is generated for HTML Help). For this to work a browser that supports +# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, +# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are +# probably better off using the HTML help feature. + +GENERATE_TREEVIEW = NO + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be +# used to set the initial width (in pixels) of the frame in which the tree +# is shown. + +TREEVIEW_WIDTH = 250 + +#--------------------------------------------------------------------------- +# configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# generate Latex output. + +GENERATE_LATEX = YES + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `latex' will be used as the default path. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. If left blank `latex' will be used as the default command name. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the +# default command name. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact +# LaTeX documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, a4wide, letter, legal and +# executive. If left blank a4wide will be used. + +PAPER_TYPE = a4wide + +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# packages that should be included in the LaTeX output. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for +# the generated latex document. The header should contain everything until +# the first chapter. If it is left blank doxygen will generate a +# standard header. Notice: only use this tag if you know what you are doing! + +LATEX_HEADER = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). The pdf file will +# contain links (just like the HTML output) instead of page references +# This makes the output suitable for online browsing using a pdf viewer. + +PDF_HYPERLINKS = NO + +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a +# higher quality PDF documentation. + +USE_PDFLATEX = NO + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. +# command to the generated LaTeX files. This will instruct LaTeX to keep +# running if errors occur, instead of asking the user for help. +# This option is also used when generating formulas in HTML. + +LATEX_BATCHMODE = NO + +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) +# in the output. + +LATEX_HIDE_INDICES = NO + +#--------------------------------------------------------------------------- +# configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output +# The RTF output is optimized for Word 97 and may not look very pretty with +# other RTF readers or editors. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `rtf' will be used as the default path. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES Doxygen generates more compact +# RTF documents. This may be useful for small projects and may help to +# save some trees in general. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated +# will contain hyperlink fields. The RTF file will +# contain links (just like the HTML output) instead of page references. +# This makes the output suitable for online browsing using WORD or other +# programs which support those fields. +# Note: wordpad (write) and others do not support links. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's +# config file, i.e. a series of assignments. You only have to provide +# replacements, missing definitions are set to their default value. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an rtf document. +# Syntax is similar to doxygen's config file. + +RTF_EXTENSIONS_FILE = + +#--------------------------------------------------------------------------- +# configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# generate man pages + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `man' will be used as the default path. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to +# the generated man pages (default is the subroutine's section .3) + +MAN_EXTENSION = .3 + +# If the MAN_LINKS tag is set to YES and Doxygen generates man output, +# then it will generate one additional man file for each entity +# documented in the real man page(s). These additional files +# only source the real man page, but without them the man command +# would be unable to find the correct page. The default is NO. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES Doxygen will +# generate an XML file that captures the structure of +# the code including all documentation. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be +# put in front of it. If left blank `xml' will be used as the default path. + +XML_OUTPUT = xml + +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_SCHEMA = + +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the +# syntax of the XML files. + +XML_DTD = + +# If the XML_PROGRAMLISTING tag is set to YES Doxygen will +# dump the program listings (including syntax highlighting +# and cross-referencing information) to the XML output. Note that +# enabling this will significantly increase the size of the XML output. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental +# and incomplete at the moment. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES Doxygen will +# generate a Perl module file that captures the structure of +# the code including all documentation. Note that this +# feature is still experimental and incomplete at the +# moment. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES Doxygen will generate +# the necessary Makefile rules, Perl scripts and LaTeX code to be able +# to generate PDF and DVI output from the Perl module output. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be +# nicely formatted so it can be parsed by a human reader. This is useful +# if you want to understand what is going on. On the other hand, if this +# tag is set to NO the size of the Perl module output will be much smaller +# and Perl will parse it just the same. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file +# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. +# This is useful so different doxyrules.make files included by the same +# Makefile don't overwrite each other's variables. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include +# files. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled +# way by setting EXPAND_ONLY_PREDEF to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES +# then the macro expansion is limited to the macros specified with the +# PREDEFINED and EXPAND_AS_DEFINED tags. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# in the INCLUDE_PATH (see below) will be search if a #include is found. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by +# the preprocessor. + +INCLUDE_PATH = + +# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard +# patterns (like *.h and *.hpp) to filter out the header-files in the +# directories. If left blank, the patterns specified with FILE_PATTERNS will +# be used. + +INCLUDE_FILE_PATTERNS = + +# The PREDEFINED tag can be used to specify one or more macro names that +# are defined before the preprocessor is started (similar to the -D option of +# gcc). The argument of the tag is a list of macros of the form: name +# or name=definition (no spaces). If the definition and the = are +# omitted =1 is assumed. To prevent a macro definition from being +# undefined via #undef or recursively expanded use the := operator +# instead of the = operator. + +PREDEFINED =__UNUSED__= + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then +# this tag can be used to specify a list of macro names that should be expanded. +# The macro definition that is found in the sources will be used. +# Use the PREDEFINED tag if you want to use a different macro definition. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then +# doxygen's preprocessor will remove all function-like macros that are alone +# on a line, have an all uppercase name, and do not end with a semicolon. Such +# function macros are typically used for boiler-plate code, and will confuse +# the parser if not removed. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES option can be used to specify one or more tagfiles. +# Optionally an initial location of the external documentation +# can be added for each tagfile. The format of a tag file without +# this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where "loc1" and "loc2" can be relative or absolute paths or +# URLs. If a location is present for each tag, the installdox tool +# does not have to be run to correct the links. +# Note that each tag file must have a unique name +# (where the name does NOT include the path) +# If a tag file is not located in the directory in which doxygen +# is run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create +# a tag file that is based on the input files it reads. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes +# will be listed. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will +# be listed. + +EXTERNAL_GROUPS = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of `which perl'). + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base +# or super classes. Setting the tag to NO turns the diagrams off. Note that +# this option is superseded by the HAVE_DOT option below. This is only a +# fallback. It is recommended to install and use dot, since it yields more +# powerful graphs. + +CLASS_DIAGRAMS = YES + +# If set to YES, the inheritance and collaboration graphs will hide +# inheritance and usage relations if the target is undocumented +# or is not a class. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz, a graph visualization +# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# have no effect if this option is set to NO (the default) + +HAVE_DOT = YES + +# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect inheritance relations. Setting this tag to YES will force the +# the CLASS_DIAGRAMS tag to NO. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for each documented class showing the direct and +# indirect implementation dependencies (inheritance, containment, and +# class references variables) of the class with other documented classes. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# will generate a graph for groups, showing the direct groups dependencies + +GROUP_GRAPHS = YES + +# If the UML_LOOK tag is set to YES doxygen will generate inheritance and +# collaboration diagrams in a style similar to the OMG's Unified Modeling +# Language. + +UML_LOOK = NO + +# If set to YES, the inheritance and collaboration graphs will show the +# relations between templates and their instances. + +TEMPLATE_RELATIONS = NO + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# tags are set to YES then doxygen will generate a graph for each documented +# file showing the direct and indirect include dependencies of the file with +# other documented files. + +INCLUDE_GRAPH = YES + +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or +# indirectly include this file. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a call dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. + +CALL_GRAPH = NO + +# If the CALLER_GRAPH and HAVE_DOT tags are set to YES then doxygen will +# generate a caller dependency graph for every global function or class method. +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. + +CALLER_GRAPH = NO + +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will graphical hierarchy of all classes instead of a textual one. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES +# then doxygen will show the dependencies a directory has on other directories +# in a graphical way. The dependency relations are determined by the #include +# relations between the files in the directories. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are png, jpg, or gif +# If left blank png will be used. + +DOT_IMAGE_FORMAT = png + +# The tag DOT_PATH can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the +# \dotfile command). + +DOTFILE_DIRS = + +# The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_WIDTH = 1024 + +# The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height +# (in pixels) of the graphs generated by dot. If a graph becomes larger than +# this value, doxygen will try to truncate the graph, so that it fits within +# the specified constraint. Beware that most browsers cannot cope with very +# large images. + +MAX_DOT_GRAPH_HEIGHT = 1024 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the +# graphs generated by dot. A depth value of 3 means that only nodes reachable +# from the root by following a path via at most 3 edges will be shown. Nodes +# that lay further from the root node will be omitted. Note that setting this +# option to 1 or 2 may greatly reduce the computation time needed for large +# code bases. Also note that a graph may be further truncated if the graph's +# image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH +# and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default), +# the graph is not depth-constrained. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, which results in a white background. +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) +# support this, this feature is disabled by default. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and +# arrows in the dot generated graphs. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate +# the various graphs. + +DOT_CLEANUP = YES + +#--------------------------------------------------------------------------- +# Configuration::additions related to the search engine +#--------------------------------------------------------------------------- + +# The SEARCHENGINE tag specifies whether or not a search engine should be +# used. If set to NO the values of all tags below this one will be ignored. + +SEARCHENGINE = NO diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..23e5f25 --- /dev/null +++ b/INSTALL @@ -0,0 +1,236 @@ +Installation Instructions +************************* + +Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free +Software Foundation, Inc. + +This file is free documentation; the Free Software Foundation gives +unlimited permission to copy, distribute and modify it. + +Basic Installation +================== + +These are generic installation instructions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. (Caching is +disabled by default to prevent problems with accidental use of stale +cache files.) + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You only need +`configure.ac' if you want to change it or regenerate `configure' using +a newer version of `autoconf'. + +The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. If you're + using `csh' on an old version of System V, you might need to type + `sh ./configure' instead to prevent `csh' from trying to execute + `configure' itself. + + Running `configure' takes awhile. While running, it prints some + messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package. + + 4. Type `make install' to install the programs and any data files and + documentation. + + 5. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + +Compilers and Options +===================== + +Some systems require unusual options for compilation or linking that the +`configure' script does not know about. Run `./configure --help' for +details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + +You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you must use a version of `make' that +supports the `VPATH' variable, such as GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. + + If you have to use a `make' that does not support the `VPATH' +variable, you have to compile the package for one architecture at a +time in the source code directory. After you have installed the +package for one architecture, use `make distclean' before reconfiguring +for another architecture. + +Installation Names +================== + +By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX'. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + +Optional Features +================= + +Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + +Specifying the System Type +========================== + +There may be some features `configure' cannot figure out automatically, +but needs to determine by the type of machine the package will run on. +Usually, assuming the package is built to be run on the _same_ +architectures, `configure' can figure that out, but if it prints a +message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + +If you want to set default values for `configure' scripts to share, you +can create a site shell script called `config.site' that gives default +values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + +Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). Here is a another example: + + /bin/bash ./configure CONFIG_SHELL=/bin/bash + +Here the `CONFIG_SHELL=/bin/bash' operand causes subsequent +configuration-related scripts to be executed by `/bin/bash'. + +`configure' Invocation +====================== + +`configure' recognizes the following options to control how it operates. + +`--help' +`-h' + Print a summary of the options to `configure', and exit. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. + diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..b33aad2 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,18 @@ +SUBDIRS = src + +MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \ + config.log config.sub configure depcomp \ + install-sh ltmain.sh missing compile + +pkgconfigdir = $(libdir)/pkgconfig + +if BUILD_EHAL +EHAL_PC = ehal.pc +endif +if BUILD_ENM +ENM_PC = enm.pc +endif +if BUILD_ENOTIFY +ENOTIFY_PC = enotify.pc +endif +pkgconfig_DATA = edbus.pc $(EHAL_PC) $(ENM_PC) $(ENOTIFY_PC) diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..d7cc41c --- /dev/null +++ b/README @@ -0,0 +1,19 @@ +e_dbus v0.01 + +Requirements: +------------- + +Must: + libc libdbus ecore + +This is the start of some basic convenience wrappers around dbus to ease integrating dbus with EFL based applications. + +When using e_dbus, direct use of the low level dbus api is still heavily required for processing messages. + +A few things to note: + +e_dbus_bus_get() currently creates a new private connection to whichever bus is passed in, and hooks this into the ecore main loop. At some point, we should implement internal refcounting and sharing of these private connections (one for each bus type) so that e.g. multiple modules in an app can reuse the same connection. libdbus implements its own shared connections (available via dbus_bus_get()), but the final reference is always retained by libdbus iteself, causing any cleanup handlers on the connection to only be called at app exit. Thus, if a module hooks a connection in to the mainloop, there is no way to clean up fully before unloading the module, causing issues. + +This code is still in its infancy, and although works, may have some rough edges. The design is not set in stone, so feel free to propose (and implement) changes / improvements. + +Patches can be sent to the enlightenment dev mailing list, or, if you have commit access, feel free to commit. diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..a22b36d --- /dev/null +++ b/autogen.sh @@ -0,0 +1,14 @@ +#! /bin/sh + +rm -rf autom4te.cache +rm -f aclocal.m4 ltmain.sh + +echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS || exit 1 +echo "Running autoheader..."; autoheader || exit 1 +echo "Running libtoolize..."; (libtoolize --copy --automake || glibtoolize --automake) || exit 1 +echo "Running automake..."; automake --gnu --add-missing --copy || exit 1 +echo "Running autoconf..."; autoconf || exit 1 + +if [ -z "$NOCONFIGURE" ] ; then + ./configure "$@" +fi diff --git a/configure.in b/configure.in new file mode 100644 index 0000000..6023589 --- /dev/null +++ b/configure.in @@ -0,0 +1,115 @@ +# get rid of that stupid cache mechanism +rm -f config.cache + +AC_INIT(e_dbus, 0.5.0.043, enlightenment-devel@lists.sourceforge.net) +AC_PREREQ(2.52) +AC_CONFIG_SRCDIR(configure.in) +AC_CANONICAL_BUILD +AC_CANONICAL_HOST + +AM_INIT_AUTOMAKE(1.6 dist-bzip2) +AM_CONFIG_HEADER(config.h) + +AC_PROG_CC +AC_HEADER_STDC +AM_PROG_CC_C_O + +define([AC_LIBTOOL_LANG_CXX_CONFIG], [:])dnl +define([AC_LIBTOOL_LANG_F77_CONFIG], [:])dnl +AC_PROG_LIBTOOL + +VMAJ=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $1);}'` +VMIN=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $2);}'` +VMIC=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $3);}'` +SNAP=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $4);}'` +version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN" +AC_SUBST(version_info) + +dnl Check enabled modules to build +AC_ARG_ENABLE(ehal, + AC_HELP_STRING([--disable-ehal], + [Disable ehal build]), + [enable_ehal=$enableval], + [enable_ehal="yes"]) +AC_ARG_ENABLE(enm, + AC_HELP_STRING([--disable-enm], + [Disable enm build]), + [enable_enm=$enableval], + [enable_enm="yes"]) +AC_ARG_ENABLE(enotify, + AC_HELP_STRING([--disable-enotify], + [Disable enotify build]), + [enable_enotify=$enableval], + [enable_enotify="yes"]) + + +PKG_CHECK_MODULES([EDBUS], [ + dbus-1 >= 0.62 + ecore >= 0.9.9 +]) + + +dnl evas +if test "x${enable_enotify}" = "xyes" +then + PKG_CHECK_MODULES(EVAS, [evas >= 0.9.9], [], [enable_enotify="no"]) +fi + +AC_ARG_ENABLE(build-test-gui, + AS_HELP_STRING([--enable-build-test-gui], [Build with gui for testing]), + [ PKG_CHECK_MODULES([HAL_TEST_GUI], [ + ewl + efreet + ], + # temporarily disable until update to newer tree2 api + [AC_DEFINE([EWL_GUI], 0, [An ewl gui for e_dbus_hal])], + [AC_DEFINE([EWL_GUI], 0, [An ewl gui for e_dbus_hal])] + ) + ] +) + +AM_CONDITIONAL([BUILD_EHAL], [test "x${enable_ehal}" = "xyes"]) +AM_CONDITIONAL([BUILD_ENM], [test "x${enable_enm}" = "xyes"]) +AM_CONDITIONAL([BUILD_ENOTIFY], [test "x${enable_enotify}" = "xyes"]) + +AC_OUTPUT([ +e_dbus.spec +Makefile +src/Makefile +src/lib/Makefile +src/lib/dbus/Makefile +src/lib/hal/Makefile +src/lib/nm/Makefile +src/lib/notification/Makefile +src/bin/Makefile +edbus.pc +ehal.pc +enotify.pc +enm.pc +]) + + +##################################################################### +## Info + +echo +echo +echo +echo "------------------------------------------------------------------------" +echo "$PACKAGE $VERSION" +echo "------------------------------------------------------------------------" +echo +echo "Modules:" +echo +echo " EHal.................: $enable_ehal" +echo " ENM..................: $enable_enm" +echo " ENotify..............: $enable_enotify" +echo +echo "Configuration Options Summary:" +echo +echo " Compilation..........: make" +echo +echo " Installation.........: make install" +echo +echo " prefix.............: $prefix" +echo diff --git a/debian/.cvsignore b/debian/.cvsignore new file mode 100644 index 0000000..6d10dce --- /dev/null +++ b/debian/.cvsignore @@ -0,0 +1 @@ +changelog diff --git a/debian/changelog.in b/debian/changelog.in new file mode 100644 index 0000000..97eb7b7 --- /dev/null +++ b/debian/changelog.in @@ -0,0 +1,6 @@ +edbus (@VERSION@-1) unstable; urgency=low + + * CVS snapshot. + + -- Falko Schmidt Mon, 28 Apr 2008 15:53:27 +0000 + diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..1e8b314 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +6 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..86f81f0 --- /dev/null +++ b/debian/control @@ -0,0 +1,28 @@ +Source: edbus +Section: libs +Priority: optional +Maintainer: Falko Schmidt +Build-Depends: debhelper (>= 6), cdbs, libecore-dev, libdbus-1-dev, libevas-dev +Standards-Version: 3.7.3 +Homepage: http://www.enlightenment.org + +Package: libedbus-dev +Section: libdevel +Architecture: any +Depends: libedbus0 (= ${binary:Version}), libdbus-1-dev +Replaces: libe-dbus0-dev +Description: D-Bus and HAL wrapper libraries for use with the EFL - Development files + Wrappers around D-Bus to ease integrating D-Bus with EFL based applications. + . + This packages contains headers and static libraries for libedbus, libehal and + libenotify + +Package: libedbus0 +Architecture: any +Depends: ${shlibs:Depends} +Replaces: libe-dbus0 +Description: D-Bus and HAL wrapper libraries for use with the EFL + This package contains: + - libedbus0 and libehal0 : D-Bus and HAL-related wrappers to ease integrating + D-Bus and HAL with EFL-based applications + - libenotify0 : provides an EFL-based notification support diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..4ee41bb --- /dev/null +++ b/debian/copyright @@ -0,0 +1,49 @@ +This package was debianized by Falko Schmidt on +Mon, 28 Apr 2008 16:04:35 +0000. + +The source is downloaded from the e17/libs/eet module of the enlightenment CVS +tree. For more information, see: + + http://www.enlightenment.org/cvs.html + +Upstream Author: Brian Mattern + +Copyright: + + Copyright (C) 2007 Brian Mattern and various contributor + +License: + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to + deal in the Software without restriction, including without limitation the + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or + sell copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies of the Software and its Copyright notices. In addition publicly + documented acknowledgment must be given that this software has been used if no + source code of this software is made available publicly. This includes + acknowledgments in either Copyright notices, Manuals, Publicity and Marketing + documents or any documentation provided with any product containing this + software. This License does not apply to any software that links to the + libraries provided by this software (statically or dynamically), but only to + the software provided. + + Please see the COPYING.PLAIN for a plain-english explanation of this notice + and it's intent. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL + THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +On Debian systems, the complete text of the BSD License can be found +in `/usr/share/common-licenses/BSD'. + +The Debian packaging is: + (C) 2006 2007,Debian Pkg-e Team +and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian/libedbus-dev.install b/debian/libedbus-dev.install new file mode 100644 index 0000000..9af979d --- /dev/null +++ b/debian/libedbus-dev.install @@ -0,0 +1,4 @@ +debian/tmp/usr/lib/*.a +debian/tmp/usr/lib/*.so +debian/tmp/usr/include/* +debian/tmp/usr/lib/pkgconfig/*.pc diff --git a/debian/libedbus0.install b/debian/libedbus0.install new file mode 100644 index 0000000..79bbe2f --- /dev/null +++ b/debian/libedbus0.install @@ -0,0 +1 @@ +debian/tmp/usr/lib/*.so.* diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..378c8aa --- /dev/null +++ b/debian/rules @@ -0,0 +1,9 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk + +DEB_MAKE_CLEAN_TARGET := clean + +clean:: + ./autogen.sh --prefix=/usr $(DEB_CONFIGURE_EXTRA_FLAGS) diff --git a/doc/e.css b/doc/e.css new file mode 100644 index 0000000..a9f6f64 --- /dev/null +++ b/doc/e.css @@ -0,0 +1,161 @@ +body { + background: url("images/b.png"); + background-repeat: repeat-x; + background-position: top left; + background-color: #f4f4f4; + text-align: center; + font-family: sans-serif; + padding: 0; + margin: 0; +} + +div.main { + margin: 1em auto; + vertical-align: top; + font-family: "Bitstream Vera", "Vera", "Trebuchet MS", Trebuchet, Tahoma, sans-serif; + color: #444444; + font-size: 0.8em; + text-align: justify; + width: 80%; +} + +td.t { background-image:url("images/t.gif"); } +td.t[class] { background-image:url("images/t.png"); } +td.tl { background-image:url("images/tl.gif"); } +td.tl[class] { background-image:url("images/tl.png"); } + +td.nav, td.lnav, td.rnav { + align: middle; + text-align: center; + vertical-align: middle; + width: 100px; + height: 25px; + font-family: "Bitstream Vera", "Vera", "Trebuchet MS", Trebuchet, Tahoma, sans-serif; + color: #000000; + font-size: 9px; + font-weight: bold; + white-space: no-wrap; +} + +td.lnav[class] { background-image:url("images/n.png"); } +td.lnav[class] { background-image:url("images/n.png"); } +td.rnav { background-image:url("images/n.gif"); } +td.rnav[class] { background-image:url("images/n.png"); } + +hr { + width: 200px; + height: 1px; + background: #dddddd; + border: 0; +} + +p { color: #444444 ;} +p.tiny, small { + color: #888888; + font-size: 0.5em; +} + +h1 { + text-align: center; + font-size: 1.3em; +} + +h2 { font-size: 1.1em; } +h3 { font-size: 0.9em; } + +span.keyword { color: #008000; } +span.keywordtype { color: #604020; } +span.keywordflow { color: #e08000; } +span.comment { color: #800000; } +span.preprocessor { color: #806020; } +span.stringliteral { color: #002080; } +span.charliteral { color: #008080; } + +a:link { + color: #445566; + text-decoration: underline; +} + +a:visited { + color: #667788; + text-decoration: underline; +} + +a:active { + color: #88cccc; + text-decoration: none; +} + +a:hover { + color: #112266; + text-decoration: underline; +} + +a.nav { + text-decoration: none; + display: block; +} + +a.nav:link, a.nav:visited { color: #888888; } +a.nav:active { color: #000000; } +a.nav:hover { color: #444444; } +a.code:link, a.code:visited { text-decoration: none; } + +div.fragment { + font-size: 1em; + border: 1px dotted #cccccc; + background-color: #ffffff; + text-align: left; + vertical-align: middle; + padding: 2px; + margin-left: 25px; + margin-right: 25px; + overflow: auto; +} + +td.indexkey { + font-weight: bold; + padding-left: 10px; + padding-right: 0; + padding-top: 2px; + padding-bottom: 0px; + margin: 0; + margin-top: 2px; + margin-bottom: 2px; + border: 1px dotted #cccccc; + border-right: 0px dotted #cccccc; +} + +td.indexvalue { + font-style: italic; + padding-right: 10px; + padding-left: 0; + padding-top: 2px; + padding-bottom: 2px; + margin: 0; + margin-top: 2px; + margin-bottom: 2px; + border: 1px dotted #cccccc; + border-left: 0px dotted #cccccc; +} + +.mdescRight { font-style: italic; } +.memitem { + padding-left: 2px; + padding-right: 2px; + border: 1px dotted #cccccc; + background-color: #ffffff; +} +.memname { + white-space: nowrap; + font-weight: bold; +} +.paramname { font-weight: normal; } + +div.ah { + border: thin solid #888888; + font-weight: bold; + margin-bottom: 3px; + margin-top: 3px; +} + diff --git a/doc/foot.html b/doc/foot.html new file mode 100644 index 0000000..0d3303d --- /dev/null +++ b/doc/foot.html @@ -0,0 +1,6 @@ + +
+

Copyright © Enlightenment.org

+

$projectname Documentation Generated: $datetime

+ + diff --git a/doc/head.html b/doc/head.html new file mode 100644 index 0000000..1e8e960 --- /dev/null +++ b/doc/head.html @@ -0,0 +1,43 @@ + + + + + $title + + + + + + + + + + +
+ + + + + +
Download
+
+ + + + + + + +
+
+
+ + + + + +
Support
+
+ +
diff --git a/doc/images/_.gif b/doc/images/_.gif new file mode 100644 index 0000000000000000000000000000000000000000..60fa7a1acfebae5abb3f687985ff70ca668a9397 GIT binary patch literal 266 zcmZ?wbhEHbWMp7uSjxb_%*?Eypy1`@Ra;xz-rhcM-n<<(9l@1Vg(l$ z*S~-N?Ck8)($dbIJNKW)K=Ge~bACZ(QD%BZi9$$5szOj=aY<@XZepH-hO?%E5zv7Q aia%KxxftXbbQpjD_C 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 literal 0 HcmV?d00001 diff --git a/doc/images/e.css b/doc/images/e.css new file mode 100644 index 0000000..a9f6f64 --- /dev/null +++ b/doc/images/e.css @@ -0,0 +1,161 @@ +body { + background: url("images/b.png"); + background-repeat: repeat-x; + background-position: top left; + background-color: #f4f4f4; + text-align: center; + font-family: sans-serif; + padding: 0; + margin: 0; +} + +div.main { + margin: 1em auto; + vertical-align: top; + font-family: "Bitstream Vera", "Vera", "Trebuchet MS", Trebuchet, Tahoma, sans-serif; + color: #444444; + font-size: 0.8em; + text-align: justify; + width: 80%; +} + +td.t { background-image:url("images/t.gif"); } +td.t[class] { background-image:url("images/t.png"); } +td.tl { background-image:url("images/tl.gif"); } +td.tl[class] { background-image:url("images/tl.png"); } + +td.nav, td.lnav, td.rnav { + align: middle; + text-align: center; + vertical-align: middle; + width: 100px; + height: 25px; + font-family: "Bitstream Vera", "Vera", "Trebuchet MS", Trebuchet, Tahoma, sans-serif; + color: #000000; + font-size: 9px; + font-weight: bold; + white-space: no-wrap; +} + +td.lnav[class] { background-image:url("images/n.png"); } +td.lnav[class] { background-image:url("images/n.png"); } +td.rnav { background-image:url("images/n.gif"); } +td.rnav[class] { background-image:url("images/n.png"); } + +hr { + width: 200px; + height: 1px; + background: #dddddd; + border: 0; +} + +p { color: #444444 ;} +p.tiny, small { + color: #888888; + font-size: 0.5em; +} + +h1 { + text-align: center; + font-size: 1.3em; +} + +h2 { font-size: 1.1em; } +h3 { font-size: 0.9em; } + +span.keyword { color: #008000; } +span.keywordtype { color: #604020; } +span.keywordflow { color: #e08000; } +span.comment { color: #800000; } +span.preprocessor { color: #806020; } +span.stringliteral { color: #002080; } +span.charliteral { color: #008080; } + +a:link { + color: #445566; + text-decoration: underline; +} + +a:visited { + color: #667788; + text-decoration: underline; +} + +a:active { + color: #88cccc; + text-decoration: none; +} + +a:hover { + color: #112266; + text-decoration: underline; +} + +a.nav { + text-decoration: none; + display: block; +} + +a.nav:link, a.nav:visited { color: #888888; } +a.nav:active { color: #000000; } +a.nav:hover { color: #444444; } +a.code:link, a.code:visited { text-decoration: none; } + +div.fragment { + font-size: 1em; + border: 1px dotted #cccccc; + background-color: #ffffff; + text-align: left; + vertical-align: middle; + padding: 2px; + margin-left: 25px; + margin-right: 25px; + overflow: auto; +} + +td.indexkey { + font-weight: bold; + padding-left: 10px; + padding-right: 0; + padding-top: 2px; + padding-bottom: 0px; + margin: 0; + margin-top: 2px; + margin-bottom: 2px; + border: 1px dotted #cccccc; + border-right: 0px dotted #cccccc; +} + +td.indexvalue { + font-style: italic; + padding-right: 10px; + padding-left: 0; + padding-top: 2px; + padding-bottom: 2px; + margin: 0; + margin-top: 2px; + margin-bottom: 2px; + border: 1px dotted #cccccc; + border-left: 0px dotted #cccccc; +} + +.mdescRight { font-style: italic; } +.memitem { + padding-left: 2px; + padding-right: 2px; + border: 1px dotted #cccccc; + background-color: #ffffff; +} +.memname { + white-space: nowrap; + font-weight: bold; +} +.paramname { font-weight: normal; } + +div.ah { + border: thin solid #888888; + font-weight: bold; + margin-bottom: 3px; + margin-top: 3px; +} + diff --git a/doc/images/foot.html b/doc/images/foot.html new file mode 100644 index 0000000..0d3303d --- /dev/null +++ b/doc/images/foot.html @@ -0,0 +1,6 @@ +
+
+

Copyright © Enlightenment.org

+

$projectname Documentation Generated: $datetime

+ + diff --git a/doc/images/head.html b/doc/images/head.html new file mode 100644 index 0000000..1e8e960 --- /dev/null +++ b/doc/images/head.html @@ -0,0 +1,43 @@ + + + + + $title + + + + + + + + + + +
+ + + + + +
Download
+
+ + + + + + + +
+
+
+ + + + + +
Support
+
+ +
diff --git a/doc/images/n.gif b/doc/images/n.gif new file mode 100644 index 0000000000000000000000000000000000000000..28608c40cb4c27ef75416f1e4f37a60ab9032f99 GIT binary patch literal 1700 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 literal 0 HcmV?d00001 diff --git a/doc/images/t.gif b/doc/images/t.gif new file mode 100644 index 0000000000000000000000000000000000000000..cff30686d87744ca946c19fb7dc3f5f9c35bfdcc GIT binary patch literal 979 zcmWlYTS!|60ESaKwy`~pu?@OX>>dUMSz+zKG6sc>S|5ZB_OLySQKp-NZqQOFwA({F zXT4NyyrteX(HKokG#7I-nv2JnXznI4F*l9JBqzx^Cpq`r&a(gE=l{O$Pj~N&-j_YxzTTGueS_SAk-`3v;0x?=|{yL*7uwrjT@ zIIO#X{b0{-we9cO4{TP4%Wbzg_Fel4I?ew}lPKVd;_PTs-f57eX z_}tz@&ym;T_XT}^uO|>X4ETcnkUw}B_WJ@y{=-lt9E?PRfunFBbQ}yu;^9ar8jdHz zq2p*c5<3pZPonY2aUz+BoyHQ;WGoUtiA7Jr#AzH%#FHoB$yp)+rjy`FI(d4YOrM=6 zPg4+>I!l947CbvogJ+psDs!Goflw+3Lise5g43yNCZEZs&vS4Nf}vanfzqiwlFuS& zHj{;+42%|X5RxlENHLFO(R>lh=dvgUqxk}i;cz}zz>xx6L~sIu^F;zJA|#5y7>N~# z0)|or6fcrRynqlCfl(Myq_F}@(j-nZcoCD}*}AQ;49nJ4g)OsHw#HU) z9KTxo;OmF&_a3#kH9Y?PQAfk~9qkRxEv?^jt}<_2c!$Gs8aeg+f0o;C^Eg${KX1u? zYWg!Qymo^W2WNi6D=kxZ*ZJQ(g#+A+!Tw7(+bmC7uMtkZt%t6d-oJ}Z-Fg_)JW$;E zWGvZ={@8HvekA`0ka)rUuTJ{{gVv#^V40 literal 0 HcmV?d00001 diff --git a/doc/images/t.png b/doc/images/t.png new file mode 100644 index 0000000000000000000000000000000000000000..06b6079343d3b2297fbd3a4768d3e3084b655471 GIT binary patch literal 316 zcmeAS@N?&q;$mQ6;PUiv2?ElLK>Uk?4ag98mpuyPuqAoByD*#q!TSf}rGO%w1s;*b z3=G`DAk4@xYmNj^kiEpy*OmP`vpAQYPVLF!8$h8`o-U3d7N@UXwDog#ih`dYj4E7Lh>i{O!eX0Ne literal 0 HcmV?d00001 diff --git a/doc/images/tl.gif b/doc/images/tl.gif new file mode 100644 index 0000000000000000000000000000000000000000..4455dbc60f750ba4e4f9fafcd27485867cec603a GIT binary patch literal 74209 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 HOr!cg?IDM9 literal 0 HcmV?d00001 diff --git a/doc/images/tl.png b/doc/images/tl.png new file mode 100644 index 0000000000000000000000000000000000000000..95ae5b609d0a581741c86796fee966914eb27d67 GIT binary patch literal 88378 zcmXt<1yCGK*M%2{g~DZV*I&ou43cLiwr&=fp7l8V*I4 zlt0@NnH@SiV|{#jlG<8t?Wuv{%-%pyL9!C42#9DSH^gwX7@*KS0atRO@rck)JM$oK zLQ+0w!=K@W!LL+&P8**c+0nH>yc~swiW_2tzBLFU59S`-TY!;~;rl&AwH$c0SgiKl z{q{Wsu}klL7+&=wpxK#`G2;q`Fh+lKcih0hz)M4-`n`U6x?+}^H?mg|!nsJbSV+@p zr(3$cF*@$EA#29m!moq}bDUL2BQY7wJMBzGi+vr_DNNT>r- zQ>?K!H!I)mXj8|_#R+ig2^JWTB^=kCzlj{o!>4QHlZ!^zeQXPXM%lN3Y0XUi?Ma4) zhTd6U*GvG9 z<7PK;XQdf)$A@aIxuvDZXv!c6|E4dkzrTM8Hjm&(YnmL}Oe-jKfr?ciI{9!Hj<$-Q zMBx7Urv2dOM-XUlZ*Pp~T0JJL`q<8KrLm+=S^p%vun^Yaag?lBVG2RU*A9h8qNs2s zL&>xR-ZCA=}9ni}w3KN!0H;s}1=@jh#ZkC85A zPBoWC1trV&3-4K3 zjJRy*0p?m|HK>6;A$4wtlai8B*CsGE6uY!yH^PkM0?QJ=sjDjv zK)^wj6f$l>6r+h`cElT%DtV@KxWEk{`s){jfëpx&#VQs{!E) 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 +Vendor: %{?_vendorinfo:%{_vendorinfo}}%{!?_vendorinfo:The Enlightenment Project (http://www.enlightenment.org/)} +Distribution: %{?_distribution:%{_distribution}}%{!?_distribution:%{_vendor}} +Obsoletes: ecore-dbus <= 0.9.9.040 +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +e_dbus provides a convenience wrapper for EFL applications using DBus. + +%package devel +Summary: e_dbus headers, static libraries, documentation and test programs +Group: System Environment/Libraries +Requires: %{name} = %{version} + +%description devel +Headers, static libraries, test programs and documentation for e_dbus + +%prep +%setup -q + +%build +%{configure} --prefix=%{_prefix} +%{__make} %{?_smp_mflags} %{?mflags} + +%install +%{__make} %{?mflags_install} DESTDIR=$RPM_BUILD_ROOT install + +# Get rid of unneeded testing cruft. +%{__rm} -rf $RPM_BUILD_ROOT%{_datadir}/%{name} + +%clean +test "x$RPM_BUILD_ROOT" != "x/" && rm -rf $RPM_BUILD_ROOT + +%post +/sbin/ldconfig + +%postun +/sbin/ldconfig + +%files +%defattr(-, root, root) +%doc AUTHORS COPYING* README +%{_bindir}/* +%{_libdir}/*.so.* + +%files devel +%defattr(-, root, root) +%{_includedir}/*.h +%{_libdir}/*.so +%{_libdir}/*.la +%{_libdir}/*.a +%{_libdir}/pkgconfig/* + +%changelog diff --git a/edbus.pc.in b/edbus.pc.in new file mode 100644 index 0000000..705d4a2 --- /dev/null +++ b/edbus.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: edbus +Description: DBus convenience library +Requires: ecore dbus-1 +Version: @VERSION@ +Libs: -L${libdir} -ledbus +Cflags: -I${includedir} diff --git a/ehal.pc.in b/ehal.pc.in new file mode 100644 index 0000000..0382713 --- /dev/null +++ b/ehal.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: ehal +Description: Hal convenience library +Requires: ecore edbus +Version: @VERSION@ +Libs: -L${libdir} -lehal +Cflags: -I${includedir} diff --git a/enm.pc.in b/enm.pc.in new file mode 100644 index 0000000..2247ced --- /dev/null +++ b/enm.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: enotify +Description: Network Manager convenience library +Requires: ecore edbus +Version: @VERSION@ +Libs: -L${libdir} -lenm +Cflags: -I${includedir} diff --git a/enotify.pc.in b/enotify.pc.in new file mode 100644 index 0000000..e97fbde --- /dev/null +++ b/enotify.pc.in @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: enotify +Description: Notification convenience library +Requires: ecore edbus +Version: @VERSION@ +Libs: -L${libdir} -lenotify +Cflags: -I${includedir} diff --git a/gendoc b/gendoc new file mode 100755 index 0000000..82948bd --- /dev/null +++ b/gendoc @@ -0,0 +1,10 @@ +#!/bin/sh + +doxygen + +if [ ! -e doc/html/images ]; then + mkdir -p doc/html/images +fi + +cp doc/images/*.png doc/images/*.gif doc/html/images + diff --git a/src/.cvsignore b/src/.cvsignore new file mode 100644 index 0000000..282522d --- /dev/null +++ b/src/.cvsignore @@ -0,0 +1,2 @@ +Makefile +Makefile.in diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..97baf85 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,2 @@ +MAINTAINERCLEANFILES = Makefile.in +SUBDIRS = lib bin diff --git a/src/bin/.cvsignore b/src/bin/.cvsignore new file mode 100644 index 0000000..9ee1dc8 --- /dev/null +++ b/src/bin/.cvsignore @@ -0,0 +1,11 @@ +.deps +Makefile +Makefile.in +.libs +e_dbus_hal +e_dbus_test +e_dbus_test_client +e_dbus_nm +e_dbus_notify +e_dbus_notification_daemon +e-notify-send diff --git a/src/bin/Makefile.am b/src/bin/Makefile.am new file mode 100644 index 0000000..251b2d2 --- /dev/null +++ b/src/bin/Makefile.am @@ -0,0 +1,95 @@ +MAINTAINERCLEANFILES = Makefile.in + +EDBUS_CPPFLAGS = \ +-I$(top_srcdir)/src/lib/dbus \ +-I$(top_srcdir)/src/lib/hal \ +-I$(top_srcdir)/src/lib/nm \ +-I$(top_srcdir)/src/lib/notification \ +@EDBUS_CFLAGS@ + +LIBS = \ +@EDBUS_LIBS@ + +EDBUS_PROG = e_dbus_test e_dbus_test_client +if BUILD_EHAL +EHAL_PROG = e_dbus_hal +endif +if BUILD_ENM +ENM_PROG = e_dbus_nm +endif +if BUILD_ENOTIFY +ENOTIFY_PROG = e_dbus_notify e_dbus_notification_daemon e-notify-send +endif + +bin_PROGRAMS = $(EDBUS_PROG) $(EHAL_PROG) $(ENM_PROG) $(ENOTIFY_PROG) + +e_dbus_test_SOURCES = \ +test.c + +e_dbus_test_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_dbus_test_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(LIBS) +e_dbus_test_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la + +e_dbus_test_client_SOURCES = \ +test_client.c + +e_dbus_test_client_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_dbus_test_client_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(LIBS) +e_dbus_test_client_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la + + +if BUILD_EHAL +HALSOURCES = \ +hal.c + +e_dbus_hal_CPPFLAGS = \ +$(EDBUS_CPPFLAGS) \ +@HAL_TEST_GUI_CFLAGS@ + +e_dbus_hal_LIBS = \ +$(LIBS) \ +@HAL_TEST_GUI_LIBS@ + +e_dbus_hal_SOURCES = \ + $(HALSOURCES) + +e_dbus_hal_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/hal/libehal.la $(e_dbus_hal_LIBS) +e_dbus_hal_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/hal/libehal.la +endif + + +if BUILD_ENM +NMSOURCES = \ +nm.c + +e_dbus_nm_SOURCES = \ + $(NMSOURCES) + +e_dbus_nm_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_dbus_nm_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/nm/libenm.la $(LIBS) +e_dbus_nm_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/nm/libenm.la +endif + + +if BUILD_ENOTIFY +e_dbus_notify_SOURCES = \ + notify.c + +e_dbus_notify_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_dbus_notify_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/notification/libenotify.la $(LIBS) +e_dbus_notify_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/notification/libenotify.la + +e_dbus_notification_daemon_SOURCES = \ + notification_daemon.c + +e_dbus_notification_daemon_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_dbus_notification_daemon_LDADD = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/notification/libenotify.la $(LIBS) +e_dbus_notification_daemon_DEPENDENCIES = $(top_builddir)/src/lib/dbus/libedbus.la $(top_builddir)/src/lib/notification/libenotify.la + +e_notify_send_SOURCES = \ + notify-send.c + +e_notify_send_CPPFLAGS = $(EDBUS_CPPFLAGS) +e_notify_send_LDADD = $(top_builddir)/src/lib/notification/libenotify.la $(LIBS) +e_notify_send_DEPENDENCIES = $(top_builddir)/src/lib/notification/libenotify.la +endif diff --git a/src/bin/hal.c b/src/bin/hal.c new file mode 100644 index 0000000..215951c --- /dev/null +++ b/src/bin/hal.c @@ -0,0 +1,830 @@ +#include "E_Hal.h" +#include + +#if EWL_GUI +#include +#include +#endif + +#include + +/* test app */ + +static E_DBus_Connection *conn; +#if EWL_GUI +static int mount_id = 0; +#endif + +#define DEVICE_TYPE_STORAGE 1 +#define DEVICE_TYPE_VOLUME 2 +typedef struct Device Device; +struct Device { + int type; + char *udi; +}; + +typedef struct Storage Storage; +struct Storage { + int type; + char *udi; + char *bus; + char *drive_type; + + char *model; + char *vendor; + char *serial; + + char removable; + char media_available; + unsigned long media_size; + + char requires_eject; + char hotpluggable; + char media_check_enabled; + + struct { + char *drive; + char *volume; + } icon; + + Ecore_List *volumes; +}; + + +typedef struct Volume Volume; +struct Volume { + int type; + char *udi; + char *uuid; + char *label; + char *fstype; + + char partition; + char *partition_label; + char mounted; + char *mount_point; + + Storage *storage; +}; + +static Ecore_List *storage_devices; +static Ecore_List *volumes; + +void +devices_dirty(void) +{ +#if EWL_GUI + Ewl_Widget *mvc; + + mvc = ewl_widget_name_find("device_mvc"); + ewl_mvc_dirty_set(EWL_MVC(mvc), 1); +#endif +} + + +Storage * +storage_new(void) +{ + Storage *s; + s = calloc(1, sizeof(Storage)); + s->type = DEVICE_TYPE_STORAGE; + s->volumes = ecore_list_new(); + return s; +} + +void +storage_free(Storage *storage) +{ + Volume *v; + printf("storage_free: %s\n", storage->udi); + + /* disconnect storage from volume */ + ecore_list_first_goto(storage->volumes); + while ((v = ecore_list_next(storage->volumes))) + v->storage = NULL; + ecore_list_destroy(storage->volumes); + + if (storage->udi) free(storage->udi); + if (storage->bus) free(storage->bus); + if (storage->drive_type) free(storage->drive_type); + + if (storage->model) free(storage->model); + if (storage->vendor) free(storage->vendor); + if (storage->serial) free(storage->serial); + if (storage->icon.drive) free(storage->icon.drive); + if (storage->icon.volume) free(storage->icon.volume); + + free(storage); +} + +static int +storage_find_helper(Storage *s, const char *udi) +{ + if (!s->udi) return -1; + return strcmp(s->udi, udi); +} + +Storage * +storage_find(const char *udi) +{ + Storage *s = NULL; + if (!udi) return NULL; + s = ecore_list_find(storage_devices, ECORE_COMPARE_CB(storage_find_helper), udi); + return s; +} + +void +storage_remove(const char *udi) +{ + if (storage_find(udi)) + { + ecore_list_remove_destroy(storage_devices); + devices_dirty(); + } +} + +static void +cb_storage_properties(void *data, void *reply_data, DBusError *error) +{ + Storage *s = data; + E_Hal_Properties *ret = reply_data; + int err = 0; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + goto error; + } + + s->bus = e_hal_property_string_get(ret, "storage.bus", &err); + if (err) goto error; + s->drive_type = e_hal_property_string_get(ret, "storage.drive_type", &err); + if (err) goto error; + s->model = e_hal_property_string_get(ret, "storage.model", &err); + if (err) goto error; + s->vendor = e_hal_property_string_get(ret, "storage.vendor", &err); + if (err) goto error; + s->serial = e_hal_property_string_get(ret, "storage.serial", &err); + + s->removable = e_hal_property_bool_get(ret, "storage.removable", &err); + if (err) goto error; + + if (s->removable) + { + s->media_available = e_hal_property_bool_get(ret, "storage.removable.media_available", &err); + s->media_size = e_hal_property_uint64_get(ret, "storage.removable.media_size", &err); + } + + s->requires_eject = e_hal_property_bool_get(ret, "storage.requires_eject", &err); + s->hotpluggable = e_hal_property_bool_get(ret, "storage.hotpluggable", &err); + s->media_check_enabled = e_hal_property_bool_get(ret, "storage.media_check_enabled", &err); + + s->icon.drive = e_hal_property_string_get(ret, "storage.icon.drive", &err); + s->icon.volume = e_hal_property_string_get(ret, "storage.icon.volume", &err); + + devices_dirty(); + /* now fetch the children (volumes?) */ + + //printf("Got storage:\n udi: %s\n bus: %s\n drive_type: %s\n model: %s\n vendor: %s\n serial: %s\n icon.drive: %s\n icon.volume: %s\n\n", s->udi, s->bus, s->drive_type, s->model, s->vendor, s->serial, s->icon.drive, s->icon.volume); + return; + +error: + storage_remove(s->udi); +} + +Storage * +storage_append(const char *udi) +{ + Storage *s; + if (!udi) return NULL; + s = storage_new(); + s->udi = strdup(udi); + ecore_list_append(storage_devices, s); + e_hal_device_get_all_properties(conn, s->udi, cb_storage_properties, s); + devices_dirty(); + return s; +} + +Volume * +volume_new(void) +{ + Volume *v; + v = calloc(1, sizeof(Volume)); + v->type = DEVICE_TYPE_VOLUME; + return v; +} + +void +volume_free(Volume *volume) +{ + if (!volume) return; + + /* disconnect volume from storage */ + if (volume->storage) + { + if (ecore_list_goto(volume->storage->volumes, volume)) + ecore_list_remove(volume->storage->volumes); + } + + if (volume->udi) free(volume->udi); + if (volume->uuid) free(volume->uuid); + if (volume->label) free(volume->label); + if (volume->fstype) free(volume->fstype); + if (volume->partition_label) free(volume->partition_label); + if (volume->mount_point) free(volume->mount_point); + + free(volume); +} + +static int +volume_find_helper(Volume *v, const char *udi) +{ + if (!v->udi) return -1; + return strcmp(v->udi, udi); +} + +Volume * +volume_find(const char *udi) +{ + if (!udi) return NULL; + return ecore_list_find(volumes, ECORE_COMPARE_CB(volume_find_helper), udi); +} + +void +volume_remove(const char *udi) +{ + if (volume_find(udi)) + { + ecore_list_remove_destroy(volumes); + devices_dirty(); + } +} + +static void +cb_volume_properties(void *data, void *reply_data, DBusError *error) +{ + Volume *v = data; + Storage *s = NULL; + E_Hal_Device_Get_All_Properties_Return *ret = reply_data; + int err = 0; + char *str = NULL; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + goto error; + } + + /* skip volumes with volume.ignore set */ + if (e_hal_property_bool_get(ret, "volume.ignore", &err) || err) + goto error; + + /* skip volumes that aren't filesystems */ + str = e_hal_property_string_get(ret, "volume.fsusage", &err); + if (err || !str) goto error; + if (strcmp(str, "filesystem")) goto error; + free(str); + str = NULL; + + v->uuid = e_hal_property_string_get(ret, "volume.uuid", &err); + if (err) goto error; + + v->label = e_hal_property_string_get(ret, "volume.label", &err); + if (err) goto error; + + v->fstype = e_hal_property_string_get(ret, "volume.fstype", &err); + if (err) goto error; + + v->mounted = e_hal_property_bool_get(ret, "volume.is_mounted", &err); + if (err) goto error; + + v->partition = e_hal_property_bool_get(ret, "volume.is_partition", &err); + if (err) goto error; + + v->mount_point = e_hal_property_string_get(ret, "volume.mount_point", &err); + if (err) goto error; + + if (v->partition) + { + v->partition_label = e_hal_property_string_get(ret, "volume.partition.label", &err); + if (err) goto error; + } + + str = e_hal_property_string_get(ret, "info.parent", &err); + if (!err && str) + { + s = storage_find(str); + if (s) + { + v->storage = s; + ecore_list_append(s->volumes, v); + } + free(str); + str = NULL; + } + + //printf("Got volume\n udi: %s\n uuid: %s\n fstype: %s\n label: %s\n partition: %d\n partition_label: %s\n mounted: %d\n mount_point: %s\n\n", v->udi, v->uuid, v->fstype, v->label, v->partition, v->partition ? v->partition_label : "(not a partition)", v->mounted, v->mount_point); + //if (s) printf(" for storage: %s\n", s->udi); + //else printf(" storage unknown\n"); + + devices_dirty(); + return; + +error: + if (str) free(str); + volume_remove(v->udi); + return; + +} + +void +volume_setup(Volume *v) +{ + e_hal_device_get_all_properties(conn, v->udi, cb_volume_properties, v); +} + +Volume * +volume_append(const char *udi) +{ + Volume *v; + if (!udi) return NULL; + printf("ADDING %s\n", udi); + v = volume_new(); + v->udi = strdup(udi); + ecore_list_append(volumes, v); + volume_setup(v); + + //this will get called when volume_setup() returns, which is more important + //devices_dirty(); + + return v; +} + +static void +cb_test_get_all_devices(void *user_data, void *reply_data, DBusError *error) +{ + E_Hal_Manager_Get_All_Devices_Return *ret = reply_data; + char *device; + + if (!ret || !ret->strings) return; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + return; + } + + ecore_list_first_goto(ret->strings); + while ((device = ecore_list_next(ret->strings))) + { + printf("device: %s\n", device); + } +} + +static void +cb_test_find_device_by_capability_storage(void *user_data, void *reply_data, DBusError *error) +{ + E_Hal_Manager_Find_Device_By_Capability_Return *ret = reply_data; + char *device; + + if (!ret || !ret->strings) return; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + return; + } + + ecore_list_first_goto(ret->strings); + while ((device = ecore_list_next(ret->strings))) + storage_append(device); +} + +static void +cb_test_find_device_by_capability_volume(void *user_data, void *reply_data, DBusError *error) +{ + E_Hal_Manager_Find_Device_By_Capability_Return *ret = reply_data; + char *device; + + if (!ret || !ret->strings) return; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + return; + } + + ecore_list_first_goto(ret->strings); + while ((device = ecore_list_next(ret->strings))) + volume_append(device); +} + +static void +cb_is_storage(void *user_data, void *reply_data, DBusError *error) +{ + char *udi = user_data; + E_Hal_Device_Query_Capability_Return *ret = reply_data; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + goto error; + } + + if (ret && ret->boolean) + storage_append(udi); + +error: + free(udi); +} + +static void +cb_is_volume(void *user_data, void *reply_data, DBusError *error) +{ + char *udi = user_data; + E_Hal_Device_Query_Capability_Return *ret = reply_data; + + if (dbus_error_is_set(error)) + { + // XXX handle... + dbus_error_free(error); + goto error; + } + + if (ret && ret->boolean) + volume_append(udi); + +error: + free(udi); +} + +static void +cb_signal_device_added(void *data, DBusMessage *msg) +{ + DBusError err; + char *udi; + int ret; + + dbus_error_init(&err); + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &udi, DBUS_TYPE_INVALID); + udi = strdup(udi); + printf("Device added: %s\n", udi); + ret = e_hal_device_query_capability(conn, udi, "storage", cb_is_storage, strdup(udi)); + e_hal_device_query_capability(conn, udi, "volume", cb_is_volume, strdup(udi)); +} + +void +cb_signal_device_removed(void *data, DBusMessage *msg) +{ + DBusError err; + char *udi; + + dbus_error_init(&err); + + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &udi, DBUS_TYPE_INVALID); + printf("Removed: %s\n", udi); + storage_remove(udi); + volume_remove(udi); +} + +void +cb_signal_new_capability(void *data, DBusMessage *msg) +{ + DBusError err; + char *udi, *capability; + + dbus_error_init(&err); + + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &udi, DBUS_TYPE_STRING, &capability, DBUS_TYPE_INVALID); + if (!strcmp(capability, "storage")) + storage_append(udi); + +} + +/*** gui ***/ + +#if EWL_GUI +static void +cb_window_destroy(Ewl_Widget *w, void *ev, void *data) +{ + ewl_main_quit(); +} + +static void +cb_window_close(Ewl_Widget *w, void *ev, void *data) +{ + ewl_widget_destroy(w); +} + +static void +cb_volume_unmounted(void *user_data, void *method_return, DBusError *error) +{ + Volume *vol = user_data; + vol->mounted = 0; + printf("Volume unmounted reply: %s\n", vol->udi); +} + +static void +cb_volume_mounted(void *user_data, void *method_return, DBusError *error) +{ + Volume *vol = user_data; + vol->mounted = 1; + printf("Volume mounted reply: %s\n", vol->udi); +} + +static void +cb_device_view_clicked(Ewl_Widget *w, void *ev, void *data) +{ + Device *dev = data; + char buf[4096]; + + printf("Device clicked: %s\n", dev->udi); + if (dev->type == DEVICE_TYPE_VOLUME) + { + Volume *vol = (Volume *)dev; + if (vol->mounted) + { + e_hal_device_volume_unmount(conn, vol->udi, NULL, cb_volume_unmounted, vol); + } + else + { + char *mount_point; +#if 0 + if (vol->mount_point && vol->mount_point[0]) + mount_point = vol->mount_point; +#endif + if (vol->label && vol->label[0]) + mount_point = vol->label; + else if (vol->uuid && vol->uuid[0]) + mount_point = vol->uuid; + else + { + // XXX need to check this... + snprintf(buf, sizeof(buf), "%d\n", mount_id++); + mount_point = buf; + } + + printf("Attempting to mount %s to %s\n", vol->udi, mount_point); + e_hal_device_volume_mount(conn, vol->udi, mount_point, vol->fstype, NULL, cb_volume_mounted, vol); + } + } +} + + +static Ewl_Widget * +cb_device_view_constructor(void) +{ + Ewl_Widget *icon; + + icon = ewl_icon_simple_new(); + ewl_box_orientation_set(EWL_BOX(icon), EWL_ORIENTATION_HORIZONTAL); + return icon; +} + +static void +device_view_device_set(Ewl_Icon *icon, Device *dev) +{ + char buf[500]; + const char *path; + const char *icon_name = NULL; + + if (dev->type == DEVICE_TYPE_STORAGE) + { + Storage *s = (Storage *)dev; + + if (s->icon.drive && s->icon.drive[0]) + icon_name = s->icon.drive; + + snprintf(buf, sizeof(buf), "%s", (s->model && s->model[0]) ? s->model : "Unknown drive"); + } + else if (dev->type == DEVICE_TYPE_VOLUME) + { + Volume *v = (Volume *)dev; + if (v->storage && v->storage->icon.volume && v->storage->icon.volume[0]) + icon_name = v->storage->icon.volume; + snprintf(buf, sizeof(buf), "%s (%s)", (v->label && v->label[0]) ? v->label : "Unlabeled Volume", v->fstype ? v->fstype : "Unknown"); + } + else + { + fprintf(stderr, "Invalid device type."); + buf[0] = 0; + } + + ewl_icon_label_set(icon, buf); + if (icon_name) + { + //printf("find icon path: %s\n", icon_name); + path = efreet_icon_path_find("Tango", icon_name, 32); + //printf("found: %s\n", path); + if (path) + { + ewl_icon_image_set(icon, path, NULL); + free(path); + } + } + ewl_callback_append(EWL_WIDGET(icon), EWL_CALLBACK_CLICKED, cb_device_view_clicked, dev); + +} + +static void +cb_device_view_assign(Ewl_Widget *w, void *data) +{ + Device *dev = data; + device_view_device_set(EWL_ICON(w), dev); +} + +static Ewl_Widget * +cb_device_view_header_fetch(void *data, int column) +{ + Ewl_Widget *label; + + label = ewl_label_new(); + ewl_label_text_set(EWL_LABEL(label), "Device"); + ewl_widget_show(label); + return label; +} + +static int +cb_device_tree_expandable_get(void *data, unsigned int row) +{ + Ecore_List *devices; + Device *dev; + + devices = data; + if (!devices) return FALSE; + + dev = ecore_list_index_goto(devices, row); + if (!dev) return FALSE; + + if (dev->type == DEVICE_TYPE_STORAGE) + { + Storage *s = (Storage *)dev; + if (ecore_list_count(s->volumes) > 0) + return TRUE; + } + + return FALSE; +} + +static void * +cb_device_tree_expansion_data_fetch(void *data, unsigned int parent) +{ + Ecore_List *devices; + Device *dev; + Storage *s; + dev = data; + + devices = data; + if (!devices) return NULL; + + dev = ecore_list_index_goto(devices, parent); + + if (!dev) return NULL; + if (dev->type != DEVICE_TYPE_STORAGE) return NULL; + s = (Storage *)dev; + return s->volumes; +} + +#if 0 +Ewl_Widget * +mountbox_list_new(void) +{ + Ewl_Widget *list; + Ewl_Model *model; + Ewl_View *view; + + model = ewl_model_ecore_list_get(); + + view = ewl_view_new(); + ewl_view_constructor_set(view, cb_device_view_constructor); + ewl_view_assign_set(view, EWL_VIEW_ASSIGN(cb_device_view_assign)); + + list = ewl_list_new(); + ewl_mvc_model_set(EWL_MVC(list), model); + ewl_mvc_view_set(EWL_MVC(list), view); + ewl_mvc_data_set(EWL_MVC(list), volumes); + + ewl_widget_name_set(list, "volume_mvc"); + + return list; +} +#endif + +Ewl_Widget * +mountbox_tree_new(void) +{ + Ewl_Widget *tree; + Ewl_Model *model; + Ewl_View *view; + + model = ewl_model_ecore_list_get(); + ewl_model_expandable_set(model, cb_device_tree_expandable_get); + ewl_model_expansion_data_fetch_set(model, cb_device_tree_expansion_data_fetch); + + view = ewl_view_new(); + ewl_view_constructor_set(view, cb_device_view_constructor); + ewl_view_assign_set(view, EWL_VIEW_ASSIGN(cb_device_view_assign)); + ewl_view_header_fetch_set(view, cb_device_view_header_fetch); + + tree = ewl_tree2_new(); + ewl_mvc_model_set(EWL_MVC(tree), model); + ewl_mvc_data_set(EWL_MVC(tree), storage_devices); + ewl_tree2_column_append(EWL_TREE2(tree), view, FALSE); + + ewl_widget_name_set(tree, "device_mvc"); + + return tree; +} + +Ewl_Widget * +mountbox_mainwin_new(void) +{ + Ewl_Widget *win, *box, *list; + win = ewl_window_new(); + ewl_window_title_set(EWL_WINDOW(win), "EWL Mountbox"); + ewl_window_class_set(EWL_WINDOW(win), "ewl_mountbox"); + ewl_window_name_set(EWL_WINDOW(win), "ewl_mountbox"); + + ewl_object_fill_policy_set(EWL_OBJECT(win), EWL_FLAG_FILL_ALL); + ewl_object_size_request(EWL_OBJECT(win), 400, 400); + + ewl_callback_append(win, EWL_CALLBACK_DELETE_WINDOW, cb_window_close, NULL); + ewl_callback_append(win, EWL_CALLBACK_DESTROY, cb_window_destroy, NULL); + + box = ewl_vbox_new(); + ewl_container_child_append(EWL_CONTAINER(win), box); + ewl_widget_show(box); + + list = mountbox_tree_new(); + ewl_container_child_append(EWL_CONTAINER(box), list); + ewl_widget_show(list); + + return win; +} +#endif +int +main(int argc, char **argv) +{ +#if EWL_GUI + Ewl_Widget *win; +#endif + + ecore_init(); + ecore_string_init(); + e_dbus_init(); + +#if EWL_GUI + efreet_init(); + if (!ewl_init(&argc, argv)) + { + fprintf(stderr, "Unable to init EWL.\n"); + return 1; + } +#endif + + conn = e_dbus_bus_get(DBUS_BUS_SYSTEM); + if (!conn) + { + printf("Error connecting to system bus. Is it running?\n"); + return 1; + } + + storage_devices = ecore_list_new(); + ecore_list_free_cb_set(storage_devices, ECORE_FREE_CB(storage_free)); + volumes = ecore_list_new(); + ecore_list_free_cb_set(volumes, ECORE_FREE_CB(volume_free)); + +#if EWL_GUI + win = mountbox_mainwin_new(); + ewl_widget_show(win); +#endif + + e_hal_manager_get_all_devices(conn, cb_test_get_all_devices, NULL); + e_hal_manager_find_device_by_capability(conn, "storage", cb_test_find_device_by_capability_storage, NULL); + e_hal_manager_find_device_by_capability(conn, "volume", cb_test_find_device_by_capability_volume, NULL); + + e_dbus_signal_handler_add(conn, "org.freedesktop.Hal", "/org/freedesktop/Hal/Manager", "org.freedesktop.Hal.Manager", "DeviceAdded", cb_signal_device_added, NULL); + e_dbus_signal_handler_add(conn, "org.freedesktop.Hal", "/org/freedesktop/Hal/Manager", "org.freedesktop.Hal.Manager", "DeviceRemoved", cb_signal_device_removed, NULL); + e_dbus_signal_handler_add(conn, "org.freedesktop.Hal", "/org/freedesktop/Hal/Manager", "org.freedesktop.Hal.Manager", "NewCapability", cb_signal_new_capability, NULL); + +#if EWL_GUI + ewl_main(); + efreet_shutdown(); + ewl_shutdown(); +#else + ecore_main_loop_begin(); +#endif + ecore_list_destroy(storage_devices); + ecore_list_destroy(volumes); + e_dbus_connection_close(conn); + e_dbus_shutdown(); + ecore_string_shutdown(); + ecore_shutdown(); + return 1; +} diff --git a/src/bin/nm.c b/src/bin/nm.c new file mode 100644 index 0000000..5ff90ec --- /dev/null +++ b/src/bin/nm.c @@ -0,0 +1,249 @@ +#include +#include +#include + +#define E_NM_DEVICE_TYPE_WIRED 1 +#define E_NM_DEVICE_TYPE_WIRELESS 2 + +typedef struct NM_Manager NM_Manager; +struct NM_Manager +{ + E_NM_Context *ctx; + Ecore_List *devices; +}; + +void +cb_manager_get_udi(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + char *udi; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &udi); + + printf("Got udi: %s\n", udi); +} + +void +cb_manager_get_interface(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + char *interface; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &interface); + + printf("Got interface: %s\n", interface); +} + +void +cb_manager_get_driver(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + char *driver; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &driver); + + printf("Got driver: %s\n", driver); +} + +void +cb_manager_get_capabilities(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + dbus_uint32_t caps; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &caps); + + printf("Got capabilities: %i\n", caps); +} + +void +cb_manager_get_ip4address(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + dbus_int32_t ip; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &ip); + + printf("Got IPv4 address: %i.%i.%i.%i\n", + (ip & 0xff), + ((ip >> 8 ) & 0xff), + ((ip >> 16) & 0xff), + ((ip >> 24) & 0xff) + ); +} + +void +cb_manager_get_state(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + dbus_uint32_t state; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &state); + + printf("Got state: %i\n", state); +} + +void +cb_manager_get_ip4config(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + char *ip4config; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &ip4config); + + printf("Got IPv4 config path: %s\n", ip4config); +} + +void +cb_manager_get_carrier(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + dbus_uint32_t carrier; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &carrier); + + printf("Got carrier: %i\n", carrier); +} + +void +cb_manager_get_type(void *data, void *reply, DBusError *err) +{ + DBusMessageIter iter, sub; + dbus_uint32_t type; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + dbus_message_iter_init(reply, &iter); + dbus_message_iter_recurse(&iter, &sub); + dbus_message_iter_get_basic(&sub, &type); + + printf("Got type: %i (1 = ethernet, 2 = wireless)\n", type); +} + +void +cb_manager_get_devices(void *data, void *reply, DBusError *err) +{ + NM_Manager *app = data; + const char *dev; + + if (dbus_error_is_set(err)) + { + printf("Error: %s - %s\n" ,err->name, err->message); + return; + } + + app->devices = reply; + ecore_list_first_goto(app->devices); + printf("Got devices:\n"); + while ((dev = ecore_list_next(app->devices))) + { + printf("%s\n", dev); + e_nm_device_get_udi(app->ctx, dev, cb_manager_get_udi, app); + e_nm_device_get_interface(app->ctx, dev, cb_manager_get_interface, app); + e_nm_device_get_driver(app->ctx, dev, cb_manager_get_driver, app); + e_nm_device_get_capabilities(app->ctx, dev, cb_manager_get_capabilities, app); + e_nm_device_get_ip4address(app->ctx, dev, cb_manager_get_ip4address, app); + e_nm_device_get_state(app->ctx, dev, cb_manager_get_state, app); + /* FIXME: Getting the ip4config needs fixing */ + //e_nm_device_get_ip4config(app->ctx, dev, cb_manager_get_ip4config, app); + e_nm_device_get_carrier(app->ctx, dev, cb_manager_get_carrier, app); + e_nm_device_get_type(app->ctx, dev, cb_manager_get_type, app); + } +} + +int +main(int argc, char **argv) +{ + NM_Manager *app; + ecore_init(); + ecore_string_init(); + e_dbus_init(); + + app = calloc(1, sizeof(NM_Manager)); + + app->ctx = e_nm_new(); + if (!app->ctx) + { + printf("Error connecting to system bus. Is it running?\n"); + return 1; + } + + e_nm_get_devices(app->ctx, cb_manager_get_devices, app); + + ecore_main_loop_begin(); + + e_nm_free(app->ctx); + free(app); + e_dbus_shutdown(); + ecore_string_shutdown(); + ecore_shutdown(); + return 0; +} diff --git a/src/bin/notification_daemon.c b/src/bin/notification_daemon.c new file mode 100644 index 0000000..aeb8c17 --- /dev/null +++ b/src/bin/notification_daemon.c @@ -0,0 +1,175 @@ +#include + +typedef struct Daemon_Data Daemon_Data; +typedef struct Timer_Data Timer_Data; + +struct Timer_Data +{ + Daemon_Data *d; + E_Notification *n; +}; + +struct Daemon_Data +{ + E_Notification_Daemon *daemon; + Ecore_List *open_notes; + + Ecore_List *history; + int history_start; + int max_history_length; + int default_timeout; + + int next_id; +}; + +void +daemon_note_close(Daemon_Data *dd, E_Notification *n, int reason) +{ + printf("Close notification #%d\n", e_notification_id_get(n)); + + if (ecore_list_goto(dd->open_notes, n)) + { + ecore_list_remove(dd->open_notes); + e_notification_closed_set(n, 1); + e_notification_daemon_signal_notification_closed(dd->daemon, e_notification_id_get(n), reason); + e_notification_unref(n); + } +} + +int +cb_note_close_timer(void *data) +{ + Timer_Data *td = data; + + if (!e_notification_closed_get(td->n)) + daemon_note_close(td->d, td->n, E_NOTIFICATION_CLOSED_EXPIRED); + + e_notification_unref(td->n); + free(td); + + return 0; +} + +void +daemon_note_show(Daemon_Data *d, E_Notification *n) +{ + e_notification_ref(n); + ecore_list_append(d->open_notes, n); + e_notification_ref(n); + ecore_list_append(d->history, n); + + // adjust history + if (ecore_list_count(d->history) > d->max_history_length) + { + E_Notification *old; + old = ecore_list_first_remove(d->history); + d->history_start = e_notification_id_get(old) + 1; + e_notification_unref(old); + } + + { + int timeout; + + timeout = e_notification_timeout_get(n); + Timer_Data *td = calloc(1, sizeof(Timer_Data)); + td->d = d; + e_notification_ref(n); + td->n = n; + ecore_timer_add(timeout == -1 ? d->default_timeout : (float)timeout / 1000, cb_note_close_timer, td); + } + + printf("Received notification from %s:\n%s\n%s\n\n", + e_notification_app_name_get(n), + e_notification_summary_get(n), e_notification_body_get(n) + ); +} + +E_Notification * +daemon_note_open_find(Daemon_Data *d, int id) +{ + E_Notification *n; + ecore_list_first_goto(d->open_notes); + while ((n = ecore_list_next(d->open_notes))) + if (e_notification_id_get(n) == id) return n; + + return NULL; +} + +E_Notification * +daemon_note_history_find(Daemon_Data *d, int id) +{ + if (id < d->history_start) return NULL; + + // TODO + + return NULL; +} + + + +int +cb_notify(E_Notification_Daemon *daemon, E_Notification *n) +{ + Daemon_Data *dd; + unsigned int replaces_id; + unsigned int new_id; + + dd = e_notification_daemon_data_get(daemon); + replaces_id = e_notification_replaces_id_get(n); + if (replaces_id) + { + // close old one flagged as replaced + } + + new_id = dd->next_id++; + e_notification_id_set(n, new_id); + + daemon_note_show(dd, n); + + return new_id; +} + +void +cb_close_notification(E_Notification_Daemon *daemon, unsigned int notification_id) +{ + Daemon_Data *dd; + E_Notification *n; + dd = e_notification_daemon_data_get(daemon); + n = daemon_note_open_find(dd, notification_id); + if (n) + daemon_note_close(dd, n, E_NOTIFICATION_CLOSED_REQUESTED); + // else send error? +} + + +int +main(int argc, char **argv) +{ + E_Notification_Daemon *d; + Daemon_Data *dd; + + ecore_init(); + + dd = calloc(1, sizeof(Daemon_Data)); + dd->open_notes = ecore_list_new(); + dd->history = ecore_list_new(); + ecore_list_free_cb_set(dd->open_notes, ECORE_FREE_CB(e_notification_unref)); + ecore_list_free_cb_set(dd->history, ECORE_FREE_CB(e_notification_unref)); + dd->next_id = dd->history_start = 1; + dd->max_history_length = 5; + dd->default_timeout = 5; + + /* set up the daemon */ + d = e_notification_daemon_add("e_notification_module", "Enlightenment"); + e_notification_daemon_data_set(d, dd); + dd->daemon = d; + e_notification_daemon_callback_notify_set(d, cb_notify); + e_notification_daemon_callback_close_notification_set(d, cb_close_notification); + + ecore_main_loop_begin(); + ecore_list_destroy(dd->open_notes); + ecore_list_destroy(dd->history); + free(dd); + e_notification_daemon_free(d); + ecore_shutdown(); +} diff --git a/src/bin/notify-send.c b/src/bin/notify-send.c new file mode 100644 index 0000000..76f0f8f --- /dev/null +++ b/src/bin/notify-send.c @@ -0,0 +1,127 @@ +#include +#include +#include +#include +#include +#include +#include + +#include "config.h" + +void +version(void) +{ + printf("e-notify-send "VERSION"\n"); +} + +void +usage(void) +{ + printf("Usage:\n" + " e-notify-send [OPTION...] [BODY] - create a notification\n" + "\n" + "Help Options:\n" + " -?, --help Show help options\n" + "\n" + "Application Options:\n" + " -n, --name=NAME Specifies the application name to use (default is e-notify-send).\n" + " -u, --urgency=LEVEL Specifies the urgency level (low, normal, critical).\n" + " -t, --expire-time=TIME Specifies the timeout in milliseconds at which to expire the notification.\n" + " -i, --icon=ICON Specifies an icon filename or stock icon to display.\n" + " -c, --category=TYPE Specifies the notification category.\n" + " -v, --version Version of the package.\n" + "\n"); +} + +int +main(int argc, char **argv) +{ + int ch; + char *endptr; + int timeout; + E_Notification *n; + + e_notification_init(); + n = e_notification_new(); + e_notification_app_name_set(n, "e-notify-send"); + e_notification_timeout_set(n, -1); + + /* options descriptor */ + static struct option longopts[] = { + { "help", no_argument, NULL, '?' }, + { "name", required_argument, NULL, 'n' }, + { "urgency", required_argument, NULL, 'u' }, + { "expire-time", required_argument, NULL, 't' }, + { "icon", required_argument, NULL, 'i' }, + { "categorie", required_argument, NULL, 'c' }, + { "version", no_argument, NULL, 'v' }, + { NULL, 0, NULL, 0 } + }; + + while ((ch = getopt_long(argc, argv, "?vn:u:t:i:c:", longopts, NULL)) != -1) + switch (ch) { + case '?': + usage(); + return EXIT_SUCCESS; + break; + case 'v': + version(); + return EXIT_SUCCESS; + break; + case 'n': + e_notification_app_name_set(n, optarg); + break; + case 'u': + if (!strcasecmp(optarg, "low")) + e_notification_hint_urgency_set(n, E_NOTIFICATION_URGENCY_LOW); + else if (!strcasecmp(optarg, "normal")) + e_notification_hint_urgency_set(n, E_NOTIFICATION_URGENCY_NORMAL); + else if (!strcasecmp(optarg, "critical")) + e_notification_hint_urgency_set(n, E_NOTIFICATION_URGENCY_CRITICAL); + else + printf("Urgency level must be: low, normal or critical\n"); + break; + case 't': + errno = 0; + timeout = strtol(optarg, &endptr, 10); + if ((errno != 0 && timeout == 0) || endptr == optarg) + { + fprintf(stderr, "Cannot parse integer value '%s' for -t\n", optarg); + return EXIT_FAILURE; + } + else if (timeout > INT_MAX || timeout < INT_MIN) + { + fprintf(stderr, "Integer value '%s' for -t out of range\n", optarg); + return EXIT_FAILURE; + } + else + e_notification_timeout_set(n, timeout); + break; + case 'i': + e_notification_app_icon_set(n, optarg); + break; + case 'c': + e_notification_hint_category_set(n, optarg); + break; + default: + usage(); + return EXIT_FAILURE; + } + argc -= optind; + argv += optind; + + if (argc < 1) + { + usage(); + return EXIT_FAILURE; + } + + e_notification_summary_set(n, argv[0]); + if (argc > 1) e_notification_body_set(n, argv[1]); + + e_notification_send(n, NULL, NULL); + e_notification_unref(n); + e_notification_shutdown(); + + return EXIT_SUCCESS; +} diff --git a/src/bin/notify.c b/src/bin/notify.c new file mode 100644 index 0000000..49851a1 --- /dev/null +++ b/src/bin/notify.c @@ -0,0 +1,82 @@ +#include +#include + +void +cb_sent(void *data, void *ret, DBusError *err) +{ + E_Notification_Return_Notify *notify; + notify = ret; + if (notify) + { + printf("id: %d\n", notify->notification_id); + } + else if (dbus_error_is_set(err)) + { + printf("Error: %s\n", err->message); + } + + free(notify); +} + +int +cb_timer(void *data) +{ + E_Notification *n; + char buf[1024]; + static int num = 0; + static const char *icons[] = { + "xterm", + "firefox", + "gvim" + }; + + snprintf(buf, sizeof(buf), "%s says Hello #%d", icons[num%3], num / 3); + n = e_notification_full_new(icons[num%3], 0, icons[num%3], "Summary", buf, -1); + e_notification_send(n, cb_sent, NULL); + e_notification_unref(n); + num++; + + return 1; +} + +void +cb_action_invoked(void *data, int type, void *event) +{ + E_Notification_Event_Action_Invoked *ev; + + ev = event; + printf("Action (%d): %s\n", ev->notification_id, ev->action_id); + free(ev); +} + +void +cb_note_closed(void *data, int type, void *event) +{ + E_Notification_Event_Notification_Closed *ev; + static const char *reasons[] = { + "Expired", + "Dismissed", + "Requested", + "Undefined" + }; + + ev = event; + printf("Note %d closed: %s\n", ev->notification_id, reasons[ev->reason]); + free(ev); +} + +int +main(int argc, char **argv) +{ + int ret = 0; + ecore_init(); + if (e_notification_init()) + { + ecore_timer_add(1, cb_timer, NULL); + ecore_main_loop_begin(); + e_notification_shutdown(); + } + + ecore_shutdown(); + return ret; +} diff --git a/src/bin/test.c b/src/bin/test.c new file mode 100644 index 0000000..31d6149 --- /dev/null +++ b/src/bin/test.c @@ -0,0 +1,103 @@ +#include +#include "E_DBus.h" +#include +#include +#include + +void +copy_message(DBusMessageIter *from, DBusMessageIter *to) +{ + int type; + printf(" copy message\n"); + while((type = dbus_message_iter_get_arg_type(from)) != DBUS_TYPE_INVALID) + { + printf(" copy type: %c\n", type); + if (dbus_type_is_basic(type)) + { + /* XXX is int64 big enough to hold all basic types? */ + dbus_int64_t val; + dbus_message_iter_get_basic(from, &val); + dbus_message_iter_append_basic(to, type, &val); + } + else if (dbus_type_is_container(type)) + { + int subtype; + + subtype = dbus_message_iter_get_element_type(from); + if (type == DBUS_TYPE_ARRAY && dbus_type_is_fixed(subtype)) + { + int n; + void *val; + dbus_message_iter_get_fixed_array(from, &val, &n); + dbus_message_iter_append_fixed_array(to, subtype, val, n); + } + else + { + DBusMessageIter fsub, tsub; + char *sig; + dbus_message_iter_recurse(from, &fsub); + dbus_message_iter_get_signature(&fsub); + dbus_message_iter_open_container(to, type, sig, &tsub); + copy_message(&fsub, &tsub); + dbus_message_iter_close_container(to, &tsub); + } + } + dbus_message_iter_next(from); + } +} + +DBusMessage * +cb_repeat(E_DBus_Object *obj, DBusMessage *msg) +{ + DBusMessage *reply; + DBusMessageIter from, to; + + printf("\n\nREPEAT\n--------\n"); + reply = dbus_message_new_method_return(msg); + dbus_message_iter_init(msg, &from); + dbus_message_iter_init_append(reply, &to); + + copy_message(&from, &to); + return reply; +} + +void +cb_request_name(void *data, DBusMessage *msg, DBusError *err) +{ + // XXX check that this actually succeeded and handle errors... + printf("request name\n"); +} + +int +_setup(E_DBus_Connection *conn) +{ + E_DBus_Object *repeater; + E_DBus_Interface *iface; + e_dbus_request_name(conn, "org.e.Repeater", 0, cb_request_name, NULL); + repeater = e_dbus_object_add(conn, "/org/e/Repeater", NULL); + iface = e_dbus_interface_new("org.e.Repeater"); + e_dbus_interface_method_add(iface, "Repeat", NULL, NULL, cb_repeat); + e_dbus_object_interface_attach(repeater, iface); + return 1; +} + +int +main (int argc, char ** argv) +{ + E_DBus_Connection *conn; + ecore_init(); + e_dbus_init(); + + conn = e_dbus_bus_get(DBUS_BUS_SESSION); + + if (conn) + { + if (_setup(conn)) ecore_main_loop_begin(); + e_dbus_connection_close(conn); + } + + e_dbus_shutdown(); + ecore_shutdown(); + + return 0; +} diff --git a/src/bin/test_client.c b/src/bin/test_client.c new file mode 100644 index 0000000..3a6b8c8 --- /dev/null +++ b/src/bin/test_client.c @@ -0,0 +1,68 @@ +#include + +#define NUM_LOOPS 10000 + +static dbus_uint32_t msg_num = 0; + +void +cb_reply(void *data, DBusMessage *reply, DBusError *error) +{ + dbus_uint32_t val; + if (dbus_error_is_set(error)) + { + printf("Error: %s - %s\n", error->name, error->message); + return; + } + + dbus_message_get_args(reply, error, DBUS_TYPE_UINT32, &val, DBUS_TYPE_INVALID); + printf("Received: %d\n", val); + if (val == NUM_LOOPS - 1) ecore_main_loop_quit(); +} + +int +send_message(void *data) +{ + + DBusMessage *msg; + E_DBus_Connection *conn; + + conn = data; + + msg = dbus_message_new_method_call( + "org.e.Repeater", + "/org/e/Repeater", + "org.e.Repeater", + "Repeat" + ); + + dbus_message_append_args(msg, DBUS_TYPE_UINT32, &msg_num, DBUS_TYPE_INVALID); + msg_num++; + e_dbus_message_send(conn, msg, cb_reply, -1, NULL); + dbus_message_unref(msg); + printf("Sent: %d\n", msg_num); + return 1; +} + +int +main(int argc, char **argv) +{ + E_DBus_Connection *conn; + int ret = 0; + ecore_init(); + e_dbus_init(); + + conn = e_dbus_bus_get(DBUS_BUS_SESSION); + if (conn) + ecore_timer_add(0.0, send_message, conn); + else + { + printf("Error: could not connect to session bus.\n"); + ret = 1; + } + + ecore_main_loop_begin(); + + e_dbus_shutdown(); + ecore_shutdown(); + return ret; +} diff --git a/src/lib/.cvsignore b/src/lib/.cvsignore new file mode 100644 index 0000000..e995588 --- /dev/null +++ b/src/lib/.cvsignore @@ -0,0 +1,3 @@ +.deps +Makefile +Makefile.in diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am new file mode 100644 index 0000000..87c2fe1 --- /dev/null +++ b/src/lib/Makefile.am @@ -0,0 +1,3 @@ +MAINTAINERCLEANFILES = Makefile.in + +SUBDIRS=dbus hal nm notification diff --git a/src/lib/dbus/.cvsignore b/src/lib/dbus/.cvsignore new file mode 100644 index 0000000..e49f9e1 --- /dev/null +++ b/src/lib/dbus/.cvsignore @@ -0,0 +1,12 @@ +.deps +Makefile +Makefile.in +.libs +e_dbus.lo +e_dbus_interfaces.lo +e_dbus_message.lo +e_dbus_methods.lo +e_dbus_object.lo +e_dbus_signal.lo +e_dbus_util.lo +libedbus.la diff --git a/src/lib/dbus/E_DBus.h b/src/lib/dbus/E_DBus.h new file mode 100644 index 0000000..e08246f --- /dev/null +++ b/src/lib/dbus/E_DBus.h @@ -0,0 +1,162 @@ +#ifndef E_DBUS_H +#define E_DBUS_H + +#define DBUS_API_SUBJECT_TO_CHANGE + +#include +#include +#include + +#include +#include + +#ifdef EAPI +#undef EAPI +#endif +#ifdef _MSC_VER +# ifdef BUILDING_DLL +# define EAPI __declspec(dllexport) +# else +# define EAPI __declspec(dllimport) +# endif +#else +# ifdef __GNUC__ +# if __GNUC__ >= 4 +# define EAPI __attribute__ ((visibility("default"))) +# else +# define EAPI +# endif +# else +# define EAPI +# endif +#endif + +#ifdef __cplusplus +extern "C" { +#endif + + EAPI extern int E_DBUS_EVENT_SIGNAL; + + typedef struct E_DBus_Connection E_DBus_Connection; + typedef struct E_DBus_Object E_DBus_Object; + typedef struct E_DBus_Interface E_DBus_Interface; + typedef struct E_DBus_Signal_Handler E_DBus_Signal_Handler; + + typedef DBusMessage *(* E_DBus_Method_Cb)(E_DBus_Object *obj, DBusMessage *message); + typedef void (*E_DBus_Method_Return_Cb) (void *data, DBusMessage *msg, DBusError *error); + typedef void (*E_DBus_Signal_Cb) (void *data, DBusMessage *msg); + + typedef void (*E_DBus_Object_Property_Get_Cb) (E_DBus_Object *obj, const char *property, int *type, void **value); + typedef int (*E_DBus_Object_Property_Set_Cb) (E_DBus_Object *obj, const char *property, int type, void *value); + +/** + * A callback function for a DBus call + * @param user_data the data passed in to the method call + * @param event_data a struct containing the return data. + */ + typedef void (*E_DBus_Callback_Func) (void *user_data, void *method_return, DBusError *error); + typedef void *(*E_DBus_Unmarshal_Func) (DBusMessage *msg, DBusError *err); + typedef void (*E_DBus_Free_Func) (void *data); + + typedef struct E_DBus_Callback E_DBus_Callback; + + + EAPI int e_dbus_init(void); + EAPI int e_dbus_shutdown(void); + +/* setting up the connection */ + + EAPI E_DBus_Connection *e_dbus_bus_get(DBusBusType type); + + EAPI void e_dbus_connection_ref(E_DBus_Connection *conn); + + EAPI E_DBus_Connection *e_dbus_connection_setup(DBusConnection *conn); + EAPI void e_dbus_connection_close(E_DBus_Connection *conn); + +/* receiving method calls */ + EAPI E_DBus_Interface *e_dbus_interface_new(const char *interface); + EAPI void e_dbus_interface_ref(E_DBus_Interface *iface); + EAPI void e_dbus_interface_unref(E_DBus_Interface *iface); + EAPI void e_dbus_object_interface_attach(E_DBus_Object *obj, E_DBus_Interface *iface); + EAPI void e_dbus_object_interface_detach(E_DBus_Object *obj, E_DBus_Interface *iface); + EAPI int e_dbus_interface_method_add(E_DBus_Interface *iface, const char *member, const char *signature, const char *reply_signature, E_DBus_Method_Cb func); + + EAPI E_DBus_Object *e_dbus_object_add(E_DBus_Connection *conn, const char *object_path, void *data); + EAPI void e_dbus_object_free(E_DBus_Object *obj); + EAPI void *e_dbus_object_data_get(E_DBus_Object *obj); + + EAPI void e_dbus_object_property_get_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Get_Cb func); + EAPI void e_dbus_object_property_set_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Set_Cb func); + + +/* sending method calls */ + + + EAPI DBusPendingCall *e_dbus_message_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Method_Return_Cb cb_return, int timeout, void *data); + + EAPI DBusPendingCall *e_dbus_method_call_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Callback_Func cb_func, E_DBus_Free_Func free_func, int timeout, void *data); + + +/* signal receiving */ + + EAPI E_DBus_Signal_Handler *e_dbus_signal_handler_add(E_DBus_Connection *conn, const char *sender, const char *path, const char *interface, const char *member, E_DBus_Signal_Cb cb_signal, void *data); + EAPI void e_dbus_signal_handler_del(E_DBus_Connection *conn, E_DBus_Signal_Handler *sh); + +/* standard dbus method calls */ + + EAPI void e_dbus_request_name(E_DBus_Connection *conn, const char *name, + unsigned int flags, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_release_name(E_DBus_Connection *conn, const char *name, + E_DBus_Method_Return_Cb cb_return, + void *data); + + EAPI void e_dbus_get_name_owner(E_DBus_Connection *conn, const char *name, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_list_names(E_DBus_Connection *conn, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_list_activatable_names(E_DBus_Connection *conn, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_name_has_owner(E_DBus_Connection *conn, const char *name, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_start_service_by_name(E_DBus_Connection *conn, const char *name, + E_DBus_Method_Return_Cb cb_return, + void *data); + +/* standard methods calls on objects */ + EAPI void e_dbus_peer_ping(E_DBus_Connection *conn, const char *destination, + const char *path, E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_peer_get_machine_id(E_DBus_Connection *conn, + const char *destination, const char *path, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_properties_get(E_DBus_Connection *conn, const char *destination, + const char *path, const char *interface, + const char *property, + E_DBus_Method_Return_Cb cb_return, + void *data); + EAPI void e_dbus_properties_set(E_DBus_Connection *conn, const char *destination, + const char *path, const char *interface, + const char *property, int value_type, + void *value, E_DBus_Method_Return_Cb cb_return, + void *data); + + + EAPI E_DBus_Callback *e_dbus_callback_new(E_DBus_Callback_Func cb_func, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Free_Func free_func, void *user_data); + + EAPI void e_dbus_callback_free(E_DBus_Callback *callback); + EAPI void e_dbus_callback_call(E_DBus_Callback *cb, void *data, DBusError *error); + EAPI void *e_dbus_callback_unmarshal(E_DBus_Callback *cb, DBusMessage *msg, DBusError *err); + EAPI void e_dbus_callback_return_free(E_DBus_Callback *callback, void *data); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/lib/dbus/Makefile.am b/src/lib/dbus/Makefile.am new file mode 100644 index 0000000..ae69d41 --- /dev/null +++ b/src/lib/dbus/Makefile.am @@ -0,0 +1,23 @@ +MAINTAINERCLEANFILES = Makefile.in + +AM_CPPFLAGS = \ +@EDBUS_CFLAGS@ + +lib_LTLIBRARIES = libedbus.la +include_HEADERS = E_DBus.h + +libedbus_la_SOURCES = \ + e_dbus_private.h \ + e_dbus.c \ + e_dbus_message.c \ + e_dbus_methods.c \ + e_dbus_interfaces.c \ + e_dbus_object.c \ + e_dbus_util.c \ + e_dbus_signal.c + + +libedbus_la_LIBADD = \ +@EDBUS_LIBS@ +libedbus_la_LDFLAGS = -version-info @version_info@ + diff --git a/src/lib/dbus/e_dbus.c b/src/lib/dbus/e_dbus.c new file mode 100644 index 0000000..eefbf31 --- /dev/null +++ b/src/lib/dbus/e_dbus.c @@ -0,0 +1,586 @@ +#include "E_DBus.h" +#include "e_dbus_private.h" + +#include +#include +#include +#include +#include + +#include +#include + +#define NUM_BUS_TYPES 3 + +/* + * TODO: + * listen for disconnected signal and clean up? + * listen for NameOwnerChanged signals for names we have SignalHandler's for + * remap SH to listen for signals from new owner + */ + +static int connection_slot = -1; + +static int init = 0; +EAPI int E_DBUS_EVENT_SIGNAL = 0; + +static E_DBus_Connection *shared_connections[2] = {NULL, NULL}; + +typedef struct E_DBus_Handler_Data E_DBus_Handler_Data; +typedef struct E_DBus_Timeout_Data E_DBus_Timeout_Data; + + +struct E_DBus_Handler_Data +{ + int fd; + Ecore_Fd_Handler *fd_handler; + E_DBus_Connection *cd; + DBusWatch *watch; + int enabled; +}; + +struct E_DBus_Timeout_Data +{ + Ecore_Timer *handler; + DBusTimeout *timeout; + E_DBus_Connection *cd; + int interval; +}; + +static int e_dbus_idler(void *data); + +static int +e_dbus_fd_handler(void *data, Ecore_Fd_Handler *fd_handler) +{ + E_DBus_Handler_Data *hd; + DBusConnection *conn; + unsigned int condition = 0; + + DEBUG(5, "fd handler (%ld)!\n", (long int)fd_handler); + + hd = data; + + if (!hd->enabled) { + DEBUG(5, "handler disabled\n"); + if (hd->fd_handler) ecore_main_fd_handler_del(hd->fd_handler); + hd->fd_handler = NULL; + return 0; + } + + conn = hd->cd->conn; + + if (ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_READ)) condition |= DBUS_WATCH_READABLE; + if (ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_WRITE)) condition |= DBUS_WATCH_WRITABLE; + if (ecore_main_fd_handler_active_get(fd_handler, ECORE_FD_ERROR)) condition |= DBUS_WATCH_ERROR; + + if (condition & DBUS_WATCH_ERROR) DEBUG(5, "DBUS watch error\n"); + dbus_watch_handle(hd->watch, condition); + hd = NULL; + + return 1; +} + + +static void +e_dbus_fd_handler_add(E_DBus_Handler_Data *hd) +{ + unsigned int dflags; + Ecore_Fd_Handler_Flags eflags; + + if (hd->fd_handler) return; + DEBUG(5, "fd handler add (%d)\n", hd->fd); + + dflags = dbus_watch_get_flags(hd->watch); + eflags = ECORE_FD_ERROR; + if (dflags & DBUS_WATCH_READABLE) eflags |= ECORE_FD_READ; + if (dflags & DBUS_WATCH_WRITABLE) eflags |= ECORE_FD_WRITE; + + + hd->fd_handler = ecore_main_fd_handler_add(hd->fd, + eflags, + e_dbus_fd_handler, + hd, + NULL, + NULL); + + ecore_list_append(hd->cd->fd_handlers, hd->fd_handler); +} + + +static void +e_dbus_handler_data_free(void *data) +{ + E_DBus_Handler_Data *hd = data; + + DEBUG(5, "e_dbus_handler_data_free\n"); + if (hd->fd_handler) + { + if (ecore_list_goto(hd->cd->fd_handlers, hd->fd_handler)) + ecore_list_remove(hd->cd->fd_handlers); + ecore_main_fd_handler_del(hd->fd_handler); + } + free(hd); +} + +static void +e_dbus_connection_data_watch_add(E_DBus_Connection *cd, DBusWatch *watch) +{ + E_DBus_Handler_Data *hd; + + hd = calloc(1, sizeof(E_DBus_Handler_Data)); + dbus_watch_set_data(watch, hd, e_dbus_handler_data_free); + hd->cd = cd; + hd->watch = watch; + + hd->enabled = dbus_watch_get_enabled(watch); + hd->fd = dbus_watch_get_fd(hd->watch); + DEBUG(5, "watch add (enabled: %d)\n", hd->enabled); + if (hd->enabled) e_dbus_fd_handler_add(hd); +} + +static E_DBus_Connection * +e_dbus_connection_new(DBusConnection *conn) +{ + E_DBus_Connection *cd; + const char *conn_name; + + cd = calloc(1, sizeof(E_DBus_Connection)); + if (!cd) return NULL; + + cd->conn = conn; + conn_name = dbus_bus_get_unique_name(conn); + if (conn_name) + { + DEBUG(1, "Connected! Name: %s\n", conn_name); + cd->conn_name = strdup(conn_name); + } + else + DEBUG(1, "Not connected\n"); + + cd->shared_type = -1; + cd->fd_handlers = ecore_list_new(); + cd->timeouts = ecore_list_new(); + + return cd; +} + +static void +e_dbus_connection_free(void *data) +{ + E_DBus_Connection *cd = data; + Ecore_Fd_Handler *fd_handler; + Ecore_Timer *timer; + DEBUG(5, "e_dbus_connection free!\n"); + + ecore_list_first_goto(cd->fd_handlers); + while ((fd_handler = ecore_list_next(cd->fd_handlers))) + ecore_main_fd_handler_del(fd_handler); + ecore_list_destroy(cd->fd_handlers); + + ecore_list_first_goto(cd->timeouts); + while ((timer = ecore_list_next(cd->timeouts))) + ecore_timer_del(timer); + ecore_list_destroy(cd->timeouts); + + if (cd->shared_type != -1) + shared_connections[cd->shared_type] = NULL; + + if (cd->conn_name) free(cd->conn_name); + + free(cd); +} + + +static void +cb_main_wakeup(void *data) +{ + E_DBus_Connection *cd; + DEBUG(5, "wakeup main!\n"); + + cd = data; + + if (!cd->idler) cd->idler = ecore_idler_add(e_dbus_idler, cd); + else DEBUG(1, "already idling\n"); +} + +static void +cb_dispatch_status(DBusConnection *conn, DBusDispatchStatus new_status, void *data) +{ + E_DBus_Connection *cd; + + DEBUG(5, "dispatch status: %d!\n", new_status); + cd = data; + + if (new_status == DBUS_DISPATCH_DATA_REMAINS && !cd->idler) cd->idler = ecore_idler_add(e_dbus_idler, cd); + + else if (new_status != DBUS_DISPATCH_DATA_REMAINS && cd->idler) + { + ecore_idler_del(cd->idler); + cd->idler = NULL; + } +} + +static int +e_dbus_timeout_handler(void *data) +{ + E_DBus_Timeout_Data *td; + + td = data; + + if (dbus_timeout_get_enabled(td->timeout)) + { + DEBUG(5, "timeout_handler (not enabled, ending)\n"); + td->handler = NULL; + return 0; + } + + DEBUG(5, "timeout handler!\n"); + dbus_timeout_handle(td->timeout); + return 1; +} + +static void +e_dbus_timeout_data_free(void *timeout_data) +{ + E_DBus_Timeout_Data *td = timeout_data; + DEBUG(5, "e_dbus_timeout_data_free\n"); + if (td->handler) ecore_timer_del(td->handler); + free(td); +} + +static dbus_bool_t +cb_timeout_add(DBusTimeout *timeout, void *data) +{ + E_DBus_Connection *cd; + E_DBus_Timeout_Data *td; + + cd = data; + DEBUG(5, "timeout add!\n"); + td = calloc(1, sizeof(E_DBus_Timeout_Data)); + td->cd = cd; + dbus_timeout_set_data(timeout, (void *)td, e_dbus_timeout_data_free); + + td->interval = dbus_timeout_get_interval(timeout); + td->timeout = timeout; + + if (dbus_timeout_get_enabled(timeout)) td->handler = ecore_timer_add(td->interval, e_dbus_timeout_handler, td); + ecore_list_append(td->cd->timeouts, td->handler); + + return true; +} + +static void +cb_timeout_del(DBusTimeout *timeout, void *data) +{ + E_DBus_Timeout_Data *td; + DEBUG(5, "timeout del!\n"); + + td = (E_DBus_Timeout_Data *)dbus_timeout_get_data(timeout); + + if (td->handler) + { + if (ecore_list_goto(td->cd->timeouts, td->handler)) + ecore_list_remove(td->cd->timeouts); + ecore_timer_del(td->handler); + td->handler = NULL; + } + + /* Note: timeout data gets freed when the timeout itself is freed by dbus */ +} + +static void +cb_timeout_toggle(DBusTimeout *timeout, void *data) +{ + E_DBus_Timeout_Data *td; + DEBUG(5, "timeout toggle!\n"); + + td = (E_DBus_Timeout_Data *)dbus_timeout_get_data(timeout); + + if (dbus_timeout_get_enabled(td->timeout)) + { + td->interval = dbus_timeout_get_interval(timeout); + td->handler = ecore_timer_add(td->interval, e_dbus_timeout_handler, td); + } + else + { + ecore_timer_del(td->handler); + td->handler = NULL; + } + + +} + +static dbus_bool_t +cb_watch_add(DBusWatch *watch, void *data) +{ + E_DBus_Connection *cd; + cd = data; + + DEBUG(5, "cb_watch_add\n"); + e_dbus_connection_data_watch_add(cd, watch); + + return true; +} + +static void +cb_watch_del(DBusWatch *watch, void *data) +{ + E_DBus_Connection *cd; + E_DBus_Handler_Data *hd; + cd = data; + + DEBUG(5, "cb_watch_del\n"); + hd = (E_DBus_Handler_Data *)dbus_watch_get_data(watch); + + if (hd->fd_handler) + { + if (ecore_list_goto(hd->cd->fd_handlers, hd->fd_handler)) + ecore_list_remove(hd->cd->fd_handlers); + ecore_main_fd_handler_del(hd->fd_handler); + hd->fd_handler = NULL; + } +} + +static void +cb_watch_toggle(DBusWatch *watch, void *data) +{ + E_DBus_Handler_Data *hd; + + DEBUG(5, "cb_watch_toggle\n"); + hd = dbus_watch_get_data(watch); + + if (!hd) return; + + hd->enabled = dbus_watch_get_enabled(watch); + + if (hd->enabled) e_dbus_fd_handler_add(hd); +} + +static void +e_dbus_message_free(void *data, void *message) +{ + dbus_message_unref(message); +} + +static DBusHandlerResult +e_dbus_filter(DBusConnection *conn, DBusMessage *message, void *user_data) +{ + DEBUG(3, "-----------------\nMessage!\n\n"); + + DEBUG(3, "type: %s\n", dbus_message_type_to_string(dbus_message_get_type(message))); + DEBUG(3, "path: %s\n", dbus_message_get_path(message)); + DEBUG(3, "interface: %s\n", dbus_message_get_interface(message)); + DEBUG(3, "member: %s\n", dbus_message_get_member(message)); + DEBUG(3, "sender: %s\n", dbus_message_get_sender(message)); + + switch (dbus_message_get_type(message)) + { + case DBUS_MESSAGE_TYPE_METHOD_CALL: + DEBUG(3, "signature: %s\n", dbus_message_get_signature(message)); + break; + case DBUS_MESSAGE_TYPE_METHOD_RETURN: + DEBUG(3, "reply serial %d\n", dbus_message_get_reply_serial(message)); + break; + case DBUS_MESSAGE_TYPE_ERROR: + DEBUG(3, "error: %s\n", dbus_message_get_error_name(message)); + break; + case DBUS_MESSAGE_TYPE_SIGNAL: + ecore_event_add(E_DBUS_EVENT_SIGNAL, dbus_message_ref(message), + e_dbus_message_free, NULL); + /* don't need to handle signals, they're for everyone who wants them */ + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; + break; + default: + break; + } + DEBUG(3, "-----------------\n\n"); + + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; +} + +int e_dbus_idler_active = 0; + +static int +e_dbus_idler(void *data) +{ + E_DBus_Connection *cd; + cd = data; + + if (DBUS_DISPATCH_COMPLETE == dbus_connection_get_dispatch_status(cd->conn)) + { + DEBUG(5, "done dispatching!\n"); + cd->idler = NULL; + return 0; + } + e_dbus_idler_active++; + dbus_connection_ref(cd->conn); + DEBUG(5, "dispatch!\n"); + dbus_connection_dispatch(cd->conn); + dbus_connection_unref(cd->conn); + e_dbus_signal_handlers_clean(cd); + e_dbus_idler_active--; + return 1; +} + +/** + * Retrieve a connection to the bus and integrate it with the ecore main loop. + * @param type the type of bus to connect to, e.g. DBUS_BUS_SYSTEM or DBUS_BUS_SESSION + */ +EAPI E_DBus_Connection * +e_dbus_bus_get(DBusBusType type) +{ + DBusError err; + E_DBus_Connection *econn; + DBusConnection *conn; + + /* each app only needs a single connection to either bus */ + if (type == DBUS_BUS_SYSTEM || type == DBUS_BUS_SESSION) + { + if (shared_connections[type]) + { + e_dbus_connection_ref(shared_connections[type]); + return shared_connections[type]; + } + } + + dbus_error_init(&err); + + conn = dbus_bus_get_private(type, &err); + if (dbus_error_is_set(&err)) + { + fprintf(stderr, "Error connecting to bus: %s\n", err.message); + dbus_error_free(&err); + return NULL; + } + + econn = e_dbus_connection_setup(conn); + if (!econn) + { + fprintf(stderr, "Error setting up dbus connection.\n"); + dbus_connection_close(conn); + dbus_connection_unref(conn); + return NULL; + } + + if (type == DBUS_BUS_SYSTEM || type == DBUS_BUS_SESSION) + { + econn->shared_type = type; + shared_connections[type] = econn; + } + dbus_error_free(&err); + e_dbus_connection_ref(econn); + return econn; +} + +/** + * Integrate a DBus connection with the ecore main loop + * + * @param conn - a dbus connection + */ +EAPI E_DBus_Connection * +e_dbus_connection_setup(DBusConnection *conn) +{ + E_DBus_Connection *cd; + + cd = e_dbus_connection_new(conn); + if (!cd) return NULL; + + /* connection_setup */ + dbus_connection_set_exit_on_disconnect(cd->conn, FALSE); + dbus_connection_allocate_data_slot(&connection_slot); + + dbus_connection_set_data(cd->conn, connection_slot, (void *)cd, e_dbus_connection_free); + dbus_connection_set_watch_functions(cd->conn, + cb_watch_add, + cb_watch_del, + cb_watch_toggle, + cd, + NULL); + + dbus_connection_set_timeout_functions(cd->conn, + cb_timeout_add, + cb_timeout_del, + cb_timeout_toggle, + cd, + NULL); + + dbus_connection_set_wakeup_main_function(cd->conn, cb_main_wakeup, cd, NULL); + dbus_connection_set_dispatch_status_function(cd->conn, cb_dispatch_status, cd, NULL); + dbus_connection_add_filter(cd->conn, e_dbus_filter, NULL, NULL); + + cb_dispatch_status(cd->conn, dbus_connection_get_dispatch_status(cd->conn), cd); + + return cd; +} + + +/** + * Close out a connection retrieved with e_dbus_bus_get() + * @param conn the connection to close + */ +EAPI void +e_dbus_connection_close(E_DBus_Connection *conn) +{ + DEBUG(5, "e_dbus_connection_close\n"); + + if (--(conn->refcount) != 0) return; + + dbus_connection_free_data_slot(&connection_slot); + dbus_connection_remove_filter(conn->conn, e_dbus_filter, NULL); + dbus_connection_set_watch_functions (conn->conn, + NULL, + NULL, + NULL, + NULL, NULL); + + dbus_connection_set_timeout_functions (conn->conn, + NULL, + NULL, + NULL, + NULL, NULL); + + dbus_connection_set_dispatch_status_function (conn->conn, NULL, NULL, NULL); + + dbus_connection_close(conn->conn); + dbus_connection_unref(conn->conn); + + // Note: the E_DBus_Connection gets freed when the dbus_connection is cleaned up by the previous unref +} + +EAPI void +e_dbus_connection_ref(E_DBus_Connection *conn) +{ + conn->refcount++; +} + +DBusConnection * +e_dbus_connection_dbus_connection_get(E_DBus_Connection *conn) +{ + return conn->conn; +} + +/** + * @brief Initialize e_dbus + */ +EAPI int +e_dbus_init(void) +{ + if (++init != 1) return init; + + E_DBUS_EVENT_SIGNAL = ecore_event_type_new(); + e_dbus_signal_init(); + e_dbus_object_init(); + return init; +} + +/** + * Shutdown e_dbus. + */ +EAPI int +e_dbus_shutdown(void) +{ + if (--init) return init; + e_dbus_object_shutdown(); + e_dbus_signal_shutdown(); + return init; +} diff --git a/src/lib/dbus/e_dbus_interfaces.c b/src/lib/dbus/e_dbus_interfaces.c new file mode 100644 index 0000000..772543b --- /dev/null +++ b/src/lib/dbus/e_dbus_interfaces.c @@ -0,0 +1,107 @@ +#include "E_DBus.h" +#include "e_dbus_private.h" + +/** + * This file contains wrappers around the standard interfaces that + * objects on the bus should implement. + */ + +/** + * Ping the dbus peer + * + * @param conn the dbus connection + * @param destination the bus name that the object is on + * @param path the object path + * @param cb_return a callback for a successful return + * @param data data to pass to the callbacks + */ +EAPI void +e_dbus_peer_ping(E_DBus_Connection*conn, const char *destination, const char *path, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call(destination, path, "org.freedesktop.DBus.Peer", "Ping"); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +/** + * Get the UUID of the peer + * + * @param conn the dbus connection + * @param destination the bus name that the object is on + * @param path the object path + * @param cb_return a callback for a successful return + * @param data data to pass to the callbacks + */ +EAPI void +e_dbus_peer_get_machine_id(E_DBus_Connection*conn, const char *destination, const char *path, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call(destination, path, "org.freedesktop.DBus.Peer", "GetMachineId"); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +/** + * Get the value of a property on an object + * + * @param conn the dbus connection + * @param destination the bus name that the object is on + * @param path the object path + * @param interface the interface name of the property + * @param property the name of the property + * @param cb_return a callback for a successful return + * @param data data to pass to the callbacks + */ +EAPI void +e_dbus_properties_get(E_DBus_Connection*conn, const char *destination, const char *path, const char *interface, const char *property, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call(destination, path, "org.freedesktop.DBus.Properties", "Get"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &interface, DBUS_TYPE_STRING, &property, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +/** + * Set the value of a property on an object + * + * @param conn the dbus connection + * @param destination the bus name that the object is on + * @param path the object path + * @param interface the interface name of the property + * @param property the name of the property + * @param value_type the type of the property's value + * @param value a pointer to the value + * @param cb_return a callback for a successful return + * @param data data to pass to the callbacks + */ +EAPI void +e_dbus_properties_set(E_DBus_Connection*conn, const char *destination, const char *path, const char *interface, const char *property, int value_type, void *value, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + DBusMessageIter iter, sub; + DBusError err; + + if (!dbus_type_is_basic(value_type)) + { + if (cb_return) + { + dbus_error_init(&err); + dbus_set_error(&err, "org.enlightenment.DBus.InvalidType", "Only basic types may be set using e_dbus_properties_set()"); + cb_return(data, NULL, &err); + + } + return; + } + + msg = dbus_message_new_method_call(destination, path, "org.freedesktop.DBus.Properties", "Set"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &interface, DBUS_TYPE_STRING, &property, DBUS_TYPE_INVALID); + + dbus_message_iter_init_append(msg, &iter); + dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, dbus_message_type_to_string(value_type), &sub); + dbus_message_iter_append_basic(&sub, value_type, &value); + dbus_message_iter_close_container(&iter, &sub); + + e_dbus_message_send(conn, msg, cb_return, -1, data); +} diff --git a/src/lib/dbus/e_dbus_message.c b/src/lib/dbus/e_dbus_message.c new file mode 100644 index 0000000..68bfc47 --- /dev/null +++ b/src/lib/dbus/e_dbus_message.c @@ -0,0 +1,116 @@ +#include +#include "E_DBus.h" +#include "e_dbus_private.h" + +typedef struct E_DBus_Pending_Call_Data E_DBus_Pending_Call_Data; +struct E_DBus_Pending_Call_Data +{ + int serial; + + E_DBus_Method_Return_Cb cb_return; + void *data; +}; + +static void +cb_pending(DBusPendingCall *pending, void *user_data) +{ + DBusMessage *msg; + DBusError err; + E_DBus_Pending_Call_Data *data = user_data; + + if (!dbus_pending_call_get_completed(pending)) + { + printf("NOT COMPLETED\n"); + return; + } + + dbus_error_init(&err); + msg = dbus_pending_call_steal_reply(pending); + if (!msg) + { + if (data->cb_return) + { + dbus_set_error(&err, "org.enlightenment.DBus.NoReply", "There was no reply to this method call."); + data->cb_return(data->data, NULL, &err); + dbus_error_free(&err); + } + return; + } + + if (dbus_set_error_from_message(&err, msg)) + { + if (data->cb_return) + data->cb_return(data->data, NULL, &err); + dbus_error_free(&err); + } + else + { + if (data->cb_return) + data->cb_return(data->data, msg, &err); + } + + dbus_message_unref(msg); + dbus_pending_call_unref(pending); +} + + +/** + * @brief Send a DBus message with callbacks + * @param conn The DBus connection + * @param msg The message to send + * @param cb_return A callback function for returns (only used if @a msg is a method-call) + * @param timeout A timeout in milliseconds, after which a synthetic error will be generated + * @return a DBusPendingCall that can be used to cancel the current call + */ +EAPI DBusPendingCall * +e_dbus_message_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Method_Return_Cb cb_return, int timeout, void *data) +{ + DBusPendingCall *pending; + + if (!dbus_connection_send_with_reply(conn->conn, msg, &pending, timeout)) + return NULL; + + if (cb_return) + { + E_DBus_Pending_Call_Data *pdata; + + pdata = calloc(1, sizeof(E_DBus_Pending_Call_Data)); + pdata->cb_return = cb_return; + pdata->data = data; + + dbus_pending_call_set_notify(pending, cb_pending, pdata, free); + } + + return pending; +} + +static void +cb_method_call(void *data, DBusMessage *msg, DBusError *err) +{ + E_DBus_Callback *cb = data; + void *method_return = NULL; + DBusError new_err; + if (!cb) return; + + dbus_error_init(&new_err); + if (!dbus_error_is_set(err)) + method_return = e_dbus_callback_unmarshal(cb, msg, &new_err); + else + dbus_move_error(err, &new_err); + + e_dbus_callback_call(cb, method_return, &new_err); + e_dbus_callback_return_free(cb, method_return); + + if (dbus_error_is_set(&new_err)) + dbus_error_free(&new_err); + + e_dbus_callback_free(cb); +} + +EAPI DBusPendingCall * +e_dbus_method_call_send(E_DBus_Connection *conn, DBusMessage *msg, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Callback_Func cb_func, E_DBus_Free_Func free_func, int timeout, void *data) +{ + E_DBus_Callback *cb; + cb = e_dbus_callback_new(cb_func, unmarshal_func, free_func, data); + return e_dbus_message_send(conn, msg, cb_method_call, timeout, cb); +} diff --git a/src/lib/dbus/e_dbus_methods.c b/src/lib/dbus/e_dbus_methods.c new file mode 100644 index 0000000..1b3b71f --- /dev/null +++ b/src/lib/dbus/e_dbus_methods.c @@ -0,0 +1,76 @@ +#include "E_DBus.h" +#include "e_dbus_private.h" + +EAPI void +e_dbus_request_name(E_DBus_Connection *conn, const char *name, unsigned int flags, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + dbus_uint32_t u_flags; + + u_flags = flags; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "RequestName"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_UINT32, &u_flags, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +EAPI void +e_dbus_release_name(E_DBus_Connection *conn, const char *name, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "ReleaseName"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + + +EAPI void +e_dbus_get_name_owner(E_DBus_Connection *conn, const char *name, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "GetNameOwner"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +EAPI void +e_dbus_list_names(E_DBus_Connection *conn, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "ListNames"); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + + +EAPI void +e_dbus_list_activatable_names(E_DBus_Connection *conn, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "ListActivatableNames"); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + +EAPI void +e_dbus_name_has_owner(E_DBus_Connection *conn, const char *name, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "NameHasOwner"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} + + +EAPI void +e_dbus_start_service_by_name(E_DBus_Connection *conn, const char *name, E_DBus_Method_Return_Cb cb_return, void *data) +{ + DBusMessage *msg; + + msg = dbus_message_new_method_call("org.freedesktop.DBus", "/org/freedesktop/DBus", "org.freedesktop.DBus", "StartServiceByName"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID); + e_dbus_message_send(conn, msg, cb_return, -1, data); +} diff --git a/src/lib/dbus/e_dbus_object.c b/src/lib/dbus/e_dbus_object.c new file mode 100644 index 0000000..ea2c926 --- /dev/null +++ b/src/lib/dbus/e_dbus_object.c @@ -0,0 +1,572 @@ +#include "E_DBus.h" +#include "e_dbus_private.h" +#include +#include +#include +#include + +static E_DBus_Interface *introspectable_interface = NULL; +static E_DBus_Interface *properties_interface = NULL; + +typedef struct E_DBus_Method E_DBus_Method; + +Ecore_Strbuf * e_dbus_object_introspect(E_DBus_Object *obj); + +static void e_dbus_object_unregister(DBusConnection *conn, void *user_data); +static DBusHandlerResult e_dbus_object_handler(DBusConnection *conn, DBusMessage *message, void *user_data); + +static void e_dbus_interface_free(E_DBus_Interface *iface); + +static E_DBus_Method *e_dbus_method_new(const char *member, const char *signature, const char *reply_signature, E_DBus_Method_Cb func); +static void e_dbus_object_method_free(E_DBus_Method *m); + +static void _introspect_indent_append(Ecore_Strbuf *buf, int level); +static void _introspect_interface_append(Ecore_Strbuf *buf, E_DBus_Interface *iface, int level); +static void _introspect_method_append(Ecore_Strbuf *buf, E_DBus_Method *method, int level); +static void _introspect_arg_append(Ecore_Strbuf *buf, const char *type, const char *direction, int level); + + +//static Ecore_List *standard_methods = NULL; + + +static DBusObjectPathVTable vtable = { + e_dbus_object_unregister, + e_dbus_object_handler, + NULL, + NULL, + NULL, + NULL +}; + +struct E_DBus_Object +{ + E_DBus_Connection *conn; + char *path; + Ecore_List *interfaces; + char *introspection_data; + int introspection_dirty; + + E_DBus_Object_Property_Get_Cb cb_property_get; + E_DBus_Object_Property_Set_Cb cb_property_set; + + void *data; +}; + +struct E_DBus_Interface +{ + char *name; + Ecore_List *methods; + int refcount; +}; + +struct E_DBus_Method +{ + char *member; + char *signature; + char *reply_signature; + E_DBus_Method_Cb func; +}; + +static DBusMessage * +cb_introspect(E_DBus_Object *obj, DBusMessage *msg) +{ + DBusMessage *ret; + Ecore_Strbuf *buf; + + if (obj->introspection_dirty || !obj->introspection_data) + { + buf = e_dbus_object_introspect(obj); + if (!buf) + { + ret = dbus_message_new_error(msg, "org.enlightenment.NotIntrospectable", "This object does not provide introspection data"); + return ret; + } + + if (obj->introspection_data) free(obj->introspection_data); + obj->introspection_data = strdup(ecore_strbuf_string_get(buf)); + ecore_strbuf_free(buf); + } + //printf("XML: \n\n%s\n\n", obj->introspection_data); + ret = dbus_message_new_method_return(msg); + dbus_message_append_args(ret, DBUS_TYPE_STRING, &(obj->introspection_data), DBUS_TYPE_INVALID); + + return ret; +} + +static DBusMessage * +cb_properties_get(E_DBus_Object *obj, DBusMessage *msg) +{ + DBusMessage *reply; + DBusMessageIter iter, sub; + DBusError err; + int type; + void *value; + char *property; + + dbus_error_init(&err); + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &property, DBUS_TYPE_INVALID); + + if (dbus_error_is_set(&err)) + { + return dbus_message_new_error(msg, err.name, err.message); + } + + obj->cb_property_get(obj, property, &type, &value); + if (type == DBUS_TYPE_INVALID) + { + return dbus_message_new_error_printf(msg, "org.enlightenment.DBus.InvalidProperty", "The property '%s' does not exist on this object.", property); + } + + if (dbus_type_is_basic(type)) + { + reply = dbus_message_new_method_return(msg); + dbus_message_iter_init_append(msg, &iter); + dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, e_dbus_basic_type_as_string(type), &sub); + dbus_message_iter_append_basic(&sub, type, &value); + dbus_message_iter_close_container(&iter, &sub); + return reply; + } + else + { + return dbus_message_new_error(msg, "org.enlightenment.DBus.UnsupportedType", "E_DBus currently only supports properties of a basic type."); + } +} + +static DBusMessage * +cb_properties_set(E_DBus_Object *obj, DBusMessage *msg) +{ + DBusMessageIter iter, sub; + int type; + void *value; + char *property; + + dbus_message_iter_init(msg, &iter); + dbus_message_iter_get_basic(&iter, &property); + dbus_message_iter_recurse(&iter, &sub); + type = dbus_message_iter_get_arg_type(&sub); + if (dbus_type_is_basic(type)) + { + dbus_message_iter_get_basic(&sub, &value); + if (obj->cb_property_set(obj, property, type, value)) + { + return dbus_message_new_method_return(msg); + } + else + { + return dbus_message_new_error_printf(msg, "org.enlightenment.DBus.InvalidProperty", "The property '%s' does not exist on this object.", property); + } + } + else + { + return dbus_message_new_error(msg, "org.enlightenment.DBus.UnsupportedType", "E_DBus currently only supports properties of a basic type."); + } + +} + +int +e_dbus_object_init(void) +{ + introspectable_interface = e_dbus_interface_new("org.freedesktop.DBus.Introspectable"); + properties_interface = e_dbus_interface_new("org.freedesktop.DBus.Properties"); + if (!introspectable_interface || !properties_interface) + { + if (introspectable_interface) e_dbus_interface_unref(introspectable_interface); + introspectable_interface = NULL; + if (properties_interface) e_dbus_interface_unref(properties_interface); + properties_interface = NULL; + return 0; + } + + e_dbus_interface_method_add(introspectable_interface, "Introspect", "", "s", cb_introspect); + e_dbus_interface_method_add(properties_interface, "Get", "s", "v", cb_properties_get); + e_dbus_interface_method_add(properties_interface, "Set", "sv", "", cb_properties_set); + return 1; +} + +void +e_dbus_object_shutdown(void) +{ + e_dbus_interface_unref(introspectable_interface); + introspectable_interface = NULL; + + e_dbus_interface_unref(properties_interface); + properties_interface = NULL; +} + +/** + * Add a dbus object. + * + * @param conn the connection on with the object should listen + * @param object_path a unique string identifying an object (e.g. org/enlightenment/WindowManager + * @param data custom data to set on the object (retrievable via + * e_dbus_object_data_get()) + */ +EAPI E_DBus_Object * +e_dbus_object_add(E_DBus_Connection *conn, const char *object_path, void *data) +{ + E_DBus_Object *obj; + + obj = calloc(1, sizeof(E_DBus_Object)); + if (!obj) return NULL; + + if (!dbus_connection_register_object_path(conn->conn, object_path, &vtable, obj)) + { + free(obj); + return NULL; + } + + obj->conn = conn; + e_dbus_connection_ref(conn); + obj->path = strdup(object_path); + obj->data = data; + obj->interfaces = ecore_list_new(); + ecore_list_free_cb_set(obj->interfaces, (Ecore_Free_Cb)e_dbus_interface_unref); + + e_dbus_object_interface_attach(obj, introspectable_interface); + + return obj; +} + +/** + * Free a dbus object + * + * @param obj the object to free + */ +EAPI void +e_dbus_object_free(E_DBus_Object *obj) +{ + if (!obj) return; + + DEBUG(5, "e_dbus_object_free (%s)\n", obj->path); + dbus_connection_unregister_object_path(obj->conn->conn, obj->path); + e_dbus_connection_close(obj->conn); + + if (obj->path) free(obj->path); + ecore_list_destroy(obj->interfaces); + if (obj->introspection_data) free(obj->introspection_data); + + free(obj); +} + +/** + * @brief Fetch the data pointer for a dbus object + * @param obj the dbus object + */ +EAPI void * +e_dbus_object_data_get(E_DBus_Object *obj) +{ + return obj->data; +} + +/** + * @brief Sets the callback to fetch properties from an object + * @param obj the object + * @param func the callback + */ +EAPI void +e_dbus_object_property_get_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Get_Cb func) +{ + obj->cb_property_get = func; +} + +/** + * @brief Sets the callback to set properties on an object + * @param obj the object + * @param func the callback + */ +EAPI void +e_dbus_object_property_set_cb_set(E_DBus_Object *obj, E_DBus_Object_Property_Set_Cb func) +{ + obj->cb_property_set = func; +} + +EAPI void +e_dbus_object_interface_attach(E_DBus_Object *obj, E_DBus_Interface *iface) +{ + e_dbus_interface_ref(iface); + ecore_list_append(obj->interfaces, iface); + obj->introspection_dirty = 1; + DEBUG(4, "e_dbus_object_interface_attach (%s, %s) ", obj->path, iface->name); +} + +EAPI void +e_dbus_object_interface_detach(E_DBus_Object *obj, E_DBus_Interface *iface) +{ + E_DBus_Interface *found; + + DEBUG(4, "e_dbus_object_interface_detach (%s, %s) ", obj->path, iface->name); + found = ecore_list_goto(obj->interfaces, iface); + if (found == NULL) return; + + ecore_list_remove(obj->interfaces); + obj->introspection_dirty = 1; + e_dbus_interface_unref(iface); +} + +EAPI void +e_dbus_interface_ref(E_DBus_Interface *iface) +{ + iface->refcount++; + DEBUG(4, "e_dbus_interface_ref (%s) = %d\n", iface->name, iface->refcount); +} + +EAPI void +e_dbus_interface_unref(E_DBus_Interface *iface) +{ + DEBUG(4, "e_dbus_interface_unref (%s) = %d\n", iface->name, iface->refcount - 1); + if (--(iface->refcount) == 0) + e_dbus_interface_free(iface); +} + +static void +e_dbus_interface_free(E_DBus_Interface *iface) +{ + if (iface->name) free(iface->name); + if (iface->methods) ecore_list_destroy(iface->methods); + free(iface); +} + + +/** + * Add a method to an object + * + * @param iface the E_DBus_Interface to which this method belongs + * @param member the name of the method + * @param signature an optional message signature. if provided, then messages + * with invalid signatures will be automatically rejected + * (an Error response will be sent) and introspection data + * will be available. + * + * @return 1 if successful, 0 if failed (e.g. no memory) + */ +EAPI int +e_dbus_interface_method_add(E_DBus_Interface *iface, const char *member, const char *signature, const char *reply_signature, E_DBus_Method_Cb func) +{ + E_DBus_Method *m; + + m = e_dbus_method_new(member, signature, reply_signature, func); + DEBUG(4, "Add method %s: %p\n", member, m); + if (!m) return 0; + + ecore_list_append(iface->methods, m); + return 1; +} + +EAPI E_DBus_Interface * +e_dbus_interface_new(const char *interface) +{ + E_DBus_Interface *iface; + + if (!interface) return NULL; + + iface = calloc(1, sizeof(E_DBus_Interface)); + if (!iface) return NULL; + + iface->refcount = 1; + iface->name = strdup(interface); + iface->methods = ecore_list_new(); + ecore_list_free_cb_set(iface->methods, (Ecore_Free_Cb)e_dbus_object_method_free); + + return iface; +} + +static E_DBus_Method * +e_dbus_method_new(const char *member, const char *signature, const char *reply_signature, E_DBus_Method_Cb func) +{ + E_DBus_Method *m; + + if (!member || !func) return NULL; + + if (signature && !dbus_signature_validate(signature, NULL)) return NULL; + if (reply_signature && !dbus_signature_validate(reply_signature, NULL)) return NULL; + m = calloc(1, sizeof(E_DBus_Method)); + if (!m) return NULL; + + m->member = strdup(member); + if (signature) + m->signature = strdup(signature); + if (reply_signature) + m->reply_signature = strdup(reply_signature); + m->func = func; + + return m; +} + +static void +e_dbus_object_method_free(E_DBus_Method *m) +{ + if (!m) return; + if (m->member) free(m->member); + if (m->signature) free(m->signature); + if (m->reply_signature) free(m->reply_signature); + + free(m); +} + +static E_DBus_Method * +e_dbus_object_method_find(E_DBus_Object *obj, const char *interface, const char *member) +{ + E_DBus_Method *m; + E_DBus_Interface *iface; + if (!obj || !member) return NULL; + + ecore_list_first_goto(obj->interfaces); + while ((iface = ecore_list_next(obj->interfaces))) + { + if (strcmp(interface, iface->name)) continue; + ecore_list_first_goto(iface->methods); + while ((m = ecore_list_next(iface->methods))) + { + if (!strcmp(member, m->member)) + return m; + } + } + return NULL; +} + +static DBusHandlerResult +e_dbus_object_handler(DBusConnection *conn, DBusMessage *message, void *user_data) +{ + E_DBus_Object *obj; + E_DBus_Method *m; + DBusMessage *reply; + dbus_uint32_t serial; + + obj = user_data; + if (!obj) + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; + + m = e_dbus_object_method_find(obj, dbus_message_get_interface(message), dbus_message_get_member(message)); + + /* XXX should this send an 'invalid method' error instead? */ + if (!m) + return DBUS_HANDLER_RESULT_NOT_YET_HANDLED; + + if (m->signature && !dbus_message_has_signature(message, m->signature)) + reply = dbus_message_new_error_printf(message, "org.enlightenment.InvalidSignature", "Expected signature: %s", m->signature); + else + reply = m->func(obj, message); + + dbus_connection_send(conn, reply, &serial); + dbus_message_unref(reply); + + return DBUS_HANDLER_RESULT_HANDLED; +} + +static void +e_dbus_object_unregister(DBusConnection *conn, void *user_data) +{ + /* free up the object struct? */ +} + +Ecore_Strbuf * +e_dbus_object_introspect(E_DBus_Object *obj) +{ + Ecore_Strbuf *buf; + int level = 0; + E_DBus_Interface *iface; + + buf = ecore_strbuf_new(); + + /* Doctype */ + ecore_strbuf_append(buf, "\n"); + + ecore_strbuf_append(buf, "path); + ecore_strbuf_append(buf, "\">\n"); + level++; + + ecore_list_first_goto(obj->interfaces); + while ((iface = ecore_list_next(obj->interfaces))) + _introspect_interface_append(buf, iface, level); + + ecore_strbuf_append(buf, "\n"); + return buf; +} + +static void +_introspect_indent_append(Ecore_Strbuf *buf, int level) +{ + /* XXX optimize this? */ + int i = level * 2; + while (i-- > 0) + ecore_strbuf_append_char(buf, ' '); +} +static void +_introspect_interface_append(Ecore_Strbuf *buf, E_DBus_Interface *iface, int level) +{ + E_DBus_Method *method; + _introspect_indent_append(buf, level); + ecore_strbuf_append(buf, "name); + ecore_strbuf_append(buf, "\">\n"); + level++; + + DEBUG(4, "introspect iface: %s\n", iface->name); + ecore_list_first_goto(iface->methods); + while ((method = ecore_list_next(iface->methods))) + _introspect_method_append(buf, method, level); + + level--; + _introspect_indent_append(buf, level); + ecore_strbuf_append(buf, "\n"); +} +static void +_introspect_method_append(Ecore_Strbuf *buf, E_DBus_Method *method, int level) +{ + DBusSignatureIter iter; + char *type; + + _introspect_indent_append(buf, level); + DEBUG(4, "introspect method: %s\n", method->member); + ecore_strbuf_append(buf, "member); + ecore_strbuf_append(buf, "\">\n"); + level++; + + /* append args */ + if (method->signature && + method->signature[0] && + dbus_signature_validate(method->signature, NULL)) + { + dbus_signature_iter_init(&iter, method->signature); + while ((type = dbus_signature_iter_get_signature(&iter))) + { + _introspect_arg_append(buf, type, "in", level); + + dbus_free(type); + if (!dbus_signature_iter_next(&iter)) break; + } + } + + /* append reply args */ + if (method->reply_signature && + method->reply_signature[0] && + dbus_signature_validate(method->reply_signature, NULL)) + { + dbus_signature_iter_init(&iter, method->reply_signature); + while ((type = dbus_signature_iter_get_signature(&iter))) + { + _introspect_arg_append(buf, type, "out", level); + + dbus_free(type); + if (!dbus_signature_iter_next(&iter)) break; + } + } + + level--; + _introspect_indent_append(buf, level); + ecore_strbuf_append(buf, "\n"); +} + +static void +_introspect_arg_append(Ecore_Strbuf *buf, const char *type, const char *direction, int level) +{ + _introspect_indent_append(buf, level); + ecore_strbuf_append(buf, "\n"); +} + diff --git a/src/lib/dbus/e_dbus_private.h b/src/lib/dbus/e_dbus_private.h new file mode 100644 index 0000000..24248f0 --- /dev/null +++ b/src/lib/dbus/e_dbus_private.h @@ -0,0 +1,43 @@ +#ifndef E_DBUS_PRIVATE_H +#define E_DBUS_PRIVATE_H + +#include "dbus/dbus.h" +#include "Ecore_Data.h" + +#define DEBUG_LVL 0 +#define DEBUG(lvl, ...) if (lvl <= DEBUG_LVL) printf(__VA_ARGS__) + +struct E_DBus_Connection +{ + DBusBusType shared_type; + DBusConnection *conn; + char *conn_name; + + Ecore_List *fd_handlers; + Ecore_List *timeouts; + + Ecore_Idler *idler; + + int refcount; +}; + +struct E_DBus_Callback +{ + E_DBus_Callback_Func cb_func; + E_DBus_Unmarshal_Func unmarshal_func; + E_DBus_Free_Func free_func; + void *user_data; +}; + +int e_dbus_signal_init(void); +void e_dbus_signal_shutdown(void); +int e_dbus_object_init(void); +void e_dbus_object_shutdown(void); + +extern int e_dbus_idler_active; +void e_dbus_signal_handlers_clean(E_DBus_Connection *conn); + +const char *e_dbus_basic_type_as_string(int type); + + +#endif diff --git a/src/lib/dbus/e_dbus_signal.c b/src/lib/dbus/e_dbus_signal.c new file mode 100644 index 0000000..fe3221f --- /dev/null +++ b/src/lib/dbus/e_dbus_signal.c @@ -0,0 +1,250 @@ +#include +#include +#include +#include +#include +#include "E_DBus.h" +#include "e_dbus_private.h" +#include "dbus/dbus.h" + +static Ecore_List *signal_handlers = NULL; + +static Ecore_Event_Handler *event_handler = NULL; +static int init = 0; + + +struct E_DBus_Signal_Handler +{ + char *sender; + char *path; + char *interface; + char *member; + + E_DBus_Signal_Cb cb_signal; + void *data; + unsigned char delete_me : 1; +}; + +static int cb_signal_event(void *data, int type, void *event); + +void e_dbus_signal_handler_free(E_DBus_Signal_Handler *sh); + + +/** + * Initialize the signal subsystem + * @internal + */ +int +e_dbus_signal_init(void) +{ + if (++init != 1) return init; + signal_handlers = ecore_list_new(); + if (!signal_handlers) {--init; return 0;}; + ecore_list_free_cb_set(signal_handlers, ECORE_FREE_CB(e_dbus_signal_handler_free)); + + event_handler = ecore_event_handler_add(E_DBUS_EVENT_SIGNAL, cb_signal_event, NULL); + return init; +} + +/** + * Shutdown the signal subsystem + * @internal + */ +void +e_dbus_signal_shutdown(void) +{ + if (--init) return; + ecore_list_destroy(signal_handlers); + + if (event_handler) ecore_event_handler_del(event_handler); + event_handler = NULL; +} + +/** + * Free a signal handler + * @param sh the signal handler to free + */ +void +e_dbus_signal_handler_free(E_DBus_Signal_Handler *sh) +{ + if (sh->sender) free(sh->sender); + if (sh->path) free(sh->path); + if (sh->interface) free(sh->interface); + if (sh->member) free(sh->member); + + free(sh); +} + +static void +cb_name_owner(void *data, DBusMessage *msg, DBusError *err) +{ + const char *unique_name = NULL; + E_DBus_Signal_Handler *sh; + + sh = data; + + if (dbus_error_is_set(err)) + { + if (ecore_list_goto(signal_handlers, sh)) + ecore_list_remove(signal_handlers); + dbus_error_free(err); + return; + } + + dbus_message_get_args(msg, err, DBUS_TYPE_STRING, &unique_name, DBUS_TYPE_INVALID); + + if (dbus_error_is_set(err)) + { + DEBUG(1, "Invalid signature in reply to name owner call\n"); + dbus_error_free(err); + return; + } + + if (unique_name) + { + if (sh->sender) free(sh->sender); + sh->sender = strdup(unique_name); + } + else DEBUG(1, "Error, no unique name?\n"); + +} + +/** + * Add a signal handler + * + * @param conn the dbus connection + * @param bus name of the signal's sender + * @param path the object path of the signal's sender + * @param interface the signal's interface + * @param memeber the signal's name + * @param cb_signal a callback to call when the signal is received + * @param data custom data to pass in to the callback + */ +EAPI E_DBus_Signal_Handler * +e_dbus_signal_handler_add(E_DBus_Connection *conn, const char *sender, const char *path, const char *interface, const char *member, E_DBus_Signal_Cb cb_signal, void *data) +{ + E_DBus_Signal_Handler *sh; + char match[DBUS_MAXIMUM_MATCH_RULE_LENGTH]; + int started = 0; + int len = 0; + DBusError err; + + sh = calloc(1, sizeof(E_DBus_Signal_Handler)); + + strcpy(match, "type='signal'"); + len = 13; + +#undef ADD_MATCH_PIECE +#define ADD_MATCH_PIECE(PIECE) \ + if (PIECE) \ + {\ + len += strlen("," #PIECE "=''") + strlen(PIECE);\ + if (len >= sizeof(match)) return NULL;\ + strcat(match, "," #PIECE "='");\ + strcat(match, PIECE);\ + strcat(match, "'");\ + sh->PIECE = strdup(PIECE);\ + started = 1;\ + } + + ADD_MATCH_PIECE(sender) + ADD_MATCH_PIECE(path) + ADD_MATCH_PIECE(interface) + ADD_MATCH_PIECE(member) + + sh->cb_signal = cb_signal; + sh->data = data; + + dbus_error_init(&err); + dbus_bus_add_match(conn->conn, match, NULL); + ecore_list_append(signal_handlers, sh); + + /* if we have a sender, and it is not a unique name, we need to know the unique name to match since signals will have the name owner as ther sender. */ + if (sender && sender[0] != ':') + e_dbus_get_name_owner(conn, sender, cb_name_owner, sh); + + return sh; +} + +static int e_dbus_handler_deletions = 0; + +/** + * Delete a signal handler + * + * @param conn the dbus connection + * @param sh the handler to delete + */ +EAPI void +e_dbus_signal_handler_del(E_DBus_Connection *conn, E_DBus_Signal_Handler *sh) +{ + char match[DBUS_MAXIMUM_MATCH_RULE_LENGTH]; + int len = 0; + + sh->delete_me = 1; + if (e_dbus_idler_active) + { + e_dbus_handler_deletions = 1; + return; + } + + strcpy(match, "type='signal'"); + len = 13; + +#undef ADD_MATCH_PIECE +#define ADD_MATCH_PIECE(PIECE) \ + if (PIECE) \ + {\ + len += strlen("," #PIECE "=''") + strlen(PIECE);\ + if (len >= sizeof(match)) return;\ + strcat(match, "," #PIECE "='");\ + strcat(match, PIECE);\ + strcat(match, "'");\ + } + + ADD_MATCH_PIECE(sh->sender) + ADD_MATCH_PIECE(sh->path) + ADD_MATCH_PIECE(sh->interface) + ADD_MATCH_PIECE(sh->member) + + dbus_bus_remove_match(conn->conn, match, NULL); + + if (!ecore_list_goto(signal_handlers, sh)) return; + ecore_list_remove(signal_handlers); +} + +static int +cb_signal_event(void *data, int type, void *event) +{ + DBusMessage *msg = event; + E_DBus_Signal_Handler *sh; + + ecore_list_first_goto(signal_handlers); + while ((sh = ecore_list_next(signal_handlers))) + { + if ((!sh->cb_signal) || (sh->delete_me)) continue; + + if (sh->sender && !dbus_message_has_sender(msg, sh->sender)) continue; + if (sh->path && !dbus_message_has_path(msg, sh->path)) continue; + if (sh->interface && !dbus_message_has_interface(msg, sh->interface)) continue; + if (sh->member && !dbus_message_has_member(msg, sh->member)) continue; + + sh->cb_signal(sh->data, msg); + } + + return 1; +} + +void +e_dbus_signal_handlers_clean(E_DBus_Connection *conn) +{ + E_DBus_Signal_Handler *sh; + + if (!e_dbus_handler_deletions) return; + ecore_list_first_goto(signal_handlers); + while ((sh = ecore_list_next(signal_handlers))) + { + if (sh->delete_me) + e_dbus_signal_handler_del(conn, sh); + } + e_dbus_handler_deletions = 0; +} diff --git a/src/lib/dbus/e_dbus_util.c b/src/lib/dbus/e_dbus_util.c new file mode 100644 index 0000000..27c08fa --- /dev/null +++ b/src/lib/dbus/e_dbus_util.c @@ -0,0 +1,92 @@ +#include "E_DBus.h" +#include "e_dbus_private.h" + +/** + * @internal + * @brief Create a callback structure + * @param cb_func the callback function + * @param user_data data to pass to the callback + */ +EAPI E_DBus_Callback * +e_dbus_callback_new(E_DBus_Callback_Func cb_func, E_DBus_Unmarshal_Func unmarshal_func, E_DBus_Free_Func free_func, void *user_data) +{ + E_DBus_Callback *cb; + + if (!cb_func) return NULL; + + cb = calloc(1, sizeof(E_DBus_Callback)); + if (!cb) return NULL; + cb->cb_func = cb_func; + cb->unmarshal_func = unmarshal_func; + cb->free_func = free_func; + cb->user_data = user_data; + return cb; +} + +/** + * @internal + * @brief Free a callback structure + * @param callback the callback to free + */ +EAPI void +e_dbus_callback_free(E_DBus_Callback *callback) +{ + free(callback); +} + +EAPI void +e_dbus_callback_call(E_DBus_Callback *cb, void *data, DBusError *error) +{ + if (cb && cb->cb_func) + cb->cb_func(cb->user_data, data, error); +} + +EAPI void * +e_dbus_callback_unmarshal(E_DBus_Callback *cb, DBusMessage *msg, DBusError *err) +{ + if (cb && cb->unmarshal_func) + return cb->unmarshal_func(msg, err); + else + return NULL; +} + +EAPI void +e_dbus_callback_return_free(E_DBus_Callback *cb, void *data) +{ + if (cb && cb->free_func) + cb->free_func(data); +} + +const char * +e_dbus_basic_type_as_string(int type) +{ + switch (type) + { + case DBUS_TYPE_BYTE: + return DBUS_TYPE_BYTE_AS_STRING; + case DBUS_TYPE_BOOLEAN: + return DBUS_TYPE_BOOLEAN_AS_STRING; + case DBUS_TYPE_INT16: + return DBUS_TYPE_INT16_AS_STRING; + case DBUS_TYPE_UINT16: + return DBUS_TYPE_UINT16_AS_STRING; + case DBUS_TYPE_INT32: + return DBUS_TYPE_INT32_AS_STRING; + case DBUS_TYPE_UINT32: + return DBUS_TYPE_UINT32_AS_STRING; + case DBUS_TYPE_INT64: + return DBUS_TYPE_INT64_AS_STRING; + case DBUS_TYPE_UINT64: + return DBUS_TYPE_UINT64_AS_STRING; + case DBUS_TYPE_DOUBLE: + return DBUS_TYPE_DOUBLE_AS_STRING; + case DBUS_TYPE_STRING: + return DBUS_TYPE_STRING_AS_STRING; + case DBUS_TYPE_OBJECT_PATH: + return DBUS_TYPE_OBJECT_PATH_AS_STRING; + case DBUS_TYPE_SIGNATURE: + return DBUS_TYPE_SIGNATURE_AS_STRING; + default: + return NULL; + } +} diff --git a/src/lib/hal/.cvsignore b/src/lib/hal/.cvsignore new file mode 100644 index 0000000..07d6b3d --- /dev/null +++ b/src/lib/hal/.cvsignore @@ -0,0 +1,8 @@ +.deps +Makefile +Makefile.in +.libs +e_hal_device.lo +e_hal_manager.lo +e_hal_util.lo +libehal.la diff --git a/src/lib/hal/E_Hal.h b/src/lib/hal/E_Hal.h new file mode 100644 index 0000000..6feb79a --- /dev/null +++ b/src/lib/hal/E_Hal.h @@ -0,0 +1,134 @@ +#ifndef E_HAL_H +#define E_HAL_H +#include +#include + +#ifdef EAPI +#undef EAPI +#endif +#ifdef _MSC_VER +# ifdef BUILDING_DLL +# define EAPI __declspec(dllexport) +# else +# define EAPI __declspec(dllimport) +# endif +#else +# ifdef __GNUC__ +# if __GNUC__ >= 4 +# define EAPI __attribute__ ((visibility("default"))) +# else +# define EAPI +# endif +# else +# define EAPI +# endif +#endif + +#define E_HAL_SENDER "org.freedesktop.Hal" +#define E_HAL_MANAGER_PATH "/org/freedesktop/Hal/Manager" +#define E_HAL_MANAGER_INTERFACE "org.freedesktop.Hal.Manager" +#define E_HAL_DEVICE_INTERFACE "org.freedesktop.Hal.Device" +#define E_HAL_DEVICE_VOLUME_INTERFACE "org.freedesktop.Hal.Device.Volume" + +/* message return types */ + +typedef struct E_Hal_Property E_Hal_Property; +typedef struct E_Hal_Properties E_Hal_Properties; + +struct E_Hal_String_List_Return +{ + Ecore_List *strings; /* list of const char * */ +}; + +struct E_Hal_Bool_Return +{ + char boolean; +}; + +struct E_Hal_UDI_Return +{ + const char *udi; +}; + +struct E_Hal_Capability +{ + const char *udi; + const char *capability; +}; + +typedef enum +{ + E_HAL_PROPERTY_TYPE_STRING, + E_HAL_PROPERTY_TYPE_INT, + E_HAL_PROPERTY_TYPE_UINT64, + E_HAL_PROPERTY_TYPE_BOOL, + E_HAL_PROPERTY_TYPE_DOUBLE, + E_HAL_PROPERTY_TYPE_STRLIST +} E_Hal_Property_Type; + +struct E_Hal_Property +{ + E_Hal_Property_Type type; + union + { + const char *s; + int i; + dbus_bool_t b; + double d; + dbus_uint64_t u64; + Ecore_List *strlist; + } val; +}; + +struct E_Hal_Properties +{ + Ecore_Hash *properties; +}; + +typedef struct E_Hal_Properties E_Hal_Device_Get_All_Properties_Return; +typedef struct E_Hal_Property E_Hal_Device_Get_Property_Return; +typedef struct E_Hal_Bool_Return E_Hal_Device_Query_Capability_Return; +typedef struct E_Hal_String_List_Return E_Hal_String_List_Return; +typedef struct E_Hal_String_List_Return E_Hal_Manager_Get_All_Devices_Return; +typedef struct E_Hal_Bool_Return E_Hal_Manager_Device_Exists_Return; +typedef struct E_Hal_String_List_Return E_Hal_Manager_Find_Device_String_Match_Return; +typedef struct E_Hal_String_List_Return E_Hal_Manager_Find_Device_By_Capability_Return; + + +typedef struct E_Hal_UDI_Return E_Hal_Manager_Device_Added; +typedef struct E_Hal_UDI_Return E_Hal_Manager_Device_Removed; +typedef struct E_Hal_Capability E_Hal_Manager_New_Capability; + +#ifdef __cplusplus +extern "C" { +#endif + +/* org.freedesktop.Hal.Device */ + EAPI int e_hal_device_get_property(E_DBus_Connection *conn, const char *udi, const char *property, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_device_get_all_properties(E_DBus_Connection *conn, const char *udi, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_device_query_capability(E_DBus_Connection *conn, const char *udi, const char *capability, E_DBus_Callback_Func cb_func, void *data); + +/* org.freedesktop.Hal.Manager */ + EAPI int e_hal_manager_get_all_devices(E_DBus_Connection *conn, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_manager_device_exists(E_DBus_Connection *conn, const char *udi, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_manager_find_device_string_match(E_DBus_Connection *conn, const char *key, const char *value, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_manager_find_device_by_capability(E_DBus_Connection *conn, const char *capability, E_DBus_Callback_Func cb_func, void *data); + +/* utility functions */ + EAPI void e_hal_property_free(E_Hal_Property *prop); + EAPI char *e_hal_property_string_get(E_Hal_Properties *properties, const char *key, int *err); + EAPI char e_hal_property_bool_get(E_Hal_Properties *properties, const char *key, int *err); + EAPI int e_hal_property_int_get(E_Hal_Properties *properties, const char *key, int *err); + EAPI dbus_uint64_t e_hal_property_uint64_get(E_Hal_Properties *properties, const char *key, int *err); + EAPI double e_hal_property_double_get(E_Hal_Properties *properties, const char *key, int *err); + EAPI Ecore_List *e_hal_property_strlist_get(E_Hal_Properties *properties, const char *key, int *err); + +/* (un)mount */ + EAPI int e_hal_device_volume_mount(E_DBus_Connection *conn, const char *udi, const char *mount_point, const char *fstype, Ecore_List *options, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_hal_device_volume_unmount(E_DBus_Connection *conn, const char *udi, Ecore_List *options, E_DBus_Callback_Func cb_func, void *data); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/lib/hal/Makefile.am b/src/lib/hal/Makefile.am new file mode 100644 index 0000000..d03cdea --- /dev/null +++ b/src/lib/hal/Makefile.am @@ -0,0 +1,23 @@ +MAINTAINERCLEANFILES = Makefile.in + +AM_CPPFLAGS = \ +-I $(top_srcdir)/src/lib/dbus \ +@EDBUS_CFLAGS@ + +if BUILD_EHAL + +lib_LTLIBRARIES = libehal.la +include_HEADERS = E_Hal.h + +libehal_la_SOURCES = \ +E_Hal.h \ +e_hal_device.c \ +e_hal_manager.c \ +e_hal_util.c + +libehal_la_LIBADD = \ +@EDBUS_LIBS@ \ +$(top_builddir)/src/lib/dbus/libedbus.la +libehal_la_LDFLAGS = -version-info @version_info@ + +endif diff --git a/src/lib/hal/e_hal_device.c b/src/lib/hal/e_hal_device.c new file mode 100644 index 0000000..68a9dc1 --- /dev/null +++ b/src/lib/hal/e_hal_device.c @@ -0,0 +1,307 @@ +#include + +#define e_hal_device_call_new(udi, member) dbus_message_new_method_call(E_HAL_SENDER, udi, E_HAL_DEVICE_INTERFACE, member) +#define e_hal_device_volume_call_new(udi, member) dbus_message_new_method_call(E_HAL_SENDER, udi, E_HAL_DEVICE_VOLUME_INTERFACE, member) + +#if 0 +static void cb_device_get_property(void *data, DBusMessage *msg, DBusError *err); +static void cb_device_get_all_properties(void *data, DBusMessage *msg, DBusError *err); +static void cb_device_query_capability(void *data, DBusMessage *msg, DBusError *err); +#endif + +/* Device.GetProperty */ +static void * +unmarshal_device_get_property(DBusMessage *msg, DBusError *err) +{ + E_Hal_Device_Get_Property_Return *ret = NULL; + DBusMessageIter iter; + int type; + + ret = calloc(1, sizeof(E_Hal_Device_Get_Property_Return)); + if (!ret) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + return NULL; + } + + dbus_message_iter_init(msg, &iter); + type = dbus_message_iter_get_arg_type(&iter); + switch(type) + { + case 's': + dbus_message_iter_get_basic(&iter, &(ret->val.s)); + break; + case 'i': + dbus_message_iter_get_basic(&iter, &(ret->val.i)); + break; + case 'b': + dbus_message_iter_get_basic(&iter, &(ret->val.b)); + break; + case 'd': + dbus_message_iter_get_basic(&iter, &(ret->val.d)); + break; + } + + return ret; +} + +static void +free_device_get_property(void *data) +{ + E_Hal_Device_Get_Property_Return *ret = data; + + if (!ret) return; + free(ret); +} + +EAPI int +e_hal_device_get_property(E_DBus_Connection *conn, const char *udi, const char *property, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_device_call_new(udi, "GetProperty"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &property, DBUS_TYPE_INVALID); + ret = e_dbus_method_call_send(conn, msg, unmarshal_device_get_property, cb_func, free_device_get_property, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/* Device.GetAllProperties */ + +static void * +unmarshal_device_get_all_properties(DBusMessage *msg, DBusError *err) +{ + E_Hal_Device_Get_All_Properties_Return *ret = NULL; + DBusMessageIter iter, a_iter, s_iter, v_iter; + + if (!dbus_message_has_signature(msg, "a{sv}")) + { + dbus_set_error(err, DBUS_ERROR_INVALID_SIGNATURE, ""); + return NULL; + } + + ret = calloc(1, sizeof(E_Hal_Device_Get_All_Properties_Return)); + if (!ret) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + return NULL; + } + + ret->properties = ecore_hash_new(ecore_str_hash, ecore_str_compare); + ecore_hash_free_key_cb_set(ret->properties, ECORE_FREE_CB(ecore_string_release)); + ecore_hash_free_value_cb_set(ret->properties, ECORE_FREE_CB(e_hal_property_free)); + + + dbus_message_iter_init(msg, &iter); + dbus_message_iter_recurse(&iter, &a_iter); + while (dbus_message_iter_get_arg_type(&a_iter) != DBUS_TYPE_INVALID) + { + const char *name; + E_Hal_Property *prop = calloc(1, sizeof(E_Hal_Property)); + dbus_message_iter_recurse(&a_iter, &s_iter); + dbus_message_iter_get_basic(&s_iter, &name); + dbus_message_iter_next(&s_iter); + dbus_message_iter_recurse(&s_iter, &v_iter); + + switch(dbus_message_iter_get_arg_type(&v_iter)) + { + case 's': + prop->type = E_HAL_PROPERTY_TYPE_STRING; + dbus_message_iter_get_basic(&v_iter, &(prop->val.s)); + break; + case 'i': + prop->type = E_HAL_PROPERTY_TYPE_INT; + dbus_message_iter_get_basic(&v_iter, &(prop->val.i)); + break; + case 't': + prop->type = E_HAL_PROPERTY_TYPE_UINT64; + dbus_message_iter_get_basic(&v_iter, &(prop->val.u64)); + break; + case 'b': + prop->type = E_HAL_PROPERTY_TYPE_BOOL; + dbus_message_iter_get_basic(&v_iter, &(prop->val.b)); + break; + case 'd': + prop->type = E_HAL_PROPERTY_TYPE_DOUBLE; + dbus_message_iter_get_basic(&v_iter, &(prop->val.d)); + break; + case 'a': + prop->type = E_HAL_PROPERTY_TYPE_STRLIST; + { + DBusMessageIter list_iter; + prop->val.strlist = ecore_list_new(); + dbus_message_iter_recurse(&v_iter, &list_iter); + while (dbus_message_iter_get_arg_type(&list_iter) != DBUS_TYPE_INVALID) + { + char *str; + dbus_message_iter_get_basic(&list_iter, &str); + ecore_list_append(prop->val.strlist, str); + dbus_message_iter_next(&list_iter); + } + } + break; + default: + printf("Error: unexpected property type (%s): %c\n", name, dbus_message_iter_get_arg_type(&v_iter)); + break; + } + ecore_hash_set(ret->properties, (void *)ecore_string_instance(name), prop); + + dbus_message_iter_next(&a_iter); + } + + return ret; +} + +static void +free_device_get_all_properties(void *data) +{ + E_Hal_Device_Get_All_Properties_Return *ret = data; + + if (!ret) return; + ecore_hash_destroy(ret->properties); + free(ret); +} + +EAPI int +e_hal_device_get_all_properties(E_DBus_Connection *conn, const char *udi, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_device_call_new(udi, "GetAllProperties"); + ret = e_dbus_method_call_send(conn, msg, unmarshal_device_get_all_properties, cb_func, free_device_get_all_properties, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + + + +/* bool Device.QueryCapability(string udi) */ + +// XXX this is same as Device_Exists in manager. +static void * +unmarshal_device_query_capability(DBusMessage *msg, DBusError *err) +{ + E_Hal_Device_Query_Capability_Return *ret = NULL; + dbus_bool_t val; + + ret = calloc(1, sizeof(E_Hal_Manager_Device_Exists_Return)); + if (!ret) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + return NULL; + } + + dbus_message_get_args(msg, err, DBUS_TYPE_BOOLEAN, &val, DBUS_TYPE_INVALID); + + if (dbus_error_is_set(err)) + { + free(ret); + return NULL; + } + + ret->boolean = val; + return ret; +} + +static void +free_device_query_capability(void *data) +{ + E_Hal_Device_Query_Capability_Return *ret = data; + + if (!ret) return; + free(ret); +} + +EAPI int +e_hal_device_query_capability(E_DBus_Connection *conn, const char *udi, const char *capability, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_device_call_new(udi, "QueryCapability"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &capability, DBUS_TYPE_INVALID); + ret = e_dbus_method_call_send(conn, msg, unmarshal_device_query_capability, cb_func, free_device_query_capability, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + + + +/* void Device.Mount(string mount_point, string fstype, array{string}options) */ + +/** + * @brief Mount a Volume + * + * @param conn the E_DBus_Connection + * @param udi the udi of the device object + * @param mount_point the path to mount to, or null for default + * @param fstype the fstype of the device (e.g. volume.fstype property) + * @param options a list of additional options (not sure... fstype dependant?) + */ +EAPI int +e_hal_device_volume_mount(E_DBus_Connection *conn, const char *udi, const char *mount_point, const char *fstype, Ecore_List *options, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + DBusMessageIter iter, subiter; + int ret; + + msg = e_hal_device_volume_call_new(udi, "Mount"); + + dbus_message_iter_init_append(msg, &iter); + dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &mount_point); + dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &fstype); + dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "s", &subiter); + + if (options) + { + const char *opt; + ecore_list_first_goto(options); + while ((opt = ecore_list_next(options))) + { + dbus_message_iter_append_basic(&subiter, DBUS_TYPE_STRING, &opt); + } + } + dbus_message_iter_close_container(&iter, &subiter) ; + + ret = e_dbus_method_call_send(conn, msg, NULL, cb_func, NULL, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/* void Unmount(array{string} options) */ + +/** + * @brief Mount a Volume + * + * @param conn the E_DBus_Connection + * @param udi the udi of the device object + * @param options a list of additional options (not sure... fstype dependant?) + */ +EAPI int +e_hal_device_volume_unmount(E_DBus_Connection *conn, const char *udi, Ecore_List *options, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + DBusMessageIter iter, subiter; + int ret; + + msg = e_hal_device_volume_call_new(udi, "Unmount"); + + dbus_message_iter_init_append(msg, &iter); + dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "s", &subiter); + if (options) + { + const char *opt; + ecore_list_first_goto(options); + while ((opt = ecore_list_next(options))) + { + dbus_message_iter_append_basic(&subiter, DBUS_TYPE_STRING, &opt); + } + } + dbus_message_iter_close_container(&iter, &subiter) ; + + ret = e_dbus_method_call_send(conn, msg, NULL, cb_func, NULL, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} diff --git a/src/lib/hal/e_hal_device.h b/src/lib/hal/e_hal_device.h new file mode 100644 index 0000000..3fc478a --- /dev/null +++ b/src/lib/hal/e_hal_device.h @@ -0,0 +1,14 @@ +#ifndef E_HAL_DEVICE_H +#define E_HAL_DEVICE_H + +#include "E_Hal.h" + +typedef struct E_Hal_Properties E_Hal_Device_Get_All_Properties_Return; +typedef struct E_Hal_Property E_Hal_Device_Get_Property_Return; +typedef struct E_Hal_Bool_Return E_Hal_Device_Query_Capability_Return; + +int e_hal_device_get_property(E_DBus_Connection *conn, const char *udi, const char *property, E_Hal_Callback_Func cb_func, void *data); +int e_hal_device_get_all_properties(E_DBus_Connection *conn, const char *udi, E_Hal_Callback_Func cb_func, void *data); +int e_hal_device_query_capability(E_DBus_Connection *conn, const char *udi, const char *capability, E_Hal_Callback_Func cb_func, void *data); + +#endif diff --git a/src/lib/hal/e_hal_manager.c b/src/lib/hal/e_hal_manager.c new file mode 100644 index 0000000..ff52311 --- /dev/null +++ b/src/lib/hal/e_hal_manager.c @@ -0,0 +1,146 @@ +#include "E_Hal.h" + +#define e_hal_manager_call_new(member) dbus_message_new_method_call(E_HAL_SENDER, E_HAL_MANAGER_PATH, E_HAL_MANAGER_INTERFACE, member) + +/* GetAllDevices */ + +static void * +unmarshal_string_list(DBusMessage *msg, DBusError *err) +{ + E_Hal_String_List_Return *ret = NULL; + DBusMessageIter iter, sub; + + if (!dbus_message_has_signature(msg, "as")) + { + dbus_set_error(err, DBUS_ERROR_INVALID_SIGNATURE, ""); + return NULL; + } + + ret = calloc(1, sizeof(E_Hal_String_List_Return)); + if (!ret) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + return NULL; + } + + ret->strings = ecore_list_new(); + if (!ret->strings) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + free(ret); + return NULL; + } + + dbus_message_iter_init(msg, &iter); + dbus_message_iter_recurse(&iter, &sub); + while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) + { + char *dev = NULL; + + dbus_message_iter_get_basic(&sub, &dev); + if (dev) ecore_list_append(ret->strings, dev); + dbus_message_iter_next(&sub); + } + + return ret; +} + +static void +free_string_list(void *data) +{ + E_Hal_String_List_Return *ret = data; + + if (!ret) return; + ecore_list_destroy(ret->strings); + free(ret); +} + +EAPI int +e_hal_manager_get_all_devices(E_DBus_Connection *conn, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_manager_call_new("GetAllDevices"); + ret = e_dbus_method_call_send(conn, msg, unmarshal_string_list, cb_func, free_string_list, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/* Manager.DeviceExists(string udi) */ + +static void * +unmarshal_manager_device_exists(DBusMessage *msg, DBusError *err) +{ + E_Hal_Manager_Device_Exists_Return *ret = NULL; + dbus_bool_t val; + + ret = calloc(1, sizeof(E_Hal_Manager_Device_Exists_Return)); + if (!ret) + { + dbus_set_error(err, DBUS_ERROR_NO_MEMORY, ""); + return NULL; + } + + dbus_message_get_args(msg, err, DBUS_TYPE_BOOLEAN, &val, DBUS_TYPE_INVALID); + + if (dbus_error_is_set(err)) + { + free(ret); + return NULL; + } + + ret->boolean = val; + return ret; +} + +static void +free_manager_device_exists(void *data) +{ + E_Hal_Manager_Device_Exists_Return *ret = data; + + if (!ret) return; + free(ret); +} + +EAPI int +e_hal_manager_device_exists(E_DBus_Connection *conn, const char *udi, E_DBus_Callback_Func cb_func, void *data) +{ + int ret; + DBusMessage *msg; + + msg = e_hal_manager_call_new("DeviceExists"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &udi, DBUS_TYPE_INVALID); + ret = e_dbus_method_call_send(conn, msg, unmarshal_manager_device_exists, cb_func, free_manager_device_exists, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/* Manager.FindDeviceStringMatch */ +EAPI int +e_hal_manager_find_device_string_match(E_DBus_Connection *conn, const char *key, const char *value, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_manager_call_new("FindDeviceStringMatch"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &key, DBUS_TYPE_STRING, &value, DBUS_TYPE_INVALID); + ret = e_dbus_method_call_send(conn, msg, unmarshal_string_list, cb_func, free_string_list, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/* Manager.FindDeviceByCapability */ + +EAPI int +e_hal_manager_find_device_by_capability(E_DBus_Connection *conn, const char *capability, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_hal_manager_call_new("FindDeviceByCapability"); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &capability, DBUS_TYPE_INVALID); + ret = e_dbus_method_call_send(conn, msg, unmarshal_string_list, cb_func, free_string_list, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} diff --git a/src/lib/hal/e_hal_manager.h b/src/lib/hal/e_hal_manager.h new file mode 100644 index 0000000..3714dde --- /dev/null +++ b/src/lib/hal/e_hal_manager.h @@ -0,0 +1,21 @@ +#ifndef E_HAL_MANAGER_H +#define E_HAL_MANAGER_H + +#include "E_Hal.h" + +typedef struct E_Hal_String_List_Return E_Hal_Manager_Get_All_Devices_Return; +typedef struct E_Hal_Bool_Return E_Hal_Manager_Device_Exists_Return; +typedef struct E_Hal_String_List_Return E_Hal_Manager_Find_Device_String_Match_Return; +typedef struct E_Hal_String_List_Return E_Hal_Manager_Find_Device_By_Capability_Return; + +typedef struct E_Hal_UDI_Return E_Hal_Manager_Device_Added; +typedef struct E_Hal_UDI_Return E_Hal_Manager_Device_Removed; +typedef struct E_Hal_Capability E_Hal_Manager_New_Capability; + + +int e_hal_manager_get_all_devices(E_DBus_Connection *conn, E_Hal_Callback_Func cb_func, void *data); +int e_hal_manager_device_exists(E_DBus_Connection *conn, const char *udi, E_Hal_Callback_Func cb_func, void *data); +int e_hal_manager_find_device_string_match(E_DBus_Connection *conn, const char *key, const char *value, E_Hal_Callback_Func cb_func, void *data); +int e_hal_manager_find_device_by_capability(E_DBus_Connection *conn, const char *capability, E_Hal_Callback_Func cb_func, void *data); + +#endif diff --git a/src/lib/hal/e_hal_util.c b/src/lib/hal/e_hal_util.c new file mode 100644 index 0000000..cf10126 --- /dev/null +++ b/src/lib/hal/e_hal_util.c @@ -0,0 +1,99 @@ +#include +#include + +/** + * @internal + * @brief free a property structure + * @param prop the property to free + */ +EAPI void +e_hal_property_free(E_Hal_Property *prop) +{ + if (prop->type == E_HAL_PROPERTY_TYPE_STRLIST) + ecore_list_destroy(prop->val.strlist); + free(prop); +} + +/** + * @brief Retrive a string from an element of a property hash + * @param properties the E_Hal_Properties structure + * @param key the key of the property to retrieve + * @param err a pointer to an int, which if supplied, will be set to 0 on success and 1 on an error + */ +EAPI char * +e_hal_property_string_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return NULL; + prop = ecore_hash_get(properties->properties, key); + if (prop) return strdup(prop->val.s); + + if (err) *err = 1; + return NULL; +} + +EAPI char +e_hal_property_bool_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return 0; + prop = ecore_hash_get(properties->properties, key); + if (prop) return prop->val.b; + + if (err) *err = 1; + return 0; +} + +EAPI int +e_hal_property_int_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return 0; + prop = ecore_hash_get(properties->properties, key); + if (prop) return prop->val.i; + + if (err) *err = 1; + return 0; +} + +EAPI dbus_uint64_t +e_hal_property_uint64_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return 0; + prop = ecore_hash_get(properties->properties, key); + if (prop) return prop->val.u64; + + if (err) *err = 1; + return 0; +} + +EAPI double +e_hal_property_double_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return 0; + prop = ecore_hash_get(properties->properties, key); + if (prop) return prop->val.d; + + if (err) *err = 1; + return 0; +} + +EAPI Ecore_List * +e_hal_property_strlist_get(E_Hal_Properties *properties, const char *key, int *err) +{ + E_Hal_Property *prop; + if (err) *err = 0; + if (!properties->properties) return NULL; + prop = ecore_hash_get(properties->properties, key); + if (prop) return prop->val.strlist; + + if (err) *err = 1; + return NULL; +} diff --git a/src/lib/hal/e_hal_util.h b/src/lib/hal/e_hal_util.h new file mode 100644 index 0000000..fa0f471 --- /dev/null +++ b/src/lib/hal/e_hal_util.h @@ -0,0 +1,14 @@ +#ifndef E_HAL_UTIL_H +#define E_HAL_UTIL_H + +#include "E_Hal.h" + +void e_hal_property_free(E_Hal_Property *prop); +char *e_hal_property_string_get(E_Hal_Properties *properties, const char *key, int *err); +char e_hal_property_bool_get(E_Hal_Properties *properties, const char *key, int *err); +int e_hal_property_int_get(E_Hal_Properties *properties, const char *key, int *err); +dbus_uint64_t e_hal_property_uint64_get(E_Hal_Properties *properties, const char *key, int *err); +double e_hal_property_double_get(E_Hal_Properties *properties, const char *key, int *err); +Ecore_List *e_hal_property_strlist_get(E_Hal_Properties *properties, const char *key, int *err); + +#endif diff --git a/src/lib/nm/.cvsignore b/src/lib/nm/.cvsignore new file mode 100644 index 0000000..09980ae --- /dev/null +++ b/src/lib/nm/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +Makefile +Makefile.in +*.lo +*.la diff --git a/src/lib/nm/E_Nm.h b/src/lib/nm/E_Nm.h new file mode 100644 index 0000000..46d637d --- /dev/null +++ b/src/lib/nm/E_Nm.h @@ -0,0 +1,176 @@ +#ifndef E_NM_H +#define E_NM_H + +#include +#include + +#ifdef EAPI +#undef EAPI +#endif +#ifdef _MSC_VER +# ifdef BUILDING_DLL +# define EAPI __declspec(dllexport) +# else +# define EAPI __declspec(dllimport) +# endif +#else +# ifdef __GNUC__ +# if __GNUC__ >= 4 +# define EAPI __attribute__ ((visibility("default"))) +# else +# define EAPI +# endif +# else +# define EAPI +# endif +#endif + +typedef struct E_NM_Context E_NM_Context; + +/** + * Matching structs for the new "object" based DBus API + * VPN is missing as this was still missing the redesign for the new 0.7 API + */ +typedef struct E_NM_Device E_NM_Device; +struct E_NM_Device +{ + char *udi; /* object_path */ + char *interface; + char *driver; + uint capabilities; + int ip4address; + uint state; + char *ip4config; /* object_path */ + int carrier; + uint type; +}; + +typedef struct E_NM_Device_Wireless E_NM_Device_Wireless; +struct E_NM_Device_Wireless +{ + char *hwaddress; + int mode; + uint bitrate; + char *activeaccesspoint; /* object_path */ + uint wirelesscapabilities; +}; + +typedef struct E_NM_Device_Wired E_NM_Device_Wired; +struct E_NM_Device_Wired +{ + char *hwaddress; + uint speed; +}; + +typedef struct E_NM_Access_Point E_NM_Access_Point; +struct E_NM_Access_Point +{ + uint flags; + uint wpaflags; + uint rsnflags; + char *ssid; + uint frequency; + char *hwaddress; + int mode; + uint rate; + uint strength; +}; + +typedef struct E_NM_IP4Config E_NM_IP4Config; +struct E_NM_IP4Config +{ + uint address; + uint gateway; + uint netmask; + uint broadcast; + char *hostname; + Ecore_List *nameserver; /* uints */ + Ecore_List *domains; /* char* */ + char *nisdomain; + Ecore_List *nisserver; /* uints */ +}; + +typedef struct E_NM_Manager E_NM_Manager; +struct E_NM_Manager +{ + int wirelessenabled; /* writeable*/ + int wirelesshardwareenabled; + uint state; +}; + +typedef void (*E_NM_Cb_Manager_State_Change) (void *data, int state); +typedef void (*E_NM_Cb_Manager_Device_Added) (void *data, const char *device); +typedef void (*E_NM_Cb_Manager_Device_Removed) (void *data, const char *device); + +#ifdef __cplusplus +extern "C" { +#endif + + EAPI E_NM_Context *e_nm_new(void); + EAPI void e_nm_free(E_NM_Context *ctx); + + +/** + * A callback function for a Network Manager call + * @param user_data the data passed in to the method call + * @param event_data a struct containing the return data. + * + * For method calls, the return structs use the following naming convention: + * E_NM___Return + */ + +/* org.freedesktop.NetworkManager api */ +/* methods */ + EAPI int e_nm_get_devices(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_get_active_device(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data); +/* TODO: EAPI int e_nm_set_active_device() */ + EAPI int e_nm_status(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data); +/* signals */ +/* TODO: These have changed! */ + /* deprecated */EAPI void e_nm_callback_manager_state_change_set(E_NM_Context *ctx, E_NM_Cb_Manager_State_Change cb_func, void *user_data); + /* deprecated */EAPI void e_nm_callback_manager_device_added_set(E_NM_Context *ctx, E_NM_Cb_Manager_Device_Added cb_func, void *user_data); + /* deprecated */EAPI void e_nm_callback_manager_device_removed_set(E_NM_Context *ctx, E_NM_Cb_Manager_Device_Removed cb_func, void *user_data); +/* TODO: EAPI void e_nm_callback_device_no_longer_active() */ +/* TODO: EAPI void e_nm_callback_device_now_active() */ +/* TODO: EAPI void e_nm_callback_device_activating() */ +/* TODO: EAPI void e_nm_callback_devices_changed() */ +/* TODO: EAPI void e_nm_callback_device_activation_failed() */ +/* TODO: EAPI void e_nm_callback_device_strength_changed() */ +/* TODO: EAPI void e_nm_callback_device_ipv4_address_changed() */ +/* TODO: EAPI void e_nm_callback_wireless_network_appeared() */ +/* TODO: EAPI void e_nm_callback_wireless_network_disappeared() */ + + +/* org.freedesktop.NetworkManager.Device api */ + EAPI int e_nm_device_get_udi(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_interface(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_driver(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_capabilities(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_ip4address(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_state(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_ip4config(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_carrier(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + EAPI int e_nm_device_get_type(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data); + +/* org.freedesktop.NetworkManager.Devices api */ +/* TODO: EAPI int e_nm_network_get_name() */ +/* TODO: EAPI int e_nm_network_get_address() */ +/* TODO: EAPI int e_nm_network_get_strength() */ +/* TODO: EAPI int e_nm_network_get_frequency() */ +/* TODO: EAPI int e_nm_network_get_rate() */ +/* TODO: EAPI int e_nm_network_get_encrypted() */ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/lib/nm/Makefile.am b/src/lib/nm/Makefile.am new file mode 100644 index 0000000..dc2ff55 --- /dev/null +++ b/src/lib/nm/Makefile.am @@ -0,0 +1,30 @@ +MAINTAINERCLEANFILES = Makefile.in + +AM_CPPFLAGS = \ +-I $(top_srcdir)/src/lib/dbus \ +@EDBUS_CFLAGS@ + +if BUILD_ENM + +lib_LTLIBRARIES = libenm.la +include_HEADERS = E_Nm.h + +libenm_la_SOURCES = \ +e_nm_private.h \ +e_nm.c \ +e_nm_manager.c \ +e_nm_device.c \ +e_nm_network.c \ +e_nm_util.c + + +libenm_la_LIBADD = \ +@EDBUS_LIBS@ \ +$(top_builddir)/src/lib/dbus/libedbus.la +libenm_la_LDFLAGS = -version-info @version_info@ + + +libenm_la_DEPENDENCIES = \ +$(top_builddir)/src/lib/dbus/libedbus.la + +endif diff --git a/src/lib/nm/README b/src/lib/nm/README new file mode 100644 index 0000000..e4b566f --- /dev/null +++ b/src/lib/nm/README @@ -0,0 +1,2 @@ +This depends on NetworkManager 0.7, which was unrealeased as of 2007-03-20. +It is only a start, and can't really be finished until the NetworkManagerInfo interface is reworked. So, for now, ignore it :) diff --git a/src/lib/nm/e_nm.c b/src/lib/nm/e_nm.c new file mode 100644 index 0000000..82da6f1 --- /dev/null +++ b/src/lib/nm/e_nm.c @@ -0,0 +1,120 @@ +#include "E_Nm.h" +#include "e_nm_private.h" + +EAPI E_NM_Context * +e_nm_new(void) +{ + E_NM_Context *ctx; + + ctx = calloc(1, sizeof(E_NM_Context)); + if (!ctx) return NULL; + + ctx->conn = e_dbus_bus_get(DBUS_BUS_SYSTEM); + if (!ctx->conn) + goto error; + + return ctx; + +error: + free(ctx); + return NULL; + +} + +EAPI void +e_nm_free(E_NM_Context *ctx) +{ + e_dbus_connection_close(ctx->conn); + free(ctx); +} + +static void +cb_signal_manager_state_change(void *data, DBusMessage *msg) +{ + E_NM_Context *ctx; + dbus_uint32_t state; + DBusError err; + if (!msg || !data) return; + + ctx = data; + dbus_error_init(&err); + dbus_message_get_args(msg, &err, DBUS_TYPE_UINT32, &state, DBUS_TYPE_INVALID); + if (dbus_error_is_set(&err)) + { + printf("Error: %s - %s\n", err.name, err.message); + return; + } + + if (ctx->cb_manager_state_change) + ctx->cb_manager_state_change(ctx->data_manager_state_change, (int)state); +} + +static void +cb_signal_manager_device_added(void *data, DBusMessage *msg) +{ + E_NM_Context *ctx; + const char *device; + DBusError err; + if (!msg || !data) return; + + ctx = data; + dbus_error_init(&err); + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &device, DBUS_TYPE_INVALID); + if (dbus_error_is_set(&err)) + { + printf("Error: %s - %s\n", err.name, err.message); + return; + } + + if (ctx->cb_manager_device_added) + ctx->cb_manager_device_added(ctx->data_manager_device_added, device); +} + +static void +cb_signal_manager_device_removed(void *data, DBusMessage *msg) +{ + E_NM_Context *ctx; + const char *device; + DBusError err; + if (!msg || !data) return; + + ctx = data; + dbus_error_init(&err); + dbus_message_get_args(msg, &err, DBUS_TYPE_STRING, &device, DBUS_TYPE_INVALID); + if (dbus_error_is_set(&err)) + { + printf("Error: %s - %s\n", err.name, err.message); + return; + } + + if (ctx->cb_manager_device_removed) + ctx->cb_manager_device_removed(ctx->data_manager_device_removed, device); +} + + +EAPI void +e_nm_callback_manager_state_change_set(E_NM_Context *ctx, E_NM_Cb_Manager_State_Change cb_func, void *user_data) +{ + ctx->cb_manager_state_change = cb_func; + ctx->data_manager_state_change = user_data; + + e_dbus_signal_handler_add(ctx->conn, E_NM_SERVICE, E_NM_PATH_NETWORK_MANAGER, E_NM_INTERFACE_NETWORK_MANAGER, "StateChange", cb_signal_manager_state_change, ctx); +} + +EAPI void +e_nm_callback_manager_device_added_set(E_NM_Context *ctx, E_NM_Cb_Manager_Device_Added cb_func, void *user_data) +{ + ctx->cb_manager_device_added = cb_func; + ctx->data_manager_device_added = user_data; + + e_dbus_signal_handler_add(ctx->conn, E_NM_SERVICE, E_NM_PATH_NETWORK_MANAGER, E_NM_INTERFACE_NETWORK_MANAGER, "DeviceAdded", cb_signal_manager_device_added, ctx); +} + +EAPI void +e_nm_callback_manager_device_removed_set(E_NM_Context *ctx, E_NM_Cb_Manager_Device_Removed cb_func, void *user_data) +{ + ctx->cb_manager_device_removed = cb_func; + ctx->data_manager_device_removed = user_data; + + e_dbus_signal_handler_add(ctx->conn, E_NM_SERVICE, E_NM_PATH_NETWORK_MANAGER, E_NM_INTERFACE_NETWORK_MANAGER, "DeviceRemoved", cb_signal_manager_device_removed, ctx); +} diff --git a/src/lib/nm/e_nm_device.c b/src/lib/nm/e_nm_device.c new file mode 100644 index 0000000..1af65e0 --- /dev/null +++ b/src/lib/nm/e_nm_device.c @@ -0,0 +1,165 @@ +/* + * This file defines functions that query each of the functions provided by + * the org.freedesktop.NetworkManager.Device DBus interface. + */ + +#include "E_Nm.h" +#include "e_nm_private.h" +#include + + +/** + * Get the UDI of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_udi(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Udi", cb_func, data); +} + + +/** + * Get the interface name of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_interface(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Interface", cb_func, data); +} + + +/** + * Get the driver name of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_driver(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Driver", cb_func, data); +} + + +/** + * Get the capabilities of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_capabilities(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Capabilities", cb_func, data); +} + + +/** + * Get the IPv4 address of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_ip4address(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Ip4Address", cb_func, data); +} + + +/** + * Get the state of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_state(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "State", cb_func, data); +} + + +/** + * Get the IPv4 config object path of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_ip4config(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Ip4Config", cb_func, data); +} + + +/** + * Get the carrier status of a NetworkManager device + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_carrier(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "Carrier", cb_func, data); +} + + +/** + * Return the type of a an NM device: + * + * 0: unknown + * 1: wired + * 2: wireless + * + * @param ctx an e_nm context + * @param device a NetworkManager device to communicate with + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + */ +EAPI int +e_nm_device_get_type(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + /* FIXME: Decide how to handle the return value for this functions */ + e_nm_device_properties_get(ctx->conn, device, "DeviceType", cb_func, data); +} diff --git a/src/lib/nm/e_nm_manager.c b/src/lib/nm/e_nm_manager.c new file mode 100644 index 0000000..265249e --- /dev/null +++ b/src/lib/nm/e_nm_manager.c @@ -0,0 +1,76 @@ +#include "E_Nm.h" +#include "e_nm_private.h" + + +/** + * Get all network devices. + * + * Returns an Ecore_List of dbus object paths for network devices. This list is + * of const char *, and is freed automatically after the callback returns. + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +EAPI int +e_nm_get_devices(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data) +{ + DBusMessage *msg; + int ret; + + msg = e_nm_manager_call_new("GetDevices"); + + ret = e_dbus_method_call_send(ctx->conn, msg, cb_nm_string_list, cb_func, free_nm_string_list, -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + + +/** + * Find the active device that NM has chosen + * + * Returns a single string containing the dbus path to the active device + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +EAPI int +e_nm_get_active_device(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, + void *data) +{ + return e_nm_get_from_nm(ctx, cb_func, data, + "getActiveDevice", DBUS_TYPE_STRING); +} + + +/** + * Query the current state of the network + * + * Returns a single string containing the status: + * + * "connecting": there is a pending network connection (waiting for a DHCP + * request to complete, waiting for an encryption + * key/passphrase, waiting for a wireless network, etc) + * + * "connected": there is an active network connection + * + * "scanning": there is no active network connection, but NetworkManager + * is looking for an access point to associate with + * + * "disconnected": there is no network connection + * + * + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +EAPI int +e_nm_status(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, + void *data) +{ + + return e_nm_get_from_nm(ctx, cb_func, data, + "status", DBUS_TYPE_STRING); +} diff --git a/src/lib/nm/e_nm_network.c b/src/lib/nm/e_nm_network.c new file mode 100644 index 0000000..1f37a80 --- /dev/null +++ b/src/lib/nm/e_nm_network.c @@ -0,0 +1,96 @@ +#include "E_Nm.h" +#include "e_nm_private.h" + +/** + * Get the ESSID of a wireless network + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_name(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getName", + DBUS_TYPE_STRING); +} + +/** + * Get the MAC address of a wireless network's AP + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_address(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getAddress", + DBUS_TYPE_STRING); +} + + +/** + * Get the strength of the network; given out of 100 + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_strength(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getStrength", + DBUS_TYPE_INT32); +} + + +/** + * Get the frequency of the network; given in GHz + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_frequency(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getFrequency", + DBUS_TYPE_DOUBLE); +} + + +/** + * Get the data rate of the network; given in Mbps + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_rate(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getRate", + DBUS_TYPE_INT32); +} + + +/** + * Return true if the network requires encryption + * + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + **/ +int +e_nm_network_get_encryption(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data) +{ + return e_nm_get_from_device(ctx, device, cb_func, data, "getEncryption", + DBUS_TYPE_BOOLEAN); +} diff --git a/src/lib/nm/e_nm_private.h b/src/lib/nm/e_nm_private.h new file mode 100644 index 0000000..b7970c9 --- /dev/null +++ b/src/lib/nm/e_nm_private.h @@ -0,0 +1,50 @@ +#ifndef E_NM_PRIVATE_H +#define E_NM_PRIVATE_H + +#define E_NM_SERVICE "org.freedesktop.NetworkManager" +#define E_NM_PATH_NETWORK_MANAGER "/org/freedesktop/NetworkManager" +#define E_NM_INTERFACE_NETWORK_MANAGER "org.freedesktop.NetworkManager" +#define E_NM_INTERFACE_ACCESSPOINT "org.freedesktop.NetworkManager.AccessPoint" +#define E_NM_INTERFACE_DEVICE "org.freedesktop.NetworkManager.Device" +#define E_NM_INTERFACE_DEVICE_WIRELESS "org.freedesktop.NetworkManager.Device.Wireless" +#define E_NM_INTERFACE_DEVICE_WIRED "org.freedesktop.NetworkManager.Device.Wired" +#define E_NM_INTERFACE_IP4CONFIG "org.freedesktop.NetworkManager.IP4Config" + +#define e_nm_manager_call_new(member) dbus_message_new_method_call(E_NM_SERVICE, E_NM_PATH_NETWORK_MANAGER, E_NM_INTERFACE_NETWORK_MANAGER, member) + +#define e_nm_device_call_new(path, member) dbus_message_new_method_call(E_NM_SERVICE, path, E_NM_INTERFACE_DEVICE, member) + +#define e_nm_network_call_new(member) dbus_message_new_method_call(E_NM_SERVICE, E_NM_PATH_NETWORK_MANAGER, E_NM_INTERFACE_NETWORK_MANAGER, member) + +#define e_nm_device_properties_get(con, dev, prop, cb, data) e_dbus_properties_get(con, E_NM_SERVICE, dev, E_NM_INTERFACE_DEVICE, prop, (E_DBus_Method_Return_Cb) cb, data) + +struct E_NM_Context +{ + E_DBus_Connection *conn; + + E_NM_Cb_Manager_State_Change cb_manager_state_change; + void *data_manager_state_change; + + E_NM_Cb_Manager_Device_Added cb_manager_device_added; + void *data_manager_device_added; + + E_NM_Cb_Manager_Device_Removed cb_manager_device_removed; + void *data_manager_device_removed; +}; + + +int e_nm_get_from_nm(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data, + const char *method, int rettype); +int e_nm_get_from_device(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data, + const char *method, int rettype); + +void *cb_nm_generic(DBusMessage *msg, DBusError *err); +void free_nm_generic(void *data); +void *cb_nm_int32(DBusMessage *msg, DBusError *err); +void *cb_nm_uint32(DBusMessage *msg, DBusError *err); +void *cb_nm_string(DBusMessage *msg, DBusError *err); +void *cb_nm_boolean(DBusMessage *msg, DBusError *err); +void *cb_nm_string_list(DBusMessage *msg, DBusError *err); +void free_nm_string_list(void *data); +#endif diff --git a/src/lib/nm/e_nm_util.c b/src/lib/nm/e_nm_util.c new file mode 100644 index 0000000..740186e --- /dev/null +++ b/src/lib/nm/e_nm_util.c @@ -0,0 +1,232 @@ +#include "E_Nm.h" +#include "e_nm_private.h" +#include "E_DBus.h" +#include +#include + +/** + * @internal + * @brief returns an e_dbus callback for a given dbus type + * @param rettype the return type we want to find a callback for + **/ +static E_DBus_Unmarshal_Func +e_nm_callback_by_type(int rettype) +{ + switch (rettype) + { + case DBUS_TYPE_STRING: + return cb_nm_string; + + case DBUS_TYPE_INT32: + return cb_nm_int32; + + case DBUS_TYPE_UINT32: + return cb_nm_uint32; + + case DBUS_TYPE_BOOLEAN: + return cb_nm_boolean; + + default: + return cb_nm_generic; + } +} + +/** + * @internal + * @brief returns an e_dbus free for a given dbus type + * @param rettype the return type we want to find a free for + **/ +static E_DBus_Free_Func +e_nm_free_by_type(int rettype) +{ + switch (rettype) + { + case DBUS_TYPE_STRING: + return NULL; + case DBUS_TYPE_INT32: + case DBUS_TYPE_UINT32: + case DBUS_TYPE_BOOLEAN: + default: + return free_nm_generic; + } +} + +/** + * @internal + * @brief Send "get" messages to NetworkManager via e_dbus + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + * @param method the name of the method that should be called + * @param rettype the type of the data that will be returned to the callback + **/ +int +e_nm_get_from_nm(E_NM_Context *ctx, E_DBus_Callback_Func cb_func, void *data, + const char *method, int rettype) +{ + DBusMessage *msg; + int ret; + + msg = e_nm_manager_call_new(method); + ret = e_dbus_method_call_send(ctx->conn, msg, e_nm_callback_by_type(rettype), + cb_func, e_nm_free_by_type(rettype), -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + + +/** + * @internal + * @brief Send "get" messages to a Device via e_dbus + * @param ctx an e_nm context + * @param cb a callback, used when the method returns (or an error is received) + * @param data user data to pass to the callback function + * @param method the name of the method that should be called + * @param rettype the type of the data that will be returned to the callback + **/ +int +e_nm_get_from_device(E_NM_Context *ctx, const char *device, + E_DBus_Callback_Func cb_func, void *data, + const char *method, int rettype) +{ + DBusMessage *msg; + int ret; + + msg = e_nm_device_call_new(device, method); + ret = e_dbus_method_call_send(ctx->conn, msg, e_nm_callback_by_type(rettype), + cb_func, + e_nm_free_by_type(rettype), + -1, data) ? 1 : 0; + dbus_message_unref(msg); + return ret; +} + +/** + * @internal + * @brief Generic callback for methods that return nothing + */ +void * +cb_nm_generic(DBusMessage *msg, DBusError *err) +{ + return NULL; +} + +/** + * @internal + * @brief Generic free for methods + */ +void +free_nm_generic(void *data) +{ + if (!data) return; + free(data); +} + +/** + * @internal + * @brief Callback for methods that return DBUS_TYPE_INT32 + */ +void * +cb_nm_int32(DBusMessage *msg, DBusError *err) +{ + dbus_int32_t *i; + + i = malloc(sizeof(dbus_int32_t)); + /* Actually emit the integer */ + dbus_message_get_args(msg, err, + DBUS_TYPE_INT32, i, + DBUS_TYPE_INVALID); + + return i; +} + +/** + * @internal + * @brief Callback for methods that return DBUS_TYPE_UINT32 + */ +void * +cb_nm_uint32(DBusMessage *msg, DBusError *err) +{ + dbus_uint32_t *i; + + i = malloc(sizeof(dbus_uint32_t)); + /* Actually emit the unsigned integer */ + dbus_message_get_args(msg, err, + DBUS_TYPE_UINT32, i, + DBUS_TYPE_INVALID); + + return i; +} + +/** + * @internal + * @brief Callback for methods that return DBUS_TYPE_BOOLEAN + */ +void * +cb_nm_boolean(DBusMessage *msg, DBusError *err) +{ + dbus_bool_t *i; + + i = malloc(sizeof(dbus_bool_t)); + /* Actually emit the unsigned integer */ + dbus_message_get_args(msg, err, + DBUS_TYPE_BOOLEAN, i, + DBUS_TYPE_INVALID); + + return i; +} + +/** + * @internal + * @brief Callback for methods returning a single string + */ +void * +cb_nm_string(DBusMessage *msg, DBusError *err) +{ + char *str; + + /* Actually emit the string */ + dbus_message_get_args(msg, err, + DBUS_TYPE_STRING, &str, + DBUS_TYPE_INVALID); + + return str; +} + + +/** + * @internal + * @brief Callback for methods returning a list of strings or object paths + */ +void * +cb_nm_string_list(DBusMessage *msg, DBusError *err) +{ + Ecore_List *devices; + DBusMessageIter iter, sub; + + dbus_message_iter_init(msg, &iter); + if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_ARRAY || + dbus_message_iter_get_element_type(&iter) != DBUS_TYPE_OBJECT_PATH) return NULL; + + devices = ecore_list_new(); + dbus_message_iter_recurse(&iter, &sub); + while (dbus_message_iter_get_arg_type(&sub) != DBUS_TYPE_INVALID) + { + char *dev = NULL; + + dbus_message_iter_get_basic(&sub, &dev); + if (dev) ecore_list_append(devices, dev); + dbus_message_iter_next(&sub); + } + + return devices; +} + +void +free_nm_string_list(void *data) +{ + Ecore_List *list = data; + + if (list) ecore_list_destroy(list); +} + diff --git a/src/lib/notification/.cvsignore b/src/lib/notification/.cvsignore new file mode 100644 index 0000000..09980ae --- /dev/null +++ b/src/lib/notification/.cvsignore @@ -0,0 +1,6 @@ +.deps +.libs +Makefile +Makefile.in +*.lo +*.la diff --git a/src/lib/notification/E_Notification_Daemon.h b/src/lib/notification/E_Notification_Daemon.h new file mode 100644 index 0000000..5a4a113 --- /dev/null +++ b/src/lib/notification/E_Notification_Daemon.h @@ -0,0 +1,92 @@ +#ifndef E_NOTIFICATION_DAEMON_H +#define E_NOTIFICATION_DAEMON_H + +#define E_NOTIFICATION_DAEMON_VERSION "0.9" + +#include + +#ifdef EAPI +#undef EAPI +#endif +#ifdef _MSC_VER +# ifdef BUILDING_DLL +# define EAPI __declspec(dllexport) +# else +# define EAPI __declspec(dllimport) +# endif +#else +# ifdef __GNUC__ +# if __GNUC__ >= 4 +# define EAPI __attribute__ ((visibility("default"))) +# else +# define EAPI +# endif +# else +# define EAPI +# endif +#endif + + +typedef struct E_Notification_Daemon E_Notification_Daemon; + +/* daemon callbacks */ +typedef int (*E_Notification_Daemon_Callback_Notify) (E_Notification_Daemon *daemon, E_Notification *notification); +typedef void (*E_Notification_Daemon_Callback_Close_Notification) (E_Notification_Daemon *daemon, unsigned int notification_id); + +/* gui */ +typedef struct E_Notification_View E_Notification_View; + +struct E_Notification_Daemon +{ + E_DBus_Connection *conn; + E_DBus_Interface *iface; + E_DBus_Object *obj; + + char *name; + char *vendor; + + struct + { + E_Notification_Daemon_Callback_Notify notify; + E_Notification_Daemon_Callback_Close_Notification close_notification; + } func; + void *data; + + int state; +}; + +#ifdef __cplusplus +extern "C" { +#endif + +/* daemon */ + EAPI E_Notification_Daemon *e_notification_daemon_add(const char *name, const char *vendor); + EAPI void e_notification_daemon_free(E_Notification_Daemon *d); +/* TODO + void e_notification_daemon_close(E_Notification_Daemon *d, + E_Notification *n, unsigned int reason); + void e_notification_daemon_action_invoke(E_Notification_Daemon *d, + E_Notification *n, const char *action_id); +*/ + + EAPI void e_notification_daemon_data_set(E_Notification_Daemon *daemon, void *data); + EAPI void *e_notification_daemon_data_get(E_Notification_Daemon *daemon); + + EAPI void e_notification_daemon_callback_notify_set(E_Notification_Daemon *daemon, E_Notification_Daemon_Callback_Notify func); + EAPI void e_notification_daemon_callback_close_notification_set(E_Notification_Daemon *daemon, E_Notification_Daemon_Callback_Close_Notification func); + + EAPI void e_notification_daemon_signal_notification_closed(E_Notification_Daemon *daemon, unsigned int id, E_Notification_Closed_Reason reason); + EAPI void e_notification_daemon_signal_action_invoked(E_Notification_Daemon *daemon, unsigned int notification_id, const char *action_id); + +/***** gui *****/ +/* TODO + E_Notification_View *e_notification_view_add(E_Notification_Daemon *d, E_Notification *n); + void e_notification_view_close(E_Notification_View *nv); + Evas_Object * e_notification_view_icon_get(Evas *evas, E_Notification *n); +*/ + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/lib/notification/E_Notify.h b/src/lib/notification/E_Notify.h new file mode 100644 index 0000000..36bcbd2 --- /dev/null +++ b/src/lib/notification/E_Notify.h @@ -0,0 +1,188 @@ +#ifndef E_NOTIFY_H +#define E_NOTIFY_H + +#include +#include +#include + +#ifdef EAPI +#undef EAPI +#endif +#ifdef _MSC_VER +# ifdef BUILDING_DLL +# define EAPI __declspec(dllexport) +# else +# define EAPI __declspec(dllimport) +# endif +#else +# ifdef __GNUC__ +# if __GNUC__ >= 4 +# define EAPI __attribute__ ((visibility("default"))) +# else +# define EAPI +# endif +# else +# define EAPI +# endif +#endif + + +/* notifications */ +typedef struct E_Notification_Image E_Notification_Image; +typedef struct E_Notification E_Notification; +typedef struct E_Notification_Action E_Notification_Action; + +typedef enum E_Notification_Urgency E_Notification_Urgency; +typedef enum E_Notification_Hint_Type E_Notification_Hint_Type; +typedef enum E_Notification_Closed_Reason E_Notification_Closed_Reason; + +/* method returns */ +typedef struct E_Notification_Return_Notify E_Notification_Return_Notify; +typedef struct E_Notification_Return_Get_Capabilities E_Notification_Return_Get_Capabilities; +typedef struct E_Notification_Return_Get_Server_Information E_Notification_Return_Get_Server_Information; + + +/* signal events */ +typedef struct E_Notification_Event_Action_Invoked E_Notification_Event_Action_Invoked; +typedef struct E_Notification_Event_Notification_Closed E_Notification_Event_Notification_Closed; + +/* enums */ + +enum E_Notification_Urgency +{ + E_NOTIFICATION_URGENCY_LOW, + E_NOTIFICATION_URGENCY_NORMAL, + E_NOTIFICATION_URGENCY_CRITICAL +}; + +enum E_Notification_Closed_Reason +{ + E_NOTIFICATION_CLOSED_EXPIRED, + E_NOTIFICATION_CLOSED_DISMISSED, + E_NOTIFICATION_CLOSED_REQUESTED, + E_NOTIFICATION_CLOSED_UNDEFINED +}; + +enum E_Notification_Hint_Type +{ + E_NOTIFICATION_HINT_URGENCY = 0x1, + E_NOTIFICATION_HINT_CATEGORY = 0x2, + E_NOTIFICATION_HINT_DESKTOP = 0x4, + E_NOTIFICATION_HINT_SOUND_FILE = 0x8, + E_NOTIFICATION_HINT_SUPPRESS_SOUND = 0x10, + E_NOTIFICATION_HINT_XY = 0x20, + E_NOTIFICATION_HINT_IMAGE_DATA = 0x40 +}; + +/* client method returns */ +struct E_Notification_Return_Notify +{ + unsigned int notification_id; + E_Notification *notification; +}; + +struct E_Notification_Return_Get_Capabilities +{ + Ecore_List *capabilities; +}; + +struct E_Notification_Return_Get_Server_Information +{ + const char *name; + const char *vendor; + const char *version; +}; + +/* signals */ +struct E_Notification_Event_Notification_Closed +{ + unsigned int notification_id; + E_Notification_Closed_Reason reason; +}; + +struct E_Notification_Event_Action_Invoked +{ + unsigned int notification_id; + char *action_id; +}; + +#ifdef __cplusplus +extern "C" { +#endif + + EAPI int e_notification_init(); + EAPI int e_notification_shutdown(); + +/* client */ + EAPI void e_notification_send(E_Notification *n, E_DBus_Callback_Func func, void *data); + EAPI void e_notification_get_capabilities(E_DBus_Callback_Func func, void *data); + EAPI void e_notification_get_server_information(E_DBus_Callback_Func func, void *data); + + +/* Notifications */ + + EAPI E_Notification *e_notification_new(); + EAPI void e_notification_ref(E_Notification *n); + EAPI void e_notification_unref(E_Notification *n); + EAPI void e_notification_free(E_Notification *n); + + EAPI E_Notification *e_notification_full_new(const char *app_name, + unsigned int replaces_id, + const char *app_icon, + const char *summary, + const char *body, + int expire_timeout); + +/* notification mutators */ + EAPI void e_notification_id_set(E_Notification *note, unsigned int id); + EAPI void e_notification_app_name_set(E_Notification *n, const char *app_name); + EAPI void e_notification_app_icon_set(E_Notification *n, const char *app_icon); + EAPI void e_notification_summary_set(E_Notification *n, const char *summary); + EAPI void e_notification_body_set(E_Notification *n, const char *body); + EAPI void e_notification_replaces_id_set(E_Notification *n, int replaces_id); + EAPI void e_notification_timeout_set(E_Notification *n, int timeout); + EAPI void e_notification_closed_set(E_Notification *note, unsigned char closed); + +/* notification accessors */ + EAPI unsigned int e_notification_id_get(E_Notification *note); + EAPI const char *e_notification_app_name_get(E_Notification *n); + EAPI const char *e_notification_app_icon_get(E_Notification *n); + EAPI const char *e_notification_summary_get(E_Notification *n); + EAPI const char *e_notification_body_get(E_Notification *n); + EAPI int e_notification_replaces_id_get(E_Notification *note); + EAPI int e_notification_timeout_get(E_Notification *note); + EAPI unsigned char e_notification_closed_get(E_Notification *note); + +/* actions */ + EAPI void e_notification_action_add(E_Notification *n, const char *action_id, const char *action_name); + EAPI Ecore_List *e_notification_actions_get(E_Notification *n); + +/* hint mutators */ + EAPI void e_notification_hint_urgency_set(E_Notification *n, char urgency); + EAPI void e_notification_hint_category_set(E_Notification *n, const char *category); + EAPI void e_notification_hint_desktop_set(E_Notification *n, const char *desktop); + EAPI void e_notification_hint_sound_file_set(E_Notification *n, const char *sound_file); + EAPI void e_notification_hint_suppress_sound_set(E_Notification *n, char suppress_sound); + EAPI void e_notification_hint_xy_set(E_Notification *n, int x, int y); + EAPI void e_notification_hint_image_data_set(E_Notification *n, E_Notification_Image *image); + +/* hint accessors */ + EAPI char e_notification_hint_urgency_get(E_Notification *n); + EAPI const char *e_notification_hint_category_get(E_Notification *n); + EAPI const char *e_notification_hint_desktop_get(E_Notification *n); + EAPI const char *e_notification_hint_sound_file_get(E_Notification *n); + EAPI char e_notification_hint_suppress_sound_get(E_Notification *n); + EAPI int e_notification_hint_xy_get(E_Notification *n, int *x, int *y); + EAPI E_Notification_Image *e_notification_hint_image_data_get(E_Notification *n); + EAPI E_Notification_Image *e_notification_hint_icon_data_get(E_Notification *n); + +/* image hint */ + EAPI E_Notification_Image *e_notification_image_new(); + EAPI void e_notification_image_free(E_Notification_Image *img); + EAPI Evas_Object *e_notification_image_evas_object_add(Evas *evas, E_Notification_Image *img); + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/src/lib/notification/Makefile.am b/src/lib/notification/Makefile.am new file mode 100644 index 0000000..dd47d49 --- /dev/null +++ b/src/lib/notification/Makefile.am @@ -0,0 +1,26 @@ +MAINTAINERCLEANFILES = Makefile.in + +AM_CPPFLAGS = \ +-I $(top_srcdir)/src/lib/dbus \ +@EDBUS_CFLAGS@ @EVAS_CFLAGS@ + +if BUILD_ENOTIFY + +lib_LTLIBRARIES = libenotify.la +include_HEADERS = E_Notify.h E_Notification_Daemon.h + +libenotify_la_SOURCES = \ +E_Notify.h \ +E_Notification_Daemon.h \ +e_notify_private.h \ +notification.c \ +marshal.c \ +client.c \ +daemon.c + +libenotify_la_LIBADD = \ +@EDBUS_LIBS@ @EVAS_LIBS@ \ +$(top_builddir)/src/lib/dbus/libedbus.la +libenotify_la_LDFLAGS = -version-info @version_info@ + +endif diff --git a/src/lib/notification/client.c b/src/lib/notification/client.c new file mode 100644 index 0000000..319702f --- /dev/null +++ b/src/lib/notification/client.c @@ -0,0 +1,61 @@ +#include "E_Notify.h" +#include "e_notify_private.h" +static E_DBus_Connection *client_conn; +static int init_count = 0; + +EAPI int +e_notification_init(void) +{ + if (init_count) return ++init_count; + + if (!e_dbus_init()) return 0; + client_conn = e_dbus_bus_get(DBUS_BUS_SESSION); + if (!client_conn) + { + e_dbus_shutdown(); + return 0; + } + + return ++init_count; +} + +EAPI int +e_notification_shutdown(void) +{ + if (--init_count) return init_count; + e_dbus_connection_close(client_conn); + client_conn = NULL; + e_dbus_shutdown(); + return 0; +} + +/**** client api ****/ +EAPI void +e_notification_send(E_Notification *n, E_DBus_Callback_Func func, void *data) +{ + DBusMessage *msg; + + msg = e_notify_marshal_notify(n); + e_dbus_method_call_send(client_conn, msg, e_notify_unmarshal_notify_return, func, e_notify_free_notify_return, -1, data); + dbus_message_unref(msg); +} + +EAPI void +e_notification_get_capabilities(E_DBus_Callback_Func func, void *data) +{ + DBusMessage *msg; + + msg = e_notify_marshal_get_capabilities(); + e_dbus_method_call_send(client_conn, msg, e_notify_unmarshal_get_capabilities_return, func, e_notify_free_get_capabilities_return, -1, data); + dbus_message_unref(msg); +} + +EAPI void +e_notification_get_server_information(E_DBus_Callback_Func func, void *data) +{ + DBusMessage *msg; + + msg = e_notify_marshal_get_server_information(); + e_dbus_method_call_send(client_conn, msg, e_notify_unmarshal_get_server_information_return, func, e_notify_free_get_server_information_return, -1, data); + dbus_message_unref(msg); +} diff --git a/src/lib/notification/daemon.c b/src/lib/notification/daemon.c new file mode 100644 index 0000000..c7cfba9 --- /dev/null +++ b/src/lib/notification/daemon.c @@ -0,0 +1,219 @@ +#include "E_Notify.h" +#include "E_Notification_Daemon.h" +#include "e_notify_private.h" +#include + +static int e_notification_daemon_bus_init(E_Notification_Daemon *daemon); +static int e_notification_daemon_object_init(E_Notification_Daemon *daemon); + +DBusMessage * +method_get_capabilities(E_DBus_Object *obj, DBusMessage *message) +{ + const char *capabilities[] = { + "body", + "actions", + NULL + }; + return e_notify_marshal_get_capabilities_return(message, capabilities); +} + +DBusMessage * +method_notify(E_DBus_Object *obj, DBusMessage *message) +{ + E_Notification *n; + E_Notification_Daemon *daemon; + int id = -1; + + daemon = e_dbus_object_data_get(obj); + n = e_notify_unmarshal_notify(message, NULL); + if (daemon->func.notify) + id = daemon->func.notify(daemon, n); + else + return dbus_message_new_error(message, E_NOTIFICATION_INTERFACE".Unimplemented", "This functionality has not yet been implemented"); + + e_notification_unref(n); + return e_notify_marshal_notify_return(message, id); +} + +DBusMessage * +method_close_notification(E_DBus_Object *obj, DBusMessage *message) +{ + E_Notification_Daemon *daemon; + dbus_uint32_t id; + + daemon = e_dbus_object_data_get(obj); + id = e_notify_unmarshal_close_notification(message, NULL); + if (daemon->func.close_notification) + daemon->func.close_notification(daemon, id); + return dbus_message_new_method_return(message); +} + +DBusMessage * +method_get_server_information(E_DBus_Object *obj, DBusMessage *message) +{ + E_Notification_Daemon *daemon; + + daemon = e_dbus_object_data_get(obj); + + return e_notify_marshal_get_server_information_return(message, daemon->name, daemon->vendor, E_NOTIFICATION_DAEMON_VERSION); +} + + +/**** daemon api ****/ + + +EAPI E_Notification_Daemon * +e_notification_daemon_add(const char *name, const char *vendor) +{ + E_Notification_Daemon *daemon; + + if (!e_dbus_init()) return NULL; + daemon = calloc(1, sizeof(E_Notification_Daemon)); + if (daemon) + e_notification_daemon_bus_init(daemon); + + if (!daemon || !daemon->conn) + { + if (daemon) free(daemon); + e_dbus_shutdown(); + return NULL; + } + + daemon->name = strdup(name); + daemon->vendor = strdup(vendor); + + daemon->iface = e_dbus_interface_new(E_NOTIFICATION_INTERFACE); + e_dbus_interface_method_add(daemon->iface, "GetCapabilities", "", "as", method_get_capabilities); + e_dbus_interface_method_add(daemon->iface, "Notify", "susssasa{sv}i", "u", method_notify); + e_dbus_interface_method_add(daemon->iface, "CloseNotification", "u", "u", method_close_notification); + e_dbus_interface_method_add(daemon->iface, "GetServerInformation", "", "sss", method_get_server_information); + + return daemon; +} + + +EAPI void +e_notification_daemon_free(E_Notification_Daemon *daemon) +{ + e_dbus_release_name(daemon->conn, E_NOTIFICATION_BUS_NAME, NULL, NULL); + if (daemon->obj) + { + e_dbus_object_interface_detach(daemon->obj, daemon->iface); + e_dbus_object_free(daemon->obj); + } + if (daemon->conn) e_dbus_connection_close(daemon->conn); + if (daemon->name) free(daemon->name); + if (daemon->vendor) free(daemon->vendor); + if (daemon->iface) e_dbus_interface_unref(daemon->iface); + free(daemon); + e_dbus_shutdown(); +} + +EAPI void +e_notification_daemon_data_set(E_Notification_Daemon *daemon, void *data) +{ + daemon->data = data; +} + +EAPI void * +e_notification_daemon_data_get(E_Notification_Daemon *daemon) +{ + return daemon->data; +} + +EAPI void +e_notification_daemon_callback_notify_set(E_Notification_Daemon *daemon, E_Notification_Daemon_Callback_Notify func) +{ + daemon->func.notify = func; +} + +EAPI void +e_notification_daemon_callback_close_notification_set(E_Notification_Daemon *daemon, E_Notification_Daemon_Callback_Close_Notification func) +{ + daemon->func.close_notification = func; +} + + +static void +cb_request_name(void *data, DBusMessage *msg, DBusError *err) +{ + E_Notification_Daemon *daemon = data; + dbus_uint32_t ret; + DBusError new_err; + + if (dbus_error_is_set(err)) + { + printf("Error (request_name): %s\n", err->message); + dbus_error_free(err); + return; + } + + printf("received response with signature: '%s'\n", dbus_message_get_signature(msg)); + dbus_error_init(&new_err); + dbus_message_get_args(msg, &new_err, DBUS_TYPE_UINT32, &ret, DBUS_TYPE_INVALID); + if (dbus_error_is_set(&new_err)) + { + printf("Error (req name unmarshal): %s\n", new_err.message); + dbus_error_free(&new_err); + return; + } + + switch(ret) + { + case DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER: + case DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER: + e_notification_daemon_object_init(daemon); + break; + case DBUS_REQUEST_NAME_REPLY_IN_QUEUE: + //XXX mark daemon as queued? + break; + case DBUS_REQUEST_NAME_REPLY_EXISTS: + //XXX exit? + break; + } +} + +static int +e_notification_daemon_bus_init(E_Notification_Daemon *daemon) +{ + daemon->conn = e_dbus_bus_get(DBUS_BUS_SESSION); + if (!daemon->conn) return 0; + + // this blocks... make it async, and handle failure, etc + e_dbus_request_name(daemon->conn, E_NOTIFICATION_BUS_NAME, DBUS_NAME_FLAG_REPLACE_EXISTING, cb_request_name, daemon); + + return 1; +} + +static int +e_notification_daemon_object_init(E_Notification_Daemon *daemon) +{ + if (!daemon || !daemon->conn) return 0; + daemon->obj = e_dbus_object_add(daemon->conn, E_NOTIFICATION_PATH, daemon); + if (!daemon->obj) return 0; + + e_dbus_object_interface_attach(daemon->obj, daemon->iface); + + return 1; +} + + +EAPI void +e_notification_daemon_signal_notification_closed(E_Notification_Daemon *daemon, unsigned int id, E_Notification_Closed_Reason reason) +{ + DBusMessage *msg = e_notify_marshal_notification_closed_signal(id, reason); + e_dbus_message_send(daemon->conn, + msg, + NULL, -1, NULL); + dbus_message_unref(msg); +} + +EAPI void +e_notification_daemon_signal_action_invoked(E_Notification_Daemon *daemon, unsigned int notification_id, const char *action_id) +{ + DBusMessage *msg = e_notify_marshal_action_invoked_signal(notification_id, action_id); + e_dbus_message_send(daemon->conn, + msg, + NULL, -1, NULL); + dbus_message_unref(msg); +} diff --git a/src/lib/notification/e_notify_private.h b/src/lib/notification/e_notify_private.h new file mode 100644 index 0000000..e68fac7 --- /dev/null +++ b/src/lib/notification/e_notify_private.h @@ -0,0 +1,92 @@ +#ifndef E_NOTIFY_PRIVATE_H +#define E_NOTIFY_PRIVATE_H + +#define E_NOTIFICATION_BUS_NAME "org.freedesktop.Notifications" +#define E_NOTIFICATION_INTERFACE "org.freedesktop.Notifications" +#define E_NOTIFICATION_PATH "/org/freedesktop/Notifications" + +#define e_notification_call_new(member) dbus_message_new_method_call(E_NOTIFICATION_BUS_NAME, E_NOTIFICATION_PATH, E_NOTIFICATION_INTERFACE, member) + +typedef void (*E_DBus_Variant_Marshaller) (DBusMessageIter *iter, void *data); +#define E_DBUS_VARIANT_MARSHALLER(x) ((E_DBus_Variant_Marshaller)(x)) + +void e_notify_marshal_dict_variant(DBusMessageIter *iter, const char *key, char *type_str, E_DBus_Variant_Marshaller func, void *data); +void e_notify_marshal_dict_string(DBusMessageIter *iter, const char *key, const char *value); +void e_notify_marshal_dict_byte(DBusMessageIter *iter, const char *key, char value); +void e_notify_marshal_dict_int(DBusMessageIter *iter, const char *key, int value); + +void e_notify_marshal_string_array(DBusMessageIter *iter, const char **strings); +void e_notify_marshal_string_list_as_array(DBusMessageIter *iter, Ecore_List *strings); +Ecore_List * e_notify_unmarshal_string_array_as_list(DBusMessageIter *iter, DBusError *err); +DBusMessage * e_notify_marshal_get_capabilities(); +DBusMessage * e_notify_marshal_get_capabilities_return(DBusMessage *method_call, const char **capabilities); +void * e_notify_unmarshal_get_capabilities_return(DBusMessage *msg, DBusError *err); +void e_notify_free_get_capabilities_return(void *data); +DBusMessage * e_notify_marshal_get_server_information(); +DBusMessage * e_notify_marshal_get_server_information_return(DBusMessage *method_call, const char *name, const char *vendor, const char *version); +void * e_notify_unmarshal_get_server_information_return(DBusMessage *msg, DBusError *err); +void e_notify_free_get_server_information_return(void *data); +DBusMessage * e_notify_marshal_close_notification(dbus_uint32_t id); +dbus_uint32_t e_notify_unmarshal_close_notification(DBusMessage *msg, DBusError *err); +DBusMessage * e_notify_marshal_notification_closed_signal(dbus_uint32_t id, dbus_uint32_t reason); +E_Notification_Event_Notification_Closed * e_notify_unmarshal_notification_closed_signal(DBusMessage *msg, DBusError *err); +DBusMessage * e_notify_marshal_action_invoked_signal(dbus_uint32_t id, const char *action_id); +E_Notification_Event_Action_Invoked * e_notify_unmarshal_action_invoked_signal(DBusMessage *msg, DBusError *err); +DBusMessage * e_notify_marshal_notify(E_Notification *n); +E_Notification * e_notify_unmarshal_notify(DBusMessage *msg, DBusError *err); +DBusMessage * e_notify_marshal_notify_return(DBusMessage *method_call, dbus_uint32_t notification_id); +void * e_notify_unmarshal_notify_return(DBusMessage *msg, DBusError *err); +void e_notify_free_notify_return(void *data); +void e_notify_unmarshal_notify_actions(E_Notification *n, DBusMessageIter *iter); +void e_notify_unmarshal_notify_hints(E_Notification *n, DBusMessageIter *iter); +void e_notify_marshal_hint_image(DBusMessageIter *iter, E_Notification_Image *img); +E_Notification_Image * e_notify_unmarshal_hint_image(DBusMessageIter *iter); + +struct E_Notification_Image +{ + int width; + int height; + int rowstride; + char has_alpha; + int bits_per_sample; + int channels; + unsigned char *data; +}; + +struct E_Notification +{ + int id; + char *app_name; + unsigned int replaces_id; + char *app_icon; + char *summary; + char *body; + int expire_timeout; + + Ecore_List *actions; + + struct + { + char urgency; + char *category; + char *desktop; + char *sound_file; + char suppress_sound; + int x, y; + E_Notification_Image *image_data; + E_Notification_Image *icon_data; + } hints; + + int hint_flags; + unsigned char closed; + + int refcount; +}; + +struct E_Notification_Action +{ + char *id; + char *name; +}; + +#endif diff --git a/src/lib/notification/marshal.c b/src/lib/notification/marshal.c new file mode 100644 index 0000000..a14ef99 --- /dev/null +++ b/src/lib/notification/marshal.c @@ -0,0 +1,590 @@ +#include "E_Notify.h" +#include +#include "e_notify_private.h" + +void +e_notify_marshal_dict_variant(DBusMessageIter *iter, const char *key, char *type_str, E_DBus_Variant_Marshaller func, void *data) +{ + DBusMessageIter entry, variant; + + dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv", &entry); + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); + func(&entry, data); + dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, type_str, &variant); + func(&variant, data); + dbus_message_iter_close_container(&entry, &variant); + dbus_message_iter_close_container(iter, &entry); +} + +void +e_notify_marshal_dict_string(DBusMessageIter *iter, const char *key, const char *value) +{ + DBusMessageIter entry, variant; + + dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv", &entry); + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); + dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, "s", &variant); + dbus_message_iter_append_basic(&variant, DBUS_TYPE_STRING, &value); + dbus_message_iter_close_container(&entry, &variant); + dbus_message_iter_close_container(iter, &entry); +} + +void +e_notify_marshal_dict_byte(DBusMessageIter *iter, const char *key, char value) +{ + DBusMessageIter entry, variant; + + if (!key || !value) return; + + dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, NULL, &entry); + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); + dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, "y", &variant); + dbus_message_iter_append_basic(&variant, DBUS_TYPE_BYTE, &value); + dbus_message_iter_close_container(&entry, &variant); + dbus_message_iter_close_container(iter, &entry); +} + +void +e_notify_marshal_dict_int(DBusMessageIter *iter, const char *key, int value) +{ + DBusMessageIter entry, variant; + + if (!key || !value) return; + + dbus_message_iter_open_container(iter, DBUS_TYPE_DICT_ENTRY, "sv", &entry); + dbus_message_iter_append_basic(&entry, DBUS_TYPE_STRING, &key); + dbus_message_iter_open_container(&entry, DBUS_TYPE_VARIANT, "i", &variant); + dbus_message_iter_append_basic(&variant, DBUS_TYPE_INT32, &value); + dbus_message_iter_close_container(&entry, &variant); + dbus_message_iter_close_container(iter, &entry); +} + +void +e_notify_marshal_string_array(DBusMessageIter *iter, const char **strings) +{ + const char **str; + DBusMessageIter arr; + + dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "s", &arr); + + for (str = strings; *str; str++) + dbus_message_iter_append_basic(&arr, DBUS_TYPE_STRING, str); + + dbus_message_iter_close_container(iter, &arr); +} + +void +e_notify_marshal_string_list_as_array(DBusMessageIter *iter, Ecore_List *strings) +{ + const char *str; + DBusMessageIter arr; + + dbus_message_iter_open_container(iter, DBUS_TYPE_ARRAY, "s", &arr); + + ecore_list_first_goto(strings); + while((str = ecore_list_next(strings))) + dbus_message_iter_append_basic(&arr, DBUS_TYPE_STRING, &str); + + dbus_message_iter_close_container(iter, &arr); +} + +Ecore_List * +e_notify_unmarshal_string_array_as_list(DBusMessageIter *iter, DBusError *err) +{ + Ecore_List *strings; + char *sig; + int ret; + DBusMessageIter arr; + + sig = dbus_message_iter_get_signature(iter); + ret = !strcmp(sig, "as"); + dbus_free(sig); + if (!ret) return NULL; + + strings = ecore_list_new(); + ecore_list_free_cb_set(strings, ECORE_FREE_CB(free)); //XXX use ecore_string_release? + + dbus_message_iter_recurse(iter, &arr); + while(dbus_message_iter_has_next(&arr)) + { + const char *str; + dbus_message_iter_get_basic(&arr, &str); + ecore_list_append(strings, strdup(str)); //XXX use ecore_string_instance? + dbus_message_iter_next(&arr); + } + return strings; +} + + + +DBusMessage * +e_notify_marshal_get_capabilities() +{ + DBusMessage *msg; + + msg = e_notification_call_new("GetCapabilities"); + return msg; +} + +DBusMessage * +e_notify_marshal_get_capabilities_return(DBusMessage *method_call, const char **capabilities) +{ + DBusMessage *msg; + DBusMessageIter iter; + + msg = dbus_message_new_method_return(method_call); + dbus_message_iter_init_append(msg, &iter); + e_notify_marshal_string_array(&iter, capabilities); + + return msg; +} + +void * +e_notify_unmarshal_get_capabilities_return(DBusMessage *msg, DBusError *err) +{ + DBusMessageIter iter; + E_Notification_Return_Get_Capabilities *ret; + + if (!dbus_message_has_signature(msg, "as")) return NULL; + + ret = calloc(1, sizeof(E_Notification_Return_Get_Capabilities)); + dbus_message_iter_init(msg, &iter); + ret->capabilities = e_notify_unmarshal_string_array_as_list(&iter, err); + + return ret; +} + +void +e_notify_free_get_capabilities_return(void *data) +{ + E_Notification_Return_Get_Capabilities *ret = data; + + if (!ret) return; + ecore_list_destroy(ret->capabilities); + free(ret); +} + +DBusMessage * +e_notify_marshal_get_server_information() +{ + DBusMessage *msg; + + msg = e_notification_call_new("GetServerInformation"); + return msg; +} + +DBusMessage * +e_notify_marshal_get_server_information_return(DBusMessage *method_call, const char *name, const char *vendor, const char *version) +{ + DBusMessage *msg; + msg = dbus_message_new_method_return(method_call); + dbus_message_append_args(msg, DBUS_TYPE_STRING, &name, DBUS_TYPE_STRING, &vendor, DBUS_TYPE_STRING, &version, DBUS_TYPE_INVALID); + return msg; +} + +void * +e_notify_unmarshal_get_server_information_return(DBusMessage *msg, DBusError *err) +{ + E_Notification_Return_Get_Server_Information *info; + if (!dbus_message_has_signature(msg, "sss")) return NULL; + + info = calloc(1, sizeof(E_Notification_Return_Get_Server_Information)); + dbus_message_get_args(msg, err, + DBUS_TYPE_STRING, &(info->name), + DBUS_TYPE_STRING, &(info->vendor), + DBUS_TYPE_STRING, &(info->version), + DBUS_TYPE_INVALID + ); + if (dbus_error_is_set(err)) + { + free(info); + return NULL; + } + + return info; +} + +void +e_notify_free_get_server_information_return(void *data) +{ + E_Notification_Return_Get_Server_Information *info = data; + + if (!info) return; + free(info); +} + +DBusMessage * +e_notify_marshal_close_notification(dbus_uint32_t id) +{ + DBusMessage *msg; + + msg = e_notification_call_new("CloseNotification"); + dbus_message_append_args(msg, DBUS_TYPE_UINT32, &id, DBUS_TYPE_INVALID); + return msg; +} + +dbus_uint32_t +e_notify_unmarshal_close_notification(DBusMessage *msg, DBusError *err) +{ + dbus_uint32_t id; + if (!dbus_message_has_signature(msg, "u")) return 0; + dbus_message_get_args(msg, err, DBUS_TYPE_UINT32, &id, DBUS_TYPE_INVALID); + if (err && dbus_error_is_set(err)) + return 0; + + return id; +} + +DBusMessage * +e_notify_marshal_notification_closed_signal(dbus_uint32_t id, dbus_uint32_t reason) +{ + DBusMessage *msg; + msg = dbus_message_new_signal(E_NOTIFICATION_PATH, E_NOTIFICATION_INTERFACE, "NotificationClosed"); + dbus_message_append_args(msg, DBUS_TYPE_UINT32, &id, DBUS_TYPE_UINT32, &reason, DBUS_TYPE_INVALID); + return msg; +} + +E_Notification_Event_Notification_Closed * +e_notify_unmarshal_notification_closed_signal(DBusMessage *msg, DBusError *err) +{ + E_Notification_Event_Notification_Closed *ev; + + if (!dbus_message_has_signature(msg, "uu")) + { + dbus_set_error(err, DBUS_ERROR_INVALID_SIGNATURE, ""); + return NULL; + } + ev = calloc(1, sizeof(E_Notification_Event_Notification_Closed)); + dbus_message_get_args(msg, err, DBUS_TYPE_UINT32, &(ev->notification_id), DBUS_TYPE_UINT32, &(ev->reason), DBUS_TYPE_INVALID); + if (dbus_error_is_set(err)) + { + free(ev); + return NULL; + } + return ev; +} + +DBusMessage * +e_notify_marshal_action_invoked_signal(dbus_uint32_t id, const char *action_id) +{ + DBusMessage *msg; + msg = dbus_message_new_signal(E_NOTIFICATION_PATH, E_NOTIFICATION_INTERFACE, "ActionInvoked"); + dbus_message_append_args(msg, DBUS_TYPE_UINT32, &id, DBUS_TYPE_STRING, &action_id, DBUS_TYPE_INVALID); + return msg; +} + +E_Notification_Event_Action_Invoked * +e_notify_unmarshal_action_invoked_signal(DBusMessage *msg, DBusError *err) +{ + E_Notification_Event_Action_Invoked *ev; + + if (!dbus_message_has_signature(msg, "us")) + { + dbus_set_error(err, DBUS_ERROR_INVALID_SIGNATURE, ""); + return NULL; + } + ev = calloc(1, sizeof(E_Notification_Event_Action_Invoked)); + dbus_message_get_args(msg, err, DBUS_TYPE_UINT32, &(ev->notification_id), DBUS_TYPE_STRING, &(ev->action_id), DBUS_TYPE_INVALID); + if (dbus_error_is_set(err)) + { + free(ev); + return NULL; + } + return ev; +} + +DBusMessage * +e_notify_marshal_notify(E_Notification *n) +{ + DBusMessage *msg; + DBusMessageIter iter, sub; + + if (!n->app_name) n->app_name = strdup(""); + if (!n->app_icon) n->app_icon = strdup(""); + if (!n->summary) n->summary = strdup(""); + if (!n->body) n->body = strdup(""); + + msg = e_notification_call_new("Notify"); + dbus_message_append_args(msg, + DBUS_TYPE_STRING, &(n->app_name), + DBUS_TYPE_UINT32, &(n->replaces_id), + DBUS_TYPE_STRING, &(n->app_icon), + DBUS_TYPE_STRING, &(n->summary), + DBUS_TYPE_STRING, &(n->body), + DBUS_TYPE_INVALID + ); + + dbus_message_iter_init_append(msg, &iter); + dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "s", &sub); + if (n->actions) + { + E_Notification_Action *action; + ecore_list_first_goto(n->actions); + while ((action = ecore_list_next(n->actions))) + { + dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &(action->id)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_STRING, &(action->name)); + } + } + dbus_message_iter_close_container(&iter, &sub); + + /* hints */ + dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY, "{sv}", &sub); + if (n->hints.urgency) /* we only need to send this if its non-zero*/ + e_notify_marshal_dict_byte(&sub, "urgency", n->hints.urgency); + if (n->hints.category) + e_notify_marshal_dict_string(&sub, "category", n->hints.category); + if (n->hints.desktop) + e_notify_marshal_dict_string(&sub, "desktop_entry", n->hints.desktop); + if (n->hints.image_data) + e_notify_marshal_dict_variant(&sub, "image_data", "(iiibiiay)", E_DBUS_VARIANT_MARSHALLER(e_notify_marshal_hint_image), n->hints.image_data); + if (n->hints.icon_data) + e_notify_marshal_dict_variant(&sub, "icon_data", "(iiibiiay)", E_DBUS_VARIANT_MARSHALLER(e_notify_marshal_hint_image), n->hints.icon_data); + if (n->hints.sound_file) + e_notify_marshal_dict_string(&sub, "sound_file", n->hints.sound_file); + if (n->hints.suppress_sound) /* we only need to send this if its true */ + e_notify_marshal_dict_byte(&sub, "suppress_sound", n->hints.suppress_sound); + if (n->hints.x > -1 && n->hints.y > -1) + { + e_notify_marshal_dict_int(&sub, "x", n->hints.x); + e_notify_marshal_dict_int(&sub, "y", n->hints.y); + } + + dbus_message_iter_close_container(&iter, &sub); + dbus_message_iter_append_basic(&iter, DBUS_TYPE_INT32, &(n->expire_timeout)); + return msg; +} + +E_Notification * +e_notify_unmarshal_notify(DBusMessage *msg, DBusError *err) +{ + E_Notification *n; + const char *s_val; + dbus_uint32_t u_val; + dbus_int32_t i_val; + DBusMessageIter iter; + if (!dbus_message_has_signature(msg, "susssasa{sv}i")) return NULL; + + n = e_notification_new(); + if (!n) return NULL; + dbus_message_iter_init(msg, &iter); + + dbus_message_iter_get_basic(&iter, &s_val); + e_notification_app_name_set(n, s_val); + dbus_message_iter_next(&iter); + + dbus_message_iter_get_basic(&iter, &u_val); + e_notification_replaces_id_set(n, u_val); + dbus_message_iter_next(&iter); + + dbus_message_iter_get_basic(&iter, &s_val); + e_notification_app_icon_set(n, s_val); + dbus_message_iter_next(&iter); + + dbus_message_iter_get_basic(&iter, &s_val); + e_notification_summary_set(n, s_val); + dbus_message_iter_next(&iter); + + dbus_message_iter_get_basic(&iter, &s_val); + e_notification_body_set(n, s_val); + dbus_message_iter_next(&iter); + + e_notify_unmarshal_notify_actions(n, &iter); + dbus_message_iter_next(&iter); + + e_notify_unmarshal_notify_hints(n, &iter); + dbus_message_iter_next(&iter); + + dbus_message_iter_get_basic(&iter, &i_val); + e_notification_timeout_set(n, i_val); + + return n; +} + +DBusMessage * +e_notify_marshal_notify_return(DBusMessage *method_call, dbus_uint32_t notification_id) +{ + DBusMessage *msg; + msg = dbus_message_new_method_return(method_call); + dbus_message_append_args(msg, DBUS_TYPE_UINT32, ¬ification_id, DBUS_TYPE_INVALID); + return msg; +} + +void * +e_notify_unmarshal_notify_return(DBusMessage *msg, DBusError *err) +{ + E_Notification_Return_Notify *ret; + ret = calloc(1, sizeof(E_Notification_Return_Notify)); + dbus_message_get_args(msg, err, DBUS_TYPE_UINT32, &(ret->notification_id), DBUS_TYPE_INVALID); + if (dbus_error_is_set(err)) + { + free(ret); + return NULL; + } + return ret; +} + +void +e_notify_free_notify_return(void *data) +{ + E_Notification_Return_Notify *ret = data; + + if (!ret) return; + free(ret); +} + +void +e_notify_unmarshal_notify_actions(E_Notification *n, DBusMessageIter *iter) +{ + DBusMessageIter arr; + const char *id, *name; + dbus_message_iter_recurse(iter, &arr); + while (dbus_message_iter_has_next(&arr)) + { + dbus_message_iter_get_basic(&arr, &id); + dbus_message_iter_next(&arr); + dbus_message_iter_get_basic(&arr, &name); + dbus_message_iter_next(&arr); + e_notification_action_add(n, id, name); + } +} + +void +e_notify_unmarshal_notify_hints(E_Notification *n, DBusMessageIter *iter) +{ + DBusMessageIter arr; + const char *key; + int x_set = 0, y_set = 0; + int x, y; + dbus_message_iter_recurse(iter, &arr); + + if (dbus_message_iter_get_arg_type(&arr) == DBUS_TYPE_INVALID) + return; + + do + { + DBusMessageIter dict; + dbus_message_iter_recurse(&arr, &dict); + do + { + DBusMessageIter variant; + const char *s_val; + char y_val; + dbus_bool_t b_val; + + dbus_message_iter_get_basic(&dict, &key); + dbus_message_iter_next(&dict); + dbus_message_iter_recurse(&dict, &variant); + + if (!strcmp(key, "urgency")) + { + dbus_message_iter_get_basic(&variant, &y_val); + e_notification_hint_urgency_set(n, y_val); + } + else if (!strcmp(key, "category")) + { + dbus_message_iter_get_basic(&variant, &s_val); + e_notification_hint_category_set(n, s_val); + } + else if (!strcmp(key, "desktop-entry")) + { + e_notification_hint_desktop_set(n, s_val); + } + else if (!strcmp(key, "sound-file")) + { + dbus_message_iter_get_basic(&variant, &s_val); + e_notification_hint_sound_file_set(n, s_val); + } + else if (!strcmp(key, "suppress-sound")) + { + dbus_message_iter_get_basic(&variant, &b_val); + e_notification_hint_suppress_sound_set(n, b_val); + } + else if (!strcmp(key, "x")) + { + dbus_message_iter_get_basic(&variant, &x); + x_set = 1; + } + else if (!strcmp(key, "y")) + { + dbus_message_iter_get_basic(&variant, &y); + y_set = 1; + } + else if (!strcmp(key, "image_data")) + { + dbus_message_iter_recurse(&dict, &variant); + n->hints.image_data = e_notify_unmarshal_hint_image(&variant); + } + else if (!strcmp(key, "icon_data")) + { + dbus_message_iter_recurse(&dict, &variant); + n->hints.icon_data = e_notify_unmarshal_hint_image(&variant); + } + } + while (dbus_message_iter_next(&dict)); + } + while (dbus_message_iter_next(&arr)); + + if (x_set && y_set) + e_notification_hint_xy_set(n, x, y); +} + +void +e_notify_marshal_hint_image(DBusMessageIter *iter, E_Notification_Image *img) +{ + DBusMessageIter sub, arr; + int data_len = 0; + + data_len = ((img->height - 1) * img->rowstride) + (img->width * ((img->channels * (img->bits_per_sample + 7)) / 8)); + dbus_message_iter_open_container(iter, DBUS_TYPE_STRUCT, NULL, &sub); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_INT32, &(img->width)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_INT32, &(img->height)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_INT32, &(img->rowstride)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_BOOLEAN, &(img->has_alpha)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_INT32, &(img->bits_per_sample)); + dbus_message_iter_append_basic(&sub, DBUS_TYPE_INT32, &(img->channels)); + dbus_message_iter_open_container(&sub, DBUS_TYPE_ARRAY, NULL, &arr); + dbus_message_iter_append_fixed_array(&arr, DBUS_TYPE_BYTE, &(img->data), data_len); + dbus_message_iter_close_container(&sub, &arr); +} + +E_Notification_Image * +e_notify_unmarshal_hint_image(DBusMessageIter *iter) +{ + DBusMessageIter sub, arr; + char *byte_array; + int array_len; + E_Notification_Image *img; + char *sig; + int sig_matches; + + sig = dbus_message_iter_get_signature(iter); + sig_matches = strcmp(sig, "(iiibiiay)"); + dbus_free(sig); + if (sig_matches) return NULL; + + img = e_notification_image_new(); + if (!img) return NULL; + + dbus_message_iter_recurse(iter, &sub); + dbus_message_iter_get_basic(&sub, &(img->width)); + dbus_message_iter_next(&sub); + dbus_message_iter_get_basic(&sub, &(img->height)); + dbus_message_iter_next(&sub); + dbus_message_iter_get_basic(&sub, &(img->rowstride)); + dbus_message_iter_next(&sub); + dbus_message_iter_get_basic(&sub, &(img->has_alpha)); + dbus_message_iter_next(&sub); + dbus_message_iter_get_basic(&sub, &(img->bits_per_sample)); + dbus_message_iter_next(&sub); + dbus_message_iter_get_basic(&sub, &(img->channels)); + dbus_message_iter_next(&sub); + + dbus_message_iter_recurse(&sub, &arr); + dbus_message_iter_get_fixed_array(&arr, &(byte_array), &array_len); + img->data = malloc(array_len); + memcpy(img->data, byte_array, array_len); + + return img; +} + diff --git a/src/lib/notification/notification-spec-0.9.txt b/src/lib/notification/notification-spec-0.9.txt new file mode 100644 index 0000000..f392c8c --- /dev/null +++ b/src/lib/notification/notification-spec-0.9.txt @@ -0,0 +1,827 @@ + Desktop Notifications Specification + + Mike Hearn + + <[1]mike@navi.cx> + + + Christian Hammond + + <[2]chipx86@chipx86.com> + + + Version 0.9 + + Revision History + Revision 0.9 15 January 2006 Revised by: cdh + Clarify the naming for the application IDs. Put back a number of things + that probably shouldn't have been removed from the spec. + Revision 0.8 23 September 2005 Revised by: J5 + Major overhaul of spec to work with the newer D-Bus recursive type system. + Simplify protocol. Changed the verbage notification type to category + Revision 0.7 28 July 2005 Revised by: cdh + Added "x" and "y" hints. Talk about the variant type for hint values. + Revision 0.6 1 April 2005 Revised by: cdh + Updated to work with D-BUS 0.31+. + Revision 0.5 2 October 2004 Revised by: cdh + Added a "suppress-sound" hint. Added a "sound" capability. Renamed the + "soundfile" hint to sound-file". + Revision 0.4 29 September 2004 Revised by: cdh + Added image support in markup, and made the restrictions on markup more + clear. Removed the High urgency. Added new notification types. Fixed + notification expiration. + Revision 0.3 15 September 2004 Revised by: cdh + Added hint and notification type sections + Revision 0.2 foo Revised by: mh + Added replaces field to protocol + Revision 0.1 foo Revised by: mh + Initial version + + -------------------------------------------------------------------------- + + Table of Contents + + 1. [3]Introduction + + 2. [4]Basic Design + + 3. [5]Backwards Compatibility + + 4. [6]Markup + + 4.1. [7]Hyperlinks + + 4.2. [8]Images + + 5. [9]Icons + + 6. [10]Categories + + 7. [11]Urgency Levels + + 8. [12]Hints + + 9. [13]D-BUS Protocol + + 9.1. [14]Message commands + + 9.1.1. + [15]org.freedesktop.Notifications.GetCapabilities + + 9.1.2. [16]org.freedesktop.Notifications.Notify + + 9.1.3. + [17]org.freedesktop.Notifications.CloseNotification + + 9.1.4. + [18]org.freedesktop.Notifications.GetServerInformation + + 9.2. [19]Signals + + 9.2.1. + [20]org.freedesktop.Notifications.NotificationClosed + + 9.2.2. + [21]org.freedesktop.Notifications.ActionInvoked + +1. Introduction + + This is a draft standard for a desktop notifications service, through + which applications can generate passive popups (sometimes known as + "poptarts") to notify the user in an asynchronous manner of events. + + This specification explicitly does not include other types of + notification presentation such as modal message boxes, window manager + decorations or window list annotations. + + Example use cases include: + + * Presence changes in IM programs: for instance, MSN Messenger on + Windows pioneered the use of passive popups to indicate presence + changes. + + * Scheduled alarm + + * Completed file transfer + + * New mail notification + + * Low disk space/battery warnings + + -------------------------------------------------------------------------- + +2. Basic Design + + In order to ensure that multiple notifications can easily be displayed + at once, and to provide a convenient implementation, all notifications are + controlled by a single session-scoped service which exposes a D-BUS + interface. + + On startup, a conforming implementation should take the + org.freedesktop.Notifications service on the session bus. This service + will be referred to as the "notification server" or just "the server" in + this document. It can optionally be activated automatically by the bus + process, however this is not required and notification server clients must + not assume that it is available. + + The server should implement the org.freedesktop.Notifications interface + on an object with the path "/org/freedesktop/Notifications". This is the + only interface required by this version of the specification. + + A notification has the following components: + + Table 1. Notification Components + + +------------------------------------------------------------------------+ + | Component | Description | + |--------------------+---------------------------------------------------| + | | This is the optional name of the application | + | | sending the notification. This should be the | + | Application Name | application's formal name, rather than some sort | + | | of ID. An example would be "FredApp E-Mail | + | | Client," rather than "fredapp-email-client." | + |--------------------+---------------------------------------------------| + | Replaces ID | An optional ID of an existing notification that | + | | this notification is intended to replace. | + |--------------------+---------------------------------------------------| + | | The notification icon. This is represented | + | | either as a URI (file:// is the only URI schema | + | Notification Icon | supported right now) or a name in a | + | | freedesktop.org-compliant icon theme (not a GTK+ | + | | stock ID). | + |--------------------+---------------------------------------------------| + | | This is a single line overview of the | + | | notification. For instance, "You have mail" or "A | + | | friend has come online". It should generally not | + | Summary | be longer than 40 characters, though this is not | + | | a requirement, and server implementations should | + | | word wrap if necessary. The summary must be | + | | encoded using UTF-8. | + |--------------------+---------------------------------------------------| + | | | + | | | + | | This is a multi-line body of text. Each line is | + | | a paragraph, server implementations are free to | + | | word wrap them as they see fit. | + | Body | | + | | The body may contain simple markup as specified | + | | in [22]Markup. It must be encoded using UTF-8. | + | | | + | | If the body is omitted, just the summary is | + | | displayed. | + |--------------------+---------------------------------------------------| + | | | + | | | + | | The actions send a request message back to the | + | | notification client when invoked. This | + | | functionality may not be implemented by the | + | | notification server, conforming clients should | + | | check if it is available before using it (see the | + | | GetCapabilities message in [23]Protocol). An | + | | implementation is free to ignore any requested by | + | | the client. As an example one possible rendering | + | | of actions would be as buttons in the | + | Actions | notification popup. | + | | | + | | Actions are sent over as a list of pairs. Each | + | | even element in the list (starting at index 0) | + | | represents the identifier for the action. Each | + | | odd element in the list is the localized string | + | | that will be displayed to the user. | + | | | + | | The default action (usually invoked my clicking | + | | the notification) should have a key named | + | | "default". The name can be anything, though | + | | implementations are free not to display it. | + |--------------------+---------------------------------------------------| + | | | + | | | + | | See [24]Hints. | + | | | + | | Beyond the core protocol is the hints table. A | + | | couple of core elements have been moved to hints | + | | mostly because in a huge number of cases their | + | | default values would be sufficent. The elements | + | | moved to hints are: | + | | | + | | Elements Moved to Hints | + | | | + | | Element: Category ID | + | | | + | Hints | Description: An optional ID representing the type | + | | of notification (the name has been changed from | + | | Notification Type ID in pervious versions). See | + | | [25]Categories. | + | | | + | | Element: Urgency Level | + | | | + | | Description: The urgency of the notification. See | + | | [26]Urgency Levels. (Defaults to 1 - Normal) | + | | | + | | Element: Icon Data | + | | | + | | Description: Instead of overloading the icon | + | | field we now have an icon_data field that is used | + | | when icon is blank. | + |--------------------+---------------------------------------------------| + | | | + | | | + | | The timeout time in milliseconds since the | + | | display of the notification at which the | + | | notification should automatically close. | + | Expiration Timeout | | + | | If -1, the notification's expiration time is | + | | dependent on the notification server's settings, | + | | and may vary for the type of notification. | + | | | + | | If 0, the notification never expires. | + +------------------------------------------------------------------------+ + + Each notification displayed is allocated a unique ID by the server. This + is unique within the session. While the notification server is running, + the ID will not be recycled unless the capacity of a uint32 is exceeded. + + This can be used to hide the notification before the expiration timeout + is reached. It can also be used to atomically replace the notification + with another. This allows you to (for instance) modify the contents of a + notification while it's on-screen. + + -------------------------------------------------------------------------- + +3. Backwards Compatibility + + Clients should try and avoid making assumptions about the presentation + and abilities of the notification server. The message content is the most + important thing. + + Clients can check with the server what capabilities are supported using + the GetCapabilities message. See [27]Protocol. + + If a client requires a response from a passive popup, it should be coded + such that a non-focus-stealing message box can be used in the case that + the notification server does not support this feature. + + -------------------------------------------------------------------------- + +4. Markup + + Body text may contain markup. The markup is XML-based, and consists of a + small subset of HTML along with a few additional tags. + + The following tags should be supported by the notification server. + Though it is optional, it is recommended. Notification servers that do not + support these tags should filter them out. + + +------------------------------------------+ + | ... | Bold | + |------------------------------+-----------| + | ... | Italic | + |------------------------------+-----------| + | ... | Underline | + |------------------------------+-----------| + | ... | Hyperlink | + |------------------------------+-----------| + | ... | Image | + +------------------------------------------+ + + A full-blown HTML implementation is not required of this spec, and + notifications should never take advantage of tags that are not listed + above. As notifications are not a substitute for web browsers or complex + dialogs, advanced layout is not necessary, and may in fact limit the + number of systems that notification services can run on, due to memory + usage and screen space. Such examples are PDAs, certain cell phones, and + slow PCs or laptops with little memory. + + For the same reason, a full XML or XHTML implementation using XSLT or + CSS stylesheets is not part of this specification. Information that must + be presented in a more complex form should use an application-specific + dialog, a web browser, or some other display mechanism. + + The tags specified above mark up the content in a way that allows them + to be stripped out on some implementations without impacting the actual + content. + + -------------------------------------------------------------------------- + + 4.1. Hyperlinks + + Hyperlinks allow for linking one or more words to a URI. There is no + requirement to allow for images to be linked, and it is highly suggested + that implementations do not allow this, as there is no clean-looking, + standard visual indicator for a hyperlinked image. + + Hyperlinked text should appear in the standard blue underline format. + + Hyperlinks cannot function as a replacement for actions. They are used + to link to local directories or remote sites using standard URI schemes. + + Implementations are not required to support hyperlinks. + + -------------------------------------------------------------------------- + + 4.2. Images + + Images may be placed in the notification, but this should be done with + caution. The image should never exceed 200x100, but this should be thought + of as a maximum size. Images should always have alternative text provided + through the alt="..." attribute. + + Image data cannot be embedded in the message itself. Images referenced + must always be local files. + + Implementations are not required to support images. + + -------------------------------------------------------------------------- + +5. Icons + + A notification can optionally have an icon specified by the Notification + Icon field or by the icon_data hint. + + The icon_data field should be a raw image data structure of signature + (iiibiiay) which describes the width, height, rowstride, has alpha, bits + per sample, channels and image data respectively. + + -------------------------------------------------------------------------- + +6. Categories + + Notifications can optionally have a type indicator. Although neither + client or nor server must support this, some may choose to. Those servers + implementing categories may use them to intelligently display the + notification in a certain way, or group notifications of similar types. + + Categories are in class.specific form. class specifies the generic type + of notification, and specific specifies the more specific type of + notification. + + If a specific type of notification does not exist for your notification, + but the generic kind does, a notification of type class is acceptable. + + Third parties, when defining their own categories, should discuss the + possibility of standardizing on the hint with other parties, preferably in + a place such as the [28]xdg mailing list at [29]freedesktop.org. If it + warrants a standard, it will be added to the table above. If no consensus + is reached, the category should be in the form of "x-vendor.class.name." + + The following table lists standard notifications as defined by this + spec. More will be added in time. + + Table 2. Categories + + +------------------------------------------------------------------------+ + | Type | Description | + |------------------------+-----------------------------------------------| + | "device" | A generic device-related notification that | + | | doesn't fit into any other category. | + |------------------------+-----------------------------------------------| + | "device.added" | A device, such as a USB device, was added to | + | | the system. | + |------------------------+-----------------------------------------------| + | "device.error" | A device had some kind of error. | + |------------------------+-----------------------------------------------| + | "device.removed" | A device, such as a USB device, was removed | + | | from the system. | + |------------------------+-----------------------------------------------| + | "email" | A generic e-mail-related notification that | + | | doesn't fit into any other category. | + |------------------------+-----------------------------------------------| + | "email.arrived" | A new e-mail notification. | + |------------------------+-----------------------------------------------| + | "email.bounced" | A notification stating that an e-mail has | + | | bounced. | + |------------------------+-----------------------------------------------| + | | A generic instant message-related | + | "im" | notification that doesn't fit into any other | + | | category. | + |------------------------+-----------------------------------------------| + | "im.error" | An instant message error notification. | + |------------------------+-----------------------------------------------| + | "im.received" | A received instant message notification. | + |------------------------+-----------------------------------------------| + | "network" | A generic network notification that doesn't | + | | fit into any other category. | + |------------------------+-----------------------------------------------| + | | A network connection notification, such as | + | "network.connected" | successful sign-on to a network service. This | + | | should not be confused with device.added for | + | | new network devices. | + |------------------------+-----------------------------------------------| + | | A network disconnected notification. This | + | "network.disconnected" | should not be confused with device.removed | + | | for disconnected network devices. | + |------------------------+-----------------------------------------------| + | "network.error" | A network-related or connection-related | + | | error. | + |------------------------+-----------------------------------------------| + | | A generic presence change notification that | + | "presence" | doesn't fit into any other category, such as | + | | going away or idle. | + |------------------------+-----------------------------------------------| + | "presence.offline" | An offline presence change notification. | + |------------------------+-----------------------------------------------| + | "presence.online" | An online presence change notification. | + |------------------------+-----------------------------------------------| + | | A generic file transfer or download | + | "transfer" | notification that doesn't fit into any other | + | | category. | + |------------------------+-----------------------------------------------| + | "transfer.complete" | A file transfer or download complete | + | | notification. | + |------------------------+-----------------------------------------------| + | "transfer.error" | A file transfer or download error. | + +------------------------------------------------------------------------+ + + -------------------------------------------------------------------------- + +7. Urgency Levels + + Notifications have an urgency level associated with them. This defines + the importance of the notification. For example, "Joe Bob signed on" would + be a low urgency. "You have new mail" or "A USB device was unplugged" + would be a normal urgency. "Your computer is on fire" would be a critical + urgency. + + Urgency levels are defined as follows: + + Table 3. Urgency Levels + + +--------------------+ + | Type | Description | + |------+-------------| + | 0 | Low | + |------+-------------| + | 1 | Normal | + |------+-------------| + | 2 | Critical | + +--------------------+ + + Developers must use their own judgement when deciding the urgency of a + notification. Typically, if the majority of programs are using the same + level for a specific type of urgency, other applications should follow + them. + + For low and normal urgencies, server implementations may display the + notifications how they choose. They should, however, have a sane + expiration timeout dependent on the urgency level. + + Critical notifications should not automatically expire, as they are + things that the user will most likely want to know about. They should only + be closed when the user dismisses them, for example, by clicking on the + notification. + + -------------------------------------------------------------------------- + +8. Hints + + Hints are a way to provide extra data to a notification server that the + server may be able to make use of. + + Neither clients nor notification servers are required to support any + hints. Both sides should assume that hints are not passed, and should + ignore any hints they do not understand. + + Third parties, when defining their own hints, should discuss the + possibility of standardizing on the hint with other parties, preferably in + a place such as the [30]xdg mailing list at [31]freedesktop.org. If it + warrants a standard, it will be added to the table above. If no consensus + is reached, the hint name should be in the form of "x-vendor-name." + + The value type for the hint dictionary in D-BUS is of the + DBUS_TYPE_VARIANT container type. This allows different data types + (string, integer, boolean, etc.) to be used for hints. When adding a + dictionary of hints, this type must be used, rather than putting the + actual hint value in as the dictionary value. + + The following table lists the standard hints as defined by this + specification. Future hints may be proposed and added to this list over + time. Once again, implementations are not required to support these. + + Table 4. Standard Hints + + +------------------------------------------------------------------------+ + | Name | Value Type | Description | + |------------------+------------+----------------------------------------| + | "urgency" | byte | The urgency level. | + |------------------+------------+----------------------------------------| + | "category" | string | The type of notification this is. | + |------------------+------------+----------------------------------------| + | | | This specifies the name of the | + | | | desktop filename representing the | + | | | calling program. This should be the | + | | | same as the prefix used for the | + | "desktop-entry"> | string | application's .desktop file. An | + | | | example would be "rhythmbox" from | + | | | "rhythmbox.desktop". This can be used | + | | | by the daemon to retrieve the correct | + | | | icon for the application, for logging | + | | | purposes, etc. | + |------------------+------------+----------------------------------------| + | | | This is a raw data image format | + | | | which describes the width, height, | + | "image_data" | (iiibiiay) | rowstride, has alpha, bits per sample, | + | | | channels and image data respectively. | + | | | We use this value if the icon field is | + | | | left blank. | + |------------------+------------+----------------------------------------| + | "sound-file" | string | The path to a sound file to play | + | | | when the notification pops up. | + |------------------+------------+----------------------------------------| + | | | Causes the server to suppress | + | | | playing any sounds, if it has that | + | "suppress-sound" | boolean | ability. This is usually set when the | + | | | client itself is going to play its own | + | | | sound. | + |------------------+------------+----------------------------------------| + | | | Specifies the X location on the | + | "x" | int | screen that the notification should | + | | | point to. The "y" hint must also be | + | | | specified. | + |------------------+------------+----------------------------------------| + | | | Specifies the Y location on the | + | "y" | int | screen that the notification should | + | | | point to. The "x" hint must also be | + | | | specified. | + +------------------------------------------------------------------------+ + + -------------------------------------------------------------------------- + +9. D-BUS Protocol + + The following messages must be supported by all implementations. + + -------------------------------------------------------------------------- + + 9.1. Message commands + + 9.1.1. org.freedesktop.Notifications.GetCapabilities + + STRING_ARRAY org.freedesktop.Notifications.GetCapabilities (void); + + This message takes no parameters. + + It returns an array of strings. Each string describes an optional + capability implemented by the server. The following values are defined by + this spec: + + Table 5. Server Capabilities + + +------------------------------------------------------------------------+ + | | The server will provide the specified actions to | + | "actions" | the user. Even if this cap is missing, actions may | + | | still be specified by the client, however the | + | | server is free to ignore them. | + |-------------------+----------------------------------------------------| + | | Supports body text. Some implementations may | + | "body" | only show the summary (for instance, onscreen | + | | displays, marquee/scrollers) | + |-------------------+----------------------------------------------------| + | "body-hyperlinks" | The server supports hyperlinks in the | + | | notifications. | + |-------------------+----------------------------------------------------| + | "body-images" | The server supports images in the notifications. | + |-------------------+----------------------------------------------------| + | | Supports markup in the body text. If marked up | + | "body-markup" | text is sent to a server that does not give this | + | | cap, the markup will show through as regular text | + | | so must be stripped clientside. | + |-------------------+----------------------------------------------------| + | | The server will render an animation of all the | + | | frames in a given image array. The client may | + | "icon-multi" | still specify multiple frames even if this cap | + | | and/or "icon-static" is missing, however the | + | | server is free to ignore them and use only the | + | | primary frame. | + |-------------------+----------------------------------------------------| + | | Supports display of exactly 1 frame of any given | + | "icon-static" | image array. This value is mutually exclusive with | + | | "icon-multi", it is a protocol error for the | + | | server to specify both. | + |-------------------+----------------------------------------------------| + | | The server supports sounds on notifications. If | + | "sound" | returned, the server must support the "sound-file" | + | | and "suppress-sound" hints. | + +------------------------------------------------------------------------+ + + New vendor-specific caps may be specified as long as they start with + "x-vendor". For instance, "x-gnome-foo-cap". Capability names must not + contain spaces. They are limited to alpha-numeric characters and dashes + ("-"). + + -------------------------------------------------------------------------- + + 9.1.2. org.freedesktop.Notifications.Notify + + UINT32 org.freedesktop.Notifications.Notify (STRING app_name, UINT32 + replaces_id, STRING app_icon, STRING summary, STRING body, ARRAY actions, + DICT hints, INT32 expire_timeout); + + Sends a notification to the notification server. + + Table 6. Notify Parameters + + +------------------------------------------------------------------------+ + | Name | Type | Description | + |----------------+--------+----------------------------------------------| + | app_name | STRING | The optional name of the application | + | | | sending the notification. Can be blank. | + |----------------+--------+----------------------------------------------| + | | | The optional notification ID that this | + | | | notification replaces. The server must | + | | | atomically (ie with no flicker or other | + | | | visual cues) replace the given notification | + | replaces_id | UINT32 | with this one. This allows clients to | + | | | effectively modify the notification while | + | | | it's active. A value of value of 0 means | + | | | that this notification won't replace any | + | | | existing notifications. | + |----------------+--------+----------------------------------------------| + | | | The optional program icon of the calling | + | app_icon | STRING | application. See [32]Icons. Can be an empty | + | | | string, indicating no icon. | + |----------------+--------+----------------------------------------------| + | summary | STRING | The summary text briefly describing the | + | | | notification. | + |----------------+--------+----------------------------------------------| + | body | STRING | The optional detailed body text. Can be | + | | | empty. | + |----------------+--------+----------------------------------------------| + | | | Actions are sent over as a list of pairs. | + | | | Each even element in the list (starting at | + | actions | ARRAY | index 0) represents the identifier for the | + | | | action. Each odd element in the list is the | + | | | localized string that will be displayed to | + | | | the user. | + |----------------+--------+----------------------------------------------| + | | | Optional hints that can be passed to the | + | | | server from the client program. Although | + | | | clients and servers should never assume each | + | hints | DICT | other supports any specific hints, they can | + | | | be used to pass along information, such as | + | | | the process PID or window ID, that the | + | | | server may be able to make use of. See | + | | | [33]Hints. Can be empty. | + |----------------+--------+----------------------------------------------| + | | | | + | | | | + | | | The timeout time in milliseconds since the | + | | | display of the notification at which the | + | expire_timeout | INT32 | notification should automatically close. | + | | | | + | | | If -1, the notification's expiration time | + | | | is dependent on the notification server's | + | | | settings, and may vary for the type of | + | | | notification. If 0, never expire. | + +------------------------------------------------------------------------+ + + If replaces_id is 0, the return value is a UINT32 that represent the + notification. It is unique, and will not be reused unless a MAXINT number + of notifications have been generated. An acceptable implementation may + just use an incrementing counter for the ID. The returned ID is always + greater than zero. Servers must make sure not to return zero as an ID. + + If replaces_id is not 0, the returned value is the same value as + replaces_id. + + -------------------------------------------------------------------------- + + 9.1.3. org.freedesktop.Notifications.CloseNotification + + void org.freedesktop.Notifications.CloseNotification (UINT32 id); + + Causes a notification to be forcefully closed and removed from the + user's view. It can be used, for example, in the event that what the + notification pertains to is no longer relevant, or to cancel a + notification with no expiration time. + + The NotificationClosed signal is emitted by this method. + + If the notification no longer exists, an empty D-BUS Error message is + sent back. + + -------------------------------------------------------------------------- + + 9.1.4. org.freedesktop.Notifications.GetServerInformation + + void org.freedesktop.Notifications.GetServerInformation (out STRING + name, out STRING vendor, out STRING version); + + This message returns the information on the server. Specifically, the + server name, vendor, and version number. + + Table 7. GetServerInformation Return Values + + +------------------------------------------------------------------------+ + | Name | Type | Description | + |---------+--------+-----------------------------------------------------| + | name | STRING | The product name of the server. | + |---------+--------+-----------------------------------------------------| + | vendor | STRING | The vendor name. For example, "KDE," "GNOME," | + | | | "freedesktop.org," or "Microsoft." | + |---------+--------+-----------------------------------------------------| + | version | STRING | The server's version number. | + +------------------------------------------------------------------------+ + + -------------------------------------------------------------------------- + + 9.2. Signals + + 9.2.1. org.freedesktop.Notifications.NotificationClosed + + org.freedesktop.Notifications.NotificationClosed (UINT32 id, UINT32 + reason); + + A completed notification is one that has timed out, or has been + dismissed by the user. + + Table 8. NotificationClosed Parameters + + +------------------------------------------------------------------------+ + | Name | Type | Description | + |--------+--------+------------------------------------------------------| + | id | UINT32 | The ID of the notification that was closed. | + |--------+--------+------------------------------------------------------| + | | | | + | | | | + | | | The reason the notification was closed. | + | | | | + | | | 1 - The notification expired. | + | reason | UINT32 | | + | | | 2 - The notification was dismissed by the user. | + | | | | + | | | 3 - The notification was closed by a call to | + | | | CloseNotification. | + | | | | + | | | 4 - Undefined/reserved reasons. | + +------------------------------------------------------------------------+ + + The ID specified in the signal is invalidated before the signal is sent + and may not be used in any further communications with the server. + + -------------------------------------------------------------------------- + + 9.2.2. org.freedesktop.Notifications.ActionInvoked + + org.freedesktop.Notifications.ActionInvoked (UINT32 id, STRING + action_key); + + This signal is emitted when one of the following occurs: + + * The user performs some global "invoking" action upon a notification. + For instance, clicking somewhere on the notification itself. + + * The user invokes a specific action as specified in the original + Notify request. For example, clicking on an action button. + + Table 9. ActionInvoked Parameters + + +------------------------------------------------------------------------+ + | Name | Type | Description | + |------------+--------+--------------------------------------------------| + | id | UINT32 | The ID of the notification emitting the | + | | | ActionInvoked signal. | + |------------+--------+--------------------------------------------------| + | action_key | STRING | The key of the action invoked. These match the | + | | | keys sent over in the list of actions. | + +------------------------------------------------------------------------+ + + [34]Note Clients should not assume the server will generate this signal. + Some servers may not support user interaction at all, or may not + support the concept of being able to "invoke" a notification. + +References + + Visible links + 1. mailto:mike@navi.cx + 2. mailto:chipx86@chipx86.com + 3. file:///tmp/html-A2Tahl#introduction + 4. file:///tmp/html-A2Tahl#basic-design + 5. file:///tmp/html-A2Tahl#backwards-compat + 6. file:///tmp/html-A2Tahl#markup + 7. file:///tmp/html-A2Tahl#hyperlinks + 8. file:///tmp/html-A2Tahl#images + 9. file:///tmp/html-A2Tahl#icons + 10. file:///tmp/html-A2Tahl#categories + 11. file:///tmp/html-A2Tahl#urgency-levels + 12. file:///tmp/html-A2Tahl#hints + 13. file:///tmp/html-A2Tahl#protocol + 14. file:///tmp/html-A2Tahl#commands + 15. file:///tmp/html-A2Tahl#command-get-capabilities + 16. file:///tmp/html-A2Tahl#command-notify + 17. file:///tmp/html-A2Tahl#command-close-notification + 18. file:///tmp/html-A2Tahl#command-get-server-information + 19. file:///tmp/html-A2Tahl#signals + 20. file:///tmp/html-A2Tahl#signal-notification-closed + 21. file:///tmp/html-A2Tahl#signal-action-invoked + 22. file:///tmp/html-A2Tahl#markup + 23. file:///tmp/html-A2Tahl#protocol + 24. file:///tmp/html-A2Tahl#hints + 25. file:///tmp/html-A2Tahl#categories + 26. file:///tmp/html-A2Tahl#urgency-levels + 27. file:///tmp/html-A2Tahl#protocol + 28. http://freedesktop.org/mailman/listinfo/xdg + 29. http://freedesktop.org/ + 30. http://freedesktop.org/mailman/listinfo/xdg + 31. http://freedesktop.org/ + 32. file:///tmp/html-A2Tahl#icons + 33. file:///tmp/html-A2Tahl#hints diff --git a/src/lib/notification/notification.c b/src/lib/notification/notification.c new file mode 100644 index 0000000..cf2f40d --- /dev/null +++ b/src/lib/notification/notification.c @@ -0,0 +1,402 @@ +#include "E_Notify.h" +#include +#include +#include +#include +#include +#include "e_notify_private.h" + +/* private functions */ +static Ecore_List * e_notification_action_list_new(); +static E_Notification_Action *e_notification_action_new(const char *id, const char *name); +static void e_notification_action_free(E_Notification_Action *act); + +/* (con|de)structor */ + +EAPI E_Notification * +e_notification_full_new(const char *app_name, unsigned int replaces_id, const char *app_icon, const char *summary, const char *body, int expire_timeout) +{ + E_Notification *n; + + n = e_notification_new(); + if (!n) return NULL; + + if (app_name) n->app_name = strdup(app_name); + n->replaces_id = replaces_id; + if (app_icon) n->app_icon = strdup(app_icon); + if (summary) n->summary = strdup(summary); + if (body) n->body = strdup(body); + n->expire_timeout = expire_timeout; + + + return n; +} + +EAPI E_Notification * +e_notification_new() +{ + E_Notification *n; + n = calloc(1, sizeof(E_Notification)); + if (!n) return NULL; + n->refcount = 1; + + return n; +} + +EAPI void +e_notification_ref(E_Notification *n) +{ + n->refcount++; +} + +EAPI void +e_notification_unref(E_Notification *n) +{ + if (--n->refcount == 0) e_notification_free(n); +} + +EAPI void +e_notification_free(E_Notification *n) +{ + if (!n) return; + + if (n->app_name) free(n->app_name); + if (n->app_icon) free(n->app_icon); + if (n->summary) free(n->summary); + if (n->body) free(n->body); + + if (n->actions) ecore_list_destroy(n->actions); + + if (n->hints.category) free(n->hints.category); + if (n->hints.desktop) free(n->hints.desktop); + if (n->hints.sound_file) free(n->hints.sound_file); + if (n->hints.image_data) e_notification_image_free(n->hints.image_data); + if (n->hints.icon_data) e_notification_image_free(n->hints.icon_data); + free(n); +} + +/* mutators */ +EAPI void +e_notification_id_set(E_Notification *note, unsigned int id) +{ + note->id = id; +} + +EAPI void +e_notification_app_name_set(E_Notification *note, const char *app_name) +{ + if (note->app_name) free(note->app_name); + if (app_name) note->app_name = strdup(app_name); +} + +EAPI void +e_notification_app_icon_set(E_Notification *note, const char *app_icon) +{ + if (note->app_icon) free(note->app_icon); + if (app_icon) note->app_icon = strdup(app_icon); +} + +EAPI void +e_notification_summary_set(E_Notification *note, const char *summary) +{ + if (note->summary) free(note->summary); + if (summary) note->summary = strdup(summary); +} + +EAPI void +e_notification_body_set(E_Notification *note, const char *body) +{ + if (note->body) free(note->body); + if (body) note->body = strdup(body); +} + +EAPI void +e_notification_action_add(E_Notification *n, const char *action_id, const char *action_name) +{ + E_Notification_Action *a; + + if (!n->actions) + n->actions = e_notification_action_list_new(); + + a = e_notification_action_new(action_id, action_name); + ecore_list_append(n->actions, a); +} + + +EAPI void +e_notification_replaces_id_set(E_Notification *note, int replaces_id) +{ + note->replaces_id = replaces_id; +} + +EAPI void +e_notification_timeout_set(E_Notification *note, int timeout) +{ + note->expire_timeout = timeout; +} + +EAPI void +e_notification_closed_set(E_Notification *note, unsigned char closed) +{ + note->closed = closed; +} + + +/* accessors */ +EAPI unsigned int +e_notification_id_get(E_Notification *note) +{ + return note->id; +} + +EAPI const char * +e_notification_app_name_get(E_Notification *note) +{ + return note->app_name; +} + +EAPI const char * +e_notification_app_icon_get(E_Notification *note) +{ + return note->app_icon; +} + +EAPI const char * +e_notification_summary_get(E_Notification *note) +{ + return note->summary; +} + +EAPI const char * +e_notification_body_get(E_Notification *note) +{ + return note->body; +} + +EAPI Ecore_List * +e_notification_actions_get(E_Notification *note) +{ + return note->actions; +} + +EAPI int +e_notification_replaces_id_get(E_Notification *note) +{ + return note->replaces_id; +} + +EAPI int +e_notification_timeout_get(E_Notification *note) +{ + return note->expire_timeout; +} + +EAPI unsigned char +e_notification_closed_get(E_Notification *note) +{ + return note->closed; +} + +/***** actions *****/ + +static Ecore_List * +e_notification_action_list_new() +{ + Ecore_List *alist; + alist = ecore_list_new(); + ecore_list_free_cb_set(alist, (Ecore_Free_Cb)e_notification_action_free); + return alist; +} + +static E_Notification_Action * +e_notification_action_new(const char *id, const char *name) +{ + E_Notification_Action *act; + act = malloc(sizeof(E_Notification_Action)); + act->id = strdup(id); + act->name = strdup(name); + return act; +} + + +static void +e_notification_action_free(E_Notification_Action *act) +{ + if (!act) return; + if (act->id) free(act->id); + if (act->name) free(act->name); + free(act); +} + + +/********* hints *******/ + + +EAPI void +e_notification_hint_urgency_set(E_Notification *n, char urgency) +{ + n->hints.urgency = urgency; + n->hint_flags |= E_NOTIFICATION_HINT_URGENCY; +} + +EAPI void +e_notification_hint_category_set(E_Notification *n, const char *category) +{ + if (n->hints.category) free(n->hints.category); + n->hints.category = strdup(category); + n->hint_flags |= E_NOTIFICATION_HINT_CATEGORY; +} + +EAPI void +e_notification_hint_desktop_set(E_Notification *n, const char *desktop) +{ + if (n->hints.desktop) free(n->hints.desktop); + n->hints.desktop = strdup(desktop); + n->hint_flags |= E_NOTIFICATION_HINT_DESKTOP; +} + +EAPI void +e_notification_hint_sound_file_set(E_Notification *n, const char *sound_file) +{ + if (n->hints.sound_file) free(n->hints.sound_file); + n->hints.sound_file = strdup(sound_file); + n->hint_flags |= E_NOTIFICATION_HINT_SOUND_FILE; +} + +EAPI void +e_notification_hint_suppress_sound_set(E_Notification *n, char suppress_sound) +{ + n->hints.suppress_sound = suppress_sound; + n->hint_flags |= E_NOTIFICATION_HINT_SUPPRESS_SOUND; +} + +EAPI void +e_notification_hint_xy_set(E_Notification *n, int x, int y) +{ + n->hints.x = x; + n->hints.y = y; + n->hint_flags |= E_NOTIFICATION_HINT_XY; +} + +EAPI void +e_notification_hint_image_data_set(E_Notification *n, E_Notification_Image *image) +{ + n->hints.image_data = image; +} + + +EAPI char +e_notification_hint_urgency_get(E_Notification *n) +{ + return (n->hint_flags & E_NOTIFICATION_HINT_URGENCY ? n->hints.urgency : 1); +} + +EAPI const char * +e_notification_hint_category_get(E_Notification *n) +{ + return n->hints.category; +} + +EAPI const char * +e_notification_hint_desktop_get(E_Notification *n) +{ + return n->hints.desktop; +} + +EAPI const char * +e_notification_hint_sound_file_get(E_Notification *n) +{ + return n->hints.sound_file; +} + +EAPI char +e_notification_hint_suppress_sound_get(E_Notification *n) +{ + return n->hints.suppress_sound; +} + +EAPI int +e_notification_hint_xy_get(E_Notification *n, int *x, int *y) +{ + if (x) *x = n->hints.x; + if (y) *y = n->hints.y; + + return (n->hint_flags & E_NOTIFICATION_HINT_XY ? 1 : 0); +} + +EAPI E_Notification_Image * +e_notification_hint_image_data_get(E_Notification *n) +{ + return n->hints.image_data; +} + + +EAPI E_Notification_Image * +e_notification_hint_icon_data_get(E_Notification *n) +{ + return n->hints.icon_data; +} + +EAPI E_Notification_Image * +e_notification_image_new() +{ + E_Notification_Image *img; + + img = calloc(1, sizeof(E_Notification_Image)); + return img; +} + +EAPI void +e_notification_image_free(E_Notification_Image *img) +{ + if (img->data) free(img->data); + if (img) free(img); +} + + +EAPI Evas_Object * +e_notification_image_evas_object_add(Evas *evas, E_Notification_Image *img) +{ + int *imgdata; + Evas_Object *o = NULL; + + if (!evas || !img) return NULL; + + o = evas_object_image_add(evas); + evas_object_resize(o, img->width, img->height); + evas_object_image_alpha_set(o, img->has_alpha); + evas_object_image_size_set(o, img->width, img->height); + evas_object_image_fill_set(o, 0, 0, img->width, img->height); + imgdata = evas_object_image_data_get(o, 1); + + if (img->bits_per_sample == 8) + { + /* Although not specified. + * The data are very likely to come from a GdkPixbuf + * which align each row on a 4-bytes boundary when using RGB. + * And is RGBA otherwise. + */ + int x, y; + int32_t *dest; + unsigned char *src; + for (y = 0; y < img->height; y++) + { + src = img->data + y * img->rowstride; + dest = imgdata + y * img->width; + + for (x = 0; x < img->width; x++, src += img->channels, dest++) + { + *dest = *(src + 2); + *dest += *(src + 1) << 8; + *dest += *(src + 0) << 16; + if (img->has_alpha) + *dest += *(src + 3) << 24; + else + *dest += 255 << 24; + } + } + } + evas_object_image_data_update_add(o, 0, 0, img->width, img->height); + evas_object_image_data_set(o, imgdata); + return o; +} -- 2.7.4