singrdk/base/Libraries/System.IO/StringReader.cs

146 lines
5.5 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//============================================================
//
// Class: StringReader
//
// Purpose: For reading text from strings
//
//===========================================================
2008-03-05 09:52:00 -05:00
using System;
using System.Runtime.InteropServices;
2008-11-17 18:29:00 -05:00
namespace System.IO
{
2008-03-05 09:52:00 -05:00
// This class implements a text reader that reads from a string.
//
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader"]/*' />
public class StringReader : TextReader
{
private String _s;
private int _pos;
private int _length;
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.StringReader"]/*' />
public StringReader(String s) {
if (s == null)
throw new ArgumentNullException("s");
_s = s;
_length = s == null? 0: s.Length;
}
// Closes this StringReader. Following a call to this method, the String
// Reader will throw an ObjectDisposedException.
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.Close"]/*' />
public override void Close() {
Dispose(true);
}
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.Dispose"]/*' />
protected override void Dispose(bool disposing) {
_s = null;
_pos = 0;
_length = 0;
base.Dispose(disposing);
}
// Returns the next available character without actually reading it from
// the underlying string. The current position of the StringReader is not
// changed by this operation. The returned value is -1 if no further
// characters are available.
//
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.Peek"]/*' />
public override int Peek() {
if (_s == null)
__Error.ReaderClosed();
if (_pos == _length) return -1;
return _s[_pos];
}
// Reads the next character from the underlying string. The returned value
// is -1 if no further characters are available.
//
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.Read"]/*' />
public override int Read() {
if (_s == null)
__Error.ReaderClosed();
if (_pos == _length) return -1;
return _s[_pos++];
}
// Reads a block of characters. This method will read up to count
// characters from this StringReader into the buffer character
// array starting at position index. Returns the actual number of
// characters read, or zero if the end of the string is reached.
//
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.Read1"]/*' />
public override int Read([In, Out] char[] buffer, int index, int count) {
2008-11-17 18:29:00 -05:00
if (buffer == null)
2008-03-05 09:52:00 -05:00
throw new ArgumentNullException("buffer", "ArgumentNull_Buffer");
if (index < 0)
throw new ArgumentOutOfRangeException("index", "ArgumentOutOfRange_NeedNonNegNum");
if (count < 0)
throw new ArgumentOutOfRangeException("count", "ArgumentOutOfRange_NeedNonNegNum");
if (buffer.Length - index < count)
throw new ArgumentException("Argument_InvalidOffLen");
if (_s == null)
__Error.ReaderClosed();
int n = _length - _pos;
if (n > 0) {
if (n > count) n = count;
_s.CopyTo(_pos, buffer, index, n);
_pos += n;
}
return n;
}
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.ReadToEnd"]/*' />
public override String ReadToEnd()
{
if (_s == null)
__Error.ReaderClosed();
String s;
2008-11-17 18:29:00 -05:00
if (_pos == 0)
2008-03-05 09:52:00 -05:00
s = _s;
else
s = _s.Substring(_pos, _length - _pos);
_pos = _length;
return s;
}
// Reads a line. A line is defined as a sequence of characters followed by
// a carriage return ('\r'), a line feed ('\n'), or a carriage return
// immediately followed by a line feed. The resulting string does not
// contain the terminating carriage return and/or line feed. The returned
// value is null if the end of the underlying string has been reached.
//
//| <include file='doc\StringReader.uex' path='docs/doc[@for="StringReader.ReadLine"]/*' />
public override String ReadLine() {
if (_s == null)
__Error.ReaderClosed();
int i = _pos;
while (i < _length) {
char ch = _s[i];
if (ch == '\r' || ch == '\n') {
String result = _s.Substring(_pos, i - _pos);
_pos = i + 1;
if (ch == '\r' && _pos < _length && _s[_pos] == '\n') _pos++;
return result;
}
i++;
}
if (i > _pos) {
String result = _s.Substring(_pos, i - _pos);
_pos = i;
return result;
}
return null;
}
}
}