summaryrefslogtreecommitdiffstats
path: root/ABI-IPC/abi-ipc.cpp
blob: 2730811b9fa1c5f5a22211500eba2ae0cb829106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
//
//  abi-ipc.cpp
//  AmbientLight
//
//  Created by Thorsten Kummermehr on 10/9/13.
//
//

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include "abi-ipc.h"

using namespace K2L::Automotive::ABI;
using namespace K2L::Automotive::ABI_IPC;


AbiUsbIpc::AbiUsbIpc() : _isConnected( false ), _receiveThreadIsRunning( false ), _receiveCB( NULL ),
                         _receiveCBArgument( NULL ), _rxHandle( -1 ), _txHandle( -1 )
{
}

AbiUsbIpc::~AbiUsbIpc()
{
    Disconnect();
}

bool AbiUsbIpc::Connect( const char *cdevRx, const char *cdevTx )
{
    fprintf( stdout, "Connecting to RX:%s TX:%s\n", cdevRx, cdevTx );
    bool success = -1 != ( _rxHandle = open( cdevRx, O_RDONLY ) );
    if( success )
    {
        _isConnected = -1 != ( _txHandle = open( cdevTx, O_WRONLY ) );
    }

    if( !_isConnected )
    {
        if( -1 != _rxHandle )
        {
            close( _rxHandle );
            _rxHandle = -1;
        }
        fprintf( stderr, "Failed to open cdev\n" );
        return false;
    }

    if( pthread_create( &_receiveThread, NULL, ReceiveThread, this ) )
    {
        fprintf( stderr, "Failed to create receive thread\n" );
        Disconnect();
        return false;
    }

    return true;
}

bool AbiUsbIpc::Connect( const char *cdevRxTx )
{
    fprintf( stdout, "Connecting to combined RX and TX:%s\n", cdevRxTx );
    _isConnected = -1 != ( _rxHandle = _txHandle = open( cdevRxTx, O_RDWR ) );
    if( !_isConnected )
    {
        fprintf( stderr, "Failed to open cdev\n" );
        return false;
    }

    if( pthread_create( &_receiveThread, NULL, ReceiveThread, this ) )
    {
        fprintf( stderr, "Failed to create receive thread\n" );
        Disconnect();
        return false;
    }

    return true;
}

void AbiUsbIpc::Disconnect( void )
{
    if( !_isConnected )
        return;
    _isConnected = false;

    //Give the receive thread one second to shutdown
    for( int i = 0; i < 100; i++ )
    {
        if( _receiveThreadIsRunning )
            usleep( 10000 );
        else
            break;
    }

    if( 0 != _rxHandle )
    {
        close( _rxHandle );
        _rxHandle = -1;
    }

    if( 0 != _txHandle )
    {
        close( _txHandle );
        _txHandle = -1;
    }
}

bool AbiUsbIpc::IsConnected()
{
    return _isConnected;
}

int AbiUsbIpc::Send( const BYTE *data, DWORD length )
{
    if( !_isConnected )
        return 0;
    return ( int )write( _txHandle, data, length );
}

void AbiUsbIpc::SetReceivePriority( int prio )
{
}

void AbiUsbIpc::SetReceiveCallback( AbiIpcDevice_RxCB_t receiveCB, void *cbArg )
{
    if( NULL != _receiveCB )
    {
        fprintf( stderr,
            "The actual implementaion of SetReceiveCallback supports only one listener. To be improved.\n" );
        return;
    }
    _receiveCB = receiveCB;
    _receiveCBArgument = cbArg;
}

void *AbiUsbIpc::ReceiveThread( void *param )
{
    if( NULL == param )
    {
        fprintf( stderr,
            "Receive thread could not be started, because the this pointer was not passed as argument\n" );
        pthread_exit( 0 );
    }
    AbiUsbIpc *that = ( AbiUsbIpc * )param;

    that->_receiveThreadIsRunning = true;
    while( that->_isConnected )
    {
        ssize_t rc = read( that->_rxHandle, that->receiveBuffer, sizeof( that->receiveBuffer ) );
        if( rc <= 0 )
        {
            //Receive error (<0) or other side closed connection (==0)
            //fprintf( stdout, "Closing connection because read returned value %d\n", ( uint32_t )rc );
            //if( that->_isConnected )
            //{
            //    that->Disconnect();
            //}
        }
        else
        {
            // "rc"-bytes received
            if( NULL != that->_receiveCB )
            {
                that->_receiveCB( ( uint8_t * )&that->receiveBuffer, ( uint32_t )rc, that->_receiveCBArgument );
            }
        }
    }
    that->_receiveThreadIsRunning = false;
    pthread_exit( 0 );
}