1
0
Fork 0
flightgear/Tools/Construct/Parallel/client.cxx

190 lines
4.3 KiB
C++
Raw Normal View History

1999-05-15 01:08:00 +00:00
/* remote_exec.c -- Written by Curtis Olson */
/* -- for CSci 5502 */
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#include <netinet/in.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h> // atoi()
#include <string.h> // bcopy()
#include <iostream>
#include <string>
1999-05-15 01:08:00 +00:00
#include <Bucket/newbucket.hxx>
#define MAXBUF 1024
1999-05-15 01:08:00 +00:00
int make_socket (char *host, unsigned short int port) {
int sock;
struct sockaddr_in name;
struct hostent *hp;
// Create the socket.
sock = socket (PF_INET, SOCK_STREAM, 0);
if (sock < 0) {
perror ("socket");
exit (EXIT_FAILURE);
}
// specify address family
name.sin_family = AF_INET;
// get the hosts official name/info
hp = gethostbyname(host);
// Connect this socket to the host and the port specified on the
// command line
bcopy(hp->h_addr, &(name.sin_addr.s_addr), hp->h_length);
name.sin_port = htons(port);
if ( connect(sock, (struct sockaddr *) &name,
sizeof(struct sockaddr_in)) < 0 )
{
close(sock);
perror("Cannot connect to stream socket");
1999-05-17 17:43:52 +00:00
return -1;
1999-05-15 01:08:00 +00:00
}
return sock;
}
// connect to the server and get the next task
1999-05-17 23:32:23 +00:00
long int get_next_task( const string& host, int port, long int last_tile ) {
long int tile;
1999-05-15 01:08:00 +00:00
int sock, len;
fd_set ready;
char message[256];
1999-05-17 17:43:52 +00:00
while ( (sock = make_socket( host.c_str(), port )) < 0 ) {
// loop till we get a socket connection
sleep(1);
}
1999-05-15 01:08:00 +00:00
// build a command string from the argv[]'s
1999-05-17 23:32:23 +00:00
sprintf(message, "%ld", last_tile);
1999-05-15 01:08:00 +00:00
// send command and arguments to remote server
1999-05-17 23:32:23 +00:00
if ( write(sock, message, sizeof(message)) < 0 ) {
perror("Cannot write to stream socket");
}
// loop until remote program finishes
1999-05-17 23:32:23 +00:00
cout << "querying server for next task ..." << endl;
FD_ZERO(&ready);
FD_SET(sock, &ready);
// block until input from sock
select(32, &ready, 0, 0, NULL);
1999-05-17 23:32:23 +00:00
cout << " received reply" << endl;
if ( FD_ISSET(sock, &ready) ) {
/* input coming from socket */
if ( (len = read(sock, message, 1024)) > 0 ) {
message[len] = '\0';
tile = atoi(message);
1999-05-17 23:32:23 +00:00
cout << " tile to construct = " << tile << endl;
close(sock);
return tile;
} else {
close(sock);
return -1;
}
1999-05-15 01:08:00 +00:00
}
close(sock);
return -1;
}
1999-05-15 01:08:00 +00:00
1999-05-17 23:32:23 +00:00
// build the specified tile, return true if contruction completed
// successfully
bool construct_tile( const string& work_base, const string& output_base,
const FGBucket& b, const string& result_file ) {
double angle = 10.0;
bool still_trying = true;
while ( still_trying ) {
still_trying = false;
char angle_str[256];
sprintf(angle_str, "%.0f", angle);
string command = "../Main/construct ";
command += angle_str;
command += " " + work_base + " " + output_base + " "
+ b.gen_index_str() + " > " + result_file + " 2>&1";
cout << command << endl;
system( command.c_str() );
FILE *fp = fopen( result_file.c_str(), "r" );
char line[256];
while ( fgets( line, 256, fp ) != NULL ) {
string line_str = line;
line_str = line_str.substr(0, line_str.length() - 1);
cout << line_str << endl;
if ( line_str == "[Finished successfully]" ) {
fclose(fp);
return true;
} else if ( line_str == "Error: Ran out of precision at" ) {
if ( angle > 9.0 ) {
angle = 5.0;
still_trying = true;
} else if ( angle > 4.0 ) {
angle = 0.0;
still_trying = true;
}
}
}
fclose(fp);
}
return false;
}
1999-05-15 01:08:00 +00:00
main(int argc, char *argv[]) {
1999-05-17 23:32:23 +00:00
long int tile, last_tile;
bool result;
// Check usage
if ( argc < 5 ) {
printf("Usage: %s remote_machine port work_base output_base\n",
argv[0]);
exit(1);
}
string host = argv[1];
int port = atoi( argv[2] );
string work_base = argv[3];
string output_base = argv[4];
// get hostname and pid
char hostname[MAXBUF];
gethostname( hostname, MAXBUF );
pid_t pid = getpid();
char tmp[MAXBUF];
sprintf(tmp, "result.%s.%d", hostname, pid);
string result_file = work_base + ".status/" + tmp;
1999-05-17 23:32:23 +00:00
last_tile = 0;
while ( (tile = get_next_task( host, port, last_tile )) >= 0 ) {
result = construct_tile( work_base, output_base,
FGBucket(tile), result_file );
1999-05-17 23:32:23 +00:00
if ( result ) {
last_tile = tile;
} else {
last_tile = -tile;
}
1999-05-15 01:08:00 +00:00
}
}