성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>.NET APM 비동기 호출의 Begin...과 End... 조합</h1> <p> <a target='tab' href='https://docs.microsoft.com/en-us/dotnet/standard/asynchronous-programming-patterns/asynchronous-programming-model-apm'>.NET의 APM(Asynchronous Programming Model)</a> 비동기 호출 패턴은 Begin과 End 쌍으로 이뤄집니다. 일반적으로, 이 쌍은 어떻게든지 맞춰주는 것이 좋습니다. 심지어, End 메서드의 호출 시에 예외가 발생한다고 해도 마찬가지입니다.<br /> <br /> 예를 하나 들어볼까요?<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > string host = "192.168.0.95"; int port = 25000; int timeout = 500; while (true) { Socket _socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IAsyncResult result = _socket.<span style='color: blue; font-weight: bold'>BeginConnect</span>(host, port, (ar) => { }, null); if (result.AsyncWaitHandle.WaitOne(TimeSpan.FromMilliseconds(timeout), false) == false) { <span style='color: blue; font-weight: bold'>continue;</span> } _socket.<span style='color: blue; font-weight: bold'>EndConnect</span>(result); break; } </pre> <br /> 위의 코드는 서버에 연결이 될 때까지 재시도를 하는 코드입니다. 재미있는 것은 여기서 WaitOne이 지정된 Timeout이 지나 EndConnect를 호출하면 예외가 발생합니다. 왜냐하면 연결이 될 수 없는 상황이기 때문인데, 그로 인해 EndConnect를 호출하지 않고 다시 재시도를 하는 코드로 넘어가고 있습니다. 표면상으로 보면 문제가 없을 듯 싶은데 실제로 이 프로그램을 실행하고 "netstat -ano" 명령어를 통해 해당 프로세스에 속한 소켓 포트를 확인해 보면 약 40여개의 포트가 잠식되고 있는 것을 볼 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > TCP 220.152.82.220:33382 192.168.0.95:25000 SYN_SENT 5636 TCP 220.152.82.220:33383 192.168.0.95:25000 SYN_SENT 5636 ...[생략]... TCP 220.152.82.220:33421 192.168.0.95:25000 SYN_SENT 5636 TCP 220.152.82.220:33422 192.168.0.95:25000 SYN_SENT 5636 TCP 220.152.82.220:33423 192.168.0.95:25000 SYN_SENT 5636 </pre> <br /> 더욱 재미있는 것은, 지정된 IP(본문에서는 192.168.0.95)에 해당하는 컴퓨터가 있는 경우에는 (연결 포트로 대기하는 프로그램이 없어도) 2~3개의 소켓 포트만 살아 있는 것을 볼 수 있습니다.<br /> <br /> 반면, 예외가 발생한다고 해도 아래와 같이 EndConnect를 명시적으로 호출해주면 어떤 상황에서도 1개의 소켓 포트만 SYN_SENT 상태로 사용되는 것을 확인할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > while (true) { Socket _socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); IAsyncResult result = _socket.<span style='color: blue; font-weight: bold'>BeginConnect</span>(host, port, (ar) => { }, null); result.AsyncWaitHandle.WaitOne(TimeSpan.FromMilliseconds(timeout), false); try { _socket.<span style='color: blue; font-weight: bold'>EndConnect</span>(result); break; } catch { } continue; } </pre> <br /> 사실, Begin/End 쌍을 맞추라는 건 .NET APM 비동기 호출 패턴에서 명시하고 있는 내용이긴 합니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > For each call to BeginOperationName, <span style='color: blue; font-weight: bold'>the application should also call EndOperationName</span> to get the results of the operation. </pre> <br /> 하지만 위의 내용만으로 보면, "to get the results of the opration"이라고 써 있으므로 결과가 필요없으면 호출하지 않아도 될 것같은 의미를 담지만, 결과는 물론이고 심지어 예외가 발생하는 명백한 상황일지라도 Begin/End 쌍을 반드시 맞춰주는 것이 좋습니다.<br /> <br /> (<a target='tab' href='http://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=1010&boardid=331301885'>첨부한 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
1398
(왼쪽의 숫자를 입력해야 합니다.)