ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/idl/iscream.idl
Revision: 1.20
Committed: Fri Mar 22 10:43:06 2002 UTC (22 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.19: +4 -2 lines
Log Message:
Split the CORBA side of the filter in two. The Filter interface still does
the receiving of data, just like it used to. This can optionally be turned
off in the configuration if required. The new interface, FilterInfo, is
used to provide information (host and ports) to other parts of the server
about the Filter - namely the FilterManager. This split has been done so
that the data receiving part of the Filter can be turned off, without
breaking the FilterManager.

File Contents

# Content
1 //
2 // This class provides infomation about the CORBA
3 // interface for the server side of the i-scream system.
4 //
5 // $Id: iscream.idl,v 1.19 2001/05/29 17:02:34 tdb1 Exp $
6 //
7 module uk { module org { module iscream { module cms { module server {
8 module core {
9
10 // The Logger interface, provides a corba object that
11 // all classes can use to log system and error information.
12 interface Logger {
13 void write(in string source, in long verbosity, in string message);
14 // Verbosity levels
15 const long FATAL=0;
16 const long ERROR=1;
17 const long WARNING=2;
18 const long SYSMSG=3;
19 const long SYSINIT=4;
20 const long DEBUG=5;
21 };
22
23 // The Configuration interface, provides a CORBA object that
24 // all classes can use to get their configuration.
25 interface Configuration {
26 string getProperty(in string key);
27 long long getLastModified();
28 string getFileList();
29 void disconnect();
30 };
31
32 // The ConfigurationManager interface, provides a CORBA object that
33 // all classes can use to obtain their individual configuration.
34 interface ConfigurationManager {
35 Configuration getConfiguration(in string source);
36 boolean isModified(in string source, in long long currentModified);
37 };
38
39 // end core
40 };
41
42 module filter {
43 interface Filter {
44 void receiveXML(in string xml);
45 };
46 interface FilterInfo {
47 string getHostName();
48 string getUDPPort();
49 string getTCPPort();
50 };
51
52 // end filter
53 };
54
55 module client {
56 interface Client {
57 void receiveXML(in string xml);
58 };
59 // end client
60 };
61
62 module clientinterface {
63 interface ClientInterface {
64 void receiveXML(in string xml);
65 };
66 interface CorbaControlHandler {
67 boolean startData();
68 boolean stopData();
69 boolean setHostList(in string hostList);
70 void disconnect();
71 };
72 interface CorbaClientListener {
73 CorbaControlHandler connect(in client::Client client, in string name);
74 };
75 // end clientinterface
76 };
77
78 // end uk.org.iscream.cms.server
79 };};};};};