Integrate internal fixes
[platform/core/system/sensord.git] / src / sensorctl / info.cpp
1 /*
2  * sensorctl
3  *
4  * Copyright (c) 2017 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include "info.h"
21
22 #include <stdio.h>
23 #include <glib.h>
24 #include <sensor_internal.h>
25
26 #include "log.h"
27
28 #define INFO_ARGC 3 /* e.g. {sensorctl, info, accelerometer} */
29
30 bool info_manager::run(int argc, char *argv[])
31 {
32         sensor_type_t type;
33         sensor_t *sensors;
34         int count;
35
36         if (argc < INFO_ARGC) {
37                 usage();
38                 return false;
39         }
40
41         type = get_sensor_type(argv[2]);
42         RETVM_IF(type == UNKNOWN_SENSOR, false, "Wrong argument : %s\n", argv[2]);
43
44         sensord_get_sensor_list(type, &sensors, &count);
45         show_info(sensors, count);
46
47         delete sensors;
48         return true;
49 }
50
51 void info_manager::show_info(sensor_t *sensors, int count)
52 {
53         sensor_type_t type;
54         sensor_t sensor;
55         char *vendor;
56         char *name;
57         float min_range;
58         float max_range;
59         float resolution;
60         int min_interval;
61         int fifo_count;
62         int max_batch_count;
63
64         for (int i = 0; i < count; ++i) {
65                 sensor = sensors[i];
66
67                 sensord_get_type(sensor, &type);
68                 name = const_cast<char *>(sensord_get_name(sensor));
69                 vendor = const_cast<char *>(sensord_get_vendor(sensor));
70                 sensord_get_max_range(sensor, &max_range);
71                 sensord_get_min_range(sensor, &min_range);
72                 sensord_get_resolution(sensor, &resolution);
73                 sensord_get_min_interval(sensor, &min_interval);
74                 sensord_get_fifo_count(sensor, &fifo_count);
75                 sensord_get_max_batch_count(sensor, &max_batch_count);
76
77                 _N("-------sensor[%d] information-------\n", i);
78                 _N("type            : %#x\n", type);
79                 _N("vendor          : %s\n", vendor);
80                 _N("name            : %s\n", name);
81                 _N("min_range       : %f\n", min_range);
82                 _N("max_range       : %f\n", max_range);
83                 _N("resolution      : %f\n", resolution);
84                 _N("min_interval    : %d\n", min_interval);
85                 _N("fifo_count      : %d\n", fifo_count);
86                 _N("max_batch_count : %d\n", max_batch_count);
87                 _N("--------------------------------\n");
88         }
89 }
90
91 void info_manager::usage(void)
92 {
93         _N("usage: sensorctl info <sensor_type>\n\n");
94
95         usage_sensors();
96 }