5.0

5.0 | 1 rating Rate this file 19 Downloads (last 30 days) File Size: 112.42 KB File ID: #13851
image thumbnail

popen read and write

by Dan Ellis

 

04 Feb 2007 (Updated 05 Feb 2007)

MEX source to acccess popen r/w

| Watch this File

File Information
Description

popen() -- for "pipe open" -- is a very useful system call provided in many flavors of Unix. It runs a command passed in as a string then returns a file handle so that the parent process can read or write to the process as if it was a file; data passed this way is connected to the standard input or the standard output of the child process.

I created this because I wanted to process very long MP3 files in Matlab. Originally I wrote mp3read to allow me to decode just a small section of a long MP3 file without having to decode the whole thing, but every time I wanted to read another segment, I had to open the file again, then seek through to the point I wanted to read.

Instead, by using popen to open an MP3 decoding process that writes to standard output, I can "pull" as many frames as I want from the file, then put the process to sleep while I deal with those frames, then, on my next read from popen, the process is reawoken and the next block of data can be accessed. But this could be used for any application where there are long data streams to read or write, and you want to handle them a bit at a time.

Two functions are provided, popenr.c for reading from command pipes, and popenw.w for writing to command pipes. Reading and writing to the same command is not supported at present.

MATLAB release MATLAB 7.3 (R2006b)
Other requirements Requires popen() in underlying platform i.e. some kind of Unix (Linux, Mac OS X, ...)
Tags for This File  
Everyone's Tags
Tags I've Applied
Add New Tags Please login to tag files.
Comments and Ratings (1)
07 Apr 2008 Morag Am-Shallem

This is great extension, which providing powerful tool to for interface with other applications.
I've been using two alternatives until now:
1. Output from other apps. to temporary files, and then command 'load ...' from Matlab,
2. Executing them with 'system(...)', which gives output string, then parsing it with 'sscanf(...)'.
Both alternatives waste a lot more time. For my files, 'popenr(...)' is even quicker than loading mat-files with the same data!
Thank you very much.

Please login to add a comment or rating.
Tag Activity for this File
Tag Applied By Date/Time
data import Dan Ellis 22 Oct 2008 08:59:25
data export Dan Ellis 22 Oct 2008 08:59:25
unix Dan Ellis 22 Oct 2008 08:59:26
popen Dan Ellis 22 Oct 2008 08:59:26
mex Dan Ellis 22 Oct 2008 08:59:26
source Dan Ellis 22 Oct 2008 08:59:26
open Dan Ellis 22 Oct 2008 08:59:26
pipe Dan Ellis 22 Oct 2008 08:59:26
pipe hamid mahmoodi 14 Feb 2011 00:51:15
data export ka 04 May 2011 01:03:14
popen ka 04 May 2011 01:03:19
popen David Roberts 02 Feb 2012 10:59:22

Contact us at files@mathworks.com