1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
|
/*
Copyright (c) 1998 - 2011
ILK - Tilburg University
CNTS - University of Antwerp
This file is part of timblserver
timblserver is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
timblserver is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <http://www.gnu.org/licenses/>.
For questions and suggestions, see:
http://ilk.uvt.nl/software.html
or send mail to:
timbl@uvt.nl
*/
#include <cstdlib>
#include <string>
#include <signal.h>
#include <iostream>
#include "timbl/Types.h"
#include "timblserver/SocketBasics.h"
using namespace std;
int globalTimeOut;
//
// a simple program to demonstrate and test the Timbl Socket interface
//
const string lines[] = { "eerste regel", "tweede regel", "derde regel",
"laatste regel", "" };
bool runClient( const string& sock, int id ){
cerr << "Starting Client " << id << " on localhost, port:" << sock << endl;
Sockets::ClientSocket client;
if ( client.connect( "localhost", sock) ){
string resultLine;
if ( client.read( resultLine ) ){
cerr << "Client " << id << " read():\t\t\t\t" << resultLine << endl;
int i = 0;
string testLine = lines[i];
while ( !testLine.empty() ){
if ( client.write( testLine + "\n" ) ){
cerr << "Client " << id << " wrote():\t\t\t\t" << testLine << endl;
if ( client.read( resultLine ) ){
if ( resultLine == "" )
continue;
cerr << "Client " << id << " read() \t\t\t\t" << resultLine << endl;
}
else {
cerr << "read failed: " + client.getMessage() << endl;
return false;
}
}
else {
cerr << "write failed: " + client.getMessage() << endl;
return false;
}
testLine = lines[++i];
}
cerr << "all lines processed" << endl;
}
else {
cerr << "connection failed: " + client.getMessage() << endl;
return false;
}
}
return true;
}
int randomSecs(){
long int r = random();
ldiv_t dif = ldiv( r, 5 );
return abs(dif.rem);
}
bool runToClient( const string& sock, int id ){
cerr << "Starting Client " << id << " on localhost, port:" << sock << endl;
Sockets::ClientSocket client;
if ( client.connect( "localhost", sock) ){
client.setNonBlocking();
string resultLine;
int timeOut = globalTimeOut;
int snorr = randomSecs();
cerr << "client " << id << " sleeps " << snorr << " seconds" << endl;
sleep( snorr);
if ( client.read( resultLine, timeOut ) ){
cerr << "Client " << id << " read():\t\t\t\t" << resultLine << endl;
int i = 0;
string testLine = lines[i];
while ( !testLine.empty() ){
int snorr = randomSecs();
cerr << "client " << id << " sleeps " << snorr << " seconds" << endl;
sleep( snorr);
if ( client.write( testLine + "\n", timeOut ) ){
cerr << "Client " << id << " wrote():\t\t\t\t" << testLine << endl;
int snorr = randomSecs();
cerr << "client " << id << " sleeps " << snorr << " seconds" << endl;
sleep( snorr);
if ( client.read( resultLine, timeOut ) ){
if ( resultLine == "" )
continue;
cerr << "Client " << id << " read() \t\t\t\t" << resultLine << endl;
}
else {
cerr << "read failed: " + client.getMessage() << endl;
return false;
}
}
else {
cerr << "write failed: " + client.getMessage() << endl;
return false;
}
testLine = lines[++i];
}
cerr << "all lines processed" << endl;
}
else {
cerr << "connection failed: " + client.getMessage() << endl;
return false;
}
}
return true;
}
int main( int argc, const char *argv[] ){
string port = "1234";
string tos = "0";
if ( argc > 1 )
port = argv[1];
if ( argc > 2 )
tos = argv[2];
int timeOut;
if ( !Timbl::stringTo<int>( tos, timeOut ) ){
cerr << "invalid timeout" << endl;
cerr << "usage: " << argv[0] << " <port> <timeout>" << endl;
return 1;
}
else
globalTimeOut = timeOut;
int i;
#pragma omp parallel for
for ( i=0; i < 6; ++i ){
cerr << "creating client: " << i+1 << endl;
if ( globalTimeOut > 0 ){
if ( !runToClient( port, i+1 ) )
cerr << "runClient failed" << endl;
}
else if ( !runClient( port, i+1 ) )
cerr << "runClient failed" << endl;
cerr << "Client "<< i+1 << " Done" << endl;
}
cerr << "clientTest done" << endl;
return 0;
}
|