ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/idl/iscream.idl
Revision 1.25 - (view) (annotate) - [select for diffs]
Sun Aug 1 10:40:40 2004 UTC (19 years, 9 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.24: +2 -2 lines
Diff to previous 1.24
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

Revision 1.24 - (view) (annotate) - [select for diffs]
Mon May 5 22:05:01 2003 UTC (21 years ago) by tdb
Branch: MAIN
Changes since 1.23: +3 -10 lines
Diff to previous 1.23
Tidy up of the client interface code - more commonly known as the
"right hand side of the server". Right since the start the filter
side of the server has been nice and tree like - every Filter sent
data to another Filter. At the top of the tree there was a "special"
Filter known as the RootFilter, which to the other Filters just
looked like a normal Filter. This was nice, and simple, and expandable.

The Client Interface on the other hand was messy. The root filter
had some hacky wrapper threads which pulled from a queue and pushed
to the relevant client interfaces (one for real time stuff, and the
other for databases). There was no simple room for expandability -
it was all hardwired to do just what was needed at the time.

This commit changes that. A Client Interface now connects to another
Client Interface, with a special one being found in the RootFilter
(yes, maybe that needs a name change now :-). So we can chain client
interfaces, and move other bits and bobs around in the server - for
example, alerting no longer needs to be connected to the Client
Interface, it can connect straight to the RootFilter (or, wherever
the config tells it ;).

Hopefully this sanitizes the underlying layout of the server a bit.

As a final note, I dropped the DBInterface. This used to insert
data in to a MySQL database. We've long since stopped using that,
and it's fallen behind and is way out of date. For now, it's gone
in to the attic.

Revision 1.23 - (view) (annotate) - [select for diffs]
Mon Feb 24 20:18:46 2003 UTC (21 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.22: +1 -2 lines
Diff to previous 1.22
Fairly major commit. This will break the current version of ihost, but this
had to be done really to give Pete something to test the new ihost against.

The main change here is removal of the TCP Heartbeat functionality from the
filter. This meant the following features stopped working :-
  - Heartbeat testing
  - Configuration checking
  - Service checks

The heartbeat testing, specifically the monitor, now looks at the presence
of UDP packets instead. Before it just looked for the presence of a TCP
heartbeat packet, so the change their is fairly negligible. Of course this
means heartbeat testing now relies on the UDP working... but I don't see
this as a problem.

Configuration checking has been repositioned in to the filtermanager. This
is a backwards compatible change - the filtermanager should still perform
as it should for older hosts. But now there's an extra command to check the
configuration is up-to-date, with a similar format to the old TCP protocol
in the filter. (although we may optimise this soon)

The service checks are broken. This isn't a major issue for us as they were
pretty useless in the first place. The concept is good, but the checks are
just far too primitive. I expect at some point I'll work on a seperate
component that just monitors services, which will replace this function.

Further changes in the server include removal of the key checking code,
as this relied on a bolt on to the TCP heartbeat protocol to ship the
key. This got more akward than originally planned, so I'm happy to drop the
idea. In the long term we hope to replace this with a public key systems
for signing and even encryption.

Finally, general tidy up to remove other bits of code that check for
TCP heartbeat packets when they don't need to any more.

Revision 1.22 - (view) (annotate) - [select for diffs]
Tue May 21 16:47:16 2002 UTC (21 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.21: +2 -1 lines
Diff to previous 1.21
Added URL to GPL headers.

Revision 1.21 - (view) (annotate) - [select for diffs]
Sat May 18 18:16:00 2002 UTC (21 years, 11 months ago) by tdb
Branch: MAIN
Changes since 1.20: +20 -1 lines
Diff to previous 1.20
i-scream is now licensed under the GPL. I've added the GPL headers to every
source file, and put a full copy of the license in the appropriate places.
I think I've covered everything. This is going to be a mad commit ;)

Revision 1.20 - (view) (annotate) - [select for diffs]
Fri Mar 22 10:43:06 2002 UTC (22 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.19: +4 -2 lines
Diff to previous 1.19
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.

Revision 1.19 - (view) (annotate) - [select for diffs]
Tue May 29 17:02:34 2001 UTC (22 years, 11 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PIRCBOT
Changes since 1.18: +4 -4 lines
Diff to previous 1.18
Major change in the java package naming. This has been held off for some time
now, but it really needed doing. The future packaging of all i-scream products
will be;

uk.org.iscream.<product>.<subpart>.*

In the case of the central monitoring system server this will be;

uk.org.iscream.cms.server.*

The whole server has been changed to follow this structure, and tested to a
smallish extent. Further changes in other parts of the CMS will follow.

Revision 1.18 - (view) (annotate) - [select for diffs]
Wed Mar 14 23:25:20 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.17: +4 -4 lines
Diff to previous 1.17
The whole server package structure has been changed.
Old Package: uk.ac.ukc.iscream.*
New Package: uk.org.iscream.*

Revision 1.17 - (view) (annotate) - [select for diffs]
Tue Mar 13 19:14:04 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.16: +2 -1 lines
Diff to previous 1.16
Added a disconnect() method to the CorbaControlHandler.

Revision 1.16 - (view) (annotate) - [select for diffs]
Tue Mar 13 19:04:23 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15
Added a disconnect() method to the Configuration object. This method disconnects
the object from the ORB.

Revision 1.15 - (view) (annotate) - [select for diffs]
Wed Feb 28 19:04:30 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14
A CORBA client must now send a name to the Client Interface.

Revision 1.14 - (view) (annotate) - [select for diffs]
Mon Feb 5 01:01:52 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13
CorbaHandler changed name to CorbaControlHandler.

Revision 1.13 - (view) (annotate) - [select for diffs]
Sat Feb 3 00:44:28 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.12: +11 -4 lines
Diff to previous 1.12
Added the bits for the CORBA stuff in the ClientInterface, and a skelton for
new Clients.

Revision 1.12 - (view) (annotate) - [select for diffs]
Thu Feb 1 01:20:16 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.11: +11 -2 lines
Diff to previous 1.11
Added the new bits for the CORBA-based "local clients".

Revision 1.11 - (view) (annotate) - [select for diffs]
Mon Dec 4 17:39:02 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Branch point for: SERVER_PACKAGEBUILD
Changes since 1.10: +7 -1 lines
Diff to previous 1.10
Added the ClientInterface bits.

Revision 1.10 - (view) (annotate) - [select for diffs]
Mon Nov 27 21:49:19 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9
You complained, I fixed it...

Revision 1.9 - (view) (annotate) - [select for diffs]
Thu Nov 23 01:50:22 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.8: +5 -4 lines
Diff to previous 1.8
Added the methods for querying a Filter, and removed the FilterManager.

Revision 1.8 - (view) (annotate) - [select for diffs]
Tue Nov 21 21:12:41 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.7: +5 -5 lines
Diff to previous 1.7
Added methods to the Filter and FilterManager.

Revision 1.7 - (view) (annotate) - [select for diffs]
Tue Nov 21 15:07:54 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.6: +2 -1 lines
Diff to previous 1.6
ajm4: Added getFileList() to the Configuration. This method returns a list of
the files that are included in the configuration.

Revision 1.6 - (view) (annotate) - [select for diffs]
Mon Nov 20 22:06:13 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.5: +5 -3 lines
Diff to previous 1.5
Added the Filter to the IDL.

Revision 1.5 - (view) (annotate) - [select for diffs]
Mon Nov 20 18:55:07 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.4: +2 -2 lines
Diff to previous 1.4
A typo correction.

Revision 1.4 - (view) (annotate) - [select for diffs]
Mon Nov 20 17:11:28 2000 UTC (23 years, 5 months ago) by ajm
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3
Modified to change the name of the Configurator -> ConfigurationManager

Revision 1.3 - (view) (annotate) - [select for diffs]
Thu Nov 16 18:08:06 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.2: +9 -3 lines
Diff to previous 1.2
Added integers values to represent different verbosity levels. Will allow more
expansion of the verbosity levels in the future.

Revision 1.2 - (view) (annotate) - [select for diffs]
Thu Nov 16 15:23:35 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changes since 1.1: +3 -4 lines
Diff to previous 1.1
Changes in light of new Logger system.

Revision 1.1 - (view) (annotate) - [select for diffs]
Mon Nov 13 16:29:23 2000 UTC (23 years, 5 months ago) by tdb
Branch: MAIN
Changed file core.idl to iscream.idl
Introduced sub modules to create a stable package structure for the I-Scream project.

Convenience Links

Links to HEAD: (view) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a