Skip to content

Commit

Permalink
gio: Wrap IOStream in GIOStream too
Browse files Browse the repository at this point in the history
  • Loading branch information
StephaneDelcroix authored and bl8 committed Jul 17, 2011
1 parent d90fae8 commit 5290f4c
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions gio/GioStream.cs
Expand Up @@ -63,6 +63,14 @@ public GioStream (OutputStream stream)
can_seek = stream is Seekable && (stream as Seekable).CanSeek;
}

public GioStream (IOStream stream)
{
this.stream = stream;
can_read = true;
can_write = true;
can_seek = stream is Seekable && (stream as Seekable).CanSeek;
}

public override bool CanSeek {
get { return can_seek; }
}
Expand Down Expand Up @@ -90,6 +98,10 @@ public GioStream (OutputStream stream)
FileInfo info = (stream as FileOutputStream).QueryInfo ("standard::size", null);
return info.Size;
}
if (stream is FileIOStream) {
FileInfo info = (stream as FileIOStream).QueryInfo ("standard::size", null);
return info.Size;
}
throw new NotImplementedException (String.Format ("not implemented for {0} streams", stream.GetType()));
}
}
Expand Down Expand Up @@ -127,7 +139,11 @@ public override int Read (byte[] buffer, int offset, int count)
throw new NotSupportedException ("The stream does not support reading");
if (is_disposed)
throw new ObjectDisposedException ("The stream is closed");
InputStream input_stream = stream as InputStream;
InputStream input_stream = null;
if (stream is InputStream)
input_stream = stream as InputStream;
else if (stream is IOStream)
input_stream = (stream as IOStream).InputStream;
if (input_stream == null)
throw new System.Exception ("this shouldn't happen");

Expand Down Expand Up @@ -155,7 +171,11 @@ public override void Write (byte[] buffer, int offset, int count)
throw new NotSupportedException ("The stream does not support writing");
if (is_disposed)
throw new ObjectDisposedException ("The stream is closed");
OutputStream output_stream = stream as OutputStream;
OutputStream output_stream = null;
if (stream is OutputStream)
output_stream = stream as OutputStream;
else if (stream is IOStream)
output_stream = (stream as IOStream).OutputStream;
if (output_stream == null)
throw new System.Exception ("this shouldn't happen");
if (offset == 0) {
Expand Down Expand Up @@ -209,6 +229,8 @@ public override void Close ()
(stream as InputStream).Close (null);
if (stream is OutputStream)
(stream as OutputStream).Close (null);
if (stream is IOStream)
(stream as IOStream).Close (null);
is_disposed = true;
}
}
Expand Down

0 comments on commit 5290f4c

Please sign in to comment.