Adding test file for pressure sensor 01/28101/4
authorVibhor Gaur <vibhor.gaur@samsung.com>
Fri, 26 Sep 2014 05:59:12 +0000 (11:29 +0530)
committerVibhor Gaur <vibhor.gaur@samsung.com>
Fri, 26 Sep 2014 10:48:17 +0000 (16:18 +0530)
Adding test file for pressure sensor along with updated spec and cmake files.

Change-Id: Ic81fe9a6aa31637ac4d60fb5b773c22c30a1ee47

packaging/sensord.spec
test/CMakeLists.txt
test/src/pressure.c [new file with mode: 0644]

index f3b4b8a..d89a522 100755 (executable)
@@ -143,6 +143,7 @@ systemctl daemon-reload
 /usr/bin/linear_acceleration
 /usr/bin/gyro
 /usr/bin/proxi
+/usr/bin/pressure
 %license LICENSE.APLv2
 %{_datadir}/license/test
 %endif
index c016484..24b24ce 100644 (file)
@@ -34,6 +34,7 @@ add_executable(gravity src/gravity.c)
 add_executable(linear_acceleration src/linear_acceleration.c)
 add_executable(gyro src/gyro.c)
 add_executable(proxi src/proxi.c)
+add_executable(pressure src/pressure.c)
 
 SET_TARGET_PROPERTIES(accelerometer PROPERTIES LINKER_LANGUAGE C)
 SET_TARGET_PROPERTIES(geomagnetic PROPERTIES LINKER_LANGUAGE C)
@@ -42,6 +43,7 @@ SET_TARGET_PROPERTIES(gravity PROPERTIES LINKER_LANGUAGE C)
 SET_TARGET_PROPERTIES(linear_acceleration PROPERTIES LINKER_LANGUAGE C)
 SET_TARGET_PROPERTIES(gyro PROPERTIES LINKER_LANGUAGE C)
 SET_TARGET_PROPERTIES(proxi PROPERTIES LINKER_LANGUAGE C)
+SET_TARGET_PROPERTIES(pressure PROPERTIES LINKER_LANGUAGE C)
 
 target_link_libraries(accelerometer glib-2.0 dlog sensor)
 target_link_libraries(geomagnetic glib-2.0 dlog sensor)
@@ -50,6 +52,7 @@ target_link_libraries(gravity glib-2.0 dlog sensor)
 target_link_libraries(linear_acceleration glib-2.0 dlog sensor)
 target_link_libraries(gyro glib-2.0 dlog sensor)
 target_link_libraries(proxi glib-2.0 dlog sensor)
+target_link_libraries(pressure glib-2.0 dlog sensor)
 
 INSTALL(TARGETS accelerometer DESTINATION /usr/bin/)
 INSTALL(TARGETS geomagnetic DESTINATION /usr/bin/)
@@ -58,5 +61,5 @@ INSTALL(TARGETS gravity DESTINATION /usr/bin/)
 INSTALL(TARGETS linear_acceleration DESTINATION /usr/bin/)
 INSTALL(TARGETS gyro DESTINATION /usr/bin/)
 INSTALL(TARGETS proxi DESTINATION /usr/bin/)
-
+INSTALL(TARGETS pressure DESTINATION /usr/bin/)
 
diff --git a/test/src/pressure.c b/test/src/pressure.c
new file mode 100644 (file)
index 0000000..112c016
--- /dev/null
@@ -0,0 +1,105 @@
+/*
+ * sensord
+ *
+ * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ *
+ * 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 <time.h>
+#include <glib.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <sensor.h>
+#include <stdbool.h>
+
+static GMainLoop *mainloop;
+
+void callback(unsigned int event_type, sensor_event_data_t *event, void *user_data)
+{
+       sensor_data_t *data = (sensor_data_t *)event->event_data;
+       printf("Pressure [%lld] [%6.6f] [%6.6f] [%6.6f]\n\n", data->timestamp, data->values[0], data->values[1], data->values[2]);
+}
+
+void printformat()
+{
+       printf("Usage : ./pressure <event> <interval>(optional)\n\n");
+       printf("event:\n");
+       printf("RAW_DATA_REPORT_ON_TIME\n");
+       printf("interval:\n");
+       printf("The time interval should be entered based on the sampling frequency supported by pressure driver on the device in ms.If no value for sensor is entered default value by the driver will be used.\n");
+}
+
+int main(int argc, char **argv)
+{
+       int result, handle, start_handle, stop_handle;
+       unsigned int event;
+
+       mainloop = g_main_loop_new(NULL, FALSE);
+       sensor_type_t type = PRESSURE_SENSOR;
+       event_condition_t *event_condition = (event_condition_t*) malloc(sizeof(event_condition_t));
+       event_condition->cond_op = CONDITION_EQUAL;
+       event_condition->cond_value1 = 100;
+
+       if (argc != 2 && argc != 3) {
+               printformat();
+               free(event_condition);
+               return 0;
+       }
+
+       if (strcmp(argv[1], "RAW_DATA_REPORT_ON_TIME") != 0) {
+               printformat();
+               free(event_condition);
+               return 0;
+       }
+
+       event = PRESSURE_EVENT_RAW_DATA_REPORT_ON_TIME;
+
+       if (argc == 3)
+               event_condition->cond_value1 = atof(argv[2]);
+
+       handle = sf_connect(type);
+       result = sf_register_event(handle, event, event_condition, callback, NULL);
+
+       if (result < 0)
+               printf("Can't register pressure\n");
+
+       start_handle = sf_start(handle,0);
+
+       if (start_handle < 0) {
+               printf("Error\n\n\n\n");
+               sf_unregister_event(handle, event);
+               sf_disconnect(handle);
+               return -1;
+       }
+
+       g_main_loop_run(mainloop);
+       g_main_loop_unref(mainloop);
+
+       sf_unregister_event(handle, event);
+
+       stop_handle = sf_stop(handle);
+
+       if (stop_handle < 0) {
+               printf("Error\n\n");
+               return -1;
+       }
+
+       sf_disconnect(handle);
+
+       free(event_condition);
+
+       return 0;
+}
+