run_test.pl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· PL 代码 · 共 160 行
PL
160 行
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# run_test.pl,v 1.9 2002/10/21 19:54:38 nanbor Exp
# -*- perl -*-
use lib $ENV{'ACE_ROOT'}."/bin";
use PerlACE::Run_Test;
# amount of delay between running the servers
$sleeptime = 5;
$distributor_time = 8;
$sender_time = 8;
$status = 0;
$nsior = PerlACE::LocalFile ("ns.ior");
$testfile = PerlACE::LocalFile ("output");
$makefile = PerlACE::LocalFile ("input");
unlink $nsior;
$NS = new PerlACE::Process ("../../../Naming_Service/Naming_Service", "-ORBDottedDecimalAddresses 1 -o $nsior");
$SV1 = new PerlACE::Process ("sender", "-ORBDottedDecimalAddresses 1 ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r 30");
$SV2 = new PerlACE::Process ("sender", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r 30");
$SV3 = new PerlACE::Process ("sender", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r 30");
$RE1 = new PerlACE::Process ("receiver", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s distributer -r receiver1 -f output1");
$RE2 = new PerlACE::Process ("receiver", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s distributer -r receiver2 -f output2");
$DI1 = new PerlACE::Process ("distributer", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r distributer");
$DI2 = new PerlACE::Process ("distributer", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r distributer");
$DI3 = new PerlACE::Process ("distributer", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r distributer");
$DI4 = new PerlACE::Process ("distributer", " -ORBDottedDecimalAddresses 1 -ORBSvcConf components_svc$PerlACE::svcconf_ext -ORBInitRef NameService=file://$nsior -s sender -r distributer");
print STDERR "\nReceiver 1 --> Receiver 2 --> Distributer 1 --> Sender1 --> Distributer 2 --> Distributer 3 --> Sender2 --> Sender3 --> Distributer4\n\n";
print STDERR "Starting Naming Service\n";
$NS->Spawn ();
if (PerlACE::waitforfile_timed ($nsior, 10) == -1) {
print STDERR "ERROR: cannot find naming service IOR file\n";
$NS->Kill ();
exit 1;
}
print STDERR "Starting Receiver 1\n";
$RE1->Spawn ();
sleep $sleeptime;
print STDERR "Starting Receiver 2\n";
$RE2->Spawn ();
sleep $sleeptime;
print STDERR "Starting Distributer 1\n";
$DI1->Spawn ();
sleep $sleeptime;
print STDERR "Starting Sender1\n";
$SV1->Spawn ();
sleep $distributor_time;
print STDERR "\nStarting Distributer 2\n\n";
$DI2->Spawn ();
sleep $distributor_time;
print STDERR "\nStarting Distributer 3\n\n";
$DI3->Spawn ();
sleep $sender_time;
print STDERR "Starting Sender2\n";
$SV2->Spawn ();
sleep $sender_time;
print STDERR "Starting Sender3\n";
$SV3->Spawn ();
sleep $distributor_time;
print STDERR "\nStarting Distributer 4\n\n";
$DI4->Spawn ();
$SV2->WaitKill (300);
$SV3->WaitKill (300);
$SV1->WaitKill ( 300 );
$distributer3 = $DI3->TerminateWaitKill (5);
if ($distributer3 != 0) {
print STDERR "ERROR: distributer3 returned $distributer3\n";
$status = 1;
}
$distributer2 = $DI2->TerminateWaitKill (5);
if ($distributer2 != 0) {
print STDERR "ERROR: distributer2 returned $distributer2\n";
$status = 1;
}
$distributer1 = $DI1->TerminateWaitKill (5);
if ($distributer1 != 0) {
print STDERR "ERROR: distributer1 returned $distributer1\n";
$status = 1;
}
$receiver1 = $RE1->TerminateWaitKill (5);
if ($receiver1 != 0) {
print STDERR "ERROR: receiver1 returned $receiver1\n";
$status = 1;
}
$receiver2 = $RE2->TerminateWaitKill (5);
if ($receiver2 != 0) {
print STDERR "ERROR: receiver2 returned $receiver2\n";
$status = 1;
}
$distributer4 = $DI4->TerminateWaitKill (5);
if ($distributer4 != 0) {
print STDERR "ERROR: distributer4 returned $distributer4\n";
$status = 1;
}
$nserver = $NS->TerminateWaitKill (5);
if ($nserver != 0) {
print STDERR "ERROR: Naming Service returned $nserver\n";
$status = 1;
}
unlink $nsior;
unlink $testfile;
exit $status;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?