2009-09-03 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.Core / System.IO.MemoryMappedFiles / MemoryMappedFile.cs
1 //
2 // MemoryMappedFile.cs
3 //
4 // Authors:
5 //      Zoltan Varga (vargaz@gmail.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 NET_4_0
30
31 using System;
32 using System.IO;
33 using System.Collections.Generic;
34 using Microsoft.Win32.SafeHandles;
35
36 namespace System.IO.MemoryMappedFiles
37 {
38         public class MemoryMappedFile : IDisposable {
39
40                 FileStream stream;
41
42                 [MonoTODO]
43                 public static MemoryMappedFile CreateFromFile (FileStream fileStream) {
44                         if (fileStream == null)
45                                 throw new ArgumentNullException ("fileStream");
46                         return new MemoryMappedFile () { stream = fileStream };
47                 }
48
49                 [MonoTODO]
50                 public static MemoryMappedFile CreateFromFile (FileStream fileStream, string mapName) {
51                         throw new NotImplementedException ();
52                 }               
53
54                 [MonoTODO]
55                 public static MemoryMappedFile CreateFromFile (FileStream fileStream, string mapName, long capacity) {
56                         throw new NotImplementedException ();
57                 }               
58
59                 [MonoTODO]
60                 public static MemoryMappedFile CreateFromFile (FileStream fileStream, string mapName, long capacity, MemoryMappedFileAccess access) {
61                         throw new NotImplementedException ();
62                 }               
63
64                 /*
65                 [MonoTODO]
66                 public static MemoryMappedFile CreateFromFile (FileStream fileStream, string mapName, long capacity, MemoryMappedFileAccess access, MemoryMappedFileSecurity memoryMappedFileSecurity, HandleInheritability inheritability, bool leaveOpen) {
67                         throw new NotImplementedException ();
68                 }
69                 */      
70
71                 [MonoTODO]
72                         public static MemoryMappedFile CreateNew (string mapName, long capacity) {
73                         throw new NotImplementedException ();
74                 }
75
76                 [MonoTODO]
77                         public static MemoryMappedFile CreateNew (string mapName, long capacity, MemoryMappedFileAccess access) {
78                         throw new NotImplementedException ();
79                 }
80
81                 /*
82                 [MonoTODO]
83                         public static MemoryMappedFile CreateNew (string mapName, long capacity, MemoryMappedFileAccess access, MemoryMappedFileOptions options, MemoryMappedFileSecurity memoryMappedFileSecurity, HandleInheritability handleInheritability) {
84                         throw new NotImplementedException ();
85                 }
86                 */
87
88                 [MonoTODO]
89                         public static MemoryMappedFile CreateOrOpen (string mapName, long capacity) {
90                         throw new NotImplementedException ();
91                 }
92
93                 [MonoTODO]
94                         public static MemoryMappedFile CreateOrOpen (string mapName, long capacity, MemoryMappedFileAccess access) {
95                         throw new NotImplementedException ();
96                 }
97
98                 /*
99                 [MonoTODO]
100                         public static MemoryMappedFile CreateOrOpen (string mapName, long capacity, MemoryMappedFileAccess access, MemoryMappedFileOptions options, MemoryMappedFileSecurity memoryMappedFileSecurity, HandleInheritability handleInheritability) {
101                         throw new NotImplementedException ();
102                 }
103                 */
104
105                 public MemoryMappedViewStream CreateViewStream () {
106                         return CreateViewStream (0, 0);
107                 }
108
109                 public MemoryMappedViewStream CreateViewStream (long offset, long size) {
110                         return CreateViewStream (offset, size, MemoryMappedFileAccess.ReadWrite);
111                 }
112
113                 [MonoTODO]
114                 public MemoryMappedViewStream CreateViewStream (long offset, long size, MemoryMappedFileAccess access) {
115                         return new MemoryMappedViewStream (stream, offset, size, access);
116                 }
117
118                 MemoryMappedFile () {
119                 }
120
121                 [MonoTODO]
122                 public void Dispose () {
123                 }
124
125                 [MonoTODO]
126                 public SafeMemoryMappedFileHandle SafeMemoryMappedFileHandle {
127                         get {
128                                 throw new NotImplementedException ();
129                         }
130                 }
131         }
132 }
133
134 #endif