Return completion status when receiving CAN frames.
[apps/agl-service-can-low-level.git] / src / isotp / isotp.c
1 #include <isotp/isotp.h>
2 #include <isotp/receive.h>
3 #include <bitfield/bitfield.h>
4
5 const uint16_t MAX_ISO_TP_MESSAGE_SIZE = 4096;
6 const uint16_t MAX_CAN_FRAME_SIZE = 8;
7 const uint8_t ISO_TP_DEFAULT_RESPONSE_TIMEOUT = 100;
8 const bool ISO_TP_DEFAULT_FRAME_PADDING_STATUS = true;
9
10 // TODO why isn't this picked up from the header?
11 extern IsoTpHandle isotp_receive(IsoTpShims* shims, const uint16_t arbitration_id,
12         IsoTpMessageReceivedHandler callback);
13
14
15 /* void isotp_set_timeout(IsoTpHandler* handler, uint16_t timeout_ms) { */
16     /* handler->timeout_ms = timeout_ms; */
17 /* } */
18
19 IsoTpShims isotp_init_shims(LogShim log, SendCanMessageShim send_can_message,
20         SetTimerShim set_timer) {
21     IsoTpShims shims = {
22         log: log,
23         send_can_message: send_can_message,
24         set_timer: set_timer
25     };
26     return shims;
27 }
28
29 void isotp_message_to_string(const IsoTpMessage* message, char* destination,
30         size_t destination_length) {
31     snprintf(destination, destination_length,"ID: 0x%02x, Payload: 0x%llx",
32             // TODO the payload may be backwards here
33             message->arbitration_id, message->payload);
34 }
35
36 bool isotp_receive_can_frame(IsoTpShims* shims, IsoTpHandle* handle,
37         const uint16_t arbitration_id, const uint8_t data[],
38         const uint8_t data_length) {
39     bool message_completed = false;
40
41     if(data_length < 1) {
42         return message_completed;
43     }
44
45     if(handle->type == ISOTP_HANDLE_RECEIVING) {
46         if(handle->receive_handle.arbitration_id != arbitration_id) {
47             return message_completed;
48         }
49     } else if(handle->type == ISOTP_HANDLE_SENDING) {
50         if(handle->send_handle.receiving_arbitration_id != arbitration_id) {
51             return message_completed;
52         }
53     } else {
54         shims->log("The ISO-TP handle is corrupt");
55         return message_completed;
56     }
57
58     IsoTpProtocolControlInformation pci = (IsoTpProtocolControlInformation)
59             get_nibble(data, data_length, 0);
60
61     uint8_t payload_length = get_nibble(data, data_length, 1);
62     uint8_t payload[payload_length];
63     if(payload_length > 0 && data_length > 0) {
64         memcpy(payload, &data[1], payload_length);
65     }
66
67     // TODO this is set up to handle rx a response with a payload, but not to
68     // handle flow control responses for multi frame messages that we're in the
69     // process of sending
70
71     switch(pci) {
72         case PCI_SINGLE: {
73             IsoTpMessage message = {
74                 arbitration_id: arbitration_id,
75                 payload: payload,
76                 size: payload_length
77             };
78
79             message_completed = isotp_handle_single_frame(handle, &message);
80             break;
81          }
82         default:
83             shims->log("Only single frame messages are supported");
84             break;
85     }
86     return message_completed;
87 }