Merge pull request #3585 from lateralusX/jlorenss/win-counter-warning
[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 #if MOBILE
63                         : base (direction, bufferSize)
64                 {
65                         throw new NotImplementedException ();
66                 }
67 #else
68                         : this (direction, inheritability, bufferSize, null)
69                 {
70                 }
71 #endif
72
73                 public AnonymousPipeServerStream (PipeDirection direction, HandleInheritability inheritability, int bufferSize, PipeSecurity pipeSecurity)
74                         : base (direction, bufferSize)
75                 {
76                         if (direction == PipeDirection.InOut)
77                                 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
78
79 #if MOBILE
80                         throw new NotImplementedException ();
81 #else
82                         if (IsWindows)
83                                 impl = new Win32AnonymousPipeServer (this, direction, inheritability, bufferSize, pipeSecurity);
84                         else
85                                 impl = new UnixAnonymousPipeServer (this, direction, inheritability, bufferSize);
86
87                         InitializeHandle (impl.Handle, false, false);
88                         IsConnected = true;
89 #endif
90                 }
91
92                 [MonoTODO]
93                 public AnonymousPipeServerStream (PipeDirection direction, SafePipeHandle serverSafePipeHandle, SafePipeHandle clientSafePipeHandle)
94                         : base (direction, DefaultBufferSize)
95                 {
96                         if (serverSafePipeHandle == null)
97                                 throw new ArgumentNullException ("serverSafePipeHandle");
98                         if (clientSafePipeHandle == null)
99                                 throw new ArgumentNullException ("clientSafePipeHandle");
100
101                         if (direction == PipeDirection.InOut)
102                                 throw new NotSupportedException ("Anonymous pipe direction can only be either in or out.");
103
104 #if MOBILE
105                         throw new NotImplementedException ();
106 #else
107                         if (IsWindows)
108                                 impl = new Win32AnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
109                         else
110                                 impl = new UnixAnonymousPipeServer (this, serverSafePipeHandle, clientSafePipeHandle);
111
112                         InitializeHandle (serverSafePipeHandle, true, false);
113                         IsConnected = true;
114
115                         ClientSafePipeHandle = clientSafePipeHandle;
116 #endif
117                 }
118
119                 ~AnonymousPipeServerStream ()
120                 {
121                         // To be compatible with .net
122                 }
123
124                 IAnonymousPipeServer impl;
125
126                 [MonoTODO]
127                 public SafePipeHandle ClientSafePipeHandle { get; private set; }
128
129                 public override PipeTransmissionMode ReadMode {
130                         set {
131                                 if (value == PipeTransmissionMode.Message)
132                                         throw new NotSupportedException ();
133                         }
134                 }
135
136                 public override PipeTransmissionMode TransmissionMode {
137                         get { return PipeTransmissionMode.Byte; }
138                 }
139
140                 [MonoTODO]
141                 public void DisposeLocalCopyOfClientHandle ()
142                 {
143                         impl.DisposeLocalCopyOfClientHandle ();
144                 }
145
146                 public string GetClientHandleAsString ()
147                 {
148                         // We use int64 for safety.
149                         return impl.Handle.DangerousGetHandle ().ToInt64 ().ToString (NumberFormatInfo.InvariantInfo);
150                 }
151         }
152 }
153
154 #endif