summaryrefslogtreecommitdiff
path: root/test/bt_onoff.c
diff options
context:
space:
mode:
authorh.sandeep <h.sandeep@samsung.com>2015-02-19 20:18:23 +0530
committerh.sandeep <h.sandeep@samsung.com>2015-02-20 08:33:02 +0530
commit2d3081d78a7d03d5ab899a01d97fbfb29241af57 (patch)
treeb45d83a1f1dea6125cdd07c55ee0fc7d4795b3aa /test/bt_onoff.c
parent0b035a3d6f8ce6d94742575578c9daee1bab6bb3 (diff)
downloadbluetooth-2d3081d78a7d03d5ab899a01d97fbfb29241af57.tar.gz
bluetooth-2d3081d78a7d03d5ab899a01d97fbfb29241af57.tar.bz2
bluetooth-2d3081d78a7d03d5ab899a01d97fbfb29241af57.zip
Code Sync [Tizen3.0]: Merged Tizen2.4 spin code to tizen.org
Spin code from project: platform/core/api/bluetooth branch: tizen_2.4 Change-Id: Icd609e57fd0fa67754c37352ac2ed1504c6f2b5e Fix build issues Change-Id: I69f9ebd7c24853a7c31679e0ddd8cd1ba0a2c14a Signed-off-by: h.sandeep <h.sandeep@samsung.com>
Diffstat (limited to 'test/bt_onoff.c')
-rwxr-xr-xtest/bt_onoff.c131
1 files changed, 131 insertions, 0 deletions
diff --git a/test/bt_onoff.c b/test/bt_onoff.c
new file mode 100755
index 0000000..f95106a
--- /dev/null
+++ b/test/bt_onoff.c
@@ -0,0 +1,131 @@
+/*
+ * 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.
+ */
+
+/**
+ * @file bt_onoff.c
+ * @brief This is the source file for bt activation/deactivation.
+ */
+
+#include <stdio.h>
+#include <glib.h>
+
+#include "bluetooth.h"
+
+#define PRT(format, args...) printf("%s:%d() "format, __FUNCTION__, __LINE__, ##args)
+#define TC_PRT(format, args...) PRT(format"\n", ##args)
+
+GMainLoop *main_loop = NULL;
+static guint onoff_timer = 0;
+
+static void __bt_adapter_state_changed_cb(int result, bt_adapter_state_e adapter_state, void *user_data)
+{
+ TC_PRT("state(%d), error(%d)", adapter_state, result);
+
+ if (onoff_timer)
+ g_source_remove(onoff_timer);
+ onoff_timer = 0;
+
+ if (result != BT_ERROR_NONE) {
+ char *argv[] = {NULL};
+ execv("all_log_dump.sh", argv);
+ }
+
+ if (main_loop)
+ g_main_loop_quit(main_loop);
+ else
+ exit(0);
+}
+
+static gboolean __bt_onoff_timeout_cb(gpointer data)
+{
+ TC_PRT("Timed out");
+
+ char *argv[] = {NULL};
+ execv("all_log_dump.sh", argv);
+
+ if (main_loop)
+ g_main_loop_quit(main_loop);
+ else
+ exit(0);
+
+ return FALSE;
+}
+
+int main(int argc, char* argv[])
+{
+ int ret;
+ bt_adapter_state_e state;
+
+ if(bt_initialize() != BT_ERROR_NONE)
+ {
+ TC_PRT("bt_initialize() failed.");
+ return -1;
+ }
+ if (bt_adapter_set_state_changed_cb(__bt_adapter_state_changed_cb, NULL) != BT_ERROR_NONE)
+ {
+ TC_PRT("bt_adapter_set_state_changed_cb() failed.");
+ goto DONE;
+ }
+
+ main_loop = g_main_loop_new(NULL, FALSE);
+
+ bt_adapter_get_state(&state);
+ ret = bt_adapter_get_state(&state);
+ TC_PRT("state(%d), error(%d)", state, ret);
+
+ onoff_timer = g_timeout_add(20000, (GSourceFunc)__bt_onoff_timeout_cb, NULL);
+
+ if (argc <= 1) {
+ if (state == BT_ADAPTER_DISABLED)
+ ret = bt_adapter_enable();
+ else
+ ret = bt_adapter_disable();
+ TC_PRT("bt_adapter_%s() error(%d)", state==BT_ADAPTER_DISABLED?"enable":"disable", ret);
+ } else {
+ if (argv[1][0] == '0') {
+ if (state == BT_ADAPTER_DISABLED) {
+ TC_PRT("Already disabled");
+ goto DONE;
+ } else {
+ ret = bt_adapter_disable();
+ TC_PRT("bt_adapter_disable() error(%d)", ret);
+ if (ret != BT_ERROR_NONE)
+ goto DONE;
+ }
+ } else {
+ if (state == BT_ADAPTER_ENABLED) {
+ TC_PRT("Already eabled");
+ goto DONE;
+ } else {
+ ret = bt_adapter_enable();
+ TC_PRT("bt_adapter_enable() error(%d)", ret);
+ if (ret != BT_ERROR_NONE)
+ goto DONE;
+ }
+ }
+ }
+
+ g_main_loop_run(main_loop);
+
+DONE:
+ if (onoff_timer)
+ g_source_remove(onoff_timer);
+ onoff_timer = 0;
+ bt_adapter_unset_state_changed_cb();
+ bt_deinitialize();
+
+ return 0;
+}