-
Notifications
You must be signed in to change notification settings - Fork 2
/
Session.c
225 lines (197 loc) · 7.24 KB
/
Session.c
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
/*------------------------------------------------------------------------------
-- SOURCE FILE: Session.c - Contains all the OSI "session layer"
-- functions for the Terminal Emulator.
--
-- PROGRAM: Advanced Terminal Emulator Pro
--
-- FUNCTIONS:
-- BOOL Connect(HWND);
-- VOID Disconnect(HWND);
-- VOID SelectPort(HWND, INT);
--
--
-- DATE: Oct 19, 2010
--
-- REVISIONS: (Date and Description)
--
-- DESIGNER: Dean Morin
--
-- PROGRAMMER: Dean Morin
--
-- NOTES:
-- Contains session level functions for the Terminal Emulator program. These
-- are the functions that deal with setting up connections and configuring the
-- port.
------------------------------------------------------------------------------*/
#include "Session.h"
/*------------------------------------------------------------------------------
-- FUNCTION: Connect
--
-- DATE: Oct 16, 2010
--
-- REVISIONS: (Date and Description)
--
-- DESIGNER: Dean Morin
--
-- PROGRAMMER: Dean Morin
--
-- INTERFACE: Connect(HWND hWnd)
-- hWnd - the handle to the window
--
-- RETURNS: True if the serial connection was succefully made.
--
-- NOTES:
-- Opens a serial port connection, displaying appropriate dialogue
-- messages for failed connections. If successful, it sets comm
-- settings and creates a read thread. It then enables/disables
-- the appropriate menu choices.
------------------------------------------------------------------------------*/
BOOL Connect(HWND hWnd) {
PWNDDATA pwd = {0};
COMMTIMEOUTS timeOut = {0};
DWORD dwThreadid = 0;
DWORD i = 0;
pwd = (PWNDDATA) GetWindowLongPtr(hWnd, 0);
// open serial port
pwd->hPort = CreateFile(pwd->lpszCommName,
GENERIC_READ | GENERIC_WRITE, 0,
NULL, OPEN_EXISTING,
FILE_FLAG_OVERLAPPED, NULL);
if (pwd->hPort == INVALID_HANDLE_VALUE) {
if (GetLastError() == ERROR_FILE_NOT_FOUND) {
DISPLAY_ERROR("Serial port does not exist");
} else {
DISPLAY_ERROR("Error opening port");
}
return FALSE;
}
pwd->bConnected = TRUE;
if (!EscapeCommFunction(pwd->hPort, SETRTS)) {
DISPLAY_ERROR("Error sending RTS signal");
}
if (!EscapeCommFunction(pwd->hPort, SETDTR)) {
DISPLAY_ERROR("Error sending DTR signal");
}
// set timeouts for the port
if (!GetCommTimeouts(pwd->hPort, &pwd->defaultTimeOuts)) {
DISPLAY_ERROR("Error retrieving comm timeouts");
return FALSE;
}
timeOut.ReadIntervalTimeout = 10;
timeOut.WriteTotalTimeoutConstant = 5000;
if (!SetCommTimeouts(pwd->hPort, &timeOut)) {
DISPLAY_ERROR("Could not set comm timeouts");
return FALSE;
}
// create thread for reading
pwd->hThread = CreateThread(NULL, 0,
(LPTHREAD_START_ROUTINE) ReadThreadProc,
hWnd, 0, &dwThreadid);
if (pwd->hThread == INVALID_HANDLE_VALUE) {
DISPLAY_ERROR("Error creating read thread");
return FALSE;
}
CUR_FG_COLOR = 7;
CUR_BG_COLOR = 0;
CUR_STYLE = 0;
BRIGHTNESS = 0;
pwd->cursorMode = TRUE;
// enable/disable appropriate menu choices
EnableMenuItem(GetMenu(hWnd), IDM_DISCONNECT, MF_ENABLED);
EnableMenuItem(GetMenu(hWnd), IDM_CONNECT, MF_GRAYED);
EnableMenuItem(GetMenu(hWnd), IDM_COMMSET, MF_GRAYED);
for (i = 0; i < NO_OF_PORTS; i++) {
EnableMenuItem(GetMenu(hWnd), IDM_COM1 + i, MF_GRAYED);
}
return TRUE;
}
/*------------------------------------------------------------------------------
-- FUNCTION: Disconnect
--
-- DATE: Oct 16, 2010
--
-- REVISIONS: (Date and Description)
--
-- DESIGNER: Dean Morin
--
-- PROGRAMMER: Dean Morin
--
-- INTERFACE: Disconnect(HWND hWnd)
-- hWnd - the handle to the window
--
-- RETURNS: VOID.
--
-- NOTES:
-- Closes the active serial port and read thread, then
-- enables/disables the appropriate menu choices.
------------------------------------------------------------------------------*/
VOID Disconnect(HWND hWnd) {
PWNDDATA pwd = (PWNDDATA) GetWindowLongPtr(hWnd, 0);
COMMTIMEOUTS timeOut = {0};
DWORD dwThreadid = 0;
DWORD i = 0;
if (pwd->hPort == NULL) {
return;
}
// this will end the outer while loop in the read thread
pwd->bConnected = FALSE;
if (!SetCommTimeouts(pwd->hPort, &pwd->defaultTimeOuts)) {
DISPLAY_ERROR("Could not reset comm timeouts to defaults");
}
// let the read thread finish up
do {
GetExitCodeThread(pwd->hThread, &dwThreadid);
} while (dwThreadid == STILL_ACTIVE);
CloseHandle(pwd->hThread);
CloseHandle(pwd->hPort);
pwd->hPort = NULL;
// enable/disable appropriate menu choices
EnableMenuItem(GetMenu(hWnd), IDM_DISCONNECT, MF_GRAYED);
EnableMenuItem(GetMenu(hWnd), IDM_CONNECT, MF_ENABLED);
EnableMenuItem(GetMenu(hWnd), IDM_COMMSET, MF_ENABLED);
for (i = 0; i < NO_OF_PORTS; i++) {
EnableMenuItem(GetMenu(hWnd), IDM_COM1 + i, MF_ENABLED);
}
}
/*------------------------------------------------------------------------------
-- FUNCTION: SelectPort
--
-- DATE: Oct 03, 2010
--
-- REVISIONS: (Date and Description)
--
-- DESIGNER: Dean Morin
--
-- PROGRAMMER: Dean Morin
--
-- INTERFACE: VOID SelectPort(HWND hWnd, INT iSelected)
-- hWnd - the handle to the window
-- iSelected - the com port that was selected in the
-- menu
--
-- RETURNS: VOID.
--
-- NOTES:
-- Selects a new port. It changes the menu checkmark to the new
-- port, and it changes the actual port by renaming lpszCommName.
The INT argument is the menu item that was selected.
------------------------------------------------------------------------------*/
VOID SelectPort(HWND hWnd, INT iSelected) {
PWNDDATA pwd = (PWNDDATA) GetWindowLongPtr(hWnd, 0);
INT prevPortNo = pwd->lpszCommName[3];
CheckMenuItem(GetMenu(hWnd),
(IDM_COM1 - 1) + (prevPortNo - ASCII_DIGIT_OFFSET),
MF_UNCHECKED);
CheckMenuItem(GetMenu(hWnd), iSelected, MF_CHECKED);
switch (iSelected) {
case IDM_COM1: pwd->lpszCommName = TEXT("COM1"); return;
case IDM_COM2: pwd->lpszCommName = TEXT("COM2"); return;
case IDM_COM3: pwd->lpszCommName = TEXT("COM3"); return;
case IDM_COM4: pwd->lpszCommName = TEXT("COM4"); return;
case IDM_COM5: pwd->lpszCommName = TEXT("COM5"); return;
case IDM_COM6: pwd->lpszCommName = TEXT("COM6"); return;
case IDM_COM7: pwd->lpszCommName = TEXT("COM7"); return;
case IDM_COM8: pwd->lpszCommName = TEXT("COM8"); return;
case IDM_COM9: pwd->lpszCommName = TEXT("COM9"); return;
}
}