Merge pull request #439 from mono-soc-2012/garyb/iconfix
[mono.git] / mcs / class / System.Core / System.IO.Pipes / AnonymousPipeServerStream.cs
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.
27 //
28
29 #if !BOOTSTRAP_BASIC
30
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;
39
40 namespace System.IO.Pipes
41 {
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
45         {
46                 public AnonymousPipeServerStream ()
47                         : this (PipeDirection.Out)
48                 {
49                 }
50
51                 public AnonymousPipeServerStream (PipeDirection direction)
52                         : this (direction, HandleInheritability.None)
53                 {
54                 }
55
56                 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability)
57                         : this (direction, inheritability, DefaultBufferSize)
58                 {
59                 }
60
61                 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize)
62                         : this (direction, inheritability, bufferSize, null)
63                 {
64                 }
65
66                 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity pipeSecurity)
67                         : base (direction, bufferSize)
68                 {
69                         if (direction == PipeDirection.InOut)
70                                 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
71
72                         if (IsWindows)
73                                 impl = new Win32AnonymousPipeServer (this, direction, inheritability, bufferSize, pipeSecurity);
74                         else
75                                 impl = new UnixAnonymousPipeServer (this, direction, inheritability, bufferSize);
76
77                         InitializeHandle (impl.Handle, false, false);
78                         IsConnected = true;
79                 }
80
81                 [MonoTODO]
82                 public AnonymousPipeServerStream (PipeDirection direction, SafePipeHandle serverSafePipeHandle, SafePipeHandle clientSafePipeHandle)
83                         : base (direction, DefaultBufferSize)
84                 {
85                         if (serverSafePipeHandle == null)
86                                 throw new ArgumentNullException ("serverSafePipeHandle");
87                         if (clientSafePipeHandle == null)
88                                 throw new ArgumentNullException ("clientSafePipeHandle");
89
90                         if (direction == PipeDirection.InOut)
91                                 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
92
93                         if (IsWindows)
94                                 impl = new Win32AnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
95                         else
96                                 impl = new UnixAnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
97
98                         InitializeHandle (serverSafePipeHandle, true, false);
99                         IsConnected = true;
100
101                         ClientSafePipeHandle = clientSafePipeHandle;
102                 }
103
104                 IAnonymousPipeServer impl;
105
106                 [MonoTODO]
107                 public SafePipeHandle ClientSafePipeHandle { get; private set; }
108
109                 public override PipeTransmissionMode ReadMode {
110                         set {
111                                 if (value == PipeTransmissionMode.Message)
112                                         throw new NotSupportedException ();
113                         }
114                 }
115
116                 public override PipeTransmissionMode TransmissionMode {
117                         get { return PipeTransmissionMode.Byte; }
118                 }
119
120                 [MonoTODO]
121                 public void DisposeLocalCopyOfClientHandle ()
122                 {
123                         impl.DisposeLocalCopyOfClientHandle ();
124                 }
125
126                 public string GetClientHandleAsString ()
127                 {
128                         // We use int64 for safety.
129                         return impl.Handle.DangerousGetHandle ().ToInt64 ().ToString (NumberFormatInfo.InvariantInfo);
130                 }
131         }
132 }
133
134 #endif