ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/uk/org/iscream/cms/server/clientinterface/ClientInterfaceServant.java
Revision: 1.7
Committed: Mon Jan 22 02:57:38 2001 UTC (23 years, 4 months ago) by tdb
Branch: MAIN
CVS Tags: CLI_PROTOCOL_1_0
Changes since 1.6: +7 -32 lines
Log Message:
All files changed to now incorporate a Queue. Makes the whole setup much tidier
and will enable levels of buffering.

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.ac.ukc.iscream.clientinterface;
3
4 //---IMPORTS---
5 import uk.ac.ukc.iscream.core.*;
6 import uk.ac.ukc.iscream.util.*;
7 import uk.ac.ukc.iscream.componentmanager.*;
8 import java.util.LinkedList;
9 import java.util.Iterator;
10
11 /**
12 * A client interface servant
13 * Adds data to a Queue as it's received over CORBA.
14 *
15 * Currently it has limited client management facilities.
16 *
17 * @author $Author: tdb1 $
18 * @version $Id: ClientInterfaceServant.java,v 1.6 2001/01/22 01:40:33 tdb1 Exp $
19 */
20 class ClientInterfaceServant extends ClientInterfacePOA {
21
22 //---FINAL ATTRIBUTES---
23
24 /**
25 * The current CVS revision of this class
26 */
27 public final String REVISION = "$Revision: 1.6 $";
28
29 //---STATIC METHODS---
30
31 //---CONSTRUCTORS---
32
33 /**
34 * Creates a new ClientInterfaceServant.
35 */
36 public ClientInterfaceServant(Queue queue) {
37 _queue = queue;
38 _logger.write(toString(), Logger.SYSINIT, "created");
39 }
40
41 //---PUBLIC METHODS---
42
43 /**
44 * Method to receive a string over corba.
45 *
46 * @param xml the String of XML to print out
47 */
48 public void receiveXML(String xml) {
49 _queue.add(xml);
50 }
51
52 /**
53 * Overrides the {@link java.lang.Object#toString() Object.toString()}
54 * method to provide clean logging (every class should have this).
55 *
56 * This uses the uk.ac.ukc.iscream.util.NameFormat class
57 * to format the toString()
58 *
59 * @return the name of this class and its CVS revision
60 */
61 public String toString() {
62 return FormatName.getName(
63 _name,
64 getClass().getName(),
65 REVISION);
66 }
67
68 //---PRIVATE METHODS---
69
70 //---ACCESSOR/MUTATOR METHODS---
71
72 //---ATTRIBUTES---
73
74 /**
75 * This is the friendly identifier of the
76 * component this class is running in.
77 * eg, a Filter may be called "filter1",
78 * If this class does not have an owning
79 * component, a name from the configuration
80 * can be placed here. This name could also
81 * be changed to null for utility classes.
82 */
83 private String _name = ClientInterfaceMain.NAME;
84
85 /**
86 * This holds a reference to the
87 * system logger that is being used.
88 */
89 private Logger _logger = ReferenceManager.getInstance().getLogger();
90
91 private Queue _queue;
92
93 //---STATIC ATTRIBUTES---
94
95 }