namespace Xilium.CefGlue
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Runtime.InteropServices;
using Xilium.CefGlue.Interop;
///
/// Class used to read data from a stream. The methods of this class may be
/// called on any thread.
///
public sealed unsafe partial class CefStreamReader
{
///
/// Create a new CefStreamReader object from a file.
///
public static CefStreamReader Create(string fileName)
{
if (string.IsNullOrEmpty(fileName)) throw new ArgumentNullException("fileName");
fixed (char* fileName_str = fileName)
{
var n_fileName = new cef_string_t(fileName_str, fileName != null ? fileName.Length : 0);
return CefStreamReader.FromNative(
cef_stream_reader_t.create_for_file(&n_fileName)
);
}
}
///
/// Create a new CefStreamReader object from data.
///
public static CefStreamReader Create(void* data, long size)
{
return CefStreamReader.FromNative(
cef_stream_reader_t.create_for_data(data, (UIntPtr)size)
);
}
///
/// Create a new CefStreamReader object from a custom handler.
///
public static CefStreamReader Create(CefReadHandler handler)
{
if (handler == null) throw new ArgumentNullException("handler");
return CefStreamReader.FromNative(
cef_stream_reader_t.create_for_handler(handler.ToNative())
);
}
///
/// Read raw binary data.
///
public int Read(byte[] buffer, int offset, int length)
{
if (offset < 0 || length < 0 || buffer.Length - offset < length) throw new ArgumentOutOfRangeException();
fixed (byte* ptr = &buffer[offset])
{
return (int)cef_stream_reader_t.read(_self, ptr, (UIntPtr)1, (UIntPtr)length);
}
}
///
/// Seek to the specified offset position. |whence| may be any one of
/// SEEK_CUR, SEEK_END or SEEK_SET. Returns zero on success and non-zero on
/// failure.
///
public bool Seek(long offset, SeekOrigin whence)
{
return cef_stream_reader_t.seek(_self, offset, (int)whence) == 0;
}
///
/// Return the current offset position.
///
public long Tell()
{
return cef_stream_reader_t.tell(_self);
}
///
/// Return non-zero if at end of file.
///
public bool Eof()
{
return cef_stream_reader_t.eof(_self) != 0;
}
///
/// Returns true if this reader performs work like accessing the file system
/// which may block. Used as a hint for determining the thread to access the
/// reader from.
///
public bool MayBlock()
{
return cef_stream_reader_t.may_block(_self) != 0;
}
}
}