MOON
Server: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4
System: Linux csr818.wilogic.com 2.6.18-419.el5xen #1 SMP Fri Feb 24 22:50:37 UTC 2017 x86_64
User: digitals (531)
PHP: 5.4.45
Disabled: NONE
Upload Files
File: //usr/local/ssl/share/gtk-doc/html/libbonobo/libbonobo-bonobo-stream-client.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>bonobo-stream-client</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.69.1">
<link rel="start" href="index.html" title="Libbonobo Reference Manual">
<link rel="up" href="streams.html" title="Storages and Streams">
<link rel="prev" href="libbonobo-bonobo-storage.html" title="bonobo-storage">
<link rel="next" href="persist.html" title="Persistency">
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="chapter" href="general.html" title="General">
<link rel="chapter" href="factories.html" title="Objects, Factories, Reference Counting">
<link rel="chapter" href="property-bags.html" title="Property Bags, Events, Listeners">
<link rel="chapter" href="monikers.html" title="Monikers">
<link rel="chapter" href="streams.html" title="Storages and Streams">
<link rel="chapter" href="persist.html" title="Persistency">
<link rel="chapter" href="misc.html" title="Miscellaneous">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="libbonobo-bonobo-storage.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="streams.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Libbonobo Reference Manual</th>
<td><a accesskey="n" href="persist.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2777373" class="shortcut">Top</a>
                  &#160;|&#160;
                  <a href="#id2778326" class="shortcut">Description</a></nobr></td></tr>
</table>
<div class="refentry" lang="en">
<a name="libbonobo-bonobo-stream-client"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2>
<a name="id2777373"></a><span class="refentrytitle">bonobo-stream-client</span>
</h2>
<p>bonobo-stream-client &#8212; Simplified client wrapper functions for the Stream interface</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<h2>Synopsis</h2>
<pre class="synopsis">



void        <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-write">bonobo_stream_client_write</a>      (const Bonobo_Stream stream,
                                             const void *buffer,
                                             const size_t size,
                                             CORBA_Environment *ev);
<a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"
>guint8</a>*     <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-read">bonobo_stream_client_read</a>       (const Bonobo_Stream stream,
                                             const size_t size,
                                             CORBA_long *length_read,
                                             CORBA_Environment *ev);
void        <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-write-string">bonobo_stream_client_write_string</a>
                                            (const Bonobo_Stream stream,
                                             const char *str,
                                             const <a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
>gboolean</a> terminate,
                                             CORBA_Environment *ev);
void        <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-printf">bonobo_stream_client_printf</a>     (const Bonobo_Stream stream,
                                             const <a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
>gboolean</a> terminate,
                                             CORBA_Environment *ev,
                                             const char *fmt,
                                             ...);
CORBA_long  <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-read-string">bonobo_stream_client_read_string</a>
                                            (const Bonobo_Stream stream,
                                             char **str,
                                             CORBA_Environment *ev);
CORBA_long  <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-get-length">bonobo_stream_client_get_length</a> (const Bonobo_Stream stream,
                                             CORBA_Environment *ev);
</pre>
</div>
<div class="refsect1" lang="en">
<a name="id2778326"></a><h2>Description</h2>
<p>
These interfaces are designed to make the stream interface
slightly easier to use from client code. This is done 2 ways,
first by make the exception environments optiional, and secondly
by providing slightly nicer semantics.
</p>
<p>
  </p>
<div class="example">
<a name="id2778345"></a><p class="title"><b>Example&#160;3.&#160;Writing some simple data to a stream</b></p>
<pre class="programlisting">
bonobo_stream_client_printf (stream, TRUE, ev, "Hello World: <code class="literal">d</code>", 5);
     </pre>
</div>
<p>
  It is well worth using the bonobo_stream_client_write function
for any potentialy large writes, since this blocks the data into
sensible chunks. This is important, otherwise a single transfer is
attempted that will cause hassles in the CORBA stubs. [ NB. ORBit
tries to alloca a huge chunk of memory and SEGVs ].
</p>
</div>
<div class="refsect1" lang="en">
<a name="id2778378"></a><h2>Details</h2>
<div class="refsect2" lang="en">
<a name="id2778388"></a><h3>
<a name="bonobo-stream-client-write"></a>bonobo_stream_client_write ()</h3>
<a class="indexterm" name="id2778402"></a><pre class="programlisting">void        bonobo_stream_client_write      (const Bonobo_Stream stream,
                                             const void *buffer,
                                             const size_t size,
                                             CORBA_Environment *ev);</pre>
<p>
This is a helper routine to write <em class="parameter"><code>size</code></em> bytes from <em class="parameter"><code>buffer</code></em> to the
<em class="parameter"><code>stream</code></em>.  It will continue to write bytes until a fatal error
occurs. It works around serious problems in ORBit's handling of
sequences, and makes for nicer, saner protocol usage for
transfering huge chunks of data.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> A CORBA Object reference to a Bonobo_Stream
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>buffer</code></em>&#160;:</span></td>
<td> the buffer to write
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>size</code></em>&#160;:</span></td>
<td> number of bytes to write
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> a CORBA environment to return status information.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2778540"></a><h3>
<a name="bonobo-stream-client-read"></a>bonobo_stream_client_read ()</h3>
<a class="indexterm" name="id2778554"></a><pre class="programlisting"><a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#guint8"
>guint8</a>*     bonobo_stream_client_read       (const Bonobo_Stream stream,
                                             const size_t size,
                                             CORBA_long *length_read,
                                             CORBA_Environment *ev);</pre>
