\hypertarget{class_qore_1_1_file_input_stream}{}\doxysection{Qore\+::File\+Input\+Stream Class Reference}
\label{class_qore_1_1_file_input_stream}\index{Qore::FileInputStream@{Qore::FileInputStream}}


This class implements the \mbox{\hyperlink{class_qore_1_1_input_stream}{Input\+Stream}} interface for reading bytes from a file.  




{\ttfamily \#include $<$QC\+\_\+\+File\+Input\+Stream.\+dox.\+h$>$}



Inheritance diagram for Qore\+::File\+Input\+Stream\+:
\nopagebreak
\begin{figure}[H]
\begin{center}
\leavevmode
\includegraphics[width=203pt]{class_qore_1_1_file_input_stream__inherit__graph}
\end{center}
\end{figure}
\doxysubsection*{Public Member Functions}
\begin{DoxyCompactItemize}
\item 
\mbox{\hyperlink{class_qore_1_1_file_input_stream_aaaa18b49402cb9fb889475b1bb018918}{constructor}} (\mbox{\hyperlink{group__type__conversion__functions_gacf16b4126b795f4b6933ef3425cadae3}{string}} file\+Name, timeout timeout\+\_\+ms=-\/1, \+\_\+\+\_\+7\+\_\+ bool nonblocking\+\_\+open)
\begin{DoxyCompactList}\small\item\em Creates the \mbox{\hyperlink{class_qore_1_1_file_input_stream}{File\+Input\+Stream}} by opening a file. \end{DoxyCompactList}\item 
\mbox{\hyperlink{group__type__conversion__functions_ga2de8717e92c5f97ccc6511f6062d6502}{int}} \mbox{\hyperlink{class_qore_1_1_file_input_stream_a898981029547b903c7a2ac661b621443}{peek}} ()
\begin{DoxyCompactList}\small\item\em Peeks the next byte available from the input stream; returns -\/1 if no more data available. \end{DoxyCompactList}\item 
\+\_\+\+\_\+7\+\_\+ \mbox{\hyperlink{group__type__conversion__functions_gaf11c7f5c43ced1e9b95bd2270ee87ed9}{binary}} \mbox{\hyperlink{class_qore_1_1_file_input_stream_a51429f08b73a1cac82cca23de4dc6c9c}{read}} (\mbox{\hyperlink{group__type__conversion__functions_ga2de8717e92c5f97ccc6511f6062d6502}{int}} limit)
\begin{DoxyCompactList}\small\item\em Reads bytes (up to a specified limit) from the input stream; returns \mbox{\hyperlink{basic_data_types_NOTHING}{NOTHING}} if there are no more bytes in the stream. \end{DoxyCompactList}\end{DoxyCompactItemize}


\doxysubsection{Detailed Description}
This class implements the \mbox{\hyperlink{class_qore_1_1_input_stream}{Input\+Stream}} interface for reading bytes from a file. 

\begin{DoxyParagraph}{Restrictions\+:}
\mbox{\hyperlink{group__parse__options_ga5e466ed886222f0b57b0a399b455be71}{Qore\+::\+PO\+\_\+\+NO\+\_\+\+FILESYSTEM}}
\end{DoxyParagraph}
\begin{DoxyParagraph}{Example\+: File\+Input\+Stream basic usage}

\begin{DoxyCode}{0}
\DoxyCodeLine{FileInputStream fis(\textcolor{stringliteral}{"{}file.ext"{}});}
\DoxyCodeLine{binary *b;}
\DoxyCodeLine{\textcolor{keywordflow}{while} (b = fis.read(100)) \{}
\DoxyCodeLine{    printf(\textcolor{stringliteral}{"{}read \%s\(\backslash\)n"{}}, make\_hex\_string(b));}
\DoxyCodeLine{\}}

\end{DoxyCode}

\end{DoxyParagraph}
\begin{DoxyNote}{Note}
stream classes are not designed to be accessed from multiple threads; they have been implemented without locking for fast and efficient use when used from a single thread. For methods that would be unsafe to use in another thread, any use of such methods in threads other than the thread where the constructor was called will cause a {\ttfamily STREAM-\/\+THREAD-\/\+ERROR} to be thrown, unless the stream is handed off to another thread using the \mbox{\hyperlink{class_qore_1_1_stream_base_a017fc847a42d5c670cb9640a94522666}{Stream\+Base\+::unassign\+Thread()}} method in the thread that currently owns the stream, and the \mbox{\hyperlink{class_qore_1_1_stream_base_ab6b33cb1944c46aca8e9984ddfd65452}{Stream\+Base\+::reassign\+Thread()}} method in the new thread.
\end{DoxyNote}
\begin{DoxySeeAlso}{See also}
\mbox{\hyperlink{class_qore_1_1_stream_reader}{Stream\+Reader}} for a class that can be used to \mbox{\hyperlink{class_qore_1_1_file_input_stream_a51429f08b73a1cac82cca23de4dc6c9c}{read}} various kinds of data from an \mbox{\hyperlink{class_qore_1_1_input_stream}{Input\+Stream}}
\end{DoxySeeAlso}
\begin{DoxySince}{Since}
Qore 0.\+8.\+13 
\end{DoxySince}


\doxysubsection{Member Function Documentation}
\mbox{\Hypertarget{class_qore_1_1_file_input_stream_aaaa18b49402cb9fb889475b1bb018918}\label{class_qore_1_1_file_input_stream_aaaa18b49402cb9fb889475b1bb018918}} 
\index{Qore::FileInputStream@{Qore::FileInputStream}!constructor@{constructor}}
\index{constructor@{constructor}!Qore::FileInputStream@{Qore::FileInputStream}}
\doxysubsubsection{\texorpdfstring{constructor()}{constructor()}}
{\footnotesize\ttfamily Qore\+::\+File\+Input\+Stream\+::constructor (\begin{DoxyParamCaption}\item[{\mbox{\hyperlink{group__type__conversion__functions_gacf16b4126b795f4b6933ef3425cadae3}{string}}}]{file\+Name,  }\item[{timeout}]{timeout\+\_\+ms = {\ttfamily -\/1},  }\item[{\+\_\+\+\_\+7\+\_\+ bool}]{nonblocking\+\_\+open }\end{DoxyParamCaption})}



Creates the \mbox{\hyperlink{class_qore_1_1_file_input_stream}{File\+Input\+Stream}} by opening a file. 


\begin{DoxyParams}{Parameters}
{\em file\+Name} & the name of the file to open \\
\hline
{\em timeout\+\_\+ms} & a timeout period with a resolution of milliseconds (a \mbox{\hyperlink{basic_data_types_relative_dates}{relative date/time value}}; integer arguments will be assumed to be milliseconds); if not given or negative the operations will never time out \\
\hline
{\em nonblocking\+\_\+open} & if \mbox{\hyperlink{basic_data_types_True}{True}}, then the {\ttfamily O\+\_\+\+NONBLOCK} flag will be set in the call to {\ttfamily open() (2)}\\
\hline
\end{DoxyParams}

\begin{DoxyExceptions}{Exceptions}
{\em FILE-\/\+OPEN2-\/\+ERROR} & if the file cannot be opened (does not exist, permission error, etc)\\
\hline
\end{DoxyExceptions}
\begin{DoxySince}{Since}
Qore 0.\+9.\+3 added the {\itshape nonblocking\+\_\+open} flag 
\end{DoxySince}
\mbox{\Hypertarget{class_qore_1_1_file_input_stream_a898981029547b903c7a2ac661b621443}\label{class_qore_1_1_file_input_stream_a898981029547b903c7a2ac661b621443}} 
\index{Qore::FileInputStream@{Qore::FileInputStream}!peek@{peek}}
\index{peek@{peek}!Qore::FileInputStream@{Qore::FileInputStream}}
\doxysubsubsection{\texorpdfstring{peek()}{peek()}}
{\footnotesize\ttfamily \mbox{\hyperlink{group__type__conversion__functions_ga2de8717e92c5f97ccc6511f6062d6502}{int}} Qore\+::\+File\+Input\+Stream\+::peek (\begin{DoxyParamCaption}{ }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [virtual]}}



Peeks the next byte available from the input stream; returns -\/1 if no more data available. 

\begin{DoxyReturn}{Returns}
the next byte available from the input stream or -\/1 if no more data is available
\end{DoxyReturn}
\begin{DoxyParagraph}{Example\+:}

\begin{DoxyCode}{0}
\DoxyCodeLine{FileInputStream fis(\textcolor{stringliteral}{"{}file.ext"{}});}
\DoxyCodeLine{int nextByte = fis.peek();}

\end{DoxyCode}

\end{DoxyParagraph}

\begin{DoxyExceptions}{Exceptions}
{\em FILE-\/\+READ-\/\+ERROR} & if an I/O error occurs \\
\hline
{\em FILE-\/\+READ-\/\+TIMEOUT-\/\+ERROR} & if no byte could be read in the timeout specified in the constructor\\
\hline
{\em STREAM-\/\+THREAD-\/\+ERROR} & this exception is thrown if this method is called from any thread other than the thread that created the object \\
\hline
\end{DoxyExceptions}


Implements \mbox{\hyperlink{class_qore_1_1_input_stream_a165db4108c3a1f4bbb6b619972fd131c}{Qore\+::\+Input\+Stream}}.

\mbox{\Hypertarget{class_qore_1_1_file_input_stream_a51429f08b73a1cac82cca23de4dc6c9c}\label{class_qore_1_1_file_input_stream_a51429f08b73a1cac82cca23de4dc6c9c}} 
\index{Qore::FileInputStream@{Qore::FileInputStream}!read@{read}}
\index{read@{read}!Qore::FileInputStream@{Qore::FileInputStream}}
\doxysubsubsection{\texorpdfstring{read()}{read()}}
{\footnotesize\ttfamily \+\_\+\+\_\+7\+\_\+ \mbox{\hyperlink{group__type__conversion__functions_gaf11c7f5c43ced1e9b95bd2270ee87ed9}{binary}} Qore\+::\+File\+Input\+Stream\+::read (\begin{DoxyParamCaption}\item[{\mbox{\hyperlink{group__type__conversion__functions_ga2de8717e92c5f97ccc6511f6062d6502}{int}}}]{limit }\end{DoxyParamCaption})\hspace{0.3cm}{\ttfamily [virtual]}}



Reads bytes (up to a specified limit) from the input stream; returns \mbox{\hyperlink{basic_data_types_NOTHING}{NOTHING}} if there are no more bytes in the stream. 


\begin{DoxyParams}{Parameters}
{\em limit} & the maximum number of bytes to read \\
\hline
\end{DoxyParams}
\begin{DoxyReturn}{Returns}
the read bytes (the length is between 1 and \`{}limit\`{} inclusive) or \mbox{\hyperlink{basic_data_types_NOTHING}{NOTHING}} if no more bytes are available
\end{DoxyReturn}
\begin{DoxyParagraph}{Example\+:}

\begin{DoxyCode}{0}
\DoxyCodeLine{FileInputStream fis(\textcolor{stringliteral}{"{}file.ext"{}});}
\DoxyCodeLine{*binary b;}
\DoxyCodeLine{\textcolor{keywordflow}{while} (b = fis.read(2)) \{}
\DoxyCodeLine{    printf(\textcolor{stringliteral}{"{}read \%s\(\backslash\)n"{}}, make\_hex\_string(b));}
\DoxyCodeLine{\}}

\end{DoxyCode}

\end{DoxyParagraph}

\begin{DoxyExceptions}{Exceptions}
{\em FILE-\/\+READ-\/\+ERROR} & if an I/O error occurs \\
\hline
{\em FILE-\/\+READ-\/\+TIMEOUT-\/\+ERROR} & if no byte could be read in the timeout specified in the constructor\\
\hline
{\em INPUT-\/\+STREAM-\/\+ERROR} & {\itshape limit} is not positive \\
\hline
{\em STREAM-\/\+THREAD-\/\+ERROR} & this exception is thrown if this method is called from any thread other than the thread that created the object\\
\hline
\end{DoxyExceptions}
\begin{DoxySeeAlso}{See also}
File\+Input\+Stream\+::read\+String() 
\end{DoxySeeAlso}


Implements \mbox{\hyperlink{class_qore_1_1_input_stream_a74ba0bc85bb86988a0f8b3255d1dbf01}{Qore\+::\+Input\+Stream}}.

