Microsoft MVP성태의 닷넷 이야기
.NET Framework: 622. PeerFinder Wi-Fi Direct 통신 시 Read/Write/Dispose 문제 [링크 복사], [링크+제목 복사],
조회: 13016
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 
(연관된 글이 1개 있습니다.)

PeerFinder Wi-Fi Direct 통신 시 Read/Write/Dispose 문제

이번 글은, 이 문제에 대한 적절한 해법을 알고 있는 분이 읽기를 바라며 씁니다. ^^

가령, 다음은 클라이언트 측 코드입니다.

void Sender(Windows.Networking.Sockets.StreamSocket socket)
{
    using (Stream streamWrite = socket.OutputStream.AsStreamForWrite())
    using (BinaryWriter writer = new BinaryWriter(streamWrite))
    using (Stream streamRead = socket.InputStream.AsStreamForRead())
    using (BinaryReader reader = new BinaryReader(streamRead))
    {
        long totalToSend = 64 * 1024 * 1024;

        writer.Write(totalToSend); // 8바이트 쓰기

        byte[] buffer = new byte[totalToSend];
        writer.Write(buffer);      // 64MB 쓰기
        writer.Flush();
        reader.ReadBoolean();      // 상대로부터 True/False 결과 읽기
    }

    socket.Dispose();  // 소켓을 닫습니다.
}

간단하게 8바이트 + 64MB를 쓰고 Flush 한 다음 1바이트를 읽는 코드입니다. 이에 대응해 서버 측 코드는 다음과 같습니다.

Windows.Networking.Sockets.StreamSocket socket = ...;

using (Stream streamRead = socket.InputStream.AsStreamForRead())
using (Stream streamWrite = socket.OutputStream.AsStreamForWrite())
using (BinaryReader reader = new BinaryReader(streamRead))
using (BinaryWriter writer = new BinaryWriter(streamWrite))
{
    long totalToRead = reader.ReadInt64();  // 8바이트 읽고
    long read = 0;
    byte[] buffer = new byte[32 * 1024 * 1024];

    while (read < totalToRead)           // 8바이트에 지정된 길이만큼 읽고
    {
        long toRead = totalToRead - read;

        if (toRead >= buffer.Length)
        {
            toRead = buffer.Length;
        }

        reader.Read(buffer, 0, (int)toRead);
        read += toRead;
    }

    writer.Write(true); // 다 읽었으면 true를 클라이언트로 전송
    writer.Flush();
}

socket.Dispose(); // 소켓을 닫습니다.

별다를 것이 없는 코드인데 위의 프로그램을 돌려 보면 간혹 한 번씩 클라이언트 측의 reader.ReadBoolean(); 호출에서 다음과 같은 예외가 발생합니다.

Unhandled Exception: System.IO.IOException: The I/O operation has been aborted because of either a thread exit or an application request.

The I/O operation has been aborted because of either a thread exit or an application request.
 ---> System.Exception: The I/O operation has been aborted because of either a thread exit or an application request.

The I/O operation has been aborted because of either a thread exit or an application request.

   --- End of inner exception stack trace ---
   at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
   at System.IO.StreamOperationAsyncResult.ProcessCompletedOperation()
   at System.IO.WinRtToNetFxStreamAdapter.EndRead(IAsyncResult asyncResult)
   at System.IO.WinRtToNetFxStreamAdapter.Read(Byte[] buffer, Int32 offset, Int32 count)
   at System.IO.BufferedStream.ReadByte()
   at System.IO.BinaryReader.FillBuffer(Int32 numBytes)
   at System.IO.BinaryReader.ReadBoolean()
   at PeerClient.PeerClient.Sender(StreamSocket socket) in C:\ConsoleApplication1\PeerClient\Program.cs:line 94
   at PeerClient.PeerClient.<Start>d__2.MoveNext() in C:\ConsoleApplication1\PeerClient\Program.cs:line 73
--- End of stack trace from previous location where exception was thrown ---
   at System.Runtime.CompilerServices.AsyncMethodBuilderCore.<>c.<ThrowAsync>b__6_1(Object state)
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   at System.Threading.QueueUserWorkItemCallback.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem()
   at System.Threading.ThreadPoolWorkQueue.Dispatch()

예상되는 문제는 서버 측 socket.Dispose() 호출입니다. 아무래도 Write/Flush 후 곧바로 닫기 때문에 발생하는데요, 실제로 서버 측 Dispose를 호출하지 않으면 오류가 발생하지 않습니다. 하지만, 서버 측 자원이 제대로 해제되지 않아서 그런지 클라이언트를 다시 실행해서 접속하려고 하면 ConnectAsync에서,

var streamSocket = PeerFinder.ConnectAsync(info).AsTask().Result;

다음과 같은 식의 오류가 발생합니다.

System.AggregateException occurred
  HResult=0x80131500
  Message=One or more errors occurred.
  Source=mscorlib
  StackTrace:
   at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
   at PeerClient.PeerClient.<Start>d__2.MoveNext() in C:\ConsoleApplication1\PeerClient\Program.cs:line 68