<p>
This is a helper routine to read <em class="parameter"><code>size</code></em> bytes from the <em class="parameter"><code>stream</code></em> into
a freshly g_ allocated buffer which is returned. Whilst this
routine may seem pointless; it reads the stream in small chunks
avoiding possibly massive alloca's inside ORBit's stub/skel code.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> A CORBA Object reference to a Bonobo_Stream
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>size</code></em>&#160;:</span></td>
<td> number of bytes to read or -1 for whole stream.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>length_read</code></em>&#160;:</span></td>
<td> if non NULL will be set to the length read
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> a CORBA environment to return status information.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td>NULL on any sort of failure &amp; 0 size read.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2778698"></a><h3>
<a name="bonobo-stream-client-write-string"></a>bonobo_stream_client_write_string ()</h3>
<a class="indexterm" name="id2778713"></a><pre class="programlisting">void        bonobo_stream_client_write_string
                                            (const Bonobo_Stream stream,
                                             const char *str,
                                             const <a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
>gboolean</a> terminate,
                                             CORBA_Environment *ev);</pre>
<p>
This is a helper routine to write the string in <em class="parameter"><code>str</code></em> to <em class="parameter"><code>stream</code></em>.
If <em class="parameter"><code>terminate</code></em> is TRUE, a NULL character will be written out at the
end of the string.  This function will not return until the entire
string has been written out, unless an exception is raised.  See
also <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-write"><code class="function">bonobo_stream_client_write()</code></a>. Continues writing until finished
or a fatal exception occurs.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> A CORBA object reference to a <span class="type">Bonobo_Stream</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>str</code></em>&#160;:</span></td>
<td> A string.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>terminate</code></em>&#160;:</span></td>
<td> Whether or not to write the \0 at the end of the
string.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> A pointer to a <span class="type">CORBA_Environment</span>
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2778880"></a><h3>
<a name="bonobo-stream-client-printf"></a>bonobo_stream_client_printf ()</h3>
<a class="indexterm" name="id2778892"></a><pre class="programlisting">void        bonobo_stream_client_printf     (const Bonobo_Stream stream,
                                             const <a
href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"
>gboolean</a> terminate,
                                             CORBA_Environment *ev,
                                             const char *fmt,
                                             ...);</pre>
<p>
Processes <em class="parameter"><code>fmt</code></em> and the arguments which follow it to produce a
string.  Writes this string out to <em class="parameter"><code>stream</code></em>.  This function will not
return until the entire string is written out, unless an exception
is raised.  See also <a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-write-string"><code class="function">bonobo_stream_client_write_string()</code></a> and
<a href="libbonobo-bonobo-stream-client.html#bonobo-stream-client-write"><code class="function">bonobo_stream_client_write()</code></a>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> A CORBA object reference to a <span class="type">Bonobo_Stream</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>terminate</code></em>&#160;:</span></td>
<td> Whether or not to null-terminate the string when it is
written out to the stream.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> A CORBA_Environment pointer.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>fmt</code></em>&#160;:</span></td>
<td> The printf format string.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>...</code></em>&#160;:</span></td>
<td> format arguments
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2779068"></a><h3>
<a name="bonobo-stream-client-read-string"></a>bonobo_stream_client_read_string ()</h3>
<a class="indexterm" name="id2779082"></a><pre class="programlisting">CORBA_long  bonobo_stream_client_read_string
                                            (const Bonobo_Stream stream,
                                             char **str,
                                             CORBA_Environment *ev);</pre>
<p>
Reads a NULL-terminated string from <em class="parameter"><code>stream</code></em> and stores it in a
newly-allocated string in <em class="parameter"><code>str</code></em>.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> The <span class="type">Bonobo_Stream</span> from which the string will be read.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>str</code></em>&#160;:</span></td>
<td> The string pointer in which the string will be stored.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> A pointer to a <span class="type">CORBA_Environment</span>.
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> The number of bytes read, or -1 if an error occurs.
If an exception occurs, <em class="parameter"><code>ev</code></em> will contain the exception.
</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2" lang="en">
<a name="id2779224"></a><h3>
<a name="bonobo-stream-client-get-length"></a>bonobo_stream_client_get_length ()</h3>
<a class="indexterm" name="id2779238"></a><pre class="programlisting">CORBA_long  bonobo_stream_client_get_length (const Bonobo_Stream stream,
                                             CORBA_Environment *ev);</pre>
<p>
Does the grunt work to get the length of a stream,
returns -1 if the length is not available. Returns -1
on exception.</p>
<p>

</p>
<div class="variablelist"><table border="0">
<col align="left" valign="top">
<tbody>
<tr>
<td>
<span class="term"><em class="parameter"><code>stream</code></em>&#160;:</span></td>
<td> The stream.
</td>
</tr>
<tr>
<td>
<span class="term"><em class="parameter"><code>ev</code></em>&#160;:</span></td>
<td> Exception environment
</td>
</tr>
<tr>
<td>
<span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td>
<td> Length or -1
</td>
</tr>
</tbody>
</table></div>
</div>
</div>
<div class="refsect1" lang="en">
<a name="id2779324"></a><h2>See Also</h2>
<p>
<span class="type">BonoboStream</span>
</p>
</div>
</div>
</body>
</html>