-
Notifications
You must be signed in to change notification settings - Fork 0
/
View.cpp
358 lines (306 loc) · 7.81 KB
/
View.cpp
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
// view.cpp : CTermViewクラスの動作の定義を行う
//
#include "stdafx.h"
#include "wsterm.h"
#include "doc.h"
#include "termsock.h"
#include "view.h"
#include "connectd.h"
#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CTermView
IMPLEMENT_DYNCREATE(CTermView, CEditView)
BEGIN_MESSAGE_MAP(CTermView, CEditView)
//{{AFX_MSG_MAP(CTermView)
ON_COMMAND(ID_SOCKET_CONNECT, OnSocketConnect)
ON_UPDATE_COMMAND_UI(ID_SOCKET_CONNECT, OnUpdateSocketConnect)
ON_COMMAND(ID_SOCKET_CLOSE, OnSocketClose)
ON_UPDATE_COMMAND_UI(ID_SOCKET_CLOSE, OnUpdateSocketClose)
ON_WM_CHAR()
ON_COMMAND(ID_VIEW_SOCKETNOTIFICATIONS, OnViewSocketNotifications)
ON_UPDATE_COMMAND_UI(ID_VIEW_SOCKETNOTIFICATIONS, OnUpdateViewSocketNotifications)
ON_COMMAND(ID_EDIT_CLEARBUFFER, OnEditClearBuffer)
//}}AFX_MSG_MAP
// 標準印刷コマンド
ON_COMMAND(ID_FILE_PRINT, CEditView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CEditView::OnFilePrintPreview)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CTermViewクラスの作成と破棄
CTermView::CTermView()
{
m_pSocket = NULL;
m_fConnected = FALSE;
m_fShowNotifications = FALSE;
}
CTermView::~CTermView()
{
// ソケットを割り当ててある場合
if (m_pSocket != NULL)
{
// まだ接続中の場合
if (m_fConnected)
m_pSocket->Close();
delete m_pSocket;
}
}
/////////////////////////////////////////////////////////////////////////////
// CTermViewクラスの描画
void CTermView::OnDraw(CDC* pDC)
{
CTermDoc* pDoc = GetDocument();
ASSERT_VALID(pDoc);
// TODO: この場所にネイティブデータの描画コードを追加する
}
/////////////////////////////////////////////////////////////////////////////
// CTermViewクラスの印刷
BOOL CTermView::OnPreparePrinting(CPrintInfo* pInfo)
{
// デフォルトのCEditViewの準備
return CEditView::OnPreparePrinting(pInfo);
}
void CTermView::OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo)
{
// デフォルトのCEditViewの印刷開始
CEditView::OnBeginPrinting(pDC, pInfo);
}
void CTermView::OnEndPrinting(CDC* pDC, CPrintInfo* pInfo)
{
// デフォルトのCEditViewの印刷終了
CEditView::OnEndPrinting(pDC, pInfo);
}
/////////////////////////////////////////////////////////////////////////////
// CTermViewクラスの診断
#ifdef _DEBUG
void CTermView::AssertValid() const
{
CEditView::AssertValid();
}
void CTermView::Dump(CDumpContext& dc) const
{
CEditView::Dump(dc);
}
CTermDoc* CTermView::GetDocument() // 非デバッグバージョンはインライン
{
ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTermDoc)));
return (CTermDoc*)m_pDocument;
}
#endif //_DEBUG
CTermView *CTermView::GetView()
{
CFrameWnd *pFrame = (CFrameWnd *)(AfxGetApp()->m_pMainWnd);
CView *pView = pFrame->GetActiveView();
if (!pView)
return NULL;
if (!pView->IsKindOf(RUNTIME_CLASS(CTermView)))
return NULL;
return (CTermView *)pView;
}
void CTermView::OnEditClearBuffer()
{
SetWindowText(NULL);
}
// エディットコントロールに
// 行を表示するヘルパー関数
void CTermView::Display(LPCSTR lpFormat, ...)
{
// エディットコントロールがいっぱいかどうか
CEdit& ed = GetEditCtrl();
if (ed.GetLineCount() > 1000)
{
// 全体を空にする
SetWindowText(NULL);
}
va_list Marker;
static char szBuf[256];
// テキストを文字列に書き込み、
// エディットコントロールに追加する
va_start(Marker, lpFormat);
vsprintf(szBuf, lpFormat, Marker);
va_end(Marker);
ed.SetSel(-1,-1);
ed.ReplaceSel(szBuf);
}
/////////////////////////////////////////////////////////////////////////////
// CTermViewクラスのメッセージハンドラ
// ユーザーが[ENTER]を押したら、
// 現在の行を送る
void CTermView::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
// まだ接続していない場合
if (!m_fConnected)
{
// ソケットを接続するようユーザーにメッセージを表示する
AfxMessageBox("Choose Socket/Connect to start\r\n");
return;
}
// ユーザーが[ENTER]を押した場合
if (nChar == 13)
{
// 現在の行を調べる
CEdit& ed = GetEditCtrl();
int iStart, iEnd;
ed.GetSel(iStart, iEnd);
int iLine = ed.LineFromChar(iStart);
if (iLine > -1)
{
static char szLine[256];
memset(szLine, 0, sizeof(szLine));
// 行全体を取得する
int iNdx = ed.GetLine(iLine, szLine, sizeof(szLine)-1);
if (iNdx > 0)
{
// ソケットを使って行を送信する
strcat(szLine, "\r\n");
m_pSocket->Send(szLine, strlen(szLine));
}
}
}
CEditView::OnChar(nChar, nRepCnt, nFlags);
}
void CTermView::OnViewSocketNotifications()
{
if (m_fShowNotifications)
m_fShowNotifications = FALSE;
else
m_fShowNotifications = TRUE;
}
void CTermView::OnUpdateViewSocketNotifications(CCmdUI* pCmdUI)
{
pCmdUI->SetCheck(m_fShowNotifications);
}
// [Socket]→[Connect]メニューのハンドラ
void CTermView::OnSocketConnect()
{
// [Connect]ダイアログボックスを表示する
CConnectDialog dlg;
if (dlg.DoModal() != IDOK)
return;
Display("Connect to port %d on %s...\r\n",
dlg.m_nPort,
dlg.m_strHostName);
// 前回の接続のソケットが
// 残っていないことを確認する
if (m_pSocket != NULL)
{
delete m_pSocket;
m_pSocket = NULL;
}
// 新しいCTermSocketソケットを作成する
m_pSocket = new CTermSocket();
// すべてデフォルト値を使って
// Create()メンバを呼び出す
if (!m_pSocket->Create())
{
AfxMessageBox("Socket creation failed");
return;
}
// ホストに接続する
if (!m_pSocket->Connect(dlg.m_strHostName, dlg.m_nPort))
{
if (m_pSocket->GetLastError() != WSAEWOULDBLOCK)
{
CString strError;
strError.LoadString(m_pSocket->GetLastError());
Display("Connect() failed: %s\r\n",
strError);
m_fConnected = FALSE;
delete m_pSocket;
m_pSocket = NULL;
}
}
// OnConnectによって通知されるまでは、
// まだ接続しているものと想定する
// これは、pCmdUIメニューを機能させるために行う
m_fConnected = TRUE;
}
void CTermView::OnUpdateSocketConnect(CCmdUI* pCmdUI)
{
pCmdUI->Enable(!m_fConnected);
}
void CTermView::OnSocketClose()
{
// ソケットの行儀よいクローズを開始
// 相手側にこれ以上データを
// 送信しないことを知らせる
m_pSocket->ShutDown(CAsyncSocket::sends);
// 保留中のデータをすべて受け取る
int nRet;
char szBuf[256];
while(1)
{
nRet = m_pSocket->Receive(szBuf, sizeof(szBuf));
if (nRet == 0 || nRet == SOCKET_ERROR)
break;
}
// データをこれ以上送受信しないことを
// 相手側に伝える
m_pSocket->ShutDown(CAsyncSocket::both);
// ソケットを閉じる
m_pSocket->Close();
// ソケットを削除する
delete m_pSocket;
m_pSocket = NULL;
m_fConnected = FALSE;
}
void CTermView::OnUpdateSocketClose(CCmdUI* pCmdUI)
{
pCmdUI->Enable(m_fConnected);
}
void CTermView::OnConnect(int nErrorCode)
{
if (m_fShowNotifications)
Display("\tOnConnect(%d)\r\n", nErrorCode);
if (nErrorCode)
{
m_fConnected = FALSE;
Display("\tError OnConnect(): %d\r\n",
nErrorCode);
}
else
{
m_fConnected = TRUE;
Display("\tSocket connected\r\n");
}
}
void CTermView::OnSend(int nErrorCode)
{
if (m_fShowNotifications)
Display("\tOnSend(%d)\r\n", nErrorCode);
}
void CTermView::OnReceive(int nErrorCode)
{
if (m_fShowNotifications)
Display("\tOnReceive(%d)\r\n", nErrorCode);
static char szBuf[256];
// バッファをすべて0に設定する
// NULLで終わる
memset(szBuf, 0, sizeof(szBuf));
// バッファサイズから1バイト引いたサイズが
// 受信の最大容量
// 最後の文字は必ずNULL
int nBytes = m_pSocket->Receive(szBuf, 255, 0);
if (nBytes == 0)
{
Display("Receive() indicates that socket is closed\r\n");
return;
}
if (nBytes == SOCKET_ERROR)
{
CString strError;
strError.LoadString(m_pSocket->GetLastError());
Display("Receive error %s\r\n", strError);
return;
}
Display(szBuf);
}
void CTermView::OnClose(int nErrorCode)
{
if (m_fShowNotifications)
Display("\tOnClose(%d)\r\n", nErrorCode);
AfxMessageBox("Socket closed");
m_fConnected = FALSE;
}