~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/tests/AVStreams/Asynch_Three_Stage/README

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// README,v 1.3 2003/06/25 18:39:37 yamuna Exp
2
 
 
3
 
Description
4
 
-----------
5
 
 
6
 
This directory contains a three stage AV test with the ability to
7
 
aynschronously start the processes in any order. It also supports
8
 
multiple receivers for a sender.  The stages are:
9
 
 
10
 
a. Sender
11
 
b. Distributer
12
 
c. Receiver
13
 
 
14
 
This test has a sender process that reads data from a file and sends
15
 
it to the distributer. The distributer acts as a conduit. It receives
16
 
data from the sender and sends it immediately to the receiver process.
17
 
 
18
 
Running the test
19
 
----------------
20
 
 
21
 
Start the Naming Service
22
 
 
23
 
Start the following processes in any order.
24
 
 
25
 
sender
26
 
------
27
 
 
28
 
sender [-f <filename>] [-r <data_rate>] [-s <sender device name>] [-a <address_file>]
29
 
 
30
 
-f filename --> The name of the file from which data needs to be sent
31
 
 
32
 
-r data_rate --> The rate at which the data needs to be paced.
33
 
 
34
 
-s sender device name --> This is the name of the sender as it will be
35
 
                          registered with the naming service and which
36
 
                          receivers connect to.  
37
 
 
38
 
-a address_file -->       This file contains the sender and receiver
39
 
                          endpoint addressses to be used to set up a
40
 
                          flow for each flow. The format for each flow
41
 
                          is Flowname/sender_endpoint_host:sender_endpoint_port/receiver_endpoint_host:receiver_endpoint_port
42
 
                          If no endpoint addresses are specified default addresses would be used.
43
 
 
44
 
 
45
 
receiver
46
 
--------
47
 
 
48
 
receiver [-f <filename>] [-s <sender device name>] [-r <receiver device name>] [-a <address_file>]
49
 
 
50
 
-f filename --> File into which the data received from the distributer is stored.
51
 
 
52
 
-s sender device name --> This is the name of the sender that the
53
 
                          receiver wants to connect to.
54
 
 
55
 
-r receiver device name --> This is the name with which this receiver
56
 
                            will be registered with the naming
57
 
                            service.
58
 
 
59
 
-a address_file -->       This file contains the sender and receiver
60
 
                          endpoint addressses to be used to set up a
61
 
                          flow for each flow. The format for each flow
62
 
                          is Flowname/sender_endpoint_host:sender_endpoint_port/receiver_endpoint_host:receiver_endpoint_port
63
 
                          If no endpoint addresses are specified default addresses would be used.
64
 
 
65
 
 
66
 
distributer:
67
 
-----------
68
 
 
69
 
distributer [-s <sender device name>] [-r <distributer device name>] [-a <address_file>]
70
 
 
71
 
-s sender device name --> This is the name of the sender that the
72
 
                          distributer wants to connect to.
73
 
 
74
 
-r distributer device name --> This is the name with which this
75
 
                               distributer will be registered with the
76
 
                               naming service. The receivers will bind
77
 
                               with this name to receieve data from
78
 
                               this distributer.
79
 
 
80
 
-a address_file -->       This file contains the sender and receiver
81
 
                          endpoint addressses to be used to set up a
82
 
                          flow for each flow. The format for each flow
83
 
                          is Flowname/sender_endpoint_host:sender_endpoint_port/receiver_endpoint_host:receiver_endpoint_port
84
 
                          If no endpoint addresses are specified default addresses would be used.
85