active questions tagged pipes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T20:29:02Zhttp://stackoverflow.com/feeds/tag/pipeshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1870933/createprocess-with-redirection-access-denied-on-the-output-pipe0CreateProcess with redirection access denied on the output pipeilya17252009-12-09T00:48:12Z2009-12-09T18:57:29Z
<p>Hello:</p>
<p>I have a simple code running in a DLL called from MFC application. Generally it implements the example that is shown in msdn article - <a href="http://msdn.microsoft.com/en-us/library/ms682499%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682499%28VS.85%29.aspx</a>. Except I just want to create any process (say shell script). All the process creation is done fine with no errors. However, ReadFile with the output pipe always fails with error <strong>5:Access is denied</strong>. Making the same calls in a regular Win32 console application runs fine.</p>
<p>Please help.
-Ilya.</p>
http://stackoverflow.com/questions/1764131/why-doesnt-find-print0-work-in-cygwin-under-vista0Why doesn't "find -print0" work in Cygwin under Vista? [closed]Alex R2009-11-19T15:33:55Z2009-12-07T11:00:30Z
<p>I'm writing a simple shell script:</p>
<pre>find datafiles/ -type f -print0 | xargs -0 md5sum > datafiles.md5</pre>
In Cygwin under Vista, it just sits there and nothing happens.
It works fine on Linux.
What could be the problem??
fyi:
<pre>
$ find --version
find (GNU findutils) 4.4.0
Copyright (C) 2007 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Written by Eric B. Decker, James Youngman, and Kevin Dalley.
Built using GNU gnulib version e5573b1bad88bfabcda181b9e0125fb0c52b7d3b
Features enabled: O_NOFOLLOW(enabled) LEAF_OPTIMISATION FTS() CBO(level=0)
</pre>
http://stackoverflow.com/questions/1856372/python-popen-wont-work-with-block-devices1Python popen wont work with block devicesRecursion2009-12-06T19:42:21Z2009-12-07T00:24:01Z
<p>I am wring a small forensic app which looks like this so far</p>
<pre><code>import time, os,sys
def getter():
filename = sys.argv[1]
print "File Entered: " + filename
os.system('file ' + filename)
print "\n"
pipe = os.popen("xxd " + filename, "r")
print pipe.read()
</code></pre>
<p>I input via the command line a file and it prints out the type of file and then it is supposed to create a pipe from the terminal back to the python app under the pipe name "pipe". I then read the pipe named "pipe"</p>
<p>This works great on smaller text files, but it will not work on block devices even when I run this app as super user. In the end this will recover files based on the output of xxd.</p>
<p>any tips, thank you. </p>
http://stackoverflow.com/questions/1849918/pipe-communication-c1Pipe communication C++Ricardo Acras2009-12-04T21:57:42Z2009-12-05T17:16:43Z
<p>I´m writing two litle c++ apps that must communicate. First one will be a service which, every once in a while, must alert the user for something. Since a service cannot create windows I designed the app to be two separate executables.</p>
<p>The service will use a notifier to communicate.</p>
<p>The service needs only to send text messages to the notifier wich will show up a balloon at system tray.</p>
<p>I´m trying to use named pipes and I think I´m almost there, but not quite there. What I have so far is:</p>
<p>At the notifier side:</p>
<pre><code> m_hInPipe = CreateNamedPipe(L"\\\\.\\pipe\\nhsupspipe", PIPE_ACCESS_INBOUND,
PIPE_WAIT, 1, 1024, 1024, 60, NULL);
</code></pre>
<p>Meaning I created a pipe named nhsupspipe, an inbound pipe.</p>
<p>At the service side:</p>
<pre><code>if (!WriteFile(m_hOutPipe, "My message to the user?", 23, &escritos, &o))
std::cout << "ERROR: " << GetLastError();
</code></pre>
<p>Debugging I can see that it is all ok, the pipe is created and the WriteFile writes my 23 bytes to the pipe.</p>
<p>My question is: How, in the notifier side I´ll be able to read these bytes? Is there any message sent to the process? Do I have to write a handler for the pipe? Anything?</p>
http://stackoverflow.com/questions/1788956/using-windows-named-pipes-from-inside-activex-control-possible1Using Windows named pipes from inside activeX control - Possible?Roey2009-11-24T09:33:40Z2009-12-04T04:41:51Z
<p>Hi All, </p>
<p>I am starting to design a DMO to run from inside a windows media player activeX control in Internet Explorer. </p>
<p>is there any reason why using windows named pipes from inside the DMO wouldn't work?</p>
<p>user permissions/privilages/ kernel mode stuff?</p>
<p>Thanks :)
Roey</p>
http://stackoverflow.com/questions/1839348/python-web-app-logging-through-pipe-performance-concerned0python web app logging through pipe? (performance concerned)qingbo2009-12-03T11:28:39Z2009-12-03T11:32:22Z
<p>I'm writing a web app using python with web.py, and I want to implement my own logging system. I'd like to log detailed information about each request that come to python (static files are handled by web servers).</p>
<p>Currently I'm thinking about writing the logs to a pipe. On the other side, there should be cronolog.</p>
<p>My main concern is that will the performance be good? How is the time/resource consumed in piping the logs compared to the normal processing of a request (less than 5 database queries, and page generation from templates)?</p>
<p>Or are there other better approaches? I don't want to write the log file in python because tens of processes will be started by fastcgi.</p>
http://stackoverflow.com/questions/1827421/howto-pipe-raw-pcm-data-from-dev-ttyusb0-to-soundcard0Howto pipe raw PCM-Data from /dev/ttyUSB0 to soundcard?marvin2k2009-12-01T16:44:11Z2009-12-02T18:31:25Z
<p>Hi</p>
<p>I'm working currently on a small microhpone, connected to PC via an FPGA. The FPGA spits a raw datastream via UART/USB into my computer. I'm able to record, play and analyze the data.</p>
<p>But I can't play the "live" audiostream directly.</p>
<p>What works is saving the datastream in PCM raw-format with a custom made C-program, and piping the content of the file into aplay. But that adds a 10sec lag into the datastream... Not so nice for demoing or testing.</p>
<pre><code>tail -f snd.raw | aplay -t raw -f S16_LE -r 9000
</code></pre>
<p>Does someone have another idea, how get the audiostream faster into my ears? Why does</p>
<pre><code>cat /dev/ttyUSB0 | aplay
</code></pre>
<p>not work? (nothing happens)</p>
<p>Thanks so far<br>
marvin</p>
http://stackoverflow.com/questions/1362813/regulate-image-sizes-in-yahoo-pipes-output0Regulate image sizes in Yahoo Pipes outputstrangerpixel2009-09-01T14:30:15Z2009-11-27T05:00:03Z
<p>When combining multiple blog feeds into one using Yahoo Pipes, is it possible to control the image sizes in the output?</p>
<p>I've seen the existing operators and filters offered, but there doesn't seem to be an option that e.g. rejects a post from my feed if its image is >500px wide, or even resizes that image to a given size.</p>
http://stackoverflow.com/questions/1785265/piping-cygwin-into-a-python-program0Piping Cygwin into a Python programZaidman2009-11-23T19:03:18Z2009-11-23T19:17:57Z
<p>Hello guys,
As a i'm new to the whole Piping thing and Python I had recently encountered a problem trying to pipe Cygwin's stdin & stdout into a python program usin Python's subprocess moudle.
for example I took a simple program:</p>
<pre><code>cygwin = subprocess.Popen('PathToCygwin',shell=False,stdin=subprocess.PIPE,stdout=subprocess.PIPE)
cygwin.stdin.write('ssh')
</code></pre>
<p>After that I'm getting this error:</p>
<pre><code>cygwin.stdin.write('ssh')
IOError: [Errno 22] Invalid argument
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1778842/how-to-use-regex-to-find-replace-html-table-tags0How to use Regex to Find & Replace html table tags?Adam2009-11-22T14:28:44Z2009-11-22T16:16:46Z
<p>I have blocks of code that look like this: </p>
<pre><code><table border="0"><tr><td><img src='http://profile.ak.fbcdn.net/object3/686/9/q142163634919_249.jpg'/>&nbsp;&nbsp;</td><td>Gift of Life Marathon Blood Drive - "the group stood before a sea of 1,000 Long Trail Brewing Co. pint glasses..." (Rutland Herald, VT)</td></tr></table>
</code></pre>
<p>I need to find & replace everything but <a href="http://profile.ak.fbcdn.net/object3/686/9/q142163634919%5F249.jpg" rel="nofollow">http://profile.ak.fbcdn.net/object3/686/9/q142163634919%5F249.jpg</a> with nothing. So at the end, it should just be the url.</p>
<p>The only values that will not be the same as we go through the loop is the url and the description within the 2nd set of td tags. The # of characters in the description won't always be the same.</p>
<p>I got Regex Buddy & looked at a reference site for hours last night. Matching a single character seems pretty straightforward but I think it will take a while for me to figure this one out.</p>
<p>I believe there are different types of RegEx. The one I am working with is in Yahoo Pipes, not sure what type it is: <a href="http://pipes.yahoo.com/pipes/pipe.edit?%5Fid=436a316234281be629d357bbecae46b1" rel="nofollow">http://pipes.yahoo.com/pipes/pipe.edit?%5Fid=436a316234281be629d357bbecae46b1</a></p>
http://stackoverflow.com/questions/1777528/how-can-i-pipe-the-output-of-a-program-that-can-only-write-to-a-file-and-not-to3How can I pipe the output of a program that can only write to a file (and not to STDOUT)?Ryan Thompson2009-11-22T01:57:00Z2009-11-22T02:51:41Z
<p>I'm trying to write something like <a href="http://pacpl.sourceforge.net/" rel="nofollow">Perl Audio Converter</a>, so I need to be able to decode every relevant audio format to wav (PCM) and then encode wav to every relevant audio format. I'd like to do this in parallel, by piping the output of the decoder directly to the input of the encoder. Most decoders have an option to decode to stdout, but not all of them do. Some insist on outputting to a file. </p>
<p>So my question is, how can I trick a program that will only output to a specified file into using stdout instead? Also, the complementary question: how can I trick a program that requires in input file into reading from stdin?</p>
<p>Would this be impossible because the program might want to seek back and forth within the output?</p>
<p>Incidentally, Perl Audio Converter sidesteps this problem by always using an intermediate wav file, which means that it never does decoding and encoding in parallel, even for formats that support it.</p>
<p>PS: Yes, there's a reason I don't want to just use Perl Audio Converter, but it's not relevant to the question.</p>
http://stackoverflow.com/questions/1771334/how-can-a-console-application-e-g-java-recognize-the-source-of-the-standard-i0How can a console application (e.g. Java) recognize the source of the 'standard input' stream?Anon Imus2009-11-20T15:41:27Z2009-11-20T16:15:12Z
<p>If I run 'python' on the linux command line, and I don't provide any command line arguments, the program displays a welcome message and waits for user input. I would assume that under the hood, the program sends the message to the 'standard output' stream and performs a blocking read on the 'standard input' stream.</p>
<p>If, however, I invoke python indirectly by piping the output from another process (e.g. echo "hello" | python), python does NOT output the message. Somehow, it can tell the difference between the original scenario (a) where the 'standard input' stream is being populated by some other process and (b) where the 'standard input' stream is populated from the keyboard.</p>
<p>How is this accomplished? I had always thought that this information is not available to an application. How would a Java application be able to achieve this differentiation?</p>
http://stackoverflow.com/questions/1744303/is-there-a-way-to-import-export-a-pipes-source-in-text-xml-format1is there a way to import/export a pipes source in text/xml format?rutherford2009-11-16T19:26:45Z2009-11-16T21:04:58Z
<p>I'd like to save a copy of some of my pipes offline before I go to edit them, and possibly reload them from an external source again in future.</p>
<p>Can this be done?</p>
http://stackoverflow.com/questions/1742354/regex-for-all-characters-on-yahoo-pipes0regex for all characters on yahoo pipesrutherford2009-11-16T14:03:02Z2009-11-16T14:52:14Z
<p>I have an apparently simple regex query for pipes - I need to truncate each item from it's (<code><img></code>) tag onwards. I thought a loop with string regex of <code><img[.]*</code> replaced by blank field would have taken care of it but to no avail.</p>
<p>Obviously I'm missing something basic here - can someone point it out?</p>
<p>The item as it stands goes along something like this:</p>
<pre><code>sample text title
<a rel="nofollow" target="_blank" href="http://example.com"><img border="0" src="http://example.com/image.png" alt="Yes" width="20" height="23"/></a>
<a.... (a bunch of irrelevant hyperlinks I don't need)...
</code></pre>
<p>Essentially I only want the title text and hyperlink that's why I'm chopping the rest off</p>
<p>Going one better because all I'm really doing here is making the item string more manageable by cutting it down before further manipulation - anyone know if it's possible to extract a href from a certain link in the page (in this case the 1st one) using Regex in Yahoo Pipes? I've seen the regex answer to <a href="http://stackoverflow.com/questions/360492/regular-expression-on-yahoo-pipes">this SO q</a> but I'm not sure how to use it to map a url to an item attribute in a Pipes module?</p>
http://stackoverflow.com/questions/1738276/how-do-i-use-regex-in-yahoo-pipes0How do I use Regex in Yahoo Pipes?Baabaa Barfi2009-11-15T18:03:24Z2009-11-15T18:03:24Z
<p>I am not Yahoo Pipes user but I do not know anything about programming.
I use Yahoo Pipes to generate RSS feeds from several websites that allow me to use their feeds on my site. What I need is to clean up these sites from all the unwanted styles like this:</p>
<pre><code><div style="font-family:Tahoma, Geneva, sans-serif;font-size:12px;direction:rtl;text-align:justify;">
</code></pre>
<p>I also need to remove some unwanted text from the titles and the content of the feeds. I think I need to use Regex for that, but I cannot figure out how. </p>
<p>How should I do that in Yahoo Pipes?</p>
http://stackoverflow.com/questions/1734932/linux-pipes-as-input-and-output0Linux Pipes as Input and OutputNeville Bamshoe2009-11-14T17:25:41Z2009-11-14T19:45:15Z
<p>I would like to do the following inside a C program on a Linux os:</p>
<ul>
<li>Create a PIPE using a syscall (or 2)</li>
<li>Execute a new process using exec()</li>
<li>Connect the process's STDIN to to the previously created pipe.</li>
<li>Connect the process's output to another PIPE.</li>
</ul>
<p>The idea is to circumvent any drive access for performance purposes. </p>
<p>I know that the creation of pipes is quite simple using the PIPE system call
and that I could just use popen for creating a pipe for input OR output purposes.</p>
<p>But how would you go about doing this for both input and output?</p>
http://stackoverflow.com/questions/1718554/c-keeping-pipes-open1C# Keeping Pipes OpenPGP_Protector2009-11-11T22:34:24Z2009-11-11T22:52:49Z
<p>I've Got two Programs (Server / Client)
I'm trying to setup IPC for them (They both run on the same box)
Using System.IO.Pipes & Net 3.5</p>
<p>When I call ComOpen, it opens the Pipe correctly, sends the Process ID to the server, but then the Pipe closes and I get an error when it tries to send "Second Write Test"</p>
<p>So Question is.
How do I keep the Pipe open for the Life of the Program?
(I use the Process ID on the server to close everything down if the Client crashes)</p>
<pre><code>private static StreamWriter MyWriter;
private static StreamReader MyReader;
private static NamedPipeClientStream IPCPipe = new NamedPipeClientStream(".", "MyPipe", PipeDirection.InOut);
public static bool MyWrite(string DataOut)
{
bool ValidPipeOut = false;
if(ValidComPort)
try
{
// Send Data
using (QstWriter = new StreamWriter(IPCPipe))
{
QstWriter.AutoFlush = true;
QstWriter.WriteLine(QstDataOut);
QstWriter.Close();
QstWriter.Dispose();
}
ValidPipeOut = true;
}
catch
{
ValidPipeOut = false;
}
return ValidPipeOut;
}
public static bool ComOpen()
{
ValidComPort = true;
try { IPCPipe.Connect(1000); }
catch (Exception ex)
{
string Erroris;
Erroris = ex.Message;
if (Erroris == "Already in a connected state.")
{
// We're Already Connected, Ignore this error.
ValidComPort = true;
}
else
{
ValidComPort = false;
MessageBox.Show(Erroris);
}
}
if (ValidComPort)
{
string ClientProcessID = System.Diagnostics.Process.GetCurrentProcess().Id.ToString();
MyReader = new StreamReader(IPCPipe);
ValidComPort = MyWrite(ClientProcessID);
ValidComPort = MyWrite("Second Write Test");
}
return ValidComPort;
}
</code></pre>
http://stackoverflow.com/questions/1712347/closest-equivalent-to-subprocess-communicate-in-haskell0Closest equivalent to subprocess.communicate in HaskellClaudiu2009-11-11T01:04:05Z2009-11-11T01:29:57Z
<p>I want to do a popen() / python's subprocess.communicate from Haskell - start a program, give it stdin, and get its stdout/stderr. What's the most direct / Haskellish way to do this?</p>
http://stackoverflow.com/questions/1694706/problem-with-piping-commands-in-c5Problem with piping commands in Csymmet2009-11-07T22:48:01Z2009-11-08T04:54:15Z
<p>Hi,</p>
<p>I'm trying to create a simple shell in C for Unix. I've been able to do all the parsing of commands and execution, but I'm having a problem with piping. I think the problem is that I'm not hooking into the correct pipe for the input of the second command.</p>
<p>For example, if I type "ls | wc", it will pause after the "wc" command, which I think is because its waiting for input. I think the problem is when I use dup2(reading[i],0), and its not hooking into the correct pipe.</p>
<p>I know this is a bit of a broad question, but if there are any pointers I could get, I would appreciate it. Here is the code that creates new processes and tries to pipe them.</p>
<pre><code> int fileds[2];
int reading[num_cmds];
int writing[num_cmds];
int p;
for(p=0; p < num_cmds; p++)
{
reading[p] = -1;
writing[p] = -1;
}
int j;
for(j=0; j < num_cmds-1; j++) //Create pipes for commands
{
int fileds[2];
pipe(fileds);
reading[j+1] = fileds[0];
writing[j] = fileds[1];
}
int i = 0;
for(i = 0; i < num_cmds;i++)
{
cmd_args = parse_cmd(cmds[i],output_file,input_file,&run_bg); //Get command and args
pid_t childpid;
int status;
childpid=fork();
if (childpid >= 0)
{
if (childpid == 0)
{
if(writing[i] != -1)
{
dup2(writing[i],1);
close(writing[i]);
}
if(reading[i] != -1)
{
dup2(reading[i],0);
close(reading[i]);
}
int h;
for(h = 0; h < num_cmds; h++)
{
close(writing[h]);
close(reading[h]);
}
if(execvp(cmd_args[0],cmd_args) == -1)
{
perror("Problem with command");
exit(0);
}
}
else
{
wait(&status);
int m;
for(m = 0; m < num_cmds; m++)
{
if( writing[m] != -1) close(writing[m]);
if( reading[m] != -1) close(reading[m]);
}
}
}
else
{
perror("fork");
continue;
}
input_file[0] = 0;
output_file[0] = 0;
run_bg = 0;
}
}
</code></pre>
<p><br><br></p>
<p><strong>UPDATE: I was able to figure it out, thanks to Richard. It was a combination of closing the file descriptors in the wrong order and not closing some at all. Here's the working code.</strong></p>
<pre><code>int fileds[2];
int reading[num_cmds];
int writing[num_cmds];
int p;
for(p=0; p < num_cmds; p++)
{
reading[p] = -1;
writing[p] = -1;
}
int j;
for(j=0; j < num_cmds-1; j++)
{
int fileds[2];
pipe(fileds);
reading[j+1] = fileds[0];
writing[j] = fileds[1];
}
int i = 0;
for(i = 0; i < num_cmds;i++)
{
cmd_args = parse_cmd(cmds[i],output_file,input_file,&run_bg);
pid_t childpid;
int status;
childpid=fork();
if (childpid >= 0)
{
if (childpid == 0)
{
if(writing[i] != -1)
{
close(1);
dup2(writing[i],1);
}
if(reading[i] != -1)
{
close(0);
dup2(reading[i],0);
}
if(execvp(cmd_args[0],cmd_args) == -1)
{
perror("Problem with command");
exit(0);
}
}
else
{
wait(&status);
close(writing[i]);
if(i > 0)
{
close(reading[i]);
}
}
}
else
{
perror("fork");
}
input_file[0] = 0;
output_file[0] = 0;
run_bg = 0;
}
</code></pre>
http://stackoverflow.com/questions/1689360/best-way-to-keep-a-pipe-open-after-a-remote-close0Best way to keep a pipe open after a remote closeacidzombie242009-11-06T18:15:08Z2009-11-06T18:53:01Z
<p>Using <a href="http://www.dijksterhuis.org/using-named-pipes-in-c-windows/" rel="nofollow">this tutorial</a> i came up with the code below. My client is ran frequently. Its activated via clicks and possibly can be launched twice at the same moment in certain circumstance. I am worried one client may close while another client opens which causes the pipe to be closed in that slim few milliseconds. Whats the best way to keep the pipe open?</p>
<pre><code> static public void ThreadStartServer()
{
while (true)
{
using (NamedPipeServerStream pipeStream = new NamedPipeServerStream("mytestpipe"))
{
Console.WriteLine("[Server] Pipe created {0}", pipeStream.GetHashCode());
pipeStream.WaitForConnection();
Console.WriteLine("[Server] Pipe connection established");
using (StreamReader sr = new StreamReader(pipeStream))
{
string temp;
while ((temp = sr.ReadLine()) != null)
{
Console.WriteLine("{0}: {1}", DateTime.Now, temp);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/1687872/what-does-sigpipe-in-this-situation-mean2What does SIGPIPE in this situation mean?Lexsys2009-11-06T14:13:52Z2009-11-06T15:19:23Z
<p>I have the following script structure: script A opens PIPE on B, and B opens PIPE on C. So the dataflow is A->B->C. B catches SIGPIPE. Though descriptors IN and OUT are opened:</p>
<pre><code>$SIG{'PIPE'} = sub {
$logger->info('caught PIPE signal.');
$logger->info("STDIN status: ".STDIN->opened());
$logger->info("STDOUT status: ".OUT->opened());
die;
};
STDIN status: 1
STDOUT status: 1
</code></pre>
<p>I have added IN to the $pool IO::Select and when IN is in the $pool->can_read(), I read from it with sysread(). Once a second I write to OUT with print. Also I have a listen socket in the $pool and clients can connect to it. But I only read from clients. I'm writing to OUT only.</p>
http://stackoverflow.com/questions/1164941/system-io-pipes-on-windows-20000System.IO.Pipes on Windows 2000Barry Barsson2009-07-22T12:35:11Z2009-11-06T06:00:09Z
<p>Is there any way to get .NET 3.5 working on Windows 2000? Specifically, the only part I need is the System.Core.dll to use the System.IO.Pipes namespace.</p>
<p>Hackish workaround methods are fine, if necessary.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1683232/will-data-in-a-pipe-queue-up-for-reading-by-perl2Will data in a pipe queue up for reading by Perl?Thomas Owens2009-11-05T20:09:27Z2009-11-05T20:39:17Z
<p>I have a Perl script that executes a long running process and observes its command line output (log messages), some of which are multiple lines long. Once it has a full log message, it sends it off to be processed and grabs the next log message.</p>
<pre><code>open(PS_F, "run.bat |") or die $!;
$logMessage = "";
while (<PS_F>) {
$lineRead = $_;
if ($lineRead =~ m!(\d{4}-\d{2}-\d{2}\ \d{2}:\d{2}:\d{2})!) {
#process the previous log message
$logMessage = $lineRead;
}
else {
$logMessage = $logMessage.$_;
}
}
close(PS_F);
</code></pre>
<p>In its current form, do I have to worry about the line reading and processing "backing up"? For example, if I get a new log message every 1 second and it takes 5 seconds to do all the processing (random numbers I pulled out), do I have to worry that I will miss log messages or have memory issues?</p>
http://stackoverflow.com/questions/1676653/named-pipes-ipc1Named Pipes IPCBK1232009-11-04T21:09:56Z2009-11-05T14:38:02Z
<p>I am trying to create a pipe to use between two processes to send information. The two process are not related and implementation with signals has a problem where if the process that recieves the signal is doing a sys command it intreprets the signal as an intrupt.
I am new to perl so any help trying to have two processes use pipes would be really great!!</p>
http://stackoverflow.com/questions/1666533/public-api-with-private-elements-in-python0Public API with Private Elements in PythonPeter2009-11-03T10:37:34Z2009-11-03T11:00:31Z
<p>I'm working on a web mapping service and would like to provide my users with a Python API that they can use to create custom plugins. These plugins would be running on my server so I'm trying to lock down Python as much as possible.</p>
<p>To ensure that users can't access files they are not supposed to, I'm planning on running the plugins inside of a PyPy sandboxed interpreter.</p>
<p>The last large hurdle that I'm trying to overcome is how to overcome is with the API itself. I have a database API that will allow the user to make controlled queries to the database. For example, I have a <code>select(column,condition)</code> function that will allow users to retrieve items from the database but they will be restricted to a table. Then, there is a private function <code>_query(sql)</code> that takes raw SQL commands and executes them on the server</p>
<p>The problem is that Python (at least to my knowledge) provides no way of preventing users from calling the query function directly and nuking my database. In order to prevent this, I was thinking of breaking my API into two parts:</p>
<pre>
------------- pipe -------------- ------------
| publicAPI | -------> | privateAPI | ---> | database |
------------- -------------- ------------
</pre>
<p>So publicAPI would basically be a proxy API communicating with the main API via a pipe. publicAPI would only contain proxies to the public API functions, users would be unable to get a hold of the private elements (such as <code>_query(sql)</code>).</p>
<p>Do you think this is a viable solution? Am I making way too much work for myself by overlooking a simpler solution?</p>
<p>Thanks so much for your help!</p>
http://stackoverflow.com/questions/1382944/broken-pipes-and-tee0Broken pipes and tee?shantanuo2009-09-05T10:10:43Z2009-11-01T07:01:34Z
<p>The output of this echo is not passed on to the next command using pipe.</p>
<pre><code>echo 'set foreign_key_checks = 0; truncate table saurabh.bus_services;' |
mysqldump --compact --no-create-info -h192.168.950.180 -uroot -p live pnlbus |
more
</code></pre>
<p>I want the set and truncate commands followed by the dump output. </p>
http://stackoverflow.com/questions/1654600/run-command-pipes-with-subprocess-popen1Run command pipes with subprocess.Popenjack2009-10-31T14:48:45Z2009-10-31T14:59:05Z
<p>How to run the following command using subprocess.Popen?</p>
<pre><code>mysqldump database_name table_name | bzip2 > filename
</code></pre>
<p>I know os.system() can do the job but I dont want to wait for the dump to finish in main program.</p>
http://stackoverflow.com/questions/1275527/regex-and-yahoo-pipes-how-to-replace-end-of-url0Regex and Yahoo Pipes: How to replace end of urlAdam2009-08-14T01:03:35Z2009-10-30T19:22:43Z
<p>Here's the Pipe though you may not need it to answer the question: <a href="http://pipes.yahoo.com/pipes/pipe.info?%5Fid=85a288a1517e615b765df9603fd604bd" rel="nofollow">http://pipes.yahoo.com/pipes/pipe.info?%5Fid=85a288a1517e615b765df9603fd604bd</a></p>
<p>I am trying to modify all url's as so:</p>
<pre><code>http://mediadownloads.mlb.com/mlbam/2009/08/12/mlbf_6073553_th_3.jpg with
http://mediadownloads.mlb.com/mlbam/2009/08/12/mlbtv_6073553_1m.mp4
</code></pre>
<p>The syntax should be something like:</p>
<p>In item.mediaUrl replace f with tv and In item.mediaUrl replace last 8 characters with 1m.mp4</p>
<pre><code>mlbf_(\d+)_.* replaced w/ mlbtv_$1_1m.mp4
</code></pre>
<p>breaks the rss feed though I know I am close</p>
<p>Any idea as to what syntax I need there?</p>
http://stackoverflow.com/questions/338912/yahoo-pipes-any-way-to-combine-items1Yahoo pipes - any way to combine items?Sam2008-12-03T22:04:39Z2009-10-29T11:04:48Z
<p>I'm working on a pipe and am having trouble with combining two lists of items.</p>
<pre><code>List 1:
[0] letter - a
[1] letter - b
[2] letter - c
List 2:
[1] word - apple
[2] word - banana
[3] word - cake
</code></pre>
<p>I'd like something which emits the following:</p>
<pre><code>List 3:
[1] letter - a
word - apple
[2] letter - b
word - banana
[3] letter - c
word - cake
</code></pre>
<p>I can't figure out for the life of me how to do this simple operation.</p>
http://stackoverflow.com/questions/1632069/read-write-to-linux-pipe-using-java3Read/Write to linux Pipe using Javaamit.bhayani2009-10-27T16:32:31Z2009-10-29T08:17:41Z
<p>My query is on what is the best way to read / write to a linux Pipe in Java? I already am using the java.io.RandomAccessFile like</p>
<pre><code> RandomAccessFile file = new RandomAccessFile("/dev/zap/16", "rw");
</code></pre>
<p>and then passing it to worker thread which reads it after every 2ms as</p>
<pre><code> byte[] buffer = new byte[16];
file.read(buffer);
</code></pre>
<p>It does read it from Pipe, but I suspect that some bytes are overwritten. Do you know how linux (ubuntu) handles the buffer for pipe's?</p>