Tizen 2.1 base
authorJinkun Jang <jinkun.jang@samsung.com>
Tue, 12 Mar 2013 16:46:02 +0000 (01:46 +0900)
committerJinkun Jang <jinkun.jang@samsung.com>
Tue, 12 Mar 2013 16:46:02 +0000 (01:46 +0900)
18 files changed:
AUTHORS [new file with mode: 0644]
CMakeLists.txt [new file with mode: 0644]
LICENSE [new file with mode: 0644]
capi-telephony-network-info.manifest [new file with mode: 0644]
capi-telephony-network-info.pc.in [new file with mode: 0644]
debian/README [new file with mode: 0644]
debian/capi-telephony-network-info-dev.install [new file with mode: 0644]
debian/capi-telephony-network-info-dev.postinst [new file with mode: 0755]
debian/capi-telephony-network-info.install [new file with mode: 0644]
debian/capi-telephony-network-info.postinst [new file with mode: 0755]
debian/changelog [new file with mode: 0644]
debian/compat [new file with mode: 0644]
debian/control [new file with mode: 0644]
debian/rules [new file with mode: 0755]
include/telephony_network.h [new file with mode: 0644]
include/telephony_network_type.h [new file with mode: 0644]
packaging/capi-telephony-network-info.spec [new file with mode: 0644]
src/telephony_network.c [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..0bb1836
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+ByungWoo Lee <bw1212.lee@samsung.com>
+Kangho Hur <kangho.hur@samsung.com>
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..7a1b4da
--- /dev/null
@@ -0,0 +1,136 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
+
+SET(project_prefix "capi")
+SET(prefix "/usr")
+SET(version "0.0.1")
+SET(maintainer "ByungWoo Lee <bw1212.lee@samsung.com>")
+SET(description "Telephony Network Information Framework")
+SET(service "telephony")
+SET(submodule "network-info")
+SET(dependents "dlog vconf glib-2.0 capi-base-common")
+SET(pc_dependents "capi-base-common")
+SET(deb_dependents "dlog-dev libvconf-dev libglib2.0-dev capi-base-common-dev")
+
+SET(Services 
+        "application"
+        "base"
+        "content"
+        "location"
+        "media"
+        "messaging"
+        "network"
+        "social"
+        "telephony"
+        "system"
+   )
+
+#FILE(STRINGS config.cfg configs REGEX "^ *[^#]")
+FOREACH(lines ${configs})
+#    MESSAGE(${lines})
+    IF(${lines} MATCHES "([^=]*)=['\"](.*)['\"]")
+        SET(key ${CMAKE_MATCH_1})
+        SET(value ${CMAKE_MATCH_2})
+#        MESSAGE("${key} -> ${value}")
+        SET(${key} "${value}")
+    ENDIF()
+ENDFOREACH(lines ${configs})
+
+LIST(FIND Services ${service} sfind)
+
+IF( ${sfind} EQUAL -1 )
+    MESSAGE(FATAL_ERROR "Service must be one of ")
+    FOREACH( s IN ${Services} )
+        MESSAGE(FATAL_ERROR "[${s}]")
+    ENDFOREACH( s IN ${Services} )
+ENDIF( ${sfind} EQUAL -1 )
+
+SET(fw_name "${project_prefix}-${service}-${submodule}")
+
+PROJECT(${fw_name})
+
+SET(CMAKE_INSTALL_PREFIX ${prefix})
+SET(PREFIX ${CMAKE_INSTALL_PREFIX})
+SET(VERSION ${version})
+
+SET(INC_DIR include)
+INCLUDE_DIRECTORIES(${INC_DIR})
+
+INCLUDE(FindPkgConfig)
+pkg_check_modules(${fw_name} REQUIRED ${dependents})
+FOREACH(flag ${${fw_name}_CFLAGS})
+    SET(EXTRA_CFLAGS "${EXTRA_CFLAGS} ${flag}")
+ENDFOREACH(flag)
+
+SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -fPIC -Wall -Werror")
+SET(CMAKE_C_FLAGS_DEBUG "-O0 -g")
+
+IF("${ARCH}" STREQUAL "arm")
+    ADD_DEFINITIONS("-DTARGET")
+ENDIF("${ARCH}" STREQUAL "arm")
+
+ADD_DEFINITIONS("-DPREFIX=\"${CMAKE_INSTALL_PREFIX}\"")
+ADD_DEFINITIONS("-DTIZEN_DEBUG")
+
+SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -Wl,--rpath=/usr/lib")
+
+aux_source_directory(src SOURCES)
+ADD_LIBRARY(${fw_name} SHARED ${SOURCES})
+
+TARGET_LINK_LIBRARIES(${fw_name} ${${fw_name}_LDFLAGS})
+
+SET_TARGET_PROPERTIES(${fw_name}
+     PROPERTIES
+     VERSION ${FULLVER}
+     SOVERSION ${MAJORVER}
+     CLEAN_DIRECT_OUTPUT 1
+)
+
+INSTALL(TARGETS ${fw_name} DESTINATION lib)
+INSTALL(
+        DIRECTORY ${INC_DIR}/ DESTINATION include/${service}
+        FILES_MATCHING
+        PATTERN "*_private.h" EXCLUDE
+        PATTERN "${INC_DIR}/*.h"
+        )
+
+SET(PC_NAME ${fw_name})
+SET(PC_REQUIRED ${pc_dependents})
+SET(PC_LDFLAGS -l${fw_name})
+
+CONFIGURE_FILE(
+    capi-telephony-network-info.pc.in
+    ${CMAKE_CURRENT_SOURCE_DIR}/${fw_name}.pc
+    @ONLY
+)
+INSTALL(FILES ${CMAKE_CURRENT_SOURCE_DIR}/${fw_name}.pc DESTINATION lib/pkgconfig)
+
+IF(UNIX)
+
+ADD_CUSTOM_TARGET (distclean @echo cleaning for source distribution)
+ADD_CUSTOM_COMMAND(
+        DEPENDS clean 
+        COMMENT "distribution clean"
+        COMMAND find
+        ARGS    . 
+        -not -name config.cmake -and \(
+        -name tester.c -or
+        -name Testing -or
+        -name CMakeFiles -or
+        -name cmake.depends -or
+        -name cmake.check_depends -or
+        -name CMakeCache.txt -or
+        -name cmake.check_cache -or
+        -name *.cmake -or
+        -name Makefile -or
+        -name core -or
+        -name core.* -or
+        -name gmon.out -or
+        -name install_manifest.txt -or
+        -name *.pc -or
+        -name *~ \)
+        | grep -v TC | xargs rm -rf
+        TARGET  distclean
+        VERBATIM
+)
+
+ENDIF(UNIX)
diff --git a/LICENSE b/LICENSE
new file mode 100644 (file)
index 0000000..9c13a9b
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,204 @@
+Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.\r
+\r
+                                 Apache License\r
+                           Version 2.0, January 2004\r
+                        http://www.apache.org/licenses/\r
+\r
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\r
+\r
+   1. Definitions.\r
+\r
+      "License" shall mean the terms and conditions for use, reproduction,\r
+      and distribution as defined by Sections 1 through 9 of this document.\r
+\r
+      "Licensor" shall mean the copyright owner or entity authorized by\r
+      the copyright owner that is granting the License.\r
+\r
+      "Legal Entity" shall mean the union of the acting entity and all\r
+      other entities that control, are controlled by, or are under common\r
+      control with that entity. For the purposes of this definition,\r
+      "control" means (i) the power, direct or indirect, to cause the\r
+      direction or management of such entity, whether by contract or\r
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the\r
+      outstanding shares, or (iii) beneficial ownership of such entity.\r
+\r
+      "You" (or "Your") shall mean an individual or Legal Entity\r
+      exercising permissions granted by this License.\r
+\r
+      "Source" form shall mean the preferred form for making modifications,\r
+      including but not limited to software source code, documentation\r
+      source, and configuration files.\r
+\r
+      "Object" form shall mean any form resulting from mechanical\r
+      transformation or translation of a Source form, including but\r
+      not limited to compiled object code, generated documentation,\r
+      and conversions to other media types.\r
+\r
+      "Work" shall mean the work of authorship, whether in Source or\r
+      Object form, made available under the License, as indicated by a\r
+      copyright notice that is included in or attached to the work\r
+      (an example is provided in the Appendix below).\r
+\r
+      "Derivative Works" shall mean any work, whether in Source or Object\r
+      form, that is based on (or derived from) the Work and for which the\r
+      editorial revisions, annotations, elaborations, or other modifications\r
+      represent, as a whole, an original work of authorship. For the purposes\r
+      of this License, Derivative Works shall not include works that remain\r
+      separable from, or merely link (or bind by name) to the interfaces of,\r
+      the Work and Derivative Works thereof.\r
+\r
+      "Contribution" shall mean any work of authorship, including\r
+      the original version of the Work and any modifications or additions\r
+      to that Work or Derivative Works thereof, that is intentionally\r
+      submitted to Licensor for inclusion in the Work by the copyright owner\r
+      or by an individual or Legal Entity authorized to submit on behalf of\r
+      the copyright owner. For the purposes of this definition, "submitted"\r
+      means any form of electronic, verbal, or written communication sent\r
+      to the Licensor or its representatives, including but not limited to\r
+      communication on electronic mailing lists, source code control systems,\r
+      and issue tracking systems that are managed by, or on behalf of, the\r
+      Licensor for the purpose of discussing and improving the Work, but\r
+      excluding communication that is conspicuously marked or otherwise\r
+      designated in writing by the copyright owner as "Not a Contribution."\r
+\r
+      "Contributor" shall mean Licensor and any individual or Legal Entity\r
+      on behalf of whom a Contribution has been received by Licensor and\r
+      subsequently incorporated within the Work.\r
+\r
+   2. Grant of Copyright License. Subject to the terms and conditions of\r
+      this License, each Contributor hereby grants to You a perpetual,\r
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r
+      copyright license to reproduce, prepare Derivative Works of,\r
+      publicly display, publicly perform, sublicense, and distribute the\r
+      Work and such Derivative Works in Source or Object form.\r
+\r
+   3. Grant of Patent License. Subject to the terms and conditions of\r
+      this License, each Contributor hereby grants to You a perpetual,\r
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\r
+      (except as stated in this section) patent license to make, have made,\r
+      use, offer to sell, sell, import, and otherwise transfer the Work,\r
+      where such license applies only to those patent claims licensable\r
+      by such Contributor that are necessarily infringed by their\r
+      Contribution(s) alone or by combination of their Contribution(s)\r
+      with the Work to which such Contribution(s) was submitted. If You\r
+      institute patent litigation against any entity (including a\r
+      cross-claim or counterclaim in a lawsuit) alleging that the Work\r
+      or a Contribution incorporated within the Work constitutes direct\r
+      or contributory patent infringement, then any patent licenses\r
+      granted to You under this License for that Work shall terminate\r
+      as of the date such litigation is filed.\r
+\r
+   4. Redistribution. You may reproduce and distribute copies of the\r
+      Work or Derivative Works thereof in any medium, with or without\r
+      modifications, and in Source or Object form, provided that You\r
+      meet the following conditions:\r
+\r
+      (a) You must give any other recipients of the Work or\r
+          Derivative Works a copy of this License; and\r
+\r
+      (b) You must cause any modified files to carry prominent notices\r
+          stating that You changed the files; and\r
+\r
+      (c) You must retain, in the Source form of any Derivative Works\r
+          that You distribute, all copyright, patent, trademark, and\r
+          attribution notices from the Source form of the Work,\r
+          excluding those notices that do not pertain to any part of\r
+          the Derivative Works; and\r
+\r
+      (d) If the Work includes a "NOTICE" text file as part of its\r
+          distribution, then any Derivative Works that You distribute must\r
+          include a readable copy of the attribution notices contained\r
+          within such NOTICE file, excluding those notices that do not\r
+          pertain to any part of the Derivative Works, in at least one\r
+          of the following places: within a NOTICE text file distributed\r
+          as part of the Derivative Works; within the Source form or\r
+          documentation, if provided along with the Derivative Works; or,\r
+          within a display generated by the Derivative Works, if and\r
+          wherever such third-party notices normally appear. The contents\r
+          of the NOTICE file are for informational purposes only and\r
+          do not modify the License. You may add Your own attribution\r
+          notices within Derivative Works that You distribute, alongside\r
+          or as an addendum to the NOTICE text from the Work, provided\r
+          that such additional attribution notices cannot be construed\r
+          as modifying the License.\r
+\r
+      You may add Your own copyright statement to Your modifications and\r
+      may provide additional or different license terms and conditions\r
+      for use, reproduction, or distribution of Your modifications, or\r
+      for any such Derivative Works as a whole, provided Your use,\r
+      reproduction, and distribution of the Work otherwise complies with\r
+      the conditions stated in this License.\r
+\r
+   5. Submission of Contributions. Unless You explicitly state otherwise,\r
+      any Contribution intentionally submitted for inclusion in the Work\r
+      by You to the Licensor shall be under the terms and conditions of\r
+      this License, without any additional terms or conditions.\r
+      Notwithstanding the above, nothing herein shall supersede or modify\r
+      the terms of any separate license agreement you may have executed\r
+      with Licensor regarding such Contributions.\r
+\r
+   6. Trademarks. This License does not grant permission to use the trade\r
+      names, trademarks, service marks, or product names of the Licensor,\r
+      except as required for reasonable and customary use in describing the\r
+      origin of the Work and reproducing the content of the NOTICE file.\r
+\r
+   7. Disclaimer of Warranty. Unless required by applicable law or\r
+      agreed to in writing, Licensor provides the Work (and each\r
+      Contributor provides its Contributions) on an "AS IS" BASIS,\r
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\r
+      implied, including, without limitation, any warranties or conditions\r
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\r
+      PARTICULAR PURPOSE. You are solely responsible for determining the\r
+      appropriateness of using or redistributing the Work and assume any\r
+      risks associated with Your exercise of permissions under this License.\r
+\r
+   8. Limitation of Liability. In no event and under no legal theory,\r
+      whether in tort (including negligence), contract, or otherwise,\r
+      unless required by applicable law (such as deliberate and grossly\r
+      negligent acts) or agreed to in writing, shall any Contributor be\r
+      liable to You for damages, including any direct, indirect, special,\r
+      incidental, or consequential damages of any character arising as a\r
+      result of this License or out of the use or inability to use the\r
+      Work (including but not limited to damages for loss of goodwill,\r
+      work stoppage, computer failure or malfunction, or any and all\r
+      other commercial damages or losses), even if such Contributor\r
+      has been advised of the possibility of such damages.\r
+\r
+   9. Accepting Warranty or Additional Liability. While redistributing\r
+      the Work or Derivative Works thereof, You may choose to offer,\r
+      and charge a fee for, acceptance of support, warranty, indemnity,\r
+      or other liability obligations and/or rights consistent with this\r
+      License. However, in accepting such obligations, You may act only\r
+      on Your own behalf and on Your sole responsibility, not on behalf\r
+      of any other Contributor, and only if You agree to indemnify,\r
+      defend, and hold each Contributor harmless for any liability\r
+      incurred by, or claims asserted against, such Contributor by reason\r
+      of your accepting any such warranty or additional liability.\r
+\r
+   END OF TERMS AND CONDITIONS\r
+\r
+   APPENDIX: How to apply the Apache License to your work.\r
+\r
+      To apply the Apache License to your work, attach the following\r
+      boilerplate notice, with the fields enclosed by brackets "[]"\r
+      replaced with your own identifying information. (Don't include\r
+      the brackets!)  The text should be enclosed in the appropriate\r
+      comment syntax for the file format. We also recommend that a\r
+      file or class name and description of purpose be included on the\r
+      same "printed page" as the copyright notice for easier\r
+      identification within third-party archives.\r
+\r
+   Copyright [yyyy] [name of copyright owner]\r
+\r
+   Licensed under the Apache License, Version 2.0 (the "License");\r
+   you may not use this file except in compliance with the License.\r
+   You may obtain a copy of the License at\r
+\r
+       http://www.apache.org/licenses/LICENSE-2.0\r
+\r
+   Unless required by applicable law or agreed to in writing, software\r
+   distributed under the License is distributed on an "AS IS" BASIS,\r
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+   See the License for the specific language governing permissions and\r
+   limitations under the License.\r
+\r
diff --git a/capi-telephony-network-info.manifest b/capi-telephony-network-info.manifest
new file mode 100644 (file)
index 0000000..dfdc35c
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+  <domain name="_"/>
+ </request>
+</manifest>
diff --git a/capi-telephony-network-info.pc.in b/capi-telephony-network-info.pc.in
new file mode 100644 (file)
index 0000000..8731238
--- /dev/null
@@ -0,0 +1,14 @@
+
+# Package Information for pkg-config
+
+prefix=@PREFIX@
+exec_prefix=/usr
+libdir=/usr/lib
+includedir=/usr/include/telephony
+
+Name: @PC_NAME@
+Description: @PACKAGE_DESCRIPTION@
+Version: @VERSION@
+Requires: @PC_REQUIRED@ 
+Libs: -L${libdir} @PC_LDFLAGS@
+Cflags: -I${includedir}
diff --git a/debian/README b/debian/README
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/debian/capi-telephony-network-info-dev.install b/debian/capi-telephony-network-info-dev.install
new file mode 100644 (file)
index 0000000..761a28b
--- /dev/null
@@ -0,0 +1,4 @@
+/usr/include/*
+/usr/include/*/*
+/usr/lib/pkgconfig/*.pc
+
diff --git a/debian/capi-telephony-network-info-dev.postinst b/debian/capi-telephony-network-info-dev.postinst
new file mode 100755 (executable)
index 0000000..1a24852
--- /dev/null
@@ -0,0 +1 @@
+#!/bin/sh
diff --git a/debian/capi-telephony-network-info.install b/debian/capi-telephony-network-info.install
new file mode 100644 (file)
index 0000000..4a755a4
--- /dev/null
@@ -0,0 +1 @@
+/usr/lib/lib*.so*
diff --git a/debian/capi-telephony-network-info.postinst b/debian/capi-telephony-network-info.postinst
new file mode 100755 (executable)
index 0000000..1a24852
--- /dev/null
@@ -0,0 +1 @@
+#!/bin/sh
diff --git a/debian/changelog b/debian/changelog
new file mode 100644 (file)
index 0000000..5a4abff
--- /dev/null
@@ -0,0 +1,120 @@
+capi-telephony-network-info (0.1.0-10) unstable; urgency=low
+
+  * Correct dependent packages
+  * Git: slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-10 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Thu, 15 Mar 2012 13:27:05 +0900
+
+capi-telephony-network-info (0.1.0-9) unstable; urgency=low
+
+  * Modify coding style
+  * Git: slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-9 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Mon, 20 Feb 2012 15:53:46 +0900
+
+capi-telephony-network-info (0.1.0-8) unstable; urgency=low
+
+  * Add versioning of library
+  * Git: slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-8 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Tue, 14 Feb 2012 17:20:23 +0900
+
+capi-telephony-network-info (0.1.0-7) unstable; urgency=low
+
+  * Because flight mode is removed from public Emulator, network_info_get_service_state() is modified
+  * Git: slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-7 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Fri, 06 Jan 2012 17:01:43 +0900
+
+capi-telephony-network-info (0.1.0-6) unstable; urgency=low
+
+  * Add LICENSE, remove COPYING and Convert TIZEN_ERROR_OK to TIZEN_ERROR_NONE
+  * Git: slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-6 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Mon, 05 Dec 2011 12:55:46 +0900
+
+capi-telephony-network-info (0.1.0-5) unstable; urgency=low
+
+  * Modify network_info_type_e
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-5 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Thu, 01 Dec 2011 15:22:08 +0900
+
+capi-telephony-network-info (0.1.0-4) unstable; urgency=low
+
+  * Support only one callback not several callback and modify log 
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-4
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Wed, 30 Nov 2011 19:44:18 +0900
+
+capi-telephony-network-info (0.1.0-3) unstable; urgency=low
+
+  * Convert SLP into TIZEN
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-3
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Wed, 23 Nov 2011 13:27:15 +0900
+
+capi-telephony-network-info (0.1.0-2) unstable; urgency=low
+
+  * Put boilerplate in the source code
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-2 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Wed, 02 Nov 2011 19:14:56 +0900
+
+capi-telephony-network-info (0.1.0-1) unstable; urgency=low
+
+  * SLP API baseline
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.1.0-1 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Tue, 27 Sep 2011 22:27:32 +0900
+
+capi-telephony-network-info (0.0.1-5) unstable; urgency=low
+
+  * Correct typo in definition of header file
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.0.1-5 
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Tue, 20 Sep 2011 17:19:52 +0900
+
+capi-telephony-network-info (0.0.1-4) unstable; urgency=low
+
+  * Split network_info_add_changed_cb into 3 APIs
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.0.1-4
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Mon, 05 Sep 2011 20:50:00 +0900
+
+capi-telephony-network-info (0.0.1-3) unstable; urgency=low
+
+  * Remove mutex
+  * Git: slp-source.sec.samsung.net:slp/api/network-info
+  * Tag: capi-telephony-network-info_0.0.1-3
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Mon, 22 Aug 2011 16:29:17 +0900
+
+capi-telephony-network-info (0.0.1-2) unstable; urgency=low
+
+  * Remove tapi from dependent packages and add vconf into them. 
+   * Git: slp-source.sec.samsung.net:slp/api/network-info
+   * Tag: capi-telephony-network-info_0.0.1-2
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Fri, 05 Aug 2011 10:09:03 +0900
+
+capi-telephony-network-info (0.0.1-1) unstable; urgency=low
+
+   * Initial upload
+   * Git: slp-source.sec.samsung.net:slp/api/network-info
+   * Tag: capi-telephony-network-info_0.0.1-1
+
+ -- ByungWoo Lee <bw1212.lee@samsung.com>  Thu, 04 Aug 2011 17:20:54 +0900
+
diff --git a/debian/compat b/debian/compat
new file mode 100644 (file)
index 0000000..7ed6ff8
--- /dev/null
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644 (file)
index 0000000..f76bceb
--- /dev/null
@@ -0,0 +1,21 @@
+Source: capi-telephony-network-info
+Section: libs
+Priority: extra
+Maintainer: Kangho Hur <kangho.hur@samsung.com>, ByungWoo Lee <bw1212.lee@samsung.com>
+Build-Depends: debhelper (>= 5), dlog-dev, libvconf-dev, libglib2.0-dev, capi-base-common-dev
+
+Package: capi-telephony-network-info
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: A Telephony Network Information library in Tizen Native API
+
+Package: capi-telephony-network-info-dev
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, capi-telephony-network-info (= ${Source-Version}), capi-base-common-dev
+Description: A Telephony Network Information library in Tizen Native API (DEV)
+
+Package: capi-telephony-network-info-dbg
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, capi-telephony-network-info (= ${Source-Version})
+Description: A Telephony Network Information library in Tizen Native API (DBG)
+
diff --git a/debian/rules b/debian/rules
new file mode 100755 (executable)
index 0000000..781b88c
--- /dev/null
@@ -0,0 +1,68 @@
+#!/usr/bin/make -f
+
+CFLAGS = -Wall -g
+FULLVER ?= $(shell dpkg-parsechangelog | grep Version: | cut -d ' ' -f 2 | cut -d '-' -f 1)
+MAJORVER ?= $(shell echo $(FULLVER) | cut -d '.' -f 1)
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+       CFLAGS += -O0
+else
+       CFLAGS += -O2
+endif
+CMAKE_ROOT_DIR ?= $(CURDIR)
+CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
+
+configure: configure-stamp
+configure-stamp:
+       dh_testdir
+       mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && cmake .. -DFULLVER=${FULLVER} -DMAJORVER=${MAJORVER}
+       touch configure-stamp
+
+
+build: build-stamp
+build-stamp: configure-stamp 
+       dh_testdir
+       cd $(CMAKE_BUILD_DIR) && $(MAKE)
+       touch $@
+
+clean:
+       cd $(CMAKE_ROOT_DIR)
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp configure-stamp
+       rm -f 
+       rm -rf $(CMAKE_BUILD_DIR)
+       rm -f *.pc
+       dh_clean
+       
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k 
+       dh_installdirs
+
+       cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+binary-indep: build install
+
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs 
+       dh_installdocs
+       dh_installexamples
+       dh_install --sourcedir=debian/tmp
+       dh_installman
+       dh_link
+       dh_strip --dbg-package=capi-telephony-network-info-dbg
+       dh_fixperms
+       dh_makeshlibs
+       dh_installdeb
+       dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure
+
diff --git a/include/telephony_network.h b/include/telephony_network.h
new file mode 100644 (file)
index 0000000..59be336
--- /dev/null
@@ -0,0 +1,352 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#ifndef __TIZEN_TELEPHONY_NETWORK_INFO_H__
+#define __TIZEN_TELEPHONY_NETWORK_INFO_H__
+
+#include <tizen.h>
+#include <telephony_network_type.h>
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+/**
+ * @file network_info.h
+ * @brief This file contains the network information APIs.
+ */
+
+/**
+ * @addtogroup CAPI_TELEPHONY_NETWORK_INFO_MODULE
+ * @{
+ */
+
+/**
+ * @brief Gets the LAC ( Location Area Code ) of current network.
+ *
+ * @param[out] lac The Location Area Code
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre  The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_lac(int *lac);
+
+/**
+ * @brief Gets the cell ID.
+ * 
+ * @param[out] cell_id The cell identification number
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre  The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_cell_id(int *cell_id);
+
+/**
+ * @brief Gets the RSSI (Received Signal Strength Indicator).
+ *
+ * @param[out] rssi The Received Signal Strength Indicator. \n 
+ * The higher the received number is, the stronger the signal strength is.
+ *
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre  The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_rssi(network_info_rssi_e *rssi);
+
+/**
+ * @brief Gets the roaming state.
+ *
+ * @param[out] is_roaming The roaming state: (@c true = roaming, @c false = not roaming)
+ * @return 0 on success, otherwise a negative error value. 
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre  The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_is_roaming(bool *is_roaming);
+
+/**
+ * @brief Gets the MCC (Mobile Country Code) of current network. 
+ *
+ * @remarks @a mcc must be released with free() by you.
+ *
+ * @param[out] mcc The Mobile Country Code (three digits). \n
+ * Mobile Country Code (MCC) identifies the country where the cell is being used.
+ *
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre  The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_mcc(char **mcc);
+
+/**
+ * @brief Gets the MNC (Mobile Network Code) of current network.
+ *
+ * @remarks @a mnc must be released with free() by you.
+ *
+ * @param[out] mnc The Mobile Network Code (three digits). \n
+ * The Mobile Network Code (MNC) identifies the mobile phone operator and network provider.
+ *
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_MEMORY Out of memory
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_mnc(char **mnc);
+
+/**
+ * @brief Gets the name of the network provider.
+ *
+ * @remarks @a provider_name must be released with free() by you.
+ *
+ * @param[out] provider_name The name of the network provider
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_provider_name(char **provider_name);
+
+/**
+ * @brief Gets the network type.
+ *
+ * @param[out] network_type The network type of telephony
+ *
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @pre The Network service state must be #NETWORK_INFO_SERVICE_STATE_IN_SERVICE.
+ * @see        network_info_get_service_state()
+ *
+ */
+int network_info_get_type(network_info_type_e *network_type);
+
+/**
+ * @brief Gets the network state of the telephony service. 
+ *
+ * @remarks To know the state of data network, call connection_get_network_status() in Connection Service.
+ * @param[out] network_service_state The network state of call service
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ *
+ */
+int network_info_get_service_state(network_info_service_state_e *network_service_state);
+
+/**
+ * @brief  Called when the cell ID changes.
+ * @remarks If the cell ID changes, then LAC, MCC, MNC, provider name and network type can be changed.
+ * @param [in] cell_id The cell identification number to be changed
+ * @param [in] user_data The user data passed from the callback registration function
+ * @pre This callback function is invoked if you register this function using network_info_set_cell_id_changed_cb().
+ * @see network_info_set_cell_id_changed_cb()
+ * @see network_info_unset_cell_id_changed_cb()
+ */
+typedef void(* network_info_cell_id_changed_cb)(int cell_id, void *user_data);
+
+/**
+ * @brief Registers a callback function to be invoked when the cell ID changes. 
+ *
+ * @param [in] callback The callback function to register
+ * @param [in] user_data The user data to be passed to the callback function
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service 
+ * @post network_info_cell_id_changed_cb() will be invoked. 
+ * @see network_info_cell_id_changed_cb()
+ * @see        network_info_unset_cell_id_changed_cb() 
+ *
+ */
+int network_info_set_cell_id_changed_cb(network_info_cell_id_changed_cb callback, void *user_data);
+
+/**
+ * @brief Unregisters the callback function.
+ * 
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Operation failed
+ * @see network_info_cell_id_changed_cb()
+ * @see        network_info_set_cell_id_changed_cb()
+ *
+ */
+int network_info_unset_cell_id_changed_cb();
+
+/**
+ * @brief Invoked when the RSSI (Received Signal Strength Indicator) changes.
+ * @param [in] rssi The Received Signal Strength Indicator
+ * @param [in] user_data The user data passed from the callback registration function
+ * @pre This callback function is invoked if you register this function using network_info_set_rssi_changed_cb().
+ * @see network_info_set_rssi_changed_cb()
+ * @see network_info_unset_rssi_changed_cb()
+ */
+typedef void(* network_info_rssi_changed_cb)(network_info_rssi_e rssi, void *user_data);
+
+/**
+ * @brief Registers a callback function to be invoked when RSSI (Received Signal Strength Indicator) changes. 
+ *
+ * @param [in] callback The callback function to register
+ * @param [in] user_data The user data to be passed to the callback function
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service 
+ * @post network_info_rssi_changed_cb() will be invoked. 
+ * @see network_info_rssi_changed_cb()
+ * @see        network_info_unset_rssi_changed_cb()
+ *
+ */
+int network_info_set_rssi_changed_cb(network_info_rssi_changed_cb callback, void *user_data);
+
+/**
+ * @brief Unregisters the callback function.
+ * 
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Operation failed
+ * @see network_info_rssi_changed_cb()
+ * @see        network_info_set_rssi_changed_cb()
+ *
+ */
+int network_info_unset_rssi_changed_cb();
+
+/**
+ * @brief Invoked when the roaming state changes.
+ * @param [in] is_roaming The roaming state
+ * @param [in] user_data The user data passed from the callback registration function
+ * @pre This callback function is invoked if you register this function using network_info_set_roaming_state_changed_cb().
+ * @see network_info_set_roaming_state_changed_cb()
+ * @see network_info_unset_roaming_state_changed_cb()
+ */
+typedef void(* network_info_roaming_state_changed_cb)(bool is_roaming, void *user_data);
+
+/**
+ * @brief Registers a callback function to be invoked when roaming state changes. 
+ *
+ * @param [in] callback The callback function to register
+ * @param [in] user_data The user data to be passed to the callback function
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service 
+ * @post network_info_roaming_state_changed_cb() will be invoked. 
+ * @see network_info_roaming_state_changed_cb()
+ * @see        network_info_unset_roaming_state_changed_cb()
+ *
+ */
+int network_info_set_roaming_state_changed_cb(network_info_roaming_state_changed_cb callback, void *user_data);
+
+/**
+ * @brief Unregisters the callback function.
+ * 
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Operation failed
+ * @see network_info_roaming_state_changed_cb()
+ * @see        network_info_set_roaming_changed_cb()
+ *
+ */
+int network_info_unset_roaming_state_changed_cb();
+
+/**
+ * @brief Invoked when the state of the telephony service changes. 
+ * @param [in] network_service_state The state of telephony service
+ * @param [in] user_data The user data passed from the callback registration function
+ * @pre This callback function is invoked if you register this function using network_info_set_service_state_changed_cb().
+ * @see #network_info_service_state_e
+ * @see network_info_set_service_state_changed_cb()
+ * @see  network_info_unset_service_state_changed_cb()
+ */
+typedef void(* network_info_service_state_changed_cb)(network_info_service_state_e network_service_state, void *user_data);
+
+/**
+ * @brief Registers a callback function to be invoked when telephony service state changes.
+ *
+ * @param [in] callback The callback function to register
+ * @param [in] user_data The user data to be passed to the callback function
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_INVALID_PARAMETER Invalid parameter
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Internal error
+ * @retval #NETWORK_INFO_ERROR_OUT_OF_SERVICE Out of service 
+ * @post network_info_service_state_changed_cb() will be invoked. 
+ * @see        network_info_unset_service_state_changed_cb()
+ */
+int network_info_set_service_state_changed_cb(network_info_service_state_changed_cb callback, void *user_data);
+
+/**
+ * @brief Unregisters the callback function. 
+ * 
+ * @return 0 on success, otherwise a negative error value.
+ * @retval #NETWORK_INFO_ERROR_NONE Successful
+ * @retval #NETWORK_INFO_ERROR_OPERATION_FAILED Operation failed
+ * @see network_info_service_state_changed_cb()
+ * @see        network_info_set_service_state_changed_cb()
+ */
+int network_info_unset_service_state_changed_cb();
+
+
+/**
+ * @}
+ */
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // __TIZEN_TELEPHONY_NETWORK_INFO_H__
diff --git a/include/telephony_network_type.h b/include/telephony_network_type.h
new file mode 100644 (file)
index 0000000..90b952c
--- /dev/null
@@ -0,0 +1,101 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef __TIZEN_TELEPHONY_NETWORK_INFO_TYPE_H__
+#define __TIZEN_TELEPHONY_NETWORK_INFO_TYPE_H__
+
+#ifdef __cplusplus
+ extern "C" {
+#endif
+
+
+/**
+ * @file telephony_network_type.h
+ * @brief This file contains the enumeration related with telephony network.
+ */
+
+/**
+ * @addtogroup CAPI_TELEPHONY_NETWORK_INFO_MODULE
+ * @{
+ */
+
+/**
+ * @brief
+ * Enumerations for telephony error code.
+ */
+typedef enum
+{
+       NETWORK_INFO_ERROR_NONE = TIZEN_ERROR_NONE,     /**< Successful */
+       NETWORK_INFO_ERROR_OUT_OF_MEMORY = TIZEN_ERROR_OUT_OF_MEMORY, /**< Out of memory */
+       NETWORK_INFO_ERROR_INVALID_PARAMETER = TIZEN_ERROR_INVALID_PARAMETER, /**< Invalid parameter */ 
+       NETWORK_INFO_ERROR_OPERATION_FAILED = TIZEN_ERROR_TELEPHONY_CLASS | 0x2000, /**< Operation failed */    
+       NETWORK_INFO_ERROR_OUT_OF_SERVICE = TIZEN_ERROR_TELEPHONY_CLASS | 0x2001, /**< Out of service */                
+} network_info_error_e;
+
+
+/**
+ * @brief Enumerations for RSSI (Receive Signal Strength Indicator).
+ * @details #NETWORK_INFO_RSSI_6 is the highest.
+ */
+typedef enum
+{
+   NETWORK_INFO_RSSI_0 = 0x00, /**< Strength 0 */
+   NETWORK_INFO_RSSI_1,        /**< Strength 1 */
+   NETWORK_INFO_RSSI_2,        /**< Strength 2 */
+   NETWORK_INFO_RSSI_3,        /**< Strength 3 */
+   NETWORK_INFO_RSSI_4,        /**< Strength 4 */
+   NETWORK_INFO_RSSI_5,        /**< Strength 5 */
+   NETWORK_INFO_RSSI_6            /**< Strength 6 */
+} network_info_rssi_e;
+
+
+/**
+ * @brief Enumerations for network type.
+ */
+typedef enum
+{
+       NETWORK_INFO_TYPE_UNKNOWN = 0x00,       /**< Unknown */
+       NETWORK_INFO_TYPE_GSM,  /**< 2G GSM network type */
+       NETWORK_INFO_TYPE_GPRS, /**< 2.5G GPRS network type */
+       NETWORK_INFO_TYPE_EDGE, /**< 2.5G EDGE network type */
+       NETWORK_INFO_TYPE_UMTS, /**< 3G UMTS network type */
+       NETWORK_INFO_TYPE_HSDPA,        /**< HSDPA network type */
+} network_info_type_e;
+
+
+/**
+ * @brief Enumeration for network state.
+ */
+typedef enum
+{
+    NETWORK_INFO_SERVICE_STATE_IN_SERVICE = 0x00,      /**< In service */
+    NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE, /**< Out of service */
+    NETWORK_INFO_SERVICE_STATE_EMERGENCY_ONLY, /**< Only emergency call is allowed */
+    NETWORK_INFO_SERVICE_STATE_RADIO_OFF,      /**< Power of radio is turned off */
+} network_info_service_state_e;
+
+
+#ifdef __cplusplus
+}
+#endif
+
+/**
+ * @}
+ */
+
+#endif // __TIZEN_TELEPHONY_NETWORK_INFO_TYPE_H__
+
diff --git a/packaging/capi-telephony-network-info.spec b/packaging/capi-telephony-network-info.spec
new file mode 100644 (file)
index 0000000..fa6c903
--- /dev/null
@@ -0,0 +1,56 @@
+Name:       capi-telephony-network-info
+Summary:    A Telephony Network Information library in Tizen Native API
+Version: 0.1.0
+Release:    11
+Group:      TO_BE/FILLED_IN
+License:    TO BE FILLED IN
+Source0:    %{name}-%{version}.tar.gz
+BuildRequires:  cmake
+BuildRequires:  pkgconfig(dlog)
+BuildRequires:  pkgconfig(vconf)
+BuildRequires:  pkgconfig(glib-2.0)
+BuildRequires:  pkgconfig(capi-base-common)
+Requires(post): /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+
+%description
+
+
+%package devel
+Summary:  A Telephony Network Information library in Tizen Native API (Development)
+Group:    TO_BE/FILLED_IN
+Requires: %{name} = %{version}-%{release}
+
+%description devel
+
+
+
+%prep
+%setup -q
+
+
+%build
+MAJORVER=`echo %{version} | awk 'BEGIN {FS="."}{print $1}'`
+cmake . -DCMAKE_INSTALL_PREFIX=/usr -DFULLVER=%{version} -DMAJORVER=${MAJORVER}
+
+
+make %{?jobs:-j%jobs}
+
+%install
+rm -rf %{buildroot}
+%make_install
+
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+
+%files
+%manifest capi-telephony-network-info.manifest
+%{_libdir}/libcapi-telephony-network-info.so.*
+
+%files devel
+%{_includedir}/telephony/*.h
+%{_libdir}/pkgconfig/*.pc
+%{_libdir}/libcapi-telephony-network-info.so
+
diff --git a/src/telephony_network.c b/src/telephony_network.c
new file mode 100644 (file)
index 0000000..5720065
--- /dev/null
@@ -0,0 +1,720 @@
+/*
+ * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
+ *
+ * Licensed under the Apache License, Version 2.0 (the License);
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an AS IS BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+
+#include <telephony_network.h>
+#include <vconf-keys.h>
+#include <vconf.h>
+#include <string.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <glib.h>
+#include <dlog.h>
+
+#ifdef LOG_TAG
+#undef LOG_TAG
+#endif
+#define LOG_TAG "CAPI_TELEPHONY_NETWORK_INFO"
+
+// whether vconf_notify_key_changed is registered or not  
+static bool flight_mode_is_registered = false;
+static bool svctype_is_registered = false;
+static bool svc_cs_is_registered = false;
+static bool cell_id_is_registered = false;
+static bool rssi_is_registered = false;
+static bool roaming_is_registered = false;
+
+typedef struct _telephony_cb_data
+{
+       int previous_value;
+       const void* cb;
+       void* user_data;
+} telephony_cb_data;
+
+// Callback function data
+static telephony_cb_data service_state_cb = {NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE, NULL, NULL};
+static telephony_cb_data cell_id_cb = {0, NULL, NULL};
+static telephony_cb_data rssi_cb = {NETWORK_INFO_RSSI_0, NULL, NULL};
+static telephony_cb_data roaming_cb = {false, NULL, NULL};
+
+// Callback function adapter
+static void __telephony_service_changed_cb_adapter(keynode_t *node, void* user_data);
+static void __cell_id_changed_cb_adapter(keynode_t *node, void* user_data);
+static void __rssi_changed_cb_adapter(keynode_t *node, void* user_data);
+static void __roaming_changed_cb_adapter(keynode_t *node, void* user_data);
+static char* __convert_error_code_to_string(network_info_error_e error_code);
+static int __check_service_state(char* function_name);
+
+// Internal Macros
+#define NETWORK_INFO_CHECK_INPUT_PARAMETER(arg) \
+       if( arg == NULL ) \
+       { \
+               LOGE("[%s] INVALID_PARAMETER(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_INVALID_PARAMETER); \
+               return NETWORK_INFO_ERROR_INVALID_PARAMETER; \
+       }
+       
+
+int network_info_get_lac(int* lac)
+{
+       int ret = NETWORK_INFO_ERROR_NONE;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(lac);
+
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_LAC, lac) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_cell_id(int* cell_id)
+{
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(cell_id);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_CELLID, cell_id) != 0 ) 
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_rssi(network_info_rssi_e* rssi)
+{
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(rssi);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_RSSI, (int *)rssi) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_is_roaming(bool* is_roaming)
+{
+       int roaming_state = 0;
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(is_roaming);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_SVC_ROAM, &roaming_state) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       if( roaming_state == VCONFKEY_TELEPHONY_SVC_ROAM_ON )
+       {
+               *is_roaming = true;
+       }
+       else
+       {
+               *is_roaming = false;
+       }                       
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_mcc(char** mcc)
+{
+       char plmn_str[32] = "";
+       int plmn_int = 0;
+       int mcc_length = 3;
+       int ret = NETWORK_INFO_ERROR_NONE;      
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(mcc);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_PLMN, &plmn_int) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       snprintf(plmn_str, 32, "%d", plmn_int);
+       *mcc = (char*)malloc(sizeof(char) * (mcc_length+1));
+       if( *mcc == NULL )
+       {
+               LOGE("[%s] OUT_OF_MEMORY(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OUT_OF_MEMORY);
+               return NETWORK_INFO_ERROR_OUT_OF_MEMORY;
+       }
+       memset(*mcc, 0x00, mcc_length+1);
+       strncpy(*mcc, plmn_str, mcc_length);
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_mnc(char** mnc)
+{
+       char plmn_str[32] = "";
+       int plmn_int = 0;
+       int mnc_length = 3; //mcc_length can 2 or 3 depending on a network, so have to proper way to get the exact length of mcc
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(mnc);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_PLMN, &plmn_int) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       snprintf(plmn_str, 32, "%d", plmn_int);
+       *mnc = (char*)malloc(sizeof(char) * (mnc_length+1));
+       if( *mnc == NULL )
+       {
+               LOGE("[%s] OUT_OF_MEMORY(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OUT_OF_MEMORY);
+               return NETWORK_INFO_ERROR_OUT_OF_MEMORY;
+       }
+       memset(*mnc, 0x00, mnc_length+1);                
+       strncpy(*mnc, plmn_str+3, mnc_length);
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_provider_name(char** provider_name)
+{
+       char* provider_name_p = NULL;
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(provider_name);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       provider_name_p = vconf_get_str(VCONFKEY_TELEPHONY_NWNAME);
+       if( provider_name_p == NULL )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       *provider_name = provider_name_p;
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_type(network_info_type_e* network_type)
+{
+       int service_type = 0;
+       int ret = NETWORK_INFO_ERROR_NONE;
+       
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(network_type);
+       
+       ret = __check_service_state((char*)__FUNCTION__);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               return ret;
+       }
+
+       if( vconf_get_int(VCONFKEY_TELEPHONY_SVCTYPE, &service_type) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       switch(service_type)
+       {
+               case VCONFKEY_TELEPHONY_SVCTYPE_2G:
+                       *network_type = NETWORK_INFO_TYPE_GSM;
+                       break;
+               case VCONFKEY_TELEPHONY_SVCTYPE_2_5G:
+                       *network_type = NETWORK_INFO_TYPE_GPRS;
+                       break;
+               case VCONFKEY_TELEPHONY_SVCTYPE_2_5G_EDGE:
+                       *network_type = NETWORK_INFO_TYPE_EDGE;
+                       break;
+               case VCONFKEY_TELEPHONY_SVCTYPE_3G:
+                       *network_type = NETWORK_INFO_TYPE_UMTS;;
+                       break;
+               case VCONFKEY_TELEPHONY_SVCTYPE_HSDPA:
+                       *network_type = NETWORK_INFO_TYPE_HSDPA;
+                       break;
+               default:
+                       *network_type = NETWORK_INFO_TYPE_UNKNOWN;
+                       break;                  
+       }
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+int network_info_get_service_state(network_info_service_state_e* network_service_state)
+{
+       int service_type = 0;
+       int cs_status = 0;
+       int is_flight_mode = 0;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(network_service_state);
+       
+       // get service type     
+       if( vconf_get_int(VCONFKEY_TELEPHONY_SVCTYPE, &service_type) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to get service type", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       if( service_type == VCONFKEY_TELEPHONY_SVCTYPE_EMERGENCY )
+       {
+               *network_service_state = NETWORK_INFO_SERVICE_STATE_EMERGENCY_ONLY;
+               return NETWORK_INFO_ERROR_NONE;
+       }       
+
+       // get circuit service  
+       if( vconf_get_int(VCONFKEY_TELEPHONY_SVC_CS, &cs_status) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to get the status of cs", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       if( cs_status == VCONFKEY_TELEPHONY_SVC_CS_ON )
+       {
+               *network_service_state = NETWORK_INFO_SERVICE_STATE_IN_SERVICE;
+               return NETWORK_INFO_ERROR_NONE;         
+       }       
+
+       // get flight mode
+       if( vconf_get_bool(VCONFKEY_TELEPHONY_FLIGHT_MODE, &is_flight_mode) != 0 )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to get flight mode", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       if( is_flight_mode == 1 )
+       {
+               *network_service_state = NETWORK_INFO_SERVICE_STATE_RADIO_OFF;
+               return NETWORK_INFO_ERROR_NONE; 
+       }
+
+       *network_service_state = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+int network_info_set_service_state_changed_cb(network_info_service_state_changed_cb callback, void* user_data)
+{
+       int ret = NETWORK_INFO_ERROR_OPERATION_FAILED;
+       network_info_service_state_e service_state = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(callback);
+
+       ret = network_info_get_service_state(&service_state);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               LOGE("[%s] %s(0x%08x) : fail to get current service state", __FUNCTION__, __convert_error_code_to_string(ret), ret);
+               return ret;
+       }
+
+       if( flight_mode_is_registered == false) 
+       {
+               if( vconf_notify_key_changed(VCONFKEY_TELEPHONY_FLIGHT_MODE, (vconf_callback_fn)__telephony_service_changed_cb_adapter, NULL) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback of flight mode", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               flight_mode_is_registered = true;               
+       }
+
+       if( svctype_is_registered == false )
+       {
+               if(vconf_notify_key_changed(VCONFKEY_TELEPHONY_SVCTYPE, (vconf_callback_fn)__telephony_service_changed_cb_adapter, NULL) != 0)
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback of service type", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               svctype_is_registered = true;
+       }
+
+       if( svc_cs_is_registered == false )
+       {
+               if(vconf_notify_key_changed(VCONFKEY_TELEPHONY_SVC_CS, (vconf_callback_fn)__telephony_service_changed_cb_adapter, NULL) != 0)
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback of circuit service", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               svc_cs_is_registered = true;
+       }
+
+       service_state_cb.previous_value = service_state;
+       service_state_cb.cb = callback;
+       service_state_cb.user_data = user_data;
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+int network_info_unset_service_state_changed_cb()
+{
+       if( flight_mode_is_registered == true )
+       {
+               if( vconf_ignore_key_changed(VCONFKEY_TELEPHONY_FLIGHT_MODE, (vconf_callback_fn)__telephony_service_changed_cb_adapter) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback of flight mode", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               flight_mode_is_registered = false;
+       }
+
+       if( svctype_is_registered == true )
+       {
+               if(vconf_ignore_key_changed(VCONFKEY_TELEPHONY_SVCTYPE, (vconf_callback_fn)__telephony_service_changed_cb_adapter) != 0)
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback of service type", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               svctype_is_registered = false;
+       }
+
+       if( svc_cs_is_registered == true )
+       {
+               if(vconf_ignore_key_changed(VCONFKEY_TELEPHONY_SVC_CS, (vconf_callback_fn)__telephony_service_changed_cb_adapter) != 0)
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback of circuit service", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+               svc_cs_is_registered = false;
+       }       
+
+       service_state_cb.previous_value = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
+       service_state_cb.cb = NULL;
+       service_state_cb.user_data = NULL;
+
+       return NETWORK_INFO_ERROR_NONE; 
+}
+
+
+int network_info_set_cell_id_changed_cb(network_info_cell_id_changed_cb callback, void* user_data)
+{
+       int cell_id = 0;
+       int ret = NETWORK_INFO_ERROR_NONE;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(callback);
+
+       ret = network_info_get_cell_id(&cell_id);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               LOGE("[%s] %s(0x%08x) : fail to get current CELL ID", __FUNCTION__, __convert_error_code_to_string(ret), ret);
+               return ret;
+       }
+
+       if( cell_id_is_registered == false) 
+       {               
+               if( vconf_notify_key_changed(VCONFKEY_TELEPHONY_CELLID, (vconf_callback_fn)__cell_id_changed_cb_adapter, NULL) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               cell_id_is_registered = true;           
+       }
+
+       cell_id_cb.previous_value = cell_id;
+       cell_id_cb.cb = callback;
+       cell_id_cb.user_data = user_data;
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+int network_info_unset_cell_id_changed_cb()
+{
+       if( cell_id_is_registered == true )
+       {
+               if( vconf_ignore_key_changed(VCONFKEY_TELEPHONY_CELLID, (vconf_callback_fn)__cell_id_changed_cb_adapter) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               cell_id_is_registered = false;
+               cell_id_cb.previous_value = 0;
+               cell_id_cb.cb = NULL;
+               cell_id_cb.user_data = NULL;            
+       }
+
+       return NETWORK_INFO_ERROR_NONE; 
+}
+
+int network_info_set_rssi_changed_cb(network_info_rssi_changed_cb callback, void* user_data)
+{
+       network_info_rssi_e rssi = NETWORK_INFO_RSSI_0;
+       int ret = NETWORK_INFO_ERROR_NONE;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(callback);
+
+       ret = network_info_get_rssi(&rssi);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               LOGE("[%s] %s(0x%08x) : fail to get current RSSI", __FUNCTION__, __convert_error_code_to_string(ret), ret);
+               return ret;
+       }
+
+       if( rssi_is_registered == false) 
+       {               
+               if( vconf_notify_key_changed(VCONFKEY_TELEPHONY_RSSI, (vconf_callback_fn)__rssi_changed_cb_adapter, NULL) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               rssi_is_registered = true;              
+       }
+
+       rssi_cb.previous_value = rssi;
+       rssi_cb.cb = callback;
+       rssi_cb.user_data = user_data;
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+int network_info_unset_rssi_changed_cb()
+{
+       if( rssi_is_registered == true )
+       {
+               if( vconf_ignore_key_changed(VCONFKEY_TELEPHONY_RSSI, (vconf_callback_fn)__rssi_changed_cb_adapter) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               rssi_is_registered = false;
+               rssi_cb.previous_value = NETWORK_INFO_RSSI_0;
+               rssi_cb.cb = NULL;
+               rssi_cb.user_data = NULL;               
+       }
+
+       return NETWORK_INFO_ERROR_NONE; 
+}
+
+int network_info_set_roaming_state_changed_cb(network_info_roaming_state_changed_cb callback, void* user_data)
+{
+       bool is_roaming = false;
+       int ret = NETWORK_INFO_ERROR_NONE;
+
+       NETWORK_INFO_CHECK_INPUT_PARAMETER(callback);
+
+       ret = network_info_is_roaming(&is_roaming);
+       if( ret != NETWORK_INFO_ERROR_NONE )
+       {
+               LOGE("[%s] %s(0x%08x) : fail to get current roaming state", __FUNCTION__, __convert_error_code_to_string(ret), ret);
+               return ret;
+       }
+
+       if( roaming_is_registered == false) 
+       {               
+               if( vconf_notify_key_changed(VCONFKEY_TELEPHONY_SVC_ROAM, (vconf_callback_fn)__roaming_changed_cb_adapter, NULL) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to register callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               roaming_is_registered = true;           
+       }
+
+       roaming_cb.previous_value = is_roaming;
+       roaming_cb.cb = callback;
+       roaming_cb.user_data = user_data;
+
+       return NETWORK_INFO_ERROR_NONE; 
+}
+
+int network_info_unset_roaming_state_changed_cb()
+{
+       if( roaming_is_registered == true )
+       {
+               if( vconf_ignore_key_changed(VCONFKEY_TELEPHONY_SVC_ROAM, (vconf_callback_fn)__roaming_changed_cb_adapter) != 0 )
+               {
+                       LOGE("[%s] OPERATION_FAILED(0x%08x) : fail to unregister callback function", __FUNCTION__, NETWORK_INFO_ERROR_OPERATION_FAILED);
+                       return NETWORK_INFO_ERROR_OPERATION_FAILED;
+               }
+
+               roaming_is_registered = false;
+               roaming_cb.previous_value = false;
+               roaming_cb.cb = NULL;
+               roaming_cb.user_data = NULL;            
+       }
+
+       return NETWORK_INFO_ERROR_NONE; 
+}
+
+static void __telephony_service_changed_cb_adapter(keynode_t *node, void* user_data) 
+{
+       network_info_service_state_e status = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
+
+       if( service_state_cb.cb == NULL )
+       {
+               return;
+       }
+
+       if( network_info_get_service_state(&status) == NETWORK_INFO_ERROR_NONE )
+       {
+               if( status != service_state_cb.previous_value )
+               {
+                       ((network_info_service_state_changed_cb)(service_state_cb.cb))(status, service_state_cb.user_data);
+                       service_state_cb.previous_value = status;                       
+               }
+       }
+}
+
+static void __cell_id_changed_cb_adapter(keynode_t *node, void* user_data) 
+{
+       int cell_id = 0;
+
+       if( cell_id_cb.cb == NULL )
+       {
+               LOGI("[%s] There is no registered callback", __FUNCTION__);
+               return;
+       }
+
+       if( network_info_get_cell_id(&cell_id) == NETWORK_INFO_ERROR_NONE )
+       {
+               if( cell_id != cell_id_cb.previous_value )
+               {
+                       LOGI("[%s] network_info_cell_id_changed_cb will be called", __FUNCTION__);
+                       ((network_info_cell_id_changed_cb)(cell_id_cb.cb))(cell_id, cell_id_cb.user_data);
+                       cell_id_cb.previous_value = cell_id;                    
+               }
+       }
+}
+
+static void __rssi_changed_cb_adapter(keynode_t *node, void* user_data) 
+{
+       network_info_rssi_e rssi = 0;
+
+       if( rssi_cb.cb == NULL )
+       {
+               return;
+       }
+
+       if( network_info_get_rssi(&rssi) == NETWORK_INFO_ERROR_NONE )
+       {
+               if( rssi != rssi_cb.previous_value )
+               {
+                       ((network_info_rssi_changed_cb)(rssi_cb.cb))(rssi, rssi_cb.user_data);
+                       rssi_cb.previous_value = rssi;                  
+               }
+       }
+}
+
+static void __roaming_changed_cb_adapter(keynode_t *node, void* user_data) 
+{
+       bool is_roaming = 0;
+
+       if( roaming_cb.cb == NULL )
+       {
+               return;
+       }
+
+       if( network_info_is_roaming(&is_roaming) == NETWORK_INFO_ERROR_NONE )
+       {
+               if( is_roaming != roaming_cb.previous_value )
+               {
+                       ((network_info_roaming_state_changed_cb)(roaming_cb.cb))(is_roaming, roaming_cb.user_data);
+                       roaming_cb.previous_value = is_roaming;                 
+               }
+       }
+}
+
+
+static char* __convert_error_code_to_string(network_info_error_e error_code)
+{
+       switch(error_code)
+       {
+               case NETWORK_INFO_ERROR_OUT_OF_MEMORY:
+                       return "OUT_OF_MEMORY";
+               case NETWORK_INFO_ERROR_INVALID_PARAMETER:
+                       return "INVALID_PARAMETER";
+               case NETWORK_INFO_ERROR_OPERATION_FAILED:
+                       return "OPERATION_FAILED";
+               case NETWORK_INFO_ERROR_OUT_OF_SERVICE:
+                       return "OUT_OF_SERVICE";
+               default:
+                       return "UNKNOWN";
+       }
+}
+
+static int __check_service_state(char* function_name)
+{
+       network_info_service_state_e service_state = NETWORK_INFO_SERVICE_STATE_OUT_OF_SERVICE;
+
+       if( network_info_get_service_state(&service_state) != NETWORK_INFO_ERROR_NONE )
+       {
+               LOGE("[%s] OPERATION_FAILED(0x%08x)", function_name, NETWORK_INFO_ERROR_OPERATION_FAILED);
+               return NETWORK_INFO_ERROR_OPERATION_FAILED;
+       }
+
+       if( service_state != NETWORK_INFO_SERVICE_STATE_IN_SERVICE )
+       {
+               LOGE("[%s] OUT_OF_SERVICE(0x%08x)", function_name, NETWORK_INFO_ERROR_OUT_OF_SERVICE);
+               return NETWORK_INFO_ERROR_OUT_OF_SERVICE;
+       }
+
+       return NETWORK_INFO_ERROR_NONE;
+}
+
+
+