Uniform indentation with tabulation
[apps/agl-service-can-low-level.git] / low-can-binding / utils / socketcan-j1939 / socketcan-j1939.hpp
1 /*
2  * Copyright (C) 2018, 2019 "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 #pragma once
19
20 #include <thread>
21 #include <mutex>
22 #include <condition_variable>
23 #include <linux/can/j1939.h>
24 #include <net/if.h>
25 #include "../socketcan.hpp"
26 #include "../../can/message/j1939-message.hpp"
27
28 #ifndef J1939_NAME_ECU
29 #define J1939_NAME_ECU 0x1234
30 #endif
31
32 namespace utils
33 {
34
35         /**
36          * @enum state
37          * @brief The state of the address claiming
38          */
39         enum class claiming_state {
40                 INITIAL, ///< INITIAL - INITIAL state
41                 CLAIMING, ///< CLAIMING - CLAIMING state
42                 OPERATIONAL, ///< OPERATIONAL - OPERATIONAL state
43                 INVALID
44         };
45
46         class socketcan_j1939_addressclaiming_t;
47         class socketcan_j1939_t : public socketcan_t
48         {
49                 public:
50                         using socketcan_t::socketcan_t;
51                         virtual int open(std::string device_name);
52                         virtual int open(std::string device_name, name_t name, pgn_t pgn, uint8_t addr);
53                         virtual std::shared_ptr<message_t> read_message();
54                         virtual std::shared_ptr<message_t> read_message(int flag);
55                         virtual int write_message(message_t& obj);
56                         virtual int write_j1939_message(pgn_t pgn, std::vector<uint8_t> &data, uint32_t len_data);
57
58                 protected:
59                         struct ifreq ifr_;
60                         static std::mutex mutex_claiming_;
61                         static std::condition_variable signal_address_claiming_;
62                         void define_tx_address(std::string device_name, name_t name, pgn_t pgn, uint8_t addr);
63                         void add_filter(name_t name, pgn_t pgn, uint8_t addr, name_t name_mask, pgn_t pgn_mask, uint8_t addr_mask);
64                         void define_opt(bool promisc = true, bool recv_own_msgs = true, bool broadcast = true);
65
66         };
67 }