flush
[mcs.git] / class / System.Core / System.IO.Pipes / AnonymousPipeServerStream.cs
blob9d15af950aef95d5a03e62dca89fd03426ed14b2
1 //
2 // AnonymousPipeServerStream.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2009 Novell, Inc. http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #if !BOOTSTRAP_BASIC
31 using System;
32 using System.Globalization;
33 using System.IO;
34 using System.Linq;
35 using System.Security.AccessControl;
36 using System.Security.Permissions;
37 using System.Security.Principal;
38 using Microsoft.Win32.SafeHandles;
40 namespace System.IO.Pipes
42 [MonoTODO ("Anonymous pipes are not working even on win32, due to some access authorization issue")]
43 [HostProtection (SecurityAction.LinkDemand, MayLeakOnAbort = true)]
44 public sealed class AnonymousPipeServerStream : PipeStream
46 public AnonymousPipeServerStream ()
47 : this (PipeDirection.Out)
51 public AnonymousPipeServerStream (PipeDirection direction)
52 : this (direction, HandleInheritability.None)
56 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability)
57 : this (direction, inheritability, DefaultBufferSize)
61 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize)
62 : this (direction, inheritability, bufferSize, null)
66 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity pipeSecurity)
67 : base (direction, bufferSize)
69 if (pipeSecurity != null)
70 throw ThrowACLException ();
72 if (direction == PipeDirection.InOut)
73 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
75 if (IsWindows)
76 impl = new Win32AnonymousPipeServer (this,direction, inheritability, bufferSize);
77 else
78 impl = new UnixAnonymousPipeServer (this,direction, inheritability, bufferSize);
80 InitializeHandle (impl.Handle, false, false);
81 IsConnected = true;
84 [MonoTODO]
85 public AnonymousPipeServerStream (PipeDirection direction, SafePipeHandle serverSafePipeHandle, SafePipeHandle clientSafePipeHandle)
86 : base (direction, DefaultBufferSize)
88 if (serverSafePipeHandle == null)
89 throw new ArgumentNullException ("serverSafePipeHandle");
90 if (clientSafePipeHandle == null)
91 throw new ArgumentNullException ("clientSafePipeHandle");
93 if (direction == PipeDirection.InOut)
94 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
96 if (IsWindows)
97 impl = new Win32AnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
98 else
99 impl = new UnixAnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
101 InitializeHandle (serverSafePipeHandle, true, false);
102 IsConnected = true;
104 ClientSafePipeHandle = clientSafePipeHandle;
107 IAnonymousPipeServer impl;
109 [MonoTODO]
110 public SafePipeHandle ClientSafePipeHandle { get; private set; }
112 public override PipeTransmissionMode ReadMode {
113 set {
114 if (value == PipeTransmissionMode.Message)
115 throw new NotSupportedException ();
119 public override PipeTransmissionMode TransmissionMode {
120 get { return PipeTransmissionMode.Byte; }
123 [MonoTODO]
124 public void DisposeLocalCopyOfClientHandle ()
126 impl.DisposeLocalCopyOfClientHandle ();
129 public string GetClientHandleAsString ()
131 // We use int64 for safety.
132 return impl.Handle.DangerousGetHandle ().ToInt64 ().ToString (NumberFormatInfo.InvariantInfo);
137 #endif