| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- //
- // System.Net.FtpAsyncResult.cs
- //
- // Authors:
- // Carlos Alberto Cortez ([email protected])
- //
- // (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
- //
- using System;
- using System.IO;
- using System.Threading;
- using System.Net;
- #if NET_2_0
- namespace System.Net
- {
- class FtpAsyncResult : IAsyncResult
- {
- FtpWebResponse response;
- ManualResetEvent waitHandle;
- Exception exception;
- AsyncCallback callback;
- Stream stream;
- object state;
- bool completed;
- bool synch;
- object locker = new object ();
- public FtpAsyncResult (AsyncCallback callback, object state)
- {
- this.callback = callback;
- this.state = state;
- }
-
- public object AsyncState {
- get {
- return state;
- }
- }
- public WaitHandle AsyncWaitHandle {
- get {
- lock (locker) {
- if (waitHandle == null)
- waitHandle = new ManualResetEvent (false);
- }
-
- return waitHandle;
- }
- }
- public bool CompletedSynchronously {
- get {
- return synch;
- }
- }
- public bool IsCompleted {
- get {
- lock (locker) {
- return completed;
- }
- }
- }
- internal bool GotException {
- get {
- return exception != null;
- }
- }
- internal Exception Exception {
- get {
- return exception;
- }
- }
- internal FtpWebResponse Response {
- get {
- return response;
- }
- set {
- response = value;
- }
- }
- internal Stream Stream {
- get {
- return stream;
- }
- set { stream = value; }
- }
- internal void WaitUntilComplete ()
- {
- if (IsCompleted)
- return;
- AsyncWaitHandle.WaitOne ();
- }
- internal bool WaitUntilComplete (int timeout, bool exitContext)
- {
- if (IsCompleted)
- return true;
-
- return AsyncWaitHandle.WaitOne (timeout, exitContext);
- }
- internal void SetCompleted (bool synch, Exception exc, FtpWebResponse response)
- {
- this.synch = synch;
- this.exception = exc;
- this.response = response;
- lock (locker) {
- completed = true;
- if (waitHandle != null)
- waitHandle.Set ();
- }
- DoCallback ();
- }
- internal void SetCompleted (bool synch, FtpWebResponse response)
- {
- SetCompleted (synch, null, response);
- }
- internal void SetCompleted (bool synch, Exception exc)
- {
- SetCompleted (synch, exc, null);
- }
- internal void DoCallback ()
- {
- if (callback != null)
- try {
- callback (this);
- }
- catch (Exception) {
- }
- }
- // Cleanup resources
- internal void Reset ()
- {
- exception = null;
- synch = false;
- response = null;
- state = null;
-
- lock (locker) {
- completed = false;
- if (waitHandle != null)
- waitHandle.Reset ();
- }
- }
-
- }
- }
- #endif
|