Add file converter to manage all conversions
[apps/agl-service-can-low-level.git] / low-can-binding / utils / converter.cpp
1 /*
2  * Copyright (C) 2019, 2020 "IoT.bzh"
3  * Author "Arthur Guyader" <arthur.guyader@iot.bzh>
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include "converter.hpp"
19 #include <sstream>
20 #include <net/if.h>
21 #include <afb/afb-binding>
22
23 /**
24  * @brief Convert hex data to string
25  *
26  * @param data An array of data
27  * @param length The length of the data
28  * @return std::string The string data
29  */
30 std::string converter_t::to_hex(const uint8_t data[], const size_t length)
31 {
32         std::stringstream stream;
33         stream << std::hex << std::setfill('0');
34         for(int i = 0; i < length; i++)
35         {
36                 stream << std::hex << ((int) data[i]);
37         }
38         return stream.str();
39 }
40
41 /**
42  * @brief Translate bit_position and bit_size
43  *
44  *
45  * @param bit_position The position in the frame
46  * @param bit_size The size of the signal
47  * @param new_start_byte The first bytes of the signal in the frame
48  * @param new_end_byte The last byte of the signal in the frame
49  * @param new_start_bit The first bit of the signal in the frame
50  * @param new_end_bit The last bit of the signal in the frame
51  */
52 void converter_t::signal_to_bits_bytes(uint32_t bit_position, uint32_t bit_size, int &new_start_byte, int &new_end_byte, int &new_start_bit, int &new_end_bit)
53 {
54         new_start_byte = bit_position >> 3;
55         new_start_bit = bit_position % 8;
56         new_end_byte = (bit_position + bit_size - 1) >> 3;
57         new_end_bit = (bit_position + bit_size - 1) % 8;
58 }