in reply to DOS program interface

I'm not certain I understand what you want, but I think what you're saying is that you want one instance of the DOS app to keep running, and you want the user to interact with it through a CGI script that they can access multiple times, each time interacting with the same already-running process is that right? If so, you'll actually need two Perl scripts, which can communicate with one another locally via a socket or something. The one script will monitor the DOS program directly, and the other one will be the CGI script that interacts with the user. The CGI script will run each time, send the user's input to the other script, get the results, send them to the browser, and exit. This may be more than you want to undertake with little previous knowledge of Perl, however.


$;=sub{$/};@;=map{my($a,$b)=($_,$;);$;=sub{$a.$b->()}} split//,".rekcah lreP rehtona tsuJ";$\=$ ;->();print$/

Replies are listed 'Best First'.
Re: Re: DOS program interface
by BUU (Prior) on Oct 04, 2003 at 19:08 UTC
    I did something sort of like this recently. What I ended up doing was writing a simple forking TCP server using Socket::IO::Inet which used expect to control the actual program. Then my second program, the cgi, just opened a tcp connection to whatever port my server was listening on, sent commands and read data.
Re: Re: DOS program interface
by Dovkont (Novice) on Oct 05, 2003 at 12:40 UTC
    Thank you very much for the reply. Although, there is a slight problem with this... That is it: "communicate with one another locally via a socket or something"... Is there any simple description (and a sample, preferrably) of HOW to make such communication?

      I believe I have an example of socket communication sitting around here someplace...

      Yes, here it is. Bear in mind that I wrote this a long time ago and haven't looked at it recently, and also that I didn't know Perl so well then as now. In addition to adapting the server part to talk to the DOS program, you'll also need to make changes to the path and file names and hostname to make sense on your system, and also you'll probably want to adjust them so that the information they communicate is something more relevant to your problem than "Hello, World", but the basic stuff is here. Here's the server part...

      #!/usr/bin/perl # Hello World Server, by Jonadab the Unsightly One A demonstration of # sockets. Listens on port 5 for connections made by the hellowc.pl # client, and answers them with a Hello World response, thus # demonstrating sockets. The system running the hellows.pl server # must have port 5 open. (Alternately, both the server and client # could be altered to use another port, but the server must listen on # the same port the client will connect to.) To stop the server, # delete the PID file. The server will then exit after answering the # next request. So, to terminate it immediately, after deleting the # PID file, run the client one final time to send the last request. # Be sure to change the $serverhost and $serverlog variables to # soemthing that makes sense on your system. $serverhost = 'raptor1'; $serverport = 5; $serverlog = '/var/log/hellows.log'; $pidfile = "/var/lock/hellows.pid"; require 5.002; use sigtrap; use Socket; use IO::Socket; open LOG, ">>$serverlog" or die "Unable to append to server log $serverlog : $!"; open PID, ">$pidfile" or die "Unable to write to PID file hellows.pid +: $!\n"; { print PID "$$\n"; close PID; } my $sock = new IO::Socket::INET ( LocalHost => $serverhost, LocalPort => $serverport, Proto => 'tcp', Listen => 1, Reuse => 5, ); if ($sock) { print "Hello World Server is running, waiting for client connections +...\n"; while (-e "hellows.pid") { my $hellowsock = $sock->accept(); $_ = <$hellowsock>; { if (/[Hh]ello.*[Ww]orld.*[?]/) { print "..."; $canswered++; if ($canswered % 20 == 0) { print "\n +"; } print LOG localtime(time) . "\tAnswering Hello World request.\n"; print $hellowsock "Hello, client world! The server is here!\n"; } } } close($sock); } else { print LOG localtime(time) . "\tDIED: Unable to create socket: $!\n" +; die "Hello World Server unable to create socket: $!\n"; } print "\nAnswered $canswered requests from Hello World clients this se +ssion.\n";

      And here's the client script...

      #/usr/bin/perl -w # Hello World Client, by Jonadab the Unsightly One # Give it an IP address of a machine running the # hellows.pl server, and it will query that server # for a Hello World response, demonstrating sockets. require 5.002; use sigtrap; use Socket; $serverhost = 'raptor1'; $serverport = 5; use IO::Socket; my $sock = new IO::Socket::INET ( PeerAddr => $serverhost, PeerPort => $serverport, Proto => 'tcp', ); die "Hello World Client unable to create socket: $!\n" unless $sock; print $sock "Hello, are you there, server world?\n"; print <$sock>; close($sock);

      $;=sub{$/};@;=map{my($a,$b)=($_,$;);$;=sub{$a.$b->()}} split//,".rekcah lreP rehtona tsuJ";$\=$ ;->();print$/