active questions tagged stream - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T04:29:05Zhttp://stackoverflow.com/feeds/tag/streamhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854135/spreadsheetgear-iworkbook-workbook-object-how-do-i-retrieve-the-length-of-the-wo0Spreadsheetgear.IWorkbook/workbook object. How Do I retrieve the length of the workbok?einarabelc52009-12-06T02:18:26Z2009-12-06T03:39:02Z
<p>Dear Stackoverflow community.</p>
<p>Development Platform: .NET 2.0
Platform: ASP.NET
Spreadsheetgear: 2008
Language: C#</p>
<p>Is there a way to retrieve the Length in bytes of a workbook without copying it/saving it to another object?</p>
<p>I went through the documentation and several attempts with no success.</p>
<p>I am saving the workbook by using the SaveToStream method which is writing the workbook directly to the Page.Response.OutputStream which then is flushed out of the browser. But since the type of this object is Stream, this abstract class doesn't implement the Length property and casting it to a child class like MemoryStream will return null. In both cases the app will throw an Exception.</p>
<p>I need to capture the length in bytes in order to log it for performance review purposes in our application.</p>
<p>My purpose is to avoid copying that Stream to another object and if possible using only reference casts because we need to optimize the memory footprint of the module that exports to Excel spreadsheets in out application.</p>
<p>Thanks a lot in Advance.
Einar.</p>
http://stackoverflow.com/questions/1759183/is-it-possible-to-stream-to-an-android-phone-with-microsoft-media-server0Is it possible to stream to an Android phone with Microsoft Media Server?Bryan Denny2009-11-18T21:24:03Z2009-12-04T20:50:30Z
<p>Let's say that I have Microsoft Media Server stream (i.e. mms://[some ip address here]). This stream contains both audio and video. Is it possible to stream this to an Android phone? How would I go about doing this? Preferably with video, but if it is an audio stream only that would also be okay.</p>
http://stackoverflow.com/questions/1234817/jw-player-stops-after-a-few-seconds-in-firefox0Jw Player stops after a few seconds in Firefoxhydrarulz2009-08-05T18:09:13Z2009-12-02T21:00:03Z
<p>On chrome it works ok.</p>
<p>My flash version is WIN 10,0,32,18
Debug: No</p>
<p>This is the code that i wrote:</p>
<pre><code><script type="text/javascript" src="/swfobject.js"></script>
<div id="player">
<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a>
to see this player.
</div>
<script type="text/javascript">
var so = new SWFObject('player.swf', 'streambaby', '500', '15', '7');
so.addVariable('type', 'sound');
so.addVariable('file', 'http://path_to_shoutcast:port');
so.addVariable('displayheight', '15');
so.write('player');
</script>
</code></pre>
<p>The problem is that on chrome the stream works OK but on Firefox 3.5.2 it stopps after a few seconds.
I opened Firebug and hit the Net tab and I see that even after the playing stopps, firefox still downloads the stream.</p>
<p>I've searched on google and found answeres that said I should update my flash plugin, but it's the latest.</p>
http://stackoverflow.com/questions/1831593/java-null-pointer-exception0java null pointer exceptionsweety2009-12-02T08:57:09Z2009-12-02T09:20:25Z
<p>hi, I'm getting <code>java.lang.NullPointerException</code> at <code>while ((len = in.read(buf , 0 , buf.length)) >= 0) </code> in following method:</p>
<pre><code>public void copy(String src, File dst) throws IOException {
InputStream in = getClass().getResourceAsStream(src);
OutputStream out = new FileOutputStream(dst);
byte[] buf = new byte[1012];
int len;
while ((len = in.read(buf , 0 , buf.length)) >= 0) {
out.write(buf, 0, len);
buf = null;
}
in.close();
out.close();
}
</code></pre>
<p>I'm not getting the coz.I will be thankful if I get the solution.thanks in advance.......</p>
http://stackoverflow.com/questions/1825292/how-to-put-pointer-in-the-desired-place-in-a-stream-using-php0How to put pointer in the desired place in a stream using PHP?Alex Pilipenko2009-12-01T10:25:42Z2009-12-01T12:48:31Z
<p>Hello!
Currently I'm making data parser via Telnet connection using PHP.
I've encountered problem:
I need to put pointer in a stream to the certain place(not to the end of data), but using of fseek() function is impossible with streams.
Tell me, please, how can I solve this problem?</p>
http://stackoverflow.com/questions/1824774/display-a-file-from-a-byte-or-stream0Display a file from a byte[] or streambaralong2009-12-01T08:32:49Z2009-12-01T09:24:38Z
<p>I've got a winforms app that stores the contents of files in a database. The stored files can be of just about any type (word, excel, PDF, text, image ...) the user can select just about any type of file to load.</p>
<p>The user can then query the database, find a file and then open it.</p>
<p>I've got no problems extracting the byte array from the database, as either a stream or a byte array.</p>
<p>Ideally I'd be able to display the file directly from a byte array or stream; at the moment I'm saving it as a temporary file and then opening that with:</p>
<pre><code>Process.Start(fileName);
</code></pre>
<p>How can I display the file with the associated application either from any of the byte array or stream file?</p>
http://stackoverflow.com/questions/1813290/how-to-stream-the-contents-of-a-file-live-to-a-browser1How to stream the contents of a file live to a browserShadi Almosri2009-11-28T18:25:01Z2009-11-28T18:58:15Z
<p>Hiya,</p>
<p>I'm trying to find a efficient way to watch the server log on a webpage, i don't mind building an app i just can't work out the best way to do it.</p>
<p>Is there a way to keep a stream open to a file with php and to the browser? or will it have to be done by polling the file every x seconds?</p>
<p>Thanks in advance,</p>
<p>Shadi</p>
http://stackoverflow.com/questions/1812295/capture-bitstream-into-string0Capture bitstream into stringhalluc1nati0n2009-11-28T11:24:46Z2009-11-28T11:37:48Z
<p>I'll need to capture my bitstream into a string and keep concatenating the string. However, I'm not really sure how it's to be done. Any ideas?</p>
<pre><code>#include <bitset>
#include <iostream>
#include <string>
using namespace std;
int main ()
{
int i;
char data[30];
int int_arr[30];
printf("\nEnter the Data Bits to be transmitted : ");
scanf("%s",data);
// convert it into bitstream
for (i=0; i<strlen(data); i++)
{
int_arr[i] = int(data[i]);
}
for (i=0; i<strlen(data); i++)
{
cout << int_arr[i]<<endl;
cout << std::bitset<8>( int_arr[i] )<<endl; // Placeholder
}
return 0;
}
</code></pre>
<p>In the line where it's marked '//Placeholder', I really do not need to 'cout' it, rather, I'd have to capture the bitstream into a string and keep concatenating it.</p>
http://stackoverflow.com/questions/1777012/if-i-check-stream-for-valid-image-i-cant-write-bytes-to-server1If I check stream for valid image I can't write bytes to serverCode Sherpa2009-11-21T22:32:07Z2009-11-23T08:27:58Z
<p>Hi. </p>
<p>I am trying to check if a file is an image before I upload it to the image server.
I am doing it with the following function, which works exceptionally well:</p>
<pre><code>static bool IsValidImage(Stream imageStream)
{
bool isValid = false;
try
{
// Read the image without validating image data
using (Image img = Image.FromStream(imageStream, false, false))
{
isValid = true;
}
}
catch
{
;
}
return isValid;
}
</code></pre>
<p>The problem is that when the below is called immediately afterwards, The line:</p>
<pre><code>while ((bytesRead = request.FileByteStream.Read(buffer, 0, bufferSize)) > 0)
</code></pre>
<p>evalueates to zero and no bytes are read. I notice that when I remove the
IsValidImage function, bytes are read and the file is written. It seems
that bytes can only be read once? Any idea how to fix this? </p>
<pre><code>using (FileStream outfile = new FileStream(filePath, FileMode.Create))
{
const int bufferSize = 65536; // 64K
int bytesRead = 0;
Byte[] buffer = new Byte[bufferSize];
while ((bytesRead = request.FileByteStream.Read(buffer, 0, bufferSize)) > 0)
{
outfile.Write(buffer, 0, bytesRead);
}
outfile.Close(); //necessary?
}
</code></pre>
<p><hr></p>
<p>UPDATE: Thanks for your help Marc. I am new to stream manipulation and could use a little
more help here. I took a shot but may be mixing up the use of filestream and memorystream.
Would you mind taking a look? Thanks again.</p>
<pre><code>using (FileStream outfile = new FileStream(filePath, FileMode.Create))
using (MemoryStream ms = new MemoryStream())
{
byte[] buffer = new byte[1024];
int bytesRead;
while ((bytesRead = request.FileByteStream.Read(buffer, 0, buffer.Length)) > 0)
{
ms.Write(buffer, 0, bytesRead);
}
// ms now has a seekable/rewindable copy of the data
// TODO: read ms the first time
// I replaced request.FileByteStream with ms but am unsure about
// the using statement in the IsValidImage function.
if (!IsValidImage(ms) == true)
{
ms.Close();
request.FileByteStream.Close();
return;
}
ms.Position = 0;
// TODO: read ms the second time
byte[] m_buffer = new byte[ms.Length];
while ((bytesRead = ms.Read(m_buffer, 0, (int)ms.Length)) > 0)
{
outfile.Write(m_buffer, 0, bytesRead);
}
}
static bool IsValidImage(MemoryStream imageStream)
{
bool isValid = false;
try
{
// Read the image without validating image data
using (Image img = Image.FromStream(imageStream, false, false))
{
isValid = true;
}
}
catch
{
;
}
return isValid;
}
</code></pre>
http://stackoverflow.com/questions/946598/help-with-inluxis-flv-streaming-flash0help with inluxis flv streaming (flash)Andy2009-06-03T19:15:44Z2009-11-23T02:00:03Z
<p>hello guys, me again..</p>
<p>this time i'm building a flv player via rtmp, my server is influxis (.com).. </p>
<p>i builted a few months ago a video player that streams trought http.. but that player don´t work via rtmp.. so.. i'm wondering if anybody has or known where can i get a sample fla file, in order to recognize elements and AS.</p>
<p>i just need play pause and stop actions, no volume, no seek bar etc.</p>
<p>or.. if anybody knows hoy to build it... any help.. any idea will be welcome!</p>
<p>thanks in advance guys!</p>
http://stackoverflow.com/questions/1443960/how-to-implement-the-activity-stream-in-a-social-network0How to implement the activity stream in a social networkelectroportal2009-09-18T11:28:46Z2009-11-22T22:28:19Z
<p>I'm developing my own social network, and I haven't found on the web examples of implementation the stream of users' actions... For example, how to filter actions for each users? How to store the action events? Which data model and object model can I use for the actions stream and for the actions itselves?</p>
http://stackoverflow.com/questions/1771889/how-do-i-modify-pdf-without-a-library-using-c-and-stream-it-back-to-client-in-as1How do I modify PDF without a library using C# and stream it back to client in ASP.NET?Scott2009-11-20T17:05:21Z2009-11-20T17:31:56Z
<p>I'm having an issue where I'm corrupted a PDF and not sure of a proper solution. I've seen several posts on people trying to just do a basic stream or trying to modify the file with a third party library. This is how my situation differs...</p>
<p>I have all the web pieces in place to get me the PDF streamed back and it works fine until I try to modify it with C#.</p>
<ol>
<li><p>I've modified the PDF in a text editor manually to remove the <> entries and tested that the PDF functions properly after that.</p></li>
<li><p>I've then programmatically streamed the PDF in as byte[] from the database, convert it to a string, using a RegEx to find and remove the same stuff I tried removing manually.</p></li>
<li><p>THE PROBLEM! When I try to convert the modified PDF string contents back into a byte[] to stream back, the PDF encoding no longer seems to be correct. What is the correct encoding?</p></li>
</ol>
<p>Does anyone know the best way to do something like this? I'm just trying to keep my solution as light as possible because our site is geared towards PDF document access so heavy APIs or complex are not preferable unless no other options are available. Also, because this situation is really only when our users view the file in an iframe for "preview", I can't permanently modify the PDF.</p>
<p>Thanks for your help in advance!</p>
http://stackoverflow.com/questions/1769189/streamsocketclient-error-in-php0stream_socket_client error in phpBiranchi2009-11-20T09:00:11Z2009-11-20T09:06:26Z
<p>Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection timed out) in /home/biranchi/public_html/push.php on line 42
Failed to connect 110 </p>
<p>I am using the certificate, and the private key</p>
<pre><code>$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', $certfile);
stream_context_set_option($ctx, 'ssl', 'passphrase', $pass);
$fp = stream_socket_client('ssl://gateway.xyz.com:2195', $err, $errstr, 60, STREAM_CLIENT_CONNECT, $ctx);
</code></pre>
<p>Its running in my local XAMPP Server , but its not working in the external server </p>
<p>What is the error ? Do i need to change some setting in the server ?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1740006/custom-c-manipulator-problem0Custom C++ manipulator problemTom2009-11-16T04:13:38Z2009-11-19T09:21:14Z
<p>Hi guys,</p>
<p>I'm trying to implement my own stream manipulator inside my logging class. It's basically endline manipulator which changes state of a flag. However when I try to use it, I'll get: </p>
<pre><code>ftypes.cpp:57: error: no match for ‘operator<<’ in ‘log->Log::debug() << log->Log::endl’
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc:67: note: candidates are: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ostream<_CharT, _Traits>& (*)(std::basic_ostream<_CharT, _Traits>&)) [with _CharT = char, _Traits = std::char_traits<char>]
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc:78: note: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::basic_ios<_CharT, _Traits>& (*)(std::basic_ios<_CharT, _Traits>&)) [with _CharT = char, _Traits = std::char_traits<char>]
/usr/lib/gcc/i386-redhat-linux/4.1.2/../../../../include/c++/4.1.2/bits/ostream.tcc:90: note: std::basic_ostream<_CharT, _Traits>& std::basic_ostream<_CharT, _Traits>::operator<<(std::ios_base& (*)(std::ios_base&)) [with _CharT = char, _Traits = std::char_traits<char>]
</code></pre>
<p>...</p>
<p>Code:</p>
<pre><code>class Log {
public:
...
std::ostream& debug() { return log(logDEBUG); }
std::ostream& endl(std::ostream& out); // manipulator
...
private:
...
std::ofstream m_logstream;
bool m_newLine;
...
}
std::ostream& Log::endl(std::ostream& out)
{
out << std::endl;
m_newLine = true;
return out;
}
std::ostream& Log::log(const TLogLevel level)
{
if (level > m_logLevel) return m_nullstream;
if (m_newLine)
{
m_logstream << timestamp() << "|" << logLevelString(level) << "|";
m_newLine = false;
}
return m_logstream;
}
</code></pre>
<p>I'm getting the error when I try to call it:</p>
<pre><code>log->debug() << "START - object created" << log->endl;
</code></pre>
<p>(log is the pointer to Log object)</p>
<p>Any ideas? I suspect it's somehow connected to the fact that the manipulator is actually inside the class but that's just my wild guess...</p>
<p>Cheers,</p>
<p>Tom</p>
<p>EDIT: Putting this here instead of comment because of limiting formatting.
I tried to implement my streambuf and it works great with one exception: when I try to open filebuf for append it fails. Output works nicely, just append doesn't for some unknown reason. If I try to use ofstream directly with append it works. Any idea why? –
Works:</p>
<pre><code>std::ofstream test;
test.open("somefile", std::ios_base::app);
if (!test) throw LogIoEx("Cannon open file for logging");
test << "test" << std::endl;
</code></pre>
<p>Appends "test" correctly .</p>
<p>Doesn't work: </p>
<pre><code>std::filebuf *fbuf = new std::filebuf();
if (!fbuf->open("somefile", std::ios_base::app)) throw LogIoEx("Cannon open file for logging");
</code></pre>
<p>Throws exception, if I set openmode to out then it works..</p>
<p>Cheers</p>
http://stackoverflow.com/questions/184683/play-audio-from-a-stream-using-c11Play Audio from a Stream using C#mutzel2008-10-08T20:19:23Z2009-11-19T06:04:01Z
<p>Is there a way in C# to play audio (e.g. MP3) direcly from a Stream (I mean the real .NET class) that for instance was returend from a WebRequest without saving the data temporarily to the disk?</p>
<p><hr></p>
<h3>Solution with NAudio</h3>
<p>With the help of NAudio 1.3 it is possible to:</p>
<ol>
<li>load a mp3 file from a url into a MemoryStream</li>
<li>convert mp3 data into wave data after it was completely loaded</li>
<li>playback the wave data using the NAudios WaveOut class</li>
</ol>
<p>It would have been nice to be able to even play a half loaded mp3 file but this seems to be impossible due to the NAudio library design.</p>
<p>And this is the function that will do the work:</p>
<pre><code> public static void PlayMp3FromUrl(string url)
{
using (Stream ms = new MemoryStream())
{
using (Stream stream = WebRequest.Create(url)
.GetResponse().GetResponseStream())
{
byte[] buffer = new byte[32768];
int read;
while ((read = stream.Read(buffer, 0, buffer.Length)) > 0)
{
ms.Write(buffer, 0, read);
}
}
ms.Position = 0;
using (WaveStream blockAlignedStream =
new BlockAlignReductionStream(
WaveFormatConversionStream.CreatePcmStream(
new Mp3FileReader(ms))))
{
using (WaveOut waveOut = new WaveOut(WaveCallbackInfo.FunctionCallback()))
{
waveOut.Init(blockAlignedStream);
waveOut.Play();
while (waveOut.PlaybackState == PlaybackState.Playing )
{
System.Threading.Thread.Sleep(100);
}
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1375194/red5-live-streaming0Red5 live streamingel_totis2009-09-03T18:39:48Z2009-11-18T17:09:34Z
<p>Hello guys, I'm new with Red5. I would like to know how can I take a stream from a port (something like this rr.tt.yy.uu:1234) and publish it using Red5. I was looking the oflaDema and the Simple Broadcaster, but this only takes the camera and I need to take the stream. Can you help me please?, may be with an example or a guideline. </p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1729790/how-do-you-stream-a-sound-clip-on-a-web-page-so-it-is-not-easily-downloadable0how do you stream a sound clip on a web page so it is not easily downloadable?Bravax2009-11-13T15:09:26Z2009-11-17T13:12:15Z
<p>This isn't my area of expertise at all, so I was wondering if anyone could point me in the right direction for streaming a sound clip from a web page.</p>
<p>The main restriction is that it can't be <strong>easily</strong> saveable.<br>
(So direct .wav's or whatever playing is out.).</p>
<p>One suggestion i've had is using some sort of flash streaming.<br>
What other options are there?</p>
<p>This will ideally be running on a .net platform, but any option is available, as long as it works securely.</p>
<p>Note: If videos can be done too, extra credit will be received from my user.</p>
http://stackoverflow.com/questions/1741191/creating-a-file-stream-that-results-in-a-string0Creating a FILE * stream that results in a stringEdmund2009-11-16T10:01:30Z2009-11-16T11:25:30Z
<p>I'm looking for a way to pass in a <code>FILE *</code> to some function so that the function can write to it with <code>fprintf</code>. This is easy if I want the output to turn up in an actual file on disk, say. But what I'd like instead is to get all the output as a string (<code>char *</code>). The kind of API I'd like is:</p>
<pre><code>/** Create a FILE object that will direct writes into an in-memory buffer. */
FILE *open_string_buffer(void);
/** Get the combined string contents of a FILE created with open_string_buffer
(result will be allocated using malloc). */
char *get_string_buffer(FILE *buf);
/* Sample usage. */
FILE *buf;
buf = open_string_buffer();
do_some_stuff(buf); /* do_some_stuff will use fprintf to write to buf */
char *str = get_string_buffer(buf);
fclose(buf);
free(str);
</code></pre>
<p>The <strong>glibc</strong> headers seem to indicate that a FILE can be set up with hook functions to perform the actual reading and writing. In my case I think I want the write hook to append a copy of the string to a linked list, and for there to be a <code>get_string_buffer</code> function that figures out the total length of the list, allocates memory for it, and then copies each item into it in the correct place.</p>
<p>I'm aiming for something that can be passed to a function such as <code>do_some_stuff</code> without that function needing to know anything other than that it's got a <code>FILE *</code> it can write to.</p>
<p>Is there an existing implementation of something like this? It seems like a useful and C-friendly thing to do -- assuming I'm right about the <code>FILE</code> extensibility.</p>
http://stackoverflow.com/questions/1739569/decoding-manchester-biphase-mark-in-software-representing-a-smpte-timecode-audio1Decoding Manchester biphase-mark in software (representing a SMPTE timecode audio stream)Dan2009-11-16T01:09:56Z2009-11-16T02:12:01Z
<p>I've never had to deal with signal/stream encoding or decoding before, at least not beyond fairly basic protocols like HTTP, so forgive me if I'm making this harder than I should be.</p>
<p>Several of the systems we use at work rely on SMPTE timecode to operate, a Manchester biphase-mark system that occupies 1kHz of bandwidth between 1kHz and 2kHz.</p>
<p>Because this is right in the audio spectrum, and at line-level, it can be plugged straight into the soundcard's line input, accessible using the audio API of your choice (I plan on using Core Audio on a Mac).</p>
<p>I'm fairly happy about decoding the digital bitstream itself to recover the time and parameters, but actually recovering the bitstream from the sampled analogue signal is less straight forward, and I'm not sure what the best way to approach the problem is.</p>
<p>My current plan is to allow a short amount of time once a signal is detected (1 second or 24-30 frames) to measure the maximum and minimum number of samples between zero-crossing levels (using a moving average filter to prevent spikes/dropouts affecting decoding) and the maximum and minimum recorded voltages to determine the zero crossing point (DC level).</p>
<p>I should then be able to use this information to construct a digital bitstream from the incoming analogue signal. Am I headed in the right direction, or is there a better way of doing it?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/878837/salting-a-c-md5-computehash-on-a-stream0Salting a C# MD5 ComputeHash on a streamKeith Marsh2009-05-18T17:23:11Z2009-11-14T17:47:30Z
<p>I can't see any way to salt a MD5.ComputeHash(Stream).
Am I missing some way of injecting bytes into the HashAlgorithm?</p>
<p>I tried performing a ComputeHash(byte[]) before performing the stream compute, but, unsurprisingly, it had no effect. Any ideas (apart from modifying the file)?</p>
<p>Thanks for your time.</p>
<p><strong>addendum</strong>
Just to be a little more specific, I want to use a stream to get a hash on a large file that I don't want to load into memory.</p>
<pre><code>FileInfo myFI= new FileInfo("bigfile.dat");
FileStream myIFS = piFile.OpenRead();
MD5 md5 = MD5.Create();
byte[] hash = md5.ComputeHash ( myIFS );
myIFS.Close ();
</code></pre>
http://stackoverflow.com/questions/1732138/most-performant-way-to-write-binary-data-to-a-file-in-c4Most performant way to write binary data to a file in C#mdarsigny2009-11-13T21:48:18Z2009-11-13T22:04:32Z
<p>Hi,</p>
<p>I am trying to optimize a class that serializes objects in binary format and writes them in a file. I am currently using a FileStream (in sync mode because of the size of my objects) and a BinaryWriter. Here's what my class looks like:</p>
<pre><code>public class MyClass
{
private readonly BinaryWriter m_binaryWriter;
private readonly Stream m_stream;
public MyClass()
{
// Leave FileStream in synchronous mode for performance issue (faster in sync mode)
FileStream fileStream = new FileStream(FilePath, FileMode.OpenOrCreate, FileAccess.Write, FileShare.ReadWrite, maxSize, false);
m_stream = fileStream;
m_binaryWriter = new BinaryWriter(m_stream);
}
public void SerializeObject(IMySerializableObject serializableObject)
{
serializableObject.Serialize(m_binaryWriter);
m_stream.Flush();
}
}
</code></pre>
<p>A profiler run on this code shows good performance but I was wondering if there are other objects (or techniques) that I could use to improve the performance of this class.</p>
http://stackoverflow.com/questions/1724800/stream-read-problem1Stream Read ProblemAaron2009-11-12T19:34:58Z2009-11-12T19:48:46Z
<p>Suppose we have a code block like this :</p>
<pre><code>//Assuming s is a stream:
byte[] data = new byte[1000];
s.Read(data,0,data.Length);
</code></pre>
<blockquote>
<p>The read Method could read anywhere
from 1 to 1000 bytes, leaving the
balance of the stream unread.</p>
</blockquote>
<p>This is what a C# book says. </p>
<p>I don't understand,why <code>Read</code> method would read anywhere from the stream ? It ain't reading all of the stream ?</p>
<p>And it says the work-around should be like this :</p>
<pre><code>//bytesRead will always end up at 1000, unless the stream is itself smaller in length:
int bytesRead = 0;
int chunkSize = 1;
while(bytesRead < data.Length && chunkSize > 0 )
bytesRead += chunkSize = s.Read(data,bytesRead,dataLength-bytesRead);
</code></pre>
<p>This code above is also provided by the book as a work-around. What I am trying to understand whether Read method is beginning to read to the end and write all of the bytes in specified range to byte array. Why is he using the <code>bytesRead</code> as a start point in <code>s.Read(data,bytesRead,dataLength-bytesRead);</code></p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1715848/different-ways-of-reading-and-writing-files-in-c1Different ways of reading and writing files in C#Tanmoy2009-11-11T15:18:31Z2009-11-11T15:41:05Z
<p>Hi,
I am trying to understand different ways of reading and writing files with their advantages and disadvantages. Like when to use TextWriter/TextReader when File.Create or StreamReader/StreamWriter
FileStream etc.</p>
<p>When to use what?</p>
http://stackoverflow.com/questions/1711846/is-the-net-stream-class-poorly-designed4Is the .NET Stream class poorly designed?I. J. Kennedy2009-11-10T22:57:48Z2009-11-11T08:33:14Z
<p>I've spent quite a bit of time getting familiar with the .NET Stream classes. Usually I learn a lot by studying the class design of professional, commercial-grade frameworks, but I have to say that something doesn't quite smell right here.</p>
<p>System.IO.Stream is an abstract class representing a sequence of bytes. It has 10 abstract method/properties: <code>Read, Write, Flush, Length, SetLength, Seek, Position, CanRead, CanWrite, CanSeek</code>. So many abstract members makes it cumbersome to derive from, because you have to override all those methods, even if most end up just throwing <code>NotImplemented</code>.</p>
<p>Users of Stream classes are expected to call <code>CanRead</code>, <code>CanWrite</code>, or <code>CanSeek</code> to find out the capabilities of the Stream, or I suppose just go ahead and call <code>Read</code>, <code>Write</code>, or <code>Seek</code> and see if it throws <code>NotImplemented</code>. Is it just me, or is this crummy design?</p>
<p>Though there are many nits I'd like to pick with the <code>Stream</code> class design, the main one I'd like to ask about is this: Why didn't they use interfaces, like <code>IReadable</code>, <code>IWriteable</code>, <code>ISeekable</code>, instead? Then a new Stream class could gracefully derive from the interfaces it supports. Isn't this the object-oriented way of doing things? Or am I missing something? </p>
<p><strong>Update</strong>: It was pointed out that the value <code>CanRead</code> <em>et al</em> can change at runtime—for example if a <code>FileStream</code> is closed—and the point is taken. However, I remain unconvinced that this is a good design. From where I'm from, trying to read from a file that's already been closed is a bug, or at least an exceptional condition. (And thus throwing an exception is a natural way to handle this situation.)</p>
<p>Does this mean that every time I'm about to <code>Read</code> from a <code>Stream</code>, I should check <code>CanRead</code>? And would that mean I should put a lock in place to avoid a race condition, if it's possible for the value to change sometime in between the <code>CanRead</code> call and the <code>Read</code> call?</p>
http://stackoverflow.com/questions/1711421/lazy-stream-for-c-net1Lazy stream for C# / .NETerikkallen2009-11-10T21:39:51Z2009-11-10T22:31:29Z
<p>Does anyone know of a lazy stream implementation in .net? IOW, I want a to create a method like this:</p>
<pre><code>public Stream MyMethod() {
return new LazyStream(...whatever parameters..., delegate() {
... some callback code.
});
}
</code></pre>
<p>and when my other code calls MyMethod() to return retrieve the stream, it will not actually perform any work until someone actually tries to read from the stream. The usual way would be to make MyMethod take the stream parameter as a parameter, but that won't work in my case (I want to give the returned stream to an MVC FileStreamResult).</p>
<p>To further explain, what I'm looking for is to create a layered series of transformations, so</p>
<p>Database result set =(transformed to)=> byte stream =(chained to)=> GZipStream =(passed to)=> FileStreamResult constructor.</p>
<p>The result set can be huge (GB), so I don't want to cache the result in a MemoryStream, which I can pass to the GZipStream constructor. Rather, I want to fetch from the result set as the GZipStream requests data.</p>
http://stackoverflow.com/questions/1369520/java-compress-image-without-fully-load-them0Java : compress image without fully load themunknown (google)2009-09-02T18:56:54Z2009-11-09T20:00:03Z
<p>I'm creating an applet that send pictures to a servlet. </p>
<p>The applet first action is to resize and compress the picture.
I'm using ImageIO to load the picture into a BufferedImage. Next I resize the picture and then use ImageWriter to compress it in jpeg. That's work fine.</p>
<p>The problem is when the user send a very big pic(up to 70MP). The loading of the image in a BufferedImage exceeds the heap size and throws an "out of memory" exception.</p>
<p>How can I advoid that ?</p>
<p>Is it possible to compress a picture without fully load it in memory ? Maybe using stream only ? Or load subImage ?</p>
<p>Excuse me for my bad english,
Thanks for your anwsers.</p>
http://stackoverflow.com/questions/1701277/networkstream-readable0NetworkStream ReadableElqila2009-11-09T14:26:07Z2009-11-09T14:26:07Z
<p>Hello,</p>
<p>I need this property in order to check the availability of my network stream conintuosly.
It is described in the Visual Studio 2008 Documentation. But if I check the definiton of NetworkStream class in my Visual Studio there is no "Readable" property within its members. </p>
<p>I really need this to update the status of the networkstream and check if it is disconneted while running my application. Does someone no why it is mentioned in teh documentation but not available in Visual Studio??</p>
<p>Thanks a lot!</p>
http://stackoverflow.com/questions/1700435/calculate-upload-transfer-speed-problem2Calculate upload transfer speed problemGONeale2009-11-09T11:23:34Z2009-11-09T12:55:44Z
<p>Hey guys,</p>
<p>I have implemented a file transfer rate calculator to display kB/sec for an upload process occuring in my app, however with the following code it seems I am getting 'bursts' in my KB/s readings just after the file commences to upload.</p>
<p>This is the portion of my stream code, this streams a file in 1024 chunks to a server using httpWebRequest:</p>
<pre><code>using (Stream httpWebRequestStream = httpWebRequest.GetRequestStream())
{
if (request.DataStream != null)
{
byte[] buffer = new byte[1024];
int bytesRead = 0;
Debug.WriteLine("File Start");
var duration = new Stopwatch();
duration.Start();
while (true)
{
bytesRead = request.DataStream.Read(buffer, 0, buffer.Length);
if (bytesRead == 0)
break;
httpWebRequestStream.Write(buffer, 0, bytesRead);
totalBytes += bytesRead;
double bytesPerSecond = 0;
if (duration.Elapsed.TotalSeconds > 0)
bytesPerSecond = (totalBytes / duration.Elapsed.TotalSeconds);
Debug.WriteLine(((long)bytesPerSecond).FormatAsFileSize());
}
duration.Stop();
Debug.WriteLine("File End");
request.DataStream.Close();
}
}
</code></pre>
<p>Now an output log of the upload process and associated kB/sec readings are as follows:
(You will note a new file starts and ends with 'File Start' and 'File End')</p>
<pre><code>File Start
5.19 MB
7.89 MB
9.35 MB
11.12 MB
12.2 MB
13.13 MB
13.84 MB
14.42 MB
41.97 kB
37.44 kB
41.17 kB
37.68 kB
40.81 kB
40.21 kB
33.8 kB
34.68 kB
33.34 kB
35.3 kB
33.92 kB
35.7 kB
34.36 kB
35.99 kB
34.7 kB
34.85 kB
File End
File Start
11.32 MB
14.7 MB
15.98 MB
17.82 MB
18.02 MB
18.88 MB
18.93 MB
19.44 MB
40.76 kB
36.53 kB
40.17 kB
36.99 kB
40.07 kB
37.27 kB
39.92 kB
37.44 kB
39.77 kB
36.49 kB
34.81 kB
36.63 kB
35.15 kB
36.82 kB
35.51 kB
37.04 kB
35.71 kB
37.13 kB
34.66 kB
33.6 kB
34.8 kB
33.96 kB
35.09 kB
34.1 kB
35.17 kB
34.34 kB
35.35 kB
34.28 kB
File End
</code></pre>
<p>My problem is as you will notice, the 'burst' I am talking about starts at the beginning of every new file, peaking in MB's and then evens out properly. is this normal for an upload to burst like this? My upload speeds typically won't go higher than 40k/sec here so it can't be right.</p>
<p>This is a real issue, when I take an average of the last 5 - 10 seconds for on-screen display, it really throws things out producing a result around ~3MB/sec!</p>
<p>Any ideas if I am approaching this problem the best way? and what I should do? :S</p>
<p>Graham</p>
<p><strong>Also: Why can't I do '<code>bytesPerSecond = (bytesRead / duration.Elapsed.TotalSeconds)</code>' and move duration.Start & duration.Stop into the while loop and receive accurate results? I would have thought this would be more accurate? Each speed reads as 900 bytes/sec, 800 bytes/sec etc.</strong></p>
http://stackoverflow.com/questions/1684646/how-to-convert-link-to-source-to-stream-in-silverlight0How to convert link to source to stream in silverlight?Ole Jak2009-11-06T00:36:11Z2009-11-06T00:52:40Z
<p>How to convert link to source ( string containing the URL ) to stream in silverlight?</p>
http://stackoverflow.com/questions/1660281/stream-and-c-parsing-file0Stream and c++ - parsing fileOckonal2009-11-02T09:43:22Z2009-11-02T13:48:13Z
<p>Hello, I did it before... But I forgot.
I have a file with some data:</p>
<blockquote>
<p>0.5 0.6 0.7
1.2 1.5</p>
</blockquote>
<p>How can I read this in c++? I did it with stream... something like:</p>
<pre><code>float var = 0;
stream >> var;
</code></pre>