Inner Exception 1:
ArgumentException: Value does not fall within the expected range.

아쉽게도 Windows.Networking.Sockets.StreamSocket 타입은 ConnectAsync, Dispose 외의 딱히 별다르게 제공하는 메서드가 없습니다. 그래서 일단, 가장 안전한 방법을 서버 측에서 Dispose 하기 전 약간의 Sleep 시간을 주는 것으로 임시 조치를 했습니다.

Thread.Sleep(1000);
socket.Dispose();

혹시 PeerFinder로 Wi-Fi Direct 통신 시 위와 같은 문제에 대한 적절한 해답을 아시는 분은 덧글 부탁드립니다. ^^





[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 11/8/2016]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 91  92  93  94  95  96  97  98  99  100  [101]  102  103  104  105  ...
NoWriterDateCnt.TitleFile(s)
11115정성태12/21/201619843Windows: 133. 윈도우 서버 2016에서 플래시가 동작하지 않는 경우 [2]
11114정성태12/19/201629812Windows: 132. 역슬래시(backslash) 문자가 왜 통화 표기 문자(한글인 경우 "\")로 보일까요? [2]
11113정성태12/6/201614424오류 유형: 373. ICOMAdminCatalog::GetCollection에서 CO_E_ISOLEVELMISMATCH(0x8004E02F) 오류 발생파일 다운로드1
11112정성태11/23/201620211오류 유형: 372. MySQL 서비스가 올라오지 않는 경우 - Error 1067
11111정성태11/23/201627892.NET Framework: 627. C++로 만든 DLL을 C#에서 사용하기 [2]
11110정성태11/17/201614200.NET Framework: 626. Commit 메모리가 낮은 상황에서도 메모리 부족(Out-of-memory) 예외 발생 [2]
11109정성태11/17/201614241.NET Framework: 625. ASP.NET에서 System.Web.HttpApplication 인스턴스는 다중으로 생성됩니다.
11108정성태11/13/201614813.NET Framework: 624. WPF - Line 요소를 Canvas에 위치시켰을 때 흐림(blur) 현상파일 다운로드1
11107정성태11/9/201617937오류 유형: 371. Post cache substitution is not compatible with modules in the IIS integrated pipeline that modify the response buffers.파일 다운로드1
11106정성태11/8/201618086.NET Framework: 623. C# - PeerFinder를 이용한 Wi-Fi Direct 데이터 통신 예제 [2]파일 다운로드1
11105정성태11/8/201613016.NET Framework: 622. PeerFinder Wi-Fi Direct 통신 시 Read/Write/Dispose 문제
11104정성태11/8/201613119개발 환경 구성: 305. PeerFinder로 Wi-Fi Direct 연결 시 방화벽 문제
11103정성태11/8/201612687오류 유형: 370. PeerFinder.ConnectAsync의 결과 값인 Task.Result를 호출할 때 System.AggregateException 예외 발생
11102정성태11/8/201612851오류 유형: 369. PeerFinder.FindAllPeersAsync 호출 시 System.UnauthorizedAccessException 예외 발생
11101정성태11/8/201615457.NET Framework: 621. 닷넷 프로파일러의 오류 코드 - 0x80131363
11100정성태11/7/201621236개발 환경 구성: 304. Wi-Fi Direct 지원 여부 확인 방법 [1]
11099정성태11/7/201622832.NET Framework: 620. C#에서 C/C++ 함수로 콜백 함수를 전달하는 예제 코드파일 다운로드1
11098정성태11/7/201612982오류 유형: 368. 빌드 이벤트에서 robocopy 사용 시 $(TargetDir) 매크로를 지정하는 경우 오류 발생
11097정성태11/7/201615871오류 유형: 367. go install: no install location for directory [...경로...] outside GOPATH
11096정성태11/6/201619275디버깅 기술: 83. PDB 파일을 수동으로 다운로드하는 방법
11095정성태11/6/201615634.NET Framework: 619. C# - Cognitive Services 중의 하나인 Face API를 사용해 얼굴 인식 및 흐림(blur) 효과 적용 [1]파일 다운로드1
11094정성태11/5/201617717VC++: 105. Visual Studio 2013/2015 - Ceemple OpenCV 확장을 이용한 웹캠 영상 출력
11093정성태11/4/201617161웹: 34. Edge 브라우저도 지원하는 클립보드 복사를 위한 자바스크립트 코드
11092정성태11/3/201623765.NET Framework: 618. C# - NAudio를 이용한 MP3 파일 재생 [5]파일 다운로드1
11091정성태11/3/201619171VC++: 104. std::call_once를 이용해 thread-safe한 Singleton 객체 생성파일 다운로드1
11090정성태11/1/201620740VC++: 103. C++ CreateTimerQueue, CreateTimerQueueTimer 예제 코드 [9]파일 다운로드1
... 91  92  93  94  95  96  97  98  99  100  [101]  102  103  104  105  ...