question about popen in C


 
Thread Tools Search this Thread
Top Forums Programming question about popen in C
# 15  
Old 03-15-2011
i made a function similar to peopen, how can i test if it works?
Code:
    FILE *file_pointer; char output[512];
    file_pointer = popen_new(COMMAND, "r");
    size_t bytes = read(fileno(file_pointer), output, 512); 
    printf(output);
    pclose_new(file_pointer);

this gave me the expected output
Code:
    file_pointer = popen_new(TEST_COMMAND, "w");
    write(fileno(file_pointer), output, bytes); 
    pclose_new(file_pointer);

this one i also get expected results, but i am still not sure if its right, the output was the result of the COMMAND string, but what can i do after writing to see if it worked, i cant read it since its in write mode...
# 16  
Old 03-16-2011
Redirect its output into a file?

Or just leave its stdout unredirected, to write to console?
# 17  
Old 03-16-2011
the output is coming to stdout and i can see it, does this mean it works exactly like what popen does with a "w" argument?, i get no warnings or errors, and the code is pretty much what you saw before. except i changed it from structures to
arrays, because i know i will at most have 20 streams

so i have a int array, a int variable, and a file pointer array

int count = 0;
FILE *fp_array[25];
pid_t pid_array[25];

these are global

fp_array[count] = open_file;
pid_array[count++] = pid;

this happens when i use popen_new

and then when i pclose_new
i loop theough fp_array and see if the value matched the given fp, and if so i have access to its pid, so i can wait for the process to finish using a while loop and waitpid, also close it, and then return the status variable since thats what i code i posted up before did.

this is my pclose_new
also when getting the exit code using pclose_new for the popen_new using "r" i get the return to be 141 but when used by "w" i get 0.....
why am i getting 141


also can a pointer to a file ever be the value 0 and can a pid value ever be 0?

Last edited by omega666; 03-17-2011 at 05:14 PM..
# 18  
Old 03-16-2011
Huh. Actually, you can count on a global variable being NULL or zero when the program starts.

You should probably use WEXITSTATUS(status).

I think it works like it does with popen. You might want to actually try popen to be sure.
# 19  
Old 03-16-2011
what about

also when getting the exit code using pclose_new for the popen_new using "r" i get the return to be 141 but when used by "w" i get 0.....
why am i getting 141


also can a pointer to a file ever be the value 0 and can a pid value ever be 0?
# 20  
Old 03-16-2011
Quote:
Originally Posted by omega666
what about

also when getting the exit code using pclose_new for the popen_new using "r" i get the return to be 141 but when used by "w" i get 0.....
why am i getting 141
I can't tell from here. Please post your current code and exactly what you did with it.
Quote:
also can a pointer to a file ever be the value 0
No. Then you wouldn't be able to tell it apart from NULL.
Quote:
and can a pid value ever be 0?
No.
# 21  
Old 03-16-2011
so if i set an element of a file_pointer array to 0, and then i compare NULL to that value 0, will it crash or just result to false, cause i set the file pointer array and pid array to 0, after closing its respective file pointer. this is like removing the struct from the chain of structs, but using an array method.

also
for the popen_new function
the instruction given was ls; ls

Last edited by omega666; 03-17-2011 at 05:15 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

Popen problem

Hello all, I am reading a huge zip file in POPEN process and then writting that to a normal file which of 2GB. Now the process is failing when I looked for the cause someother process comming in after I read my file and it is deleting the zip. But in theory the popen command should read the... (5 Replies)
Discussion started by: arunkumar_mca
5 Replies

2. Programming

question about system and popen in C

in man system it talks about SIGCHLD will be blocked, and SIGINT and SIGQUIT will be ignored. Does this signal stuff also happen in popen command? (even though man popen says nothing about signals) also if I am not using wait(&status) and I am using waitpid(pid, NULL, 0) how would... (1 Reply)
Discussion started by: omega666
1 Replies

3. Programming

segmentation fault while using popen

hi, i am trying to use popen to run a grep process and check if the pattern exists in the file that i am searching in. i am getting segmentation fault when i try to execute the following code char *cd; char flag; char hdr_flpsp; char hdr_flpsp2; FILE *fp; printf ("program starts");... (1 Reply)
Discussion started by: sais
1 Replies

4. UNIX for Advanced & Expert Users

popen and pclose solved

Hi I am trying to use popen function with wrtie option to give inputs to ftp command. #include "stdio.h" int main(int argv ,char *argc) { int size=0; char *buf; FILE *fp; fp = popen("ftp","w"); while(getline(&buf,&size,stdin) != -1) write(fp,buf);... (0 Replies)
Discussion started by: kumaran_5555
0 Replies

5. Programming

prolems with pipes and popen in c

Hi! I'm trying to write a c program. The child process must transmit to the parent a file name and the parent must count the lines from the file and return te result to the child. Here is what i've done. It doesn't stop running, I guess. I'm sorry if it's an ugly code, i'm new at this stuff,... (2 Replies)
Discussion started by: alina89
2 Replies

6. Shell Programming and Scripting

Python: popen problems

Hello I'm writing a web server in python(obelisk-http.sourceforge.net) and I'm having a greeat problem with POST method it like that When someone make a POST request to the server it must open the executable(perl/python/.exe/elf) and send to the STANDART in (stdin) the request and get the... (2 Replies)
Discussion started by: sendai
2 Replies

7. Programming

using popen with background process

hi, how to work with a background process without a controlling terminal to make use of popen or system call ? when ever i use popen or system function call in foreground process, there is no problem with respect to that .. but when the same program is run as a background process without a... (7 Replies)
Discussion started by: matrixmadhan
7 Replies

8. Programming

popen and tar, please HELP!

Hi there, I'm facing a problem running the tar command with the popen function. FILE* fp = popen("tar czf - textfile","r") // output this program should give the output to the stdout. I don't know if it is possible and which function like fprint() etc. should I use. I suppose that I... (4 Replies)
Discussion started by: stef83
4 Replies

9. Programming

query in popen

hai friends I have written a tcp chat server in c.. I have designed a cgi program in c to control it... When i try to start the server from the cgi program, it is not starting. Why is that ? I have even tried giving the root ownership for all the programs.. Still its not. I have used the... (1 Reply)
Discussion started by: collins
1 Replies

10. Programming

question about popen();

Hi The following is my program to test popen() routine. The purpose is to print some contents of the corrent directory. But in fact, the output is only one character 'a', which I believe is the first char of the file "a.out". So, can anybody tell me what is wrong about this program?... (2 Replies)
Discussion started by: dell9
2 Replies
Login or Register to Ask a Question