From b56d3ee36923705345c49454934dda4b253eed29 Mon Sep 17 00:00:00 2001 From: "jk7744.park" Date: Tue, 8 Sep 2015 22:40:10 +0900 Subject: [PATCH] tizen 2.3.1 release --- CMakeLists.txt | 60 +- README | 1 + debian/changelog | 167 -- debian/compat | 1 - debian/control | 21 - debian/copyright | 7 - debian/dirs | 2 - debian/docs | 0 debian/rules | 118 - debian/tel-plugin-dbus-tapi.install.in | 2 - introspection/call.xml | 89 +- introspection/gen.sh | 2 +- introspection/gps.xml | 70 + introspection/manager.xml | 3 + introspection/modem.xml | 19 +- introspection/network.xml | 202 +- introspection/oem.xml | 29 + introspection/phonebook.xml | 11 + introspection/sat.xml | 104 +- introspection/sim.xml | 105 +- introspection/sms.xml | 46 +- introspection/ss.xml | 40 + packaging/tel-plugin-dbus_tapi.spec | 55 +- res/tapi.conf | 20 - src/call.c | 1108 +++++++--- src/common.c | 172 +- src/common.h | 102 +- src/desc-dbus.c | 447 ++-- src/gps.c | 545 +++++ src/modem.c | 367 +++- src/network.c | 1374 ++++++++---- src/oem.c | 155 ++ src/phonebook.c | 458 +++- src/sap.c | 127 +- src/sat.c | 1900 ++++++++++------ src/sat_manager.c | 3791 +++++++++++++++++++++++--------- src/sat_manager.h | 43 +- src/sat_ui_support/TelCall.h | 174 +- src/sat_ui_support/TelDefines.h | 2 +- src/sat_ui_support/TelErr.h | 2 +- src/sat_ui_support/TelSat.h | 11 +- src/sat_ui_support/TelSatEnvelope.h | 2 +- src/sat_ui_support/TelSatObj.h | 4 +- src/sat_ui_support/TelSatProactvCmd.h | 2 +- src/sat_ui_support/TelSim.h | 492 ++++- src/sat_ui_support/TelSs.h | 101 +- src/sat_ui_support/sat_ui_support.c | 1214 ++++++++-- src/sat_ui_support/sat_ui_support.h | 25 +- src/sat_util.c | 714 ------ src/sim.c | 2644 +++++++++++++++++----- src/sms.c | 1050 +++++---- src/ss.c | 583 ++++- test/network-search.sh | 3 + 53 files changed, 13118 insertions(+), 5668 deletions(-) mode change 100644 => 100755 CMakeLists.txt create mode 100644 README delete mode 100644 debian/changelog delete mode 100644 debian/compat delete mode 100644 debian/control delete mode 100644 debian/copyright delete mode 100644 debian/dirs delete mode 100644 debian/docs delete mode 100755 debian/rules delete mode 100644 debian/tel-plugin-dbus-tapi.install.in mode change 100644 => 100755 introspection/call.xml create mode 100644 introspection/gps.xml create mode 100644 introspection/oem.xml mode change 100644 => 100755 packaging/tel-plugin-dbus_tapi.spec delete mode 100644 res/tapi.conf mode change 100644 => 100755 src/call.c mode change 100644 => 100755 src/common.c mode change 100644 => 100755 src/desc-dbus.c create mode 100755 src/gps.c mode change 100644 => 100755 src/network.c create mode 100644 src/oem.c mode change 100644 => 100755 src/phonebook.c mode change 100644 => 100755 src/sat.c mode change 100644 => 100755 src/sat_ui_support/TelCall.h mode change 100644 => 100755 src/sat_ui_support/TelSs.h mode change 100644 => 100755 src/sat_ui_support/sat_ui_support.c mode change 100644 => 100755 src/sat_ui_support/sat_ui_support.h delete mode 100644 src/sat_util.c mode change 100644 => 100755 src/sim.c mode change 100644 => 100755 src/sms.c mode change 100644 => 100755 src/ss.c create mode 100755 test/network-search.sh diff --git a/CMakeLists.txt b/CMakeLists.txt old mode 100644 new mode 100755 index ca70b79..3a61b8e --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,26 +8,51 @@ SET(LIBDIR "\${prefix}/lib") SET(INCLUDEDIR "\${prefix}/include") SET(PKGCONFIGDIR "${PREFIX}/lib/pkgconfig" CACHE PATH PKGCONFIGDIR) SET(CMAKE_INSTALL_PREFIX "${PREFIX}") +SET(INTROSPECTION "${CMAKE_SOURCE_DIR}/introspection") # Set required packages INCLUDE(FindPkgConfig) -pkg_check_modules(pkgs REQUIRED glib-2.0 gobject-2.0 gio-2.0 gio-unix-2.0 tcore dlog aul appsvc) +pkg_check_modules(pkgs REQUIRED + glib-2.0 + gio-2.0 + gio-unix-2.0 + libxml-2.0 + tcore + aul + appsvc + security-server + pkgmgr +) FOREACH(flag ${pkgs_CFLAGS}) SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}") ENDFOREACH(flag) -INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include/ ${CMAKE_SOURCE_DIR}/cmake_tmp ${CMAKE_SOURCE_DIR}/src/sat_ui_support/) +INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/include/ ${CMAKE_SOURCE_DIR}/src/sat_ui_support/) + +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS}") +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror -Wextra -fvisibility=hidden -fPIC -fdata-sections -ffunction-sections -Wl,--gc-sections") -SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -Werror -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wdeclaration-after-statement -Wmissing-declarations -Wcast-align") +SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -O2 -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -Wdeclaration-after-statement -Wmissing-declarations -Wall -Wno-array-bounds -Wno-empty-body -Wno-ignored-qualifiers -Wswitch-default -Wno-unused-but-set-parameter -Wno-unused-but-set-variable") -ADD_DEFINITIONS("-DFEATURE_DLOG_DEBUG") +ADD_DEFINITIONS("-DENABLE_KPI_LOGS") +ADD_DEFINITIONS("-DGCF") +ADD_DEFINITIONS("-DFEATURE_TLOG_DEBUG") ADD_DEFINITIONS("-DTCORE_LOG_TAG=\"DBUS\"") ADD_DEFINITIONS("-DPLUGIN_VERSION=${VERSION}") +ADD_DEFINITIONS("-DEXPORT_API=__attribute__((visibility(\"default\")))") +#ADD_DEFINITIONS("-DTIZEN_USE_DESKTOP_FILE") +#ADD_DEFINITIONS("-DTIZEN_SUPPORT_SAT_ICON") + +IF (BOARD_PLATFORM_SPREADTRUM) +ADD_DEFINITIONS("-DTIZEN_PLATFORM_LITE") +ELSE() +ADD_DEFINITIONS("-DTIZEN_PLATFORM_USE_QCOM_QMI") +ENDIF (BOARD_PLATFORM_SPREADTRUM) MESSAGE(${CMAKE_C_FLAGS}) -MESSAGE(${CMAKE_EXE_LINKER_FLAGS}) +MESSAGE(${pkgs_LDFLAGS}) SET(SRCS src/desc-dbus.c @@ -39,27 +64,38 @@ SET(SRCS src/sms.c src/sat.c src/sat_manager.c - src/sat_util.c src/sat_ui_support/sat_ui_support.c src/ss.c src/call.c src/modem.c + src/gps.c + src/oem.c ) ADD_CUSTOM_COMMAND( + WORKING_DIRECTORY OUTPUT ${CMAKE_BINARY_DIR}/generated-code.c - COMMAND gdbus-codegen --interface-prefix org.tizen.telephony. --generate-c-code generated-code --c-namespace Telephony --c-generate-object-manager --generate-docbook generated-docs ${CMAKE_SOURCE_DIR}/introspection/manager.xml ${CMAKE_SOURCE_DIR}/introspection/network.xml ${CMAKE_SOURCE_DIR}/introspection/sim.xml ${CMAKE_SOURCE_DIR}/introspection/phonebook.xml ${CMAKE_SOURCE_DIR}/introspection/sap.xml ${CMAKE_SOURCE_DIR}/introspection/sat.xml ${CMAKE_SOURCE_DIR}/introspection/sms.xml ${CMAKE_SOURCE_DIR}/introspection/call.xml ${CMAKE_SOURCE_DIR}/introspection/ss.xml ${CMAKE_SOURCE_DIR}/introspection/modem.xml + COMMAND gdbus-codegen --interface-prefix org.tizen.telephony. --generate-c-code generated-code --c-namespace Telephony --c-generate-object-manager --generate-docbook generated-docs + ${INTROSPECTION}/manager.xml + ${INTROSPECTION}/network.xml + ${INTROSPECTION}/sim.xml + ${INTROSPECTION}/phonebook.xml + ${INTROSPECTION}/sap.xml + ${INTROSPECTION}/sat.xml + ${INTROSPECTION}/sms.xml + ${INTROSPECTION}/call.xml + ${INTROSPECTION}/ss.xml + ${INTROSPECTION}/modem.xml + ${INTROSPECTION}/gps.xml + ${INTROSPECTION}/oem.xml COMMENT "Generating GDBus .c/.h") # library build -ADD_LIBRARY(dbus-tapi-plugin SHARED ${SRCS} - ${CMAKE_BINARY_DIR}/generated-code.c) +ADD_LIBRARY(dbus-tapi-plugin SHARED ${SRCS} ${CMAKE_BINARY_DIR}/generated-code.c) TARGET_LINK_LIBRARIES(dbus-tapi-plugin ${pkgs_LDFLAGS}) SET_TARGET_PROPERTIES(dbus-tapi-plugin PROPERTIES PREFIX "" OUTPUT_NAME dbus-tapi-plugin) -ADD_DEPENDENCIES(dbus-tapi-plugin XXX) - # install -INSTALL(FILES ${CMAKE_SOURCE_DIR}/res/tapi.conf DESTINATION ${PREFIX}/etc/dbus-1/system.d) INSTALL(TARGETS dbus-tapi-plugin LIBRARY DESTINATION lib/telephony/plugins) +INSTALL(FILES ${CMAKE_SOURCE_DIR}/LICENSE DESTINATION /usr/share/license RENAME tel-plugin-dbus_tapi) diff --git a/README b/README new file mode 100644 index 0000000..5fbf319 --- /dev/null +++ b/README @@ -0,0 +1 @@ +SLP-TAPI DBus based Client-Server plugin diff --git a/debian/changelog b/debian/changelog deleted file mode 100644 index c95b6ef..0000000 --- a/debian/changelog +++ /dev/null @@ -1,167 +0,0 @@ -tel-plugin-dbus-tapi (0.1.20) unstable; urgency=low - - * Replace dun pin ctrl from ps to modem - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.20 - - -- DongHoo Park Mon, 11 Jun 2012 15:00:33 +0900 - -tel-plugin-dbus-tapi (0.1.19) unstable; urgency=low - - * Fix OBS Build error - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.19 - - -- Youngman Park Fri, 25 May 2012 14:10:57 +0900 - -tel-plugin-dbus-tapi (0.1.18) unstable; urgency=low - - * Add new feature for Call & Factory and phonebook select handling - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.18 - - -- Youngman Park Mon, 21 May 2012 18:00:57 +0900 - -tel-plugin-dbus-tapi (0.1.17) unstable; urgency=low - - * Add lock info feature and so on - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.17 - - -- Kyeongchul Kim Thu, 17 May 2012 17:39:57 +0900 - -tel-plugin-dbus-tapi (0.1.16) unstable; urgency=low - - * Fix OBS Build Error - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.16 - - -- Youngman Park Wed, 09 Apr 2012 14:50:05 +0900 - -tel-plugin-dbus-tapi (0.1.15) unstable; urgency=low - - * Add Call New API ( call custom service ) - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.15 - - -- Youngman Park Mon, 07 Apr 2012 16:13:05 +0900 - -tel-plugin-dbus-tapi (0.1.14) unstable; urgency=low - - * Fix build error - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.14 - - -- Inho Oh Fri, 27 Apr 2012 13:43:05 +0900 - -tel-plugin-dbus-tapi (0.1.13) unstable; urgency=low - - * Add sat en/decoding functions - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.13 - - -- Kyeongchul Kim Tue, 17 Apr 2012 23:35:39 +0900 - -tel-plugin-dbus-tapi (0.1.12) unstable; urgency=low - - * fixed lock status update in dbus custom data - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.12 - - -- Kyeongchul Kim Mon, 09 Apr 2012 22:08:42 +0900 - -tel-plugin-dbus-tapi (0.1.11) unstable; urgency=low - - * version up for code sync with public binary - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.11 - - -- Kyeongchul Kim Mon, 02 Apr 2012 12:20:05 +0900 - -tel-plugin-dbus-tapi (0.1.10) unstable; urgency=low - - * Fix prefix (TAPI_ to TCORE_) - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.10 - - -- Inho Oh Tue, 27 Mar 2012 22:13:53 +0900 - -tel-plugin-dbus-tapi (0.1.9) unstable; urgency=low - - * Fixed capi-sim TC issue and apply SAT handling code - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.9 - - -- Kyeongchul Kim Tue, 27 Mar 2012 17:19:22 +0900 - -tel-plugin-dbus-tapi (0.1.8) unstable; urgency=low - - * Fixed emulator call issue - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.8 - - -- Inho Oh Thu, 22 Mar 2012 17:38:20 +0900 - -tel-plugin-dbus-tapi (0.1.7) unstable; urgency=low - - * Fix obs build break - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.7 - - -- DongHoo Park Wed, 21 Mar 2012 14:54:30 +0900 - -tel-plugin-dbus-tapi (0.1.6) unstable; urgency=low - - * Version up - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.6 - - -- DongHoo Park Wed, 21 Mar 2012 14:11:37 +0900 - -tel-plugin-dbus-tapi (0.1.5) unstable; urgency=low - - * Remove legacy header files and update phonebook code - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.5 - - -- Kyeongchul Kim Mon, 19 Mar 2012 22:59:27 +0900 - -tel-plugin-dbus-tapi (0.1.4) unstable; urgency=low - - * Fix network selection mode get value mismatch bug - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.4 - - -- Inho Oh Mon, 19 Mar 2012 14:13:18 +0900 - -tel-plugin-dbus-tapi (0.1.3) unstable; urgency=low - - * Add code for CF, CB, CW - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.3 - - -- Youngman Park Sat, 17 Mar 2012 18:50:25 +0900 - -tel-plugin-dbus-tapi (0.1.2) unstable; urgency=low - - * Add code for Video Call - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.2 - - -- Youngman Park Sat, 17 Mar 2012 18:20:25 +0900 - -tel-plugin-dbus-tapi (0.1.1) unstable; urgency=low - - * Fix version mismatch - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.1 - - -- Inho Oh Fri, 16 Mar 2012 00:45:25 +0900 - -tel-plugin-dbus-tapi (0.1.0) unstable; urgency=low - - * Initial - * Git: slp/pkgs/t/tel-plugin-dbus_tapi - * Tag: tel-plugin-dbus-tapi_0.1.0 - - -- Inho Oh Thu, 15 Mar 2012 23:40:55 +0900 diff --git a/debian/compat b/debian/compat deleted file mode 100644 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100644 index 36887ba..0000000 --- a/debian/control +++ /dev/null @@ -1,21 +0,0 @@ -Source: tel-plugin-dbus-tapi -Section: libs -Priority: extra -Maintainer: Jongman Park -Uploaders: Jayoung Gu , Kyeongchul Kim , Youngman Park , Inho Oh , DongHoo Park -Build-Depends: debhelper (>= 5), - libglib2.0-dev, libtcore-dev, libaul-1-dev, dlog-dev -Standards-Version: 0.0.0 - -Package: tel-plugin-dbus-tapi -Section: libs -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, -Description: telephony plugin library for communication with dbus based client library (Shared Object) - -Package: tel-plugin-dbus-tapi-dbg -Section: debug -Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends}, tel-plugin-dbus (= ${Source-Version}) -Description: telephony plugin library for communication with dbus based client library (dbg package) - diff --git a/debian/copyright b/debian/copyright deleted file mode 100644 index d5a0cca..0000000 --- a/debian/copyright +++ /dev/null @@ -1,7 +0,0 @@ -Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved. - -This program is free software; you can redistribute it and/or modify -it under the terms of the GNU Lesser General Public License version 2.1. - -The full text of the LGPL 2.1 can be found in -/usr/share/common-licenses. diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index ca882bb..0000000 --- a/debian/dirs +++ /dev/null @@ -1,2 +0,0 @@ -usr/bin -usr/sbin diff --git a/debian/docs b/debian/docs deleted file mode 100644 index e69de29..0000000 diff --git a/debian/rules b/debian/rules deleted file mode 100755 index baf2f27..0000000 --- a/debian/rules +++ /dev/null @@ -1,118 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. - -# Uncomment this to turn on verbose mode. -#export DH_VERBOSE=1 - -CFLAGS ?= -Wall -g -CXXFLAGS ?= -Wall -g -LDFLAGS ?= -PREFIX ?= /usr -DATADIR ?= /opt - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 - CXXFLAGS += -O0 -else - CFLAGS += -O2 - CXXFLAGS += -O2 -endif - -#CFLAGS += -fvisibility=hidden -fPIC -CFLAGS += -fvisibility=default -fPIC -LDFLAGS += -rdynamic -fPIC -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -#LDFLAGS += -Wl,--unresolved-symbols=ignore-in-shared-libs,--as-needed - -CMAKE_TMP_DIR = $(CURDIR)/cmake_tmp - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - mkdir -p $(CMAKE_TMP_DIR); - cd $(CMAKE_TMP_DIR); CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX=$(PREFIX) - - touch configure-stamp - -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - - # Add here commands to compile the package. - cd $(CMAKE_TMP_DIR) && $(MAKE) all - - for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ - cat $$f > $${f%.in}; \ - sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \ - sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \ - done - - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - rm -rf $(CMAKE_TMP_DIR) - - for f in `find $(CURDIR)/debian/ -name "*.in"`; do \ - rm -f $${f%.in}; \ - done - - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - # Add here commands to install the package into debian/wavplayer. - cd $(CMAKE_TMP_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - - -# Build architecture-independent files here. -binary-indep: build install -# We have nothing to do by default. - -# Build architecture-dependent files here. -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples - dh_install --sourcedir=debian/tmp -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo - dh_installman - dh_link - dh_strip --dbg-package=tel-plugin-dbus-tapi-dbg - dh_compress - dh_fixperms -# dh_perl - dh_makeshlibs - dh_installdeb - dh_shlibdeps --dpkg-shlibdeps-params="-v" - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure diff --git a/debian/tel-plugin-dbus-tapi.install.in b/debian/tel-plugin-dbus-tapi.install.in deleted file mode 100644 index 9d23faf..0000000 --- a/debian/tel-plugin-dbus-tapi.install.in +++ /dev/null @@ -1,2 +0,0 @@ -@PREFIX@/lib/* -@PREFIX@/etc/dbus-1/system.d/* diff --git a/introspection/call.xml b/introspection/call.xml old mode 100644 new mode 100755 index ce7b867..7526357 --- a/introspection/call.xml +++ b/introspection/call.xml @@ -3,6 +3,7 @@ + @@ -22,8 +23,19 @@ - + + + + + + + + + + + + @@ -68,6 +80,16 @@ + + + + + + + + + + @@ -88,30 +110,29 @@ - + - + - + - + + - - - - - + + + @@ -132,7 +153,20 @@ + + + + + + + + + + + + + @@ -192,6 +226,10 @@ + + + + @@ -220,6 +258,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + @@ -241,6 +303,13 @@ + + + + + + + diff --git a/introspection/gen.sh b/introspection/gen.sh index 82252f5..1c50ece 100755 --- a/introspection/gen.sh +++ b/introspection/gen.sh @@ -3,4 +3,4 @@ gdbus-codegen --interface-prefix org.tizen.telephony. \ --c-namespace Telephony \ --c-generate-object-manager \ --generate-docbook generated-docs \ - manager.xml network.xml sim.xml phonebook.xml sat.xml sap.xml + manager.xml network.xml sim.xml phonebook.xml sat.xml sap.xml gps.xml oem.xml modem.xml ss.xml call.xml sms.xml diff --git a/introspection/gps.xml b/introspection/gps.xml new file mode 100644 index 0000000..b1f29ec --- /dev/null +++ b/introspection/gps.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/introspection/manager.xml b/introspection/manager.xml index a14c937..2d5bafc 100644 --- a/introspection/manager.xml +++ b/introspection/manager.xml @@ -4,6 +4,9 @@ + + + diff --git a/introspection/modem.xml b/introspection/modem.xml index fc63791..428e8e2 100644 --- a/introspection/modem.xml +++ b/introspection/modem.xml @@ -23,7 +23,6 @@ SetFlightMode: @result: Success(0) @enable: Flight mode Off (FLASE), Flight mode On (TRUE) - @result: Flight mode On (1), Flight mode Off (2) Request to ... --> @@ -33,6 +32,18 @@ + + + + + + @@ -97,7 +111,6 @@ - diff --git a/introspection/network.xml b/introspection/network.xml index 60c8a7e..79adb1f 100644 --- a/introspection/network.xml +++ b/introspection/network.xml @@ -183,6 +183,98 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + - - + + + + + + + + + + + + + + + + + + + + @@ -292,28 +413,65 @@ - - - - + - - + + + + + - + - + - + - - + + + + + - + diff --git a/introspection/oem.xml b/introspection/oem.xml new file mode 100644 index 0000000..2eaf8fc --- /dev/null +++ b/introspection/oem.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/introspection/phonebook.xml b/introspection/phonebook.xml index f7e239b..e5a5b78 100644 --- a/introspection/phonebook.xml +++ b/introspection/phonebook.xml @@ -27,6 +27,7 @@ + @@ -45,6 +46,8 @@ + + @@ -65,6 +68,8 @@ + + @@ -87,6 +92,12 @@ + + + + + + diff --git a/introspection/sat.xml b/introspection/sat.xml index 3bc31b6..b646bf7 100644 --- a/introspection/sat.xml +++ b/introspection/sat.xml @@ -17,6 +17,11 @@ + @@ -64,6 +69,11 @@ + @@ -74,6 +84,10 @@ + @@ -84,6 +98,11 @@ + @@ -95,6 +114,10 @@ + @@ -109,12 +132,20 @@ + + @@ -123,6 +154,10 @@ + @@ -137,6 +172,10 @@ + @@ -146,13 +185,24 @@ + + + + + @@ -167,12 +217,20 @@ + + @@ -190,6 +248,10 @@ + @@ -197,6 +259,10 @@ + @@ -205,6 +271,10 @@ + @@ -228,12 +298,17 @@ + + @@ -241,10 +316,13 @@ + - @@ -258,6 +336,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/introspection/sim.xml b/introspection/sim.xml index f0d68f9..62ef07b 100644 --- a/introspection/sim.xml +++ b/introspection/sim.xml @@ -13,8 +13,8 @@ - - + + + + + + + + + + + + + + + + + @@ -74,6 +117,12 @@ + + + + + + @@ -88,7 +137,7 @@ @@ -97,7 +146,7 @@ - + @@ -105,6 +154,12 @@ + + + + + + @@ -186,10 +241,26 @@ + + + + + + + + + + + + + + + + diff --git a/introspection/sms.xml b/introspection/sms.xml index 031ff4e..2c54e29 100644 --- a/introspection/sms.xml +++ b/introspection/sms.xml @@ -18,9 +18,9 @@ Sends an SMS message to the networ --> - + - + @@ -39,10 +39,11 @@ + - + - + - + - + @@ -75,6 +76,7 @@ + - + - + @@ -268,16 +270,16 @@ - + - + - + @@ -309,16 +311,16 @@ - + - + - + @@ -356,9 +358,9 @@ This is an unsolicited Incoming SMS Event --> - + - +