8c2952457
김태훈
응용 프로그램 추가
|
1
2
3
|
#include "udphandler.h"
#include <QtDebug>
|
81bee1ec4
김태훈
원격 패킷 출력 프로그램 추가
|
4
|
#define IPC_UDP_SYS_HOST "127.0.0.1"
|
8c2952457
김태훈
응용 프로그램 추가
|
5
6
7
8
9
10
11
|
#define IPC_UDP_SYS_PORT 4001
#define IPC_UDP_GUI_PORT 4000
typedef struct {
int header;
char body[];
} STRUCT_PACK packet_t;
|
538041ab9
김태훈
소스 코드 구조 개선
|
12
|
UdpHandler *UdpHandler::instance = 0;
|
8c2952457
김태훈
응용 프로그램 추가
|
13
14
|
UdpHandler::UdpHandler(QObject *parent) : QObject(parent)
{
|
6a965b9f1
고영탁
엔지니어 모드 2차 구현
|
15
16
|
bzero(&control, sizeof(control));
bzero(&state, sizeof(state));
|
bae371454
김태훈
485 통신 오류 검출 루틴
|
17
18
19
20
21
22
23
|
emitted = false;
emitTimeoutTimer.setSingleShot(true);
emitTimeoutTimer.setInterval(10 * 1000);
connect(&emitTimeoutTimer, SIGNAL(timeout()), SLOT(emitTimeout()));
emitTimeoutTimer.start();
|
8c2952457
김태훈
응용 프로그램 추가
|
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
|
}
bool UdpHandler::init()
{
sock = new QUdpSocket(this);
if (!sock->bind(IPC_UDP_GUI_PORT))
return false;
connect(sock, SIGNAL(readyRead()), this, SLOT(readPendingDatagrams()));
return true;
}
void UdpHandler::readPendingDatagrams()
{
while (sock->hasPendingDatagrams()) {
QByteArray datagram;
datagram.resize(sock->pendingDatagramSize());
QHostAddress sender;
quint16 senderPort;
sock->readDatagram(datagram.data(), datagram.size(), &sender, &senderPort);
processDatagram(datagram);
}
}
void UdpHandler::processDatagram(QByteArray &datagram)
{
|
fe9efe64f
김태훈
기본 UDP 패킷 전송 주소 변경
|
53
|
sock->writeDatagram(datagram, QHostAddress("localhost"), 40001);
|
bae371454
김태훈
485 통신 오류 검출 루틴
|
54
55
56
57
58
|
if (emitted)
{
emitted = false;
emit recovered();
}
|
8c2952457
김태훈
응용 프로그램 추가
|
59
60
61
62
|
packet_t *packet = (packet_t *) datagram.data();
switch (packet->header)
{
case HDR_OVEN_CONTROL:
|
d7c3a65b4
김태훈
- 디버깅 포트 변경(4000 ...
|
63
|
qDebug() << "Received Control";
|
8c2952457
김태훈
응용 프로그램 추가
|
64
65
66
|
processControl((oven_control_t *) packet->body);
break;
case HDR_OVEN_STATE:
|
d7c3a65b4
김태훈
- 디버깅 포트 변경(4000 ...
|
67
|
qDebug() << "Received State";
|
8c2952457
김태훈
응용 프로그램 추가
|
68
69
70
|
processState((oven_state_t *) packet->body);
break;
case HDR_ERROR_CODE:
|
d66d7f5b4
김태훈
GUI 버전 0.1.2
|
71
|
qDebug() << "Received Error";
|
8c2952457
김태훈
응용 프로그램 추가
|
72
73
|
break;
}
|
bae371454
김태훈
485 통신 오류 검출 루틴
|
74
75
|
emitTimeoutTimer.start();
|
8c2952457
김태훈
응용 프로그램 추가
|
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
|
}
void UdpHandler::processControl(oven_control_t *control)
{
if (memcmp(&this->control, control, sizeof(this->control)))
{
memcpy(&this->control, control, sizeof(this->control));
emit changed();
}
}
void UdpHandler::processState(oven_state_t *state)
{
if (memcmp(&this->state, state, sizeof(this->state)))
{
memcpy(&this->state, state, sizeof(this->state));
emit changed();
}
}
void UdpHandler::turnOn(int target)
{
sendCommand(CMD_ONOFF, target, SWITCH_ON);
}
void UdpHandler::turnOff(int target)
{
sendCommand(CMD_ONOFF, target, SWITCH_OFF);
}
void UdpHandler::set(int target, int value)
{
sendCommand(CMD_VALUE, target, value);
}
void UdpHandler::sendCommand(int cmd, int target, int value)
{
command_t command = { cmd, target, value };
qDebug() << "Send" << cmd << target << value;
sock->writeDatagram((const char *) &command, sizeof(command), QHostAddress(IPC_UDP_SYS_HOST), IPC_UDP_SYS_PORT);
}
|
bae371454
김태훈
485 통신 오류 검출 루틴
|
117
118
119
120
121
|
void UdpHandler::emitTimeout()
{
emitted = true;
emit timeout();
}
|
8c2952457
김태훈
응용 프로그램 추가
|
122
123
124
125
126
127
128
129
130
|
void UdpHandler::fillControl(oven_control_t &container)
{
memcpy(&container, &control, sizeof(control));
}
void UdpHandler::fillData(oven_state_t &container)
{
memcpy(&container, &state, sizeof(state));
}
|