summaryrefslogtreecommitdiff
path: root/plugins/common/canbusimpl.cpp
blob: b0a0fa7d4909de40b547eac882ad810be80817b6 (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
/*
Copyright (C) 2012 Intel Corporation
Copyright (C) 2015 Cogent Embedded Inc.
Copyright (C) 2015 Renesas Electronics Corporation

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
*/

#include "canbusimpl.h"
#include "canobserver.h"
#include "canadapter.h"
#include "logger.h"

CANBusImpl::CANBusImpl(CANObserver& observer) :
    mObserver(observer),
    mAdapter(NULL)
{
    LOG_TRACE("");
}

CANBusImpl::~CANBusImpl()
{
    LOG_TRACE("");

    stop();
}

bool CANBusImpl::start(const char* name)
{
    LOG_TRACE("");

    if(!mAdapter) {
        init();
    }
    return mAdapter ? mAdapter->start(name) : false;
}

void CANBusImpl::stop()
{
    LOG_TRACE("");

    if(mAdapter) {
        mAdapter->stop();
        delete mAdapter;
        mAdapter = 0;
    }
}

bool CANBusImpl::sendStandardFrame(const can_frame& frame)
{
    LOG_TRACE("");

    if(mAdapter) {
        struct can_frame frm(frame);
        frm.can_id &= CAN_SFF_MASK;
        return mAdapter->sendFrame(frm);
    }
    return false;
}

bool CANBusImpl::sendExtendedFrame(const can_frame& frame)
{
    LOG_TRACE("");

    if(mAdapter) {
        struct can_frame frm(frame);
        frm.can_id &= CAN_EFF_MASK;
        frm.can_id |= CAN_EFF_FLAG;
        return mAdapter->sendFrame(frm);
    }
    return false;
}

void CANBusImpl::init()
{
    mAdapter = CANAdapter::createCANAdapter(mObserver);
}

bool CANBusImpl::registerCyclicMessageForReceive(int canId, double minCycleTime, double maxCycleTime)
{
    if(mAdapter) {
        return mAdapter->registerCyclicMessageForReceive(canId, minCycleTime, maxCycleTime);
    }
    return false;
}

bool CANBusImpl::unregisterMessageForReceive(int canId)
{
    if(mAdapter) {
     return mAdapter->unregisterMessageForReceive(canId);
    }
    return false;
}