b981ad3e84233763526163294b0a625dc7e13120
[apps/agl-service-can-low-level.git] / CAN-binder / low-can-binding / utils / socket.hpp
1 #pragma once
2
3 /*
4  * Copyright (C) 2015, 2016 ,2017 "IoT.bzh"
5  * Author "Romain Forlot" <romain.forlot@iot.bzh>
6  * Author "Loïc Collignon" <loic.collignon@iot.bzh>
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *       http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #include <sys/socket.h>
21
22 #define INVALID_SOCKET -1
23
24 namespace utils
25 {
26         class socketcan_t
27         {
28         public:
29                 socketcan_t();
30                 socketcan_t(const socketcan_t&) = delete;
31                 socketcan_t(socketcan_t&&);
32                 ~socketcan_t();
33
34                 explicit operator bool() const;
35
36                 int socket() const;
37                 int open(std::string device_name);
38                 int setopt(int level, int optname, const void* optval, socklen_t optlen);
39                 ssize_t send(const struct canfd_frame& f);
40                 int close();
41         private:
42                 int socket_;
43                 struct sockaddr_can txAddress_; /// < internal member using to bind to the socket
44
45                 int open(int domain, int type, int protocol);
46                 int bind(const struct sockaddr* addr, socklen_t len);
47                 int connect(const struct sockaddr* addr, socklen_t len);
48         };
49 }