2003-07-29 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mcs / class / corlib / System.IO / ChangeLog
1 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
2
3         * IntPtrStream.cs (Read): Use Marshal.Copy instead of the now
4         deprecated MemCopy.
5         
6         (IntPtrStream): New stream implementation, it maps to a region in
7         memory.
8
9 2003-07-23  Duncan Mak  <duncan@ximian.com>
10
11         * StreamReader.cs (Initialize): This method is not exposed in the
12         API, mark as internal.
13
14 Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
15
16         * MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>.
17
18 2003-07-16  Dick Porter  <dick@ximian.com>
19
20         * FileInfo.cs: Update path info when a file is moved.  Patch by
21         John Luke <jluke@cfl.rr.com>, fixes bug 44253.
22
23 2003-07-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
24
25         * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
26
27 2003-06-30  Zoltan Varga  <vargaz@freemail.hu>
28
29         * FileStream.cs (Dispose): Flush the buffer even if we don't own the
30         handle.
31         * FileStream.cs: Add a new constructor parameter to turn off buffering.
32         This is used by the Console.OpenStandard...() methods. Also fix
33         argument checking in InitBuffer(), so a zero buffer size is also 
34         rejected.
35
36 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
37
38         * Stream.cs: use async.delegate invoke 
39
40 2003-06-18  Nick Drochak <ndrochak@gol.com>
41
42         * FileSystemInfo.cs: Refresh cache when changeing file times.
43
44 2003-06-11  Zoltan Varga  <vargaz@freemail.hu>
45
46         * FileStream.cs: Fix errors in previous checkins:
47         (Write): Only take the shortcut route if the data is longer than the
48         buffer length.
49         (Write): Flush the buffer before writing out the new data
50         (Write): Flush the buffer after writing out a segment since otherwise
51         we will go into an infinite loop.
52         (FlushBuffer): Remove my last change since it was clearly wrong.
53         (Seek): Run FlushBuffer () after the in-buffer seek optimization.
54         (Seek): Only use the in-buffer optimization if the buffer is not
55         empty.
56         (Length): Call FlushBuffer () since buffer data might change the size
57         of the stream.
58
59 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
60
61         * FileStream.cs:
62         - removed unusefull bugfix (DirectoryNotFoundException)
63         - Flush before seek.
64         
65 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
66
67         * FileStream.cs: Check buffer size before append/read -exceptios
68         
69 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
70
71         * FileStream.cs: Check DirectoryNotFound before FileNotFound.
72         
73 2003-06-09  Ville Palo <vi64pa@kolumbus.fi>
74
75         * FileStream.cs: Does not anymore flush while writing
76         
77 2003-06-02  Nick Drochak <ndrochak@gol.com>
78
79         * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
80         for null too.
81
82 2003-05-27  Lluis Sanchez Gual <lluis@ximian.com>
83
84         * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
85
86 2003-05-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
87
88         * Path.cs: fixed bug #42631.
89
90 2003-05-22  Zoltan Varga  <vargaz@freemail.hu>
91
92         * File.cs (Move): Allow moving of directories.
93         Fix 'destination is a directory' test.
94
95 2003-05-21  Ben Maurer  <bmaurer@users.sourceforge.net>
96
97         * StringWriter.cs: Fixed bug #43431: "StringWriter
98         .ctor(CultureInfo) does not create a new StringBuilder ()"
99
100 2003-05-11  Zoltan Varga  <vargaz@freemail.hu>
101
102         * FileStream.cs (FlushBuffer): After a flush, the buffer is
103         advanced by buf_offset bytes, not buf_length bytes.
104
105 2003-05-16  Dick Porter  <dick@ximian.com>
106
107         * MonoIO.cs: Implement GetTempPath
108
109 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
110
111         * DirectoryInfo.cs: fixed bug #42991.
112         * Path.cs:
113         (CanonicalizePath): store the value of the trimmed input string. Make it
114         work with paths such as "/home/xxx/.".
115
116 2003-05-08  Ben Maurer <bmaurer@users.sourceforge.net>
117         * Path.cs 
118         (CanonicalizePath) Fixed bug #42631, which duplicated the
119         root part of the path under Windows.
120
121 2003-05-08  Ville Palo <vi64pa@kolumbus.fi>
122
123         * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc, 
124         LastWriteTimeUtc and CreationTimeUtc
125         
126 2003-05-07  Ben Maurer <bmaurer@users.sourceforge.net>
127         * Path.cs 
128         (GetPathRoot) Added support for UNC paths.
129         (CanonicalizePath) Added optimizations per Miguel's requests.
130
131 2003-05-06  Ville Palo <vi64pa@kolumbus.fi>
132
133         * BufferedStream.cs: 
134           - Removed unusefull code.
135           - Added ObjectDisposedException to Position
136           - Dont flush if stream is allready closed.
137           - Flush throws also ObjectDisposedException.
138         * Directory.cs:
139           - GetFileSystemEtries: ArgumentNullException if pattern is null
140         * DirectoryInfo.cs: Fixed little MoveTo () bug.
141         * FileInfo.cs:
142           - Exists: If file does not exists when instance is created the
143           value of the Exists property does not change even if file is created
144           afterwards.
145           - Delete: If path is a directory UnauthorizedException is thrown.
146           - CopyTo: Now we can overwrite file if wanted.
147         * Path.cs: 
148           - GetFullPath: Now throws exception when path is "   ".
149         
150 2003-05-04  Ben Maurer <bmaurer@users.sourceforge.net>
151         * Directory.cs (GetLogicalDrives) Marked as MonoTODO
152         because we need to implement the method on Windows.
153         * Path.cs 
154         (CanonicalizePath) Added new function to get
155         rid of . and .. in path names. Need to figure out what
156         other functions should call this.
157         (GetFullPath) Added call to the above function.
158         
159 2003-05-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
160
161         * StreamReader.cs:
162         (.ctor): fixed parameters passed to FileNotFoundException.
163
164 2003-04-25  Dietmar Maurer  <dietmar@ximian.com>
165
166         * BinaryReader.cs (Read): make sure the buffer is big enough (fix
167         bug # 40702)
168
169 2003-04-24  Pedro Martínez Juliá  <yoros@wanadoo.es>
170
171         * BufferedStream.cs: Test if it's possible to seek in a Stream
172         before access to Position. This prevents the exception thrown when
173         the stream is System.Net.Sockets.NetworkStream.
174
175 2003-04-22  Ville Palo <vi64pa@kolumbus.fi>
176
177         * Directory.cs: clean up --> performance improvment. Some exceptions
178         are now checked in File.cs.
179         * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
180         
181 2003-04-21  Ville Palo <vi64pa@kolumbus.fi>
182
183         * Directory.cs: lots of fixes. 
184           - Added GetXXXtimeUtc () (v1.1) methods.
185           - Added SetXXXtimeUtc () (v1.1) methods.      
186         
187 2003-04-20  Igor Nosyryev <nosyryev@attbi.com>
188
189         * StringReader.cs (Read): Increment nextChar by charsToRead
190         instead of count, that will guarantee that the next time the
191         method is called, it will return 0 on an empty string rather than
192         throwing an exception
193
194 2003-04-19  Ville Palo <vi64pa@kolumbus.fi>
195
196         * BufferedStream.cs: Some fixes, mostly throwing exceptions.
197         * MemoryStream.cs: Changed the order of exception checking
198         * StringReader.cs: little clean up
199         
200 2003-04-14  Ville Palo <vi64pa@kolumbus.fi>
201
202         * BinaryWriter.cs: Fixed decimal writing and lots of 
203         ObjectDisposedExceptions added.
204         
205 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
206
207         * BinaryReader.cs: Fix to ReadDecimal() method.
208         
209 2003-04-13  Ville Palo <vi64pa@kolumbus.fi>
210
211         * StringReader.cs: Added some ObjectDisposedExceptions.
212         * StringWriter.cs: Added some ObjectDisposedExceptions.
213         * BinaryReader.cs: Added some ObjectDisposedExceptions.
214         
215 2003-04-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
216
217         * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
218         fill a bug report.
219
220 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
221
222         * FileStream.cs: fixed bug #40182 and made more unit test pass.
223
224 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
225
226         * FileStream.cs: Added new methods Lock () and Unlock ()
227         
228 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
229
230         * StringReader.cs: Throws exceptions if constructor parameter is null.
231         
232 2003-04-11  Ville Palo <vi64pa@kolumbus.fi>
233
234         * StringWriter.cs: Now throws an exception if StringBuilder parameter
235         is null
236         
237 2003-04-05  Miguel de Icaza  <miguel@ximian.com>
238
239         * TextWriter.cs: Implemented Synchronized method.
240
241         * TextReader.cs: Implemented Synchronized method.
242
243 2003-04-04  Miguel de Icaza  <miguel@ximian.com>
244
245         * FileStream.cs (Read, ReadByte, Seek): throw
246         ObjectDisposedException if the handle has been released.
247         
248         (Read): Throw exceptions specified in the spec.
249
250         (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
251         instance methods of FileStream to be thread safe, so remove all
252         the calls to lock on the object
253
254 2003-03-31  Nick Drochak <ndrochak@gol.com>
255
256         * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
257
258 2003-03-20  Lluis Sanchez Gual <lluis@ideary.com>
259
260         * FileNotFoundException.cs: fixed serialization bug.
261
262 2003-03-18  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
263
264         * StringWriter.cs : don't release internalString on Dispose().
265
266 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
267
268         * StreamReader.cs: fixed bug #39280.
269
270 2003-03-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
271
272         * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
273         pointing it out.
274
275 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
276
277         * MemoryStream.cs: general fixes and reformatted. Passes all tests in
278         the new MemoryStreamTest.
279
280 2003-03-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
281
282         * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
283         ToArray even after closing the stream.
284
285 2003-03-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
286
287         * Directory.cs:
288         (Move): don't use File.Move.
289         * DirectoryInfo.cs: fixed Name property.
290         
291         Fixes bug #37755.
292
293 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
294
295         * DirectoryInfo.cs: changed ToString to match MS behavior.
296         * Path.cs: further fixes to GetDirectoryName to return null in the
297         same cases that MS does.
298
299         Fixes bug #38387.
300
301 2003-03-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
302
303         * Path.cs: fixed a couple of bugs reported in #35906.
304
305 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
306
307         * Directory.cs: fixed bugs #38939 and #38940. No need for separate
308         unix/windows/unc shares code paths.
309
310 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
311
312         * File.cs: fix by Elan Feingold <efeingold@mn.rr.com> for
313         SetCreationTime, SetLastAccessTime and SetLastWriteTime.
314
315 2003-02-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
316
317         * MemoryStream.cs:
318         (ToArray): return only the portion of the buffer that contains
319         data, not the whole buffer. (note: this makes XmlDocument.Load work
320         again with documents that have a <?xml without the 'encoding'
321         attribute, which makes gtk-sharp generator work again).
322
323 2003-02-25  Nick Drochak <ndrochak@gol.com>
324
325         * File.cs (GetCreationTime): Throw proper execption when path is not
326         found.
327
328 Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <lupus@ximian.com>
329
330         * MemoryStream.cs: make it behave sanely when the stream is
331         incrementally expanded.
332
333 2003-02-21  Dick Porter  <dick@ximian.com>
334
335         * FileStream.cs: Use locks around buffer manipulations.  Fixes bug
336         32344
337
338 2003-02-18  Dick Porter  <dick@ximian.com>
339
340         * FileStream.cs: Make FileMode.Append work, and check for Seeking
341         back over old data (undocumented ms behaviour, throws an exception
342         if you try).  Fixes bug 35975.
343
344 2003-02-17  Dick Porter  <dick@ximian.com>
345
346         * FileStream.cs: Don't close the handle if the stream doesn't own
347         it.  Patch from Raymond Penners (raymond@dotsphinx.com), bug
348         35623.
349
350 2003-02-14  Zoltan Varga  <vargaz@freemail.hu>
351
352         * FileStream.cs (Write): flush after writing the last segment as well.
353
354 2003-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
355
356         * StringReader.cs:
357         (ReadLine): fixed the case when the string ends with a '\n'.
358
359 2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
360
361         * MemoryStream.cs: create the buffer of the specified capacity.
362
363 2003-01-31  Patrik Torstensson
364
365         * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
366         the same way as MS does it (performance improvement)
367
368 2003-01-29  Zoltan Varga  <vargaz@freemail.hu>
369
370         * Directory.cs (GetFileSystemEntries): moved error handling to the
371         correct instance of GetFileSystemEntries so all callers can enjoy it.
372
373 2003-01-28  Zoltan Varga  <vargaz@freemail.hu>
374
375         * File.cs: add error handling to Get...Time methods.
376
377 2003-01-26  Zoltan Varga  <vargaz@freemail.hu>
378
379         * Directory.cs: fix GetParent so it actually works.
380
381 2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
382
383         * Path.cs: fixlet to ChangeExtension for the case when the path is
384         empty.
385
386 2003-01-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
387
388         * BufferedStream.cs: don't try to write a 0 sized array on when
389         flushing the stream.
390         
391         Fixes bug #37045.
392
393 2003-01-18  Jonathan Pryor <jonpryor@vt.edu>
394
395         * FileStream.cs: Add IsAsync property.  (Documented in "C# In A Nutshell".)
396
397 2003-01-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
398
399         * MemoryStream.cs: fixed bug #36319.
400
401 2002-12-16  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
402         
403         * Directory.cs: Some fixes to SMB shares handling, and not compiling 
404         with csc, mcs compiles it correctly (mcs bug 35652)
405
406 2002-12-14  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
407
408         * Directory.cs: Some fixes related to correct some exceptions thrown
409
410 2002-12-11  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
411
412         * Directory.cs: Some Exceptions added, fixed GetParent(),
413         CreateDirectory() should work with unix, native windows and
414         windows samba shares. Converted end-lines from dos-mode to unix-mode
415
416 2002-12-08  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
417
418         * Directory.cs: CreateDirectory  works now with Absolute paths
419         too, not only with relative ones.
420
421 2002-12-07  Peter Williams  <peterw@ximian.com>
422
423         * Directory.cs: Don't use the uninitialized pathsumm here.
424         Don't try and create "" if we're using an absolute path.
425
426 2002-12-07  Eduardo Garcia Cebollero <kiwnix@yahoo.es>
427
428         * Directory.cs: Now the creation of a new directory works recursively
429         it will make parents as needed.
430
431 2002-11-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
432
433         * BufferedStream.cs: applied patch from <carlosga@telefonica.net> that
434         fixes Flush ().
435
436 Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <lupus@ximian.com>
437
438         * StreamWriter.cs: output the encoding preamble at the start of a
439         stream if needed.
440
441 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
442
443         * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
444
445 2002-11-06  Miguel de Icaza  <miguel@ximian.com>
446
447         * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
448
449 2002-10-31  Dick Porter  <dick@ximian.com>
450
451         * FileStream.cs: Fix buffering properly this time.  Also kludge
452         around broken pipe errors, treating them as EOF instead of
453         throwing an IO exception.
454
455         * MonoIO.cs: Return the error status in a parameter, as the
456         GetLastError() value has long since been blown away if we try and
457         look it up in a subsequent internal call invocation.
458
459         * FileSystemInfo.cs: 
460         * FileInfo.cs: 
461         * File.cs: 
462         * Directory.cs: MonoIO methods now have an error parameter
463
464 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
465
466         * TextReader.cs: implemented ReadBlock ().
467
468 2002-10-30  Miguel de Icaza  <miguel@ximian.com>
469
470         * StreamWriter.cs: Ditto for Null stream.
471
472         * BinaryReader.cs: Use Unmarked here too.
473
474         * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
475         is what .NET does.
476
477 2002-10-23  Dick Porter  <dick@ximian.com>
478
479         * FileStream.cs: Implemented CanSeek, and used it around all the
480         calls to MonoIO.Seek.  Fixed buffering in Read() so that it
481         doesn't block forever on short reads.
482
483         * MonoFileType.cs: New enum for GetFileType
484         
485         * MonoIO.cs: Added GetFileType
486
487 2002-10-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
488
489         * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
490         \n (this is what MS does).
491
492 2002-10-18  Dick Porter  <dick@ximian.com>
493
494         * FileStream.cs: SeekOrigin.End still calculates the offset from
495         the end of the file with positive values extending the length.
496         Fixes bug 32471.
497
498 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
499
500         * Path.cs: some cleanup. Thanks to Martin Aliger.
501
502 2002-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
503
504         * FileStream.cs: throw an exception if trying to open a directory.
505         Thanks to Martin Aliger.
506
507 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
508
509         * Path.cs: fixes bug #28046.
510
511 2002-09-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
512
513         * StreamReader.cs: give more information when wrong parameters passed.
514
515 2002-09-21  Miguel de Icaza  <miguel@ximian.com>
516
517         * FileStream.cs: Do not call FSync on the file.
518
519 2002-09-16  Miguel de Icaza  <miguel@ximian.com>
520
521         * TextWriter.cs (Null): The Null field should be an instance of a
522         TextWriter class that does nothing, so it is an instance of the
523         NullTextWriter class.
524
525 2002-09-16  Nick Drochak  <ndrochak@gol.com>
526
527         * MemoryStream.cs (Close): Don't throw an exception if the stream
528         is already closed.
529
530 2002-09-15  Miguel de Icaza  <miguel@ximian.com>
531
532         * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
533         Flush calls fsync().  
534
535         The API docs show no explicit mention that Flush() should even do
536         an fsync, I am thinking that we should drop that from the
537         runtime. 
538
539 2002-09-09  Miguel de Icaza  <miguel@ximian.com>
540
541         * StreamWriter.cs: When no encoding is provided, create an
542         encoding without markers, this is what MS does.
543
544 2002-09-06  Miguel de Icaza  <miguel@ximian.com>
545
546         * StreamReader.cs: Implement detection of byte marks and skipping
547         of byte marks at the beginning of the stream.
548
549         (ReadToEnd): Use buffered read instead of char-by-char
550         processing. 
551
552         Correct the default arguments for creating the StreamReader.
553
554 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
555
556         * CheckArgument.cs: fixed check for empty string.
557         * Path.cs: various fixes. It passes all the tests in new PathTest.
558
559 2002-08-29  Duncan Mak  <duncan@ximian.com>
560
561         * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
562         the build for gtk#.
563
564 2002-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
565
566         * BinaryReader.cs:
567         * BinaryWriter.cs:
568         * MemoryStream.cs:
569         * StreamReader.cs:
570         * StreamWriter.cs:
571         * StringReader.cs:
572         * StringWriter.cs:
573         * TextWriter.cs: IDisposable fixes.
574
575 2002-08-24  Miguel de Icaza  <miguel@ximian.com>
576
577         * StreamReader.cs: Removed TODOs, as the code seems to be
578         complete. 
579
580         * Path.cs (GetTempFileName): Make this routine atomic by not
581         testing and then creating, but using the create call to ensure
582         that we own the filename.
583
584 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
585
586         * FileLoadException.cs: implemented ToString.
587
588         * StreamWriter.cs: added Null field and implemented Write (char) and
589         Write (char []).
590
591 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
592
593         * StreamReader.cs: implemented NullStreamReader.
594
595 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
596
597         * Path.cs (GetDirectoryName): Fix for filenames with size = 1
598
599         * File.cs: Removed all references that threw exceptions when the
600         paths contains a colon, as this is a valid part of an identifier
601         on Unix.
602
603         Everywhere: The String.Empty return from GetDirectoryName means
604         that there is no directory information about the path.
605
606 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
607
608         * FileNotFoundException.cs: use Message and InnerException from base
609         class. Changed Message and ToString ().
610
611 2002-08-19  Dick Porter  <dick@ximian.com>
612
613         * BinaryWriter.cs: The length of a string is counted in bytes, not
614         chars
615
616 2002-08-18  Dick Porter  <dick@ximian.com>
617
618         * BinaryReader.cs: Fixed buffering
619
620 2002-08-09  Nick Drochak  <ndrochak@gol.com>
621
622         * BinaryReader.cs: added virtual to Dispose(bool).
623
624 2002-08-03  Jason Diamond  <jason@injektilo.org>
625
626         * StringWriter.cs: Return UnicodeEncoding for Encoding property.
627
628 2002-08-03  Jason Diamond  <jason@injektilo.org>
629
630         * StreamWriter.cs: Use GetByteCount() to get exact length instead
631         of GetMaxByteCount when converting chars to bytes.
632
633 2002-07-31  Duncan Mak  <duncan@ximian.com>
634
635         * StreamReader.cs: 
636         (Dispose): Added and implmented.
637
638         * StreamWriter.cs: 
639         (Dispose): Fixed visibility.
640         (Initialize): Fixed visibility, made internal.
641
642         * BinaryReader.cs:
643         (Dispose): Fixed visibility.
644
645 2002-07-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
646
647         * File.cs:
648         (Create): allow file names without path.
649
650 Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
651
652         * FileStream.cs: patch from erik@bagfors.nu to add
653         Name property support.
654
655 2002-07-20  Dick Porter  <dick@ximian.com>
656
657         * MonoIO.cs: Added icall to CreatePipe
658
659 2002-07-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
660
661         * FileInfo.cs: fixes buglet #27940
662
663 2002-07-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
664
665         * Path.cs: removed unneeded line from GetExtension.
666
667 2002-07-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
668
669         * FileStream.cs:
670         (.ctor): call MonoIO.GetException with the file name.
671
672 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
673
674         * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
675
676 2002-07-02  Mike Kestner  <mkestner@speakeasy.net>
677
678         * StreamReader.cs: Revert the last Peek change and fix the ReadLine
679         end of line detection code instead.
680
681 2002-07-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
682
683         * StreamReader.cs:
684         (Peek): no need to have seek capabilitites. 
685
686 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
687
688         * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
689
690         * File.cs (Delete): only call Directory.Exists() if DirName != ""
691
692 2002-06-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
693
694         * Directory.cs: fixed bug #26133 and also test if the directory exist
695         before performing the search.
696
697 2002-06-12  Nick Drochak  <ndrochak@gol.com>
698
699         * StringReader.cs (ReadLine): Return null when we get to end of the
700         string.
701
702 2002-05-22  Lawrence Pit  <loz@cable.a2000.nl>
703
704         * StreamWriter.cs: added ability to write null value
705         
706 2002-05-19  Lawrence Pit  <loz@cable.a2000.nl>
707
708         * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
709         prevent endless loops.
710
711 2002-05-17  Dan Lewis  <dihlewis@yahoo.co.uk>
712
713         * FileStream.cs: Enforce lower bound on buffer size.
714
715 2002-05-16  Piers Haken <piersh@friskit.com>
716
717         * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
718
719 2002-05-17  Nick Drochak  <ndrochak@gol.com>
720
721         * StreamWriter.cs: Implement buffering.  Also implemented dispose
722         pattern as recommended by the MS docs.  Must call Close() now
723         to ensure the buffer is flushed.
724
725 2002-05-15  Nick Drochak  <ndrochak@gol.com>
726
727         * Path.cs (GetDirectoryName): Return String.Empty if there is no
728         directory
729
730         * StreamReader.cs: Add some parameter checking on file names.
731
732         * StreamWriter.cs: Add some parameter checking on file names.
733
734 2002-05-14 Nick Drochak  <ndrochak@gol.com>
735
736         * File.cs: Add parameter checks to most methods. Not completely done,
737         but all current unit tests pass.
738
739         * Path.cs: Implement GetTempFileName().
740
741 2002-05-10  Nick Drochak  <ndrochak@gol.com>
742
743         * StreamWriter.cs (Flush): Throw proper exception if internal stream
744         has already been closed when we try to flush.
745
746 2002/05/10  Nick Drochak <ndrochak@gol.com>
747
748         * FileNotFoundException.cs (ToString): Don't try to use the inner
749         exception, because it might be null.  Use the message instead.
750
751 2002-05-09  Nick Drochak  <ndrochak@gol.com>
752
753         * File.cs (Delete): Do not throw an exception if the file does not
754         exist.
755
756 2002-05-08  Mike Gray     <mikeg@mikegray.org>
757
758         * File.cs: According to ECMA spec and MS docs Copy(src, dest)
759         should not overwrite dest by default.
760
761 2002-05-08  Nick Drochak  <ndrochak@gol.com>
762
763         * StreamWriter.cs: Add paramter check to constructors and throw
764         exceptions where appropriate.
765
766 Tue May 7 11:47:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
767
768         * StreamReader.cs: return the number of chars read even if we diddn't
769         fill the whole buffer (makes Sergey's ilasm work with mono).
770
771 2002-05-07  Mike Gray     <mikeg_us@hotmail.com> 
772
773         * FileInfo.cs (Create): Implement missing method.
774
775 2002-05-07  Mike Gray     <mikeg_us@hotmail.com>
776
777         * File.cs: Implemented CreateText method, and fixed dst compares
778         to compare against "" instead of null twice.
779
780 2002-05-05  Nick Drochak  <ndrochak@gol.com>
781
782         * StreamReader.cs: Throw exceptions where needed. Changed Null field to
783         use new internal class since null cannot be passed to constructor 
784         anymore. Also, fix a coule of small bugs.
785
786 2002-05-03  Nick Drochak  <ndrochak@gol.com>
787
788         * MemoryStream.cs: Refrain from allocating array until the space is
789         really needed. This fixes a bug in the Length property when the
790         constructor without the byte array is used.
791
792 2002-05-01  Duncan Mak  <duncan@ximian.com>
793
794         * DirectoryNotFoundException.cs (constructor): Added missing
795         serialization constructor.
796
797 2002-04-30  Duncan Mak  <duncan@ximian.com>
798
799         * FileLoadException.cs (constructors): Added missing (string,
800         string) ctor, as well as (string, string, Exception) ctor.
801
802         (Message): Added more info to the error message
803
804         (ToString): Added. We'll need to add the StackTrace stuff when
805         that works.
806
807         * FileShare.cs: Add a missing field, Inheritable.
808         
809         * TextReader.cs: Renamed Synchronised method to Synchronized.
810
811         * TextWriter.cs: Renamed Synchronised method to Synchronized.
812         Renamed protected member coreNewLine to CoreNewLine.
813
814 2002-04-30  Sergey Chaban  <serge@wildwestsoftware.com>
815
816         * BinaryReader.cs: Allocate buffer before its first use.
817         Handle end of stream properly. Methods to read native types
818         (ReadInt* etc.) are little-endian (see Compact Framework docs).
819
820         * BinaryWriter.cs: Store data in little-endian format.
821         Use internal buffer for conversions.
822
823 2002-03-31  Dick Porter  <dick@ximian.com>
824
825         * Directory.cs: Strip out "." and ".." from returned list
826
827         * FileAttributes.cs: Get the right enum values
828
829 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
830
831         * TextWriter.cs (write): added check for null
832
833 2002-03-28  Dan Lewis  <dihlewis@yahoo.co.uk>
834
835         * Directory.cs: Throws DirectoryNotFoundException.
836         * MonoIO.cs: Fixed to work around enum problem.
837
838 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
839
840         * StreamReader.cs: Implemented ReadLine() and ReadEnd().
841
842 2002-03-27  Dan Lewis  <dihlewis@yahoo.co.uk>
843
844         * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
845         DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
846         wrapper and PAL classes.
847
848         * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
849
850 2002-03-25  Mike Kestner <mkestner@speakeasy.net>
851
852         * MemoryStream.cs (Read): Fixed bug in exception throw.
853
854 2002-03-24  Mike Kestner <mkestner@speakeasy.net>
855
856         * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
857
858 2002-03-23  Martin Baulig  <martin@gnome.org>
859
860         * StreamReader.cs: Always do buffered reading, use 4k blocks.
861         (Read (char[], int, int)): Implemented.
862         (DiscardBufferedData): Implemented.
863
864 2002-03-21  Mike Kestner <mkestner@speakeasy.net>
865
866         * StreamReader.cs : Fill out, add buffering, and use encoding.
867
868 2002-03-19  Martin Baulig  <martin@gnome.org>
869
870         * StreamWriter.cs (StreamWriter (string)): The default is to override
871         the file, not to append to it.
872         (StreamWriter (string path, bool append)): When appending, seek to the
873         end of the file, otherwise truncate the file to zero length.
874         (Dispose (bool)): Close the internalStream.
875         (Flush): Flush the interalStream.
876         (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
877
878 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
879
880         * FileStream.cs: Flush buffer before FileSetLength.
881
882 2002-02-28  Miguel de Icaza  <miguel@ximian.com>
883
884         * Stream.cs (NullStream): Do not track position, this beast does
885         nothing in practice.
886
887 2002-03-15  Dan Lewis <dihlewis@yahoo.co.uk>
888
889         * SearchPattern.cs: New class. Glob matching code for Directory.
890         * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
891
892 2002/03/15 Nick Drochak <ndrochak@gol.com>
893
894         * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
895         This code seemed to be copied from somewhere, and it was close,
896         but didn't match the docs.  This was the last bit needed to get
897         NAnt to compile with our class libs.
898
899 2002-03-12  Duncan Mak  <duncan@ximian.com>
900
901         * EndOfStreamException.cs:
902         * FileLoadException.cs:
903         * FileNotFoundException.cs:
904         * PathTooLongException.cs: Changed the base classes to IOException
905         instead of SystemException.
906
907         * IOException.cs: Added missing constructors.
908         
909 2002-03-07  Nick Drochak  <ndrochak@gol.com>
910
911         * FileMode.cs: Docs don't say this should be explicitly derived from
912         int, so just make it a normal Enum.
913
914 2002-03-02  Jason Diamond  <jason@injektilo.org>
915
916         * StringReader.cs: Fixed off-by-one error in Peek() and Read().
917
918 2002-02-12  Nick Drochak  <ndrochak@gol.com>
919
920         * PathTooLongException.cs: put it in the correct namespace
921         * EndOfStreamException.cs: put it in the correct namespace
922
923 Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <lupus@ximian.com>
924
925         * Directory.cs: handle opendir() return NULL and absolute filenames.
926
927 2002-01-31  Duncan Mak  <duncan@ximian.com>
928
929         * FileLoadException.cs:
930         * FileNotFoundException: Added missing bits for serialization.
931
932 Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <lupus@ximian.com>
933
934         * Directory.cs: allow directories in GetFiles() mask.
935
936 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
937
938         * FileInfo.c (CopyTo, MoveTo): Implement.
939
940         * FileStream.cs: Add argument checking to the constructor.
941
942         * File.cs: Rewrote most of the file.  Implement Copy, Open, Create,
943         OpenText, OpenWrite, Move.  Made pending methods flagged as MonoTODO. 
944         
945         * Directory.cs (Delete): reimplement without using DirectoryInfo.
946         (Delete): Implement the recursive version.
947         (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
948         (Move): Reimplement.
949         (getNames): dead code removal.
950
951         * Path.cs: define an internal DirectorySeparatorStr that we use in
952         a few spots.
953
954         * Wrapper.cs: Updated to new version.
955         
956         * DirectoryInfo (Delete): Implement using the Directory API.
957
958         * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
959         Delete, Create, Parent, Exists, MoveTo): Implement. 
960
961         * Directory.cs (GetListing): implement new utility function.
962         (GetDirectories): Implement.
963         (GetFileSystemEntries): Implement.
964         (GetFiles): Implement.
965
966         * CheckArgument.cs (Path): Do not allow null by default.
967
968 Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <lupus@ximian.com>
969
970         * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
971         assembly in corlib.
972
973 2002-01-20 Nick Drochak  <ndrochak@gol.com>
974
975         * SeekOrigin.cs: Added Serializable attribute.
976
977 2002-01-19  Duncan Mak  <duncan@ximian.com>
978
979         * PathTooLongException.cs: 
980         * EndOfStreamException.cs: Added to CVS.
981
982 Thu Jan 10 12:06:46 MST 2002 Matt Kimball <matt@kimball.net>
983
984         * BufferedStream.cs: Initial implemenation.  The synchronous
985         methods for both reading and writing are implemented.  I'll do the
986         asynchronous methods in a bit.
987         
988 Wed Jan  9 16:04:39 MST 2002 Matt Kimball <matt@kimball.net>
989
990         * BinaryWriter.cs: Initial implementation.  And it's all there.
991
992         * BinaryReader.cs: The constructor now uses the passed in encoding,
993         not UTF8 always.
994
995 Wed Jan  9 13:54:28 MST 2002 Matt Kimball <matt@kimbal.net>
996
997         * BinaryReader.cs: Initial implementation.  I think it's complete.
998
999 2002-01-04  Ravi Pratap  <ravi@ximian.com>
1000
1001         * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
1002         attribute decorations.
1003
1004         * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
1005         Path.cs, TextReader.cs, TextWriter.cs : Ditto.
1006
1007         * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs: 
1008         Ditto.
1009
1010 2001-12-11  Dick Porter  <dick@ximian.com>
1011
1012         * FileStream.cs: Use handles rather than casting file descriptors.
1013         Added Handle property.
1014
1015 Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <lupus@ximian.com>
1016
1017         * CheckPermission.cs: disable ModeAccess() code: it's wrong.
1018         * FileStream.cs: only trow an exception if the read failed in ReadByte().
1019         * StreamReader.cs: implement Peek and Read.
1020         * TextWriter.cs: CLSCompliant updates.
1021
1022 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
1023
1024         * FileNotFoundException.cs: Added some constructors
1025
1026         * Path.cs (GetFullPath): Fixed implementation
1027
1028 Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <lupus@ximian.com>
1029
1030         * DirectoryNotFoundException.cs: implemented.
1031
1032 Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
1033
1034         * File.cs: fix signatures of the Open() and OpenRead() functions
1035         (they are static).
1036
1037 Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
1038
1039         * FileLoadException.cs, FileNotFoundException.cs: added.
1040
1041 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
1042
1043         * TextReader.cs: implemented the Read method
1044
1045         * StreamReader.cs: impl. stubs
1046
1047         * StreamWriter.cs: impl.
1048
1049         * TextWriter.cs: implemented Write and WriteLine methods
1050
1051 Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
1052
1053         * FileAccess.cs, FileMode.cs: change values to be compatible with
1054         the ms ones.
1055         
1056 Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <lupus@ximian.com>
1057
1058         * IOException.cs: Implemented System.IO.Exception.
1059
1060 2001-07-18  Michael Lambert <michaellambert@email.com>
1061
1062         *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
1063
1064 2001-07-19  Marcin Szczepanski <marcins@zipworld.com.au>
1065
1066         * System.IO.MemoryStream.cs: Added.  Had quite a few cases of
1067         "LAMESPEC", but the tests work against the MS implementation so
1068         the major functions are right (ie. Read/Write/Seek).  Some more
1069         tests required for the various constructors and exceptions.
1070
1071 2001-07-16  Marcin Szczepanski <marcins@zipworld.com.au>
1072
1073         * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
1074         New class implemenations.
1075
1076         * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.
1077