diff options
author | jomui <jongmun.woo@samsung.com> | 2015-10-13 16:11:54 +0900 |
---|---|---|
committer | jomui <jongmun.woo@samsung.com> | 2015-10-13 16:12:22 +0900 |
commit | 8195f60b212a1ba53765a88d2299af1eb1cb30e8 (patch) | |
tree | 21b64d4c3dfe6275613b76f0cbc0f75432910160 | |
parent | e48945efb86b12734536debc7700f840d362eb8f (diff) | |
download | geofence-server-8195f60b212a1ba53765a88d2299af1eb1cb30e8.tar.gz geofence-server-8195f60b212a1ba53765a88d2299af1eb1cb30e8.tar.bz2 geofence-server-8195f60b212a1ba53765a88d2299af1eb1cb30e8.zip |
remove related code to secure-storagetizen_3.0.m2.a1_mobile_releasesubmit/tizen/20151014.054728accepted/tizen/wearable/20151014.093024accepted/tizen/tv/20151014.093018accepted/tizen/mobile/20151014.093007
Signed-off-by: jomui <jongmun.woo@samsung.com>
Change-Id: Ie5e10e638d74bbbee0b912eef7a4b8ed0681febb
-rwxr-xr-x | geofence-server/src/geofence_server_db.c | 17 | ||||
-rw-r--r-- | packaging/geofence-server.spec | 1 |
2 files changed, 1 insertions, 17 deletions
diff --git a/geofence-server/src/geofence_server_db.c b/geofence-server/src/geofence_server_db.c index 78b7b6e..31ae357 100755 --- a/geofence-server/src/geofence_server_db.c +++ b/geofence-server/src/geofence_server_db.c @@ -18,7 +18,6 @@ #include <db-util.h> #include <gio/gio.h> #include <sys/stat.h> -#include <ss_manager.h> #include <string.h> #include <bluetooth.h> #include <wifi.h> @@ -1154,11 +1153,6 @@ int geofence_manager_set_geocoordinate_info(int fence_id, geocoordinate_info_s * char data_name_lat[MAX_DATA_NAME] = { 0 }; char data_name_lon[MAX_DATA_NAME] = { 0 }; char data_name_rad[MAX_DATA_NAME] = { 0 }; - /* - char ssa_data_lat[DATA_LEN] = { 0 }; - char ssa_data_lon[DATA_LEN] = { 0 }; - char ssa_data_rad[DATA_LEN] = { 0 }; - */ char *query = sqlite3_mprintf("INSERT INTO FenceGeocoordinate(fence_id, latitude, longitude, radius, address) VALUES (?, ?, ?, ?, ?)"); ret = __geofence_manager_db_get_count_of_fence_id(fence_id, FENCE_GEOCOORDINATE_TAB, &count); @@ -1186,7 +1180,6 @@ int geofence_manager_set_geocoordinate_info(int fence_id, geocoordinate_info_s * __geofence_manager_generate_password(password); #endif - /* ssa_put : latitude*/ ret = snprintf(data_name_lat, MAX_DATA_NAME, "%lf", geocoordinate_info->latitude); ret = sqlite3_bind_text(state, ++index, data_name_lat, -1, SQLITE_STATIC); @@ -1194,7 +1187,6 @@ int geofence_manager_set_geocoordinate_info(int fence_id, geocoordinate_info_s * /*ret = sqlite3_bind_double (state, ++index, geocoordinate_info->latitude);*/ SQLITE3_RETURN(ret, sqlite3_errmsg(db_info_s.handle), state); - /* ssa_put : longitude*/ ret = snprintf(data_name_lon, MAX_DATA_NAME, "%lf", geocoordinate_info->longitude); if (ret < 0) { LOGD_GEOFENCE("ERROR: String will be truncated"); @@ -1205,7 +1197,6 @@ int geofence_manager_set_geocoordinate_info(int fence_id, geocoordinate_info_s * /*ret = sqlite3_bind_double (state, ++index, geocoordinate_info->longitude);*/ SQLITE3_RETURN(ret, sqlite3_errmsg(db_info_s.handle), state); - /* ssa_put : radius*/ ret = snprintf(data_name_rad, MAX_DATA_NAME, "%lf", geocoordinate_info->radius); if (ret < 0) { LOGD_GEOFENCE("ERROR: String will be truncated"); @@ -1250,10 +1241,6 @@ int geofence_manager_get_geocoordinate_info(int fence_id, geocoordinate_info_s * const char *tail = NULL; int index = 0; char *data_name = NULL; - /* - char *ssa_data = NULL; - */ - char *query = sqlite3_mprintf("SELECT * FROM FenceGeocoordinate where fence_id = %d;", fence_id); LOGD_GEOFENCE("current fence id is [%d]", fence_id); @@ -1401,10 +1388,8 @@ int geofence_manager_get_place_info(int place_id, place_info_s **place_info) const char *tail = NULL; int index = 0; char *data_name = NULL; - /* - char *ssa_data = NULL; - */ char *query = sqlite3_mprintf("SELECT * FROM Places where place_id = %d;", place_id); + LOGD_GEOFENCE("current place id is [%d]", place_id); ret = sqlite3_prepare_v2(db_info_s.handle, query, -1, &state, &tail); if (ret != SQLITE_OK) { diff --git a/packaging/geofence-server.spec b/packaging/geofence-server.spec index 0f91c04..90d7172 100644 --- a/packaging/geofence-server.spec +++ b/packaging/geofence-server.spec @@ -30,7 +30,6 @@ BuildRequires: pkgconfig(capi-appfw-app-manager) BuildRequires: pkgconfig(capi-location-manager) BuildRequires: pkgconfig(capi-network-wifi) BuildRequires: pkgconfig(capi-network-bluetooth) -BuildRequires: pkgconfig(secure-storage) BuildRequires: pkgconfig(libcore-context-manager) #BuildRequires: pkgconfig(tapi) #BuildRequires: pkgconfig(capi-telephony-network-info) |