Adding AK8975 geo-sensor info in sensors.xml.in required by geo-plugin
[platform/core/system/sensord.git] / src / sensor_fusion / standalone / util / test / orientation_filter_test / orientation_filter_main.cpp
1 /*
2  * sensord
3  *
4  * Copyright (c) 2014 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 "../../orientation_filter.h"
21 #include <stdlib.h>
22 #include <iostream>
23 #include <fstream>
24 #include <string>
25 using namespace std;
26
27 #define ORIENTATION_DATA_PATH "../../../../design/data/100ms/orientation/roll_pitch_yaw/"
28 #define ORIENTATION_DATA_SIZE 1095
29
30 int main()
31 {
32         int data_available = ORIENTATION_DATA_SIZE;
33         ifstream accel_in, gyro_in, mag_in;
34         ofstream orien_file;
35         string line_accel, line_gyro, line_magnetic;
36         float sdata[3];
37         unsigned long long time_stamp;
38         euler_angles<float> orientation;
39         orientation_filter<float> orien_filter;
40
41         accel_in.open(((string)ORIENTATION_DATA_PATH + (string)"accel.txt").c_str());
42         gyro_in.open(((string)ORIENTATION_DATA_PATH + (string)"gyro.txt").c_str());
43         mag_in.open(((string)ORIENTATION_DATA_PATH + (string)"magnetic.txt").c_str());
44
45         orien_file.open(((string)"orientation.txt").c_str());
46
47         char *token = NULL;
48
49         while (data_available-- > 0)
50         {
51                 getline(accel_in, line_accel);
52                 sdata[0] = strtof(line_accel.c_str(), &token);
53                 sdata[1] = strtof(token, &token);
54                 sdata[2] = strtof(token, &token);
55                 time_stamp = strtoull (token, NULL, 10);
56                 sensor_data<float> accel_data(sdata[0], sdata[1], sdata[2], time_stamp);
57
58                 cout << "Accel Data\t" << accel_data.m_data << "\t Time Stamp\t" << accel_data.m_time_stamp << "\n\n";
59
60                 getline(gyro_in, line_gyro);
61                 sdata[0] = strtof(line_gyro.c_str(), &token);
62                 sdata[1] = strtof(token, &token);
63                 sdata[2] = strtof(token, &token);
64                 time_stamp = strtoull (token, NULL, 10);
65                 sensor_data<float> gyro_data(sdata[0], sdata[1], sdata[2], time_stamp);
66
67                 cout << "Gyro Data\t" << gyro_data.m_data << "\t Time Stamp\t" << gyro_data.m_time_stamp << "\n\n";
68
69                 getline(mag_in, line_magnetic);
70                 sdata[0] = strtof(line_magnetic.c_str(), &token);
71                 sdata[1] = strtof(token, &token);
72                 sdata[2] = strtof(token, &token);
73                 time_stamp = strtoull (token, NULL, 10);
74                 sensor_data<float> magnetic_data(sdata[0], sdata[1], sdata[2], time_stamp);
75
76                 cout << "Magnetic Data\t" << magnetic_data.m_data << "\t Time Stamp\t" << magnetic_data.m_time_stamp << "\n\n";
77
78                 orientation = orien_filter.get_orientation(accel_data, gyro_data, magnetic_data);
79
80                 orien_file << orientation.m_ang;
81
82                 cout << "Orientation Data\t" << orientation.m_ang << "\n\n";
83         }
84
85         accel_in.close();
86         gyro_in.close();
87         mag_in.close();
88         orien_file.close();
89
90         return 0;
91 }