diff options
author | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-02-13 14:24:16 +0100 |
---|---|---|
committer | Kévin THIERRY <kevin.thierry@open.eurogiciel.org> | 2014-05-16 11:14:43 +0200 |
commit | 16dd30cb7b9c86bc5744ff170f45683d5c76ac0c (patch) | |
tree | e6fb1088b0287ae88e3a44c0ff7fc22478b87611 | |
parent | be41cb5bbf3b00430c1fff05f36c69fe3a56e127 (diff) | |
download | oma-ds-agent-tizen.tar.gz oma-ds-agent-tizen.tar.bz2 oma-ds-agent-tizen.zip |
Add multi-user supportHEADtizen_3.0.m14.3_ivi_releasetizen_3.0.m14.2_ivi_releasetizen_3.0.2014.q3_common_releasesubmit/tizen_mobile/20141120.000000submit/tizen_ivi/20140626.144348submit/tizen_ivi/20140626.130032submit/tizen_ivi/20140626.125712submit/tizen_ivi/20140624.064036submit/tizen_ivi/20140623.000000submit/tizen_ivi/20140622.000000submit/tizen_ivi/20140619.000000submit/tizen_ivi/20140618.000001submit/tizen_ivi/20140618.000000submit/tizen_common/20140522.135644submit/tizen_common/20140522.130648submit/tizen_common/20140521.163740tizen_3.0.m14.3_ivitizen_3.0.m14.2_ivitizen_3.0.2015.q1_commontizen_3.0.2014.q4_commontizen_3.0.2014.q3_commontizenaccepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_iviaccepted/tizen_commonaccepted/tizen_3.0.m14.3_iviaccepted/tizen_3.0.2014.q3_common
Bug-Tizen: PTREL-271
Change-Id: I65b0d09ba91e9d072358d50950f31bd31c22c143
Signed-off-by: Kévin THIERRY <kevin.thierry@open.eurogiciel.org>
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rwxr-xr-x | include/common/common_define_internal.h | 7 | ||||
-rw-r--r--[-rwxr-xr-x] | oma-ds-agent.manifest.in (renamed from oma-ds-agent.manifest) | 2 | ||||
-rw-r--r-- | oma-ds-agent.service | 3 | ||||
-rw-r--r-- | oma-ds-cfg/omads_fw_config.xml.in (renamed from oma-ds-cfg/omads_fw_config.xml) | 2 | ||||
-rwxr-xr-x | packaging/oma-ds-agent.spec | 68 | ||||
-rwxr-xr-x | src/agent/CMakeLists.txt | 1 |
7 files changed, 46 insertions, 40 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a247e15..2839847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,6 +10,9 @@ SET(PLUGINDIR "${PREFIX}/lib/${PROJECT_NAME}") SET(VERSION "0.1.66") SET(VERSION_MAJOR "0") +CONFIGURE_FILE(oma-ds-cfg/omads_fw_config.xml.in oma-ds-cfg/omads_fw_config.xml) +CONFIGURE_FILE(oma-ds-agent.manifest.in oma-ds-agent.manifest) + # pass macro defition to source files ADD_DEFINITIONS("-DPREFIX=\"${PREFIX}\"") ADD_DEFINITIONS("-DPLUGINDIR=\"${PLUGINDIR}\"") diff --git a/include/common/common_define_internal.h b/include/common/common_define_internal.h index 7187d27..e07e9d1 100755 --- a/include/common/common_define_internal.h +++ b/include/common/common_define_internal.h @@ -29,6 +29,9 @@ #include <glib.h> #include <string.h> +/* For multi-user support */ +#include <tzplatform_config.h> + /* #define COMMUNICATION_TYPE SYNC_AGENT_PB_ENCODING_XML */ #define COMMUNICATION_TYPE SYNC_AGENT_PB_ENCODING_WBXML_12 @@ -43,8 +46,8 @@ #define DEFINE_PLATFORM 1 #define LOW_BATTERY_LEVEL 10 -#define OMA_DS_MSG_PATH "/opt/usr/data/oma-ds/debug_msg" -#define OMA_DS_CSC_CHECK_PATH "/opt/usr/data/oma-ds/csc_check" +#define OMA_DS_MSG_PATH tzplatform_mkpath3(TZ_USER_DATA, "oma-ds", "debug_msg") +#define OMA_DS_CSC_CHECK_PATH tzplatform_mkpath3(TZ_USER_DATA, "oma-ds", "csc_check") #define ELEMENT_TEXT_VCARD "text/x-vcard" #define ELEMENT_TEXT_VCARD_30 "text/vcard" diff --git a/oma-ds-agent.manifest b/oma-ds-agent.manifest.in index 2a338a6..df241e2 100755..100644 --- a/oma-ds-agent.manifest +++ b/oma-ds-agent.manifest.in @@ -3,6 +3,6 @@ <domain name="_"/> </request> <assign> - <filesystem path="/opt/dbspace/.omasyncagent.db*" label="System" /> + <filesystem path="@TZ_SYS_DB@/.omasyncagent.db*" label="System" /> </assign> </manifest> diff --git a/oma-ds-agent.service b/oma-ds-agent.service index fe86da5..34d0387 100644 --- a/oma-ds-agent.service +++ b/oma-ds-agent.service @@ -4,7 +4,8 @@ After=calendar.service contacts-service.service pushd.service msg-service.servic [Service] #Type=forking -ConditionPathExists=/opt/usr/data/oma-ds/.oma-ds-agent-enabled +EnvironmentFile=/etc/tizen-platform.conf +ConditionPathExists=$TZ_USER_DATA/oma-ds/.oma-ds-agent-enabled ExecStart=/usr/bin/oma-ds-agent [Install] diff --git a/oma-ds-cfg/omads_fw_config.xml b/oma-ds-cfg/omads_fw_config.xml.in index 96efbba..a60ff17 100644 --- a/oma-ds-cfg/omads_fw_config.xml +++ b/oma-ds-cfg/omads_fw_config.xml.in @@ -15,7 +15,7 @@ <Max-Thread>5</Max-Thread>
</EngineController>
<FrameworkDB use="1">
- <Path>/opt/dbspace/.omasyncagent.db</Path>
+ <Path>@TZ_SYS_DB@/.omasyncagent.db</Path>
</FrameworkDB>
<ID-Provider>
<Code>1</Code>
diff --git a/packaging/oma-ds-agent.spec b/packaging/oma-ds-agent.spec index 9cf9177..7531831 100755 --- a/packaging/oma-ds-agent.spec +++ b/packaging/oma-ds-agent.spec @@ -1,25 +1,26 @@ Name: oma-ds-agent Summary: OMA-DS Agent Daemon for Data Synchronization Version: 0.1.66 -Release: 1 +Release: 0 Group: Base/Device Management License: Apache-2.0 Source0: %{name}-%{version}.tar.gz -Requires(post): /sbin/ldconfig +Requires(post): /sbin/ldconfig Requires(postun): /sbin/ldconfig -BuildRequires: pkgconfig(glib-2.0) -BuildRequires: pkgconfig(libsoup-2.4) -BuildRequires: pkgconfig(sqlite3) -BuildRequires: pkgconfig(sync-agent) -BuildRequires: pkgconfig(vconf) -BuildRequires: pkgconfig(dbus-glib-1) -BuildRequires: pkgconfig(check) -BuildRequires: pkgconfig(memo) -BuildRequires: pkgconfig(contacts-service2) -BuildRequires: pkgconfig(dlog) -BuildRequires: pkgconfig(aul) -BuildRequires: expat-devel -BuildRequires: cmake +BuildRequires: pkgconfig(glib-2.0) +BuildRequires: pkgconfig(libsoup-2.4) +BuildRequires: pkgconfig(sqlite3) +BuildRequires: pkgconfig(sync-agent) +BuildRequires: pkgconfig(vconf) +BuildRequires: pkgconfig(dbus-glib-1) +BuildRequires: pkgconfig(check) +BuildRequires: pkgconfig(memo) +BuildRequires: pkgconfig(contacts-service2) +BuildRequires: pkgconfig(dlog) +BuildRequires: pkgconfig(aul) +BuildRequires: pkgconfig(libtzplatform-config) +BuildRequires: expat-devel +BuildRequires: cmake %description @@ -38,19 +39,19 @@ ds public plugins for sync-agent %build -cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} +%cmake . -DCMAKE_INSTALL_PREFIX=%{_prefix} -DTZ_SYS_DB=%TZ_SYS_DB make %{?jobs:-j%jobs} %install rm -rf %{buildroot} -if [ ! -d %{buildroot}/opt/dbspace ] +if [ ! -d %{buildroot}%{TZ_SYS_DB} ] then - mkdir -p %{buildroot}/opt/dbspace + mkdir -p %{buildroot}%{TZ_SYS_DB} fi -sqlite3 %{buildroot}/opt/dbspace/.omasyncagent.db "PRAGMA journal_mode = PERSIST; create table a(a); drop table a;" > /dev/null +sqlite3 %{buildroot}%{TZ_SYS_DB}/.omasyncagent.db "PRAGMA journal_mode = PERSIST; create table a(a); drop table a;" > /dev/null %make_install @@ -59,44 +60,41 @@ rm -rf %{buildroot} %post -if [ ! -d /opt/dbspace ] +if [ ! -d %{TZ_SYS_DB} ] then - mkdir /opt/dbspace + mkdir %{TZ_SYS_DB} fi -if [ ! -d /etc/rc.d/rc3.d ] +if [ ! -d %{_sysconfdir}/rc.d/rc3.d ] then - mkdir /etc/rc.d/rc3.d + mkdir %{_sysconfdir}/rc.d/rc3.d fi -if [ ! -d /etc/rc.d/rc5.d ] +if [ ! -d %{_sysconfdir}/rc.d/rc5.d ] then - mkdir /etc/rc.d/rc5.d + mkdir %{_sysconfdir}/rc.d/rc5.d fi -%preun - - %postun rm -f /tmp/agent_fw_event_omads* rm -f /tmp/agent_fw_noti_reply_omads* -rm -f /etc/rc.d/rc3.d/S91oma-ds-agent -rm -f /etc/rc.d/rc5.d/S91oma-ds-agent +rm -f %{_sysconfdir}/rc.d/rc3.d/S91oma-ds-agent +rm -f %{_sysconfdir}/rc.d/rc5.d/S91oma-ds-agent -rm -f /opt/dbspace/.omasyncagent.db /opt/dbspace/.omasyncagent.db-journal +rm -f %{TZ_SYS_DB}/.omasyncagent.db %{TZ_SYS_DB}/.omasyncagent.db-journal rm -rf /usr/share/oma-ds-cfg %files -%attr(600,root,root) /opt/dbspace/.omasyncagent.db -%attr(600,root,root) /opt/dbspace/.omasyncagent.db-journal +%attr(600,root,root) %{TZ_SYS_DB}/.omasyncagent.db +%attr(600,root,root) %{TZ_SYS_DB}/.omasyncagent.db-journal %manifest oma-ds-agent.manifest %defattr(-,root,root,-) /usr/share/dbus-1/system-services/com.samsung.omadsagent.service -/usr/bin/oma-ds-agent +%{_bindir}/oma-ds-agent /usr/share/oma-ds-cfg/* @@ -104,7 +102,7 @@ rm -rf /usr/share/oma-ds-cfg %defattr(644,root,root) /usr/lib/systemd/system/oma-ds-agent.service /usr/lib/systemd/system/graphical.target.wants/oma-ds-agent.service -/etc/dbus-1/system.d/com.samsung.omadsagent.conf +%{_sysconfdir}/dbus-1/system.d/com.samsung.omadsagent.conf %files -n ds-public-plugins %manifest ds-public-plugins.manifest diff --git a/src/agent/CMakeLists.txt b/src/agent/CMakeLists.txt index ee1ea32..6b20644 100755 --- a/src/agent/CMakeLists.txt +++ b/src/agent/CMakeLists.txt @@ -24,6 +24,7 @@ pkg_check_modules(LPKGS REQUIRED dlog aul dbus-glib-1 + libtzplatform-config ) ############################################# |