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/ClientInterfaceMain.java
Revision 1.31 - (view) (annotate) - [select for diffs]
Sun Aug 1 10:40:48 2004 UTC (19 years, 9 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.30: +3 -3 lines
Diff to previous 1.30
Catch a lot of old URL's and update them. Also remove a couple of old files
that aren't used.

Revision 1.30 - (view) (annotate) - [select for diffs]
Mon May 5 22:05:06 2003 UTC (21 years ago) by tdb
Branch: MAIN
Changes since 1.29: +38 -20 lines
Diff to previous 1.29
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.29 - (view) (annotate) - [select for diffs]
Wed Feb 5 16:43:46 2003 UTC (21 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.28: +4 -4 lines
Diff to previous 1.28
Changed the server to use the external util package. Quite a minor change,
but does affect a lot of files.

Revision 1.28 - (view) (annotate) - [select for diffs]
Fri Sep 6 15:10:48 2002 UTC (21 years, 8 months ago) by tdb
Branch: MAIN
Changes since 1.27: +4 -4 lines
Diff to previous 1.27
Fix for upgrade to Jacorb 1.4.1. It's our fault actually, we've not been
correctly using the names when binding to the Naming Service. This needs to
be fixed properly at some point, but for now I've changed changed the code
so it "means" the same as it did before the upgrade.

Revision 1.27 - (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.26: +3 -2 lines
Diff to previous 1.26
Added URL to GPL headers.

Revision 1.26 - (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.25: +22 -3 lines
Diff to previous 1.25
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.25 - (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.24: +7 -7 lines
Diff to previous 1.24
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.24 - (view) (annotate) - [select for diffs]
Fri Mar 23 05:06:02 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
CVS Tags: PROJECT_COMPLETION
Changes since 1.23: +3 -3 lines
Diff to previous 1.23
Sorted out the naming a bit. Uses the config name "ClientInterface", with the
NAME now coming from ClientInterface.name, rather than RootFilter... as before.

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

Revision 1.22 - (view) (annotate) - [select for diffs]
Wed Mar 14 01:54:26 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.21: +3 -3 lines
Diff to previous 1.21
Of course, being my usual sensible self, I potentially had a situation where by
I would log to the Logger than the Logger isn't running. Clever eh ? :)

Revision 1.21 - (view) (annotate) - [select for diffs]
Wed Mar 14 01:43:50 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.20: +4 -5 lines
Diff to previous 1.20
We weren't grabbing a ReferenceManager reference until startup, although there
is no reason (unlike the Logger) why we can't grab it on construction.

Revision 1.20 - (view) (annotate) - [select for diffs]
Wed Mar 14 01:34:22 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.19: +24 -4 lines
Diff to previous 1.19
New dependency checking. The old method was to attempt to start a Component, and
if it failed, it probably had a depdency problem. The approach now is to ask the
Component to perform a dependency check first, then if this suceeds, have a go
at actually starting it up.
The actual dependency check is a bit neater and more precise than before, and
should be much more fool proof. The order the components are specified in the
default.properties file is now irrelevant, although the "correct" order would
certainly increase booting time.

Revision 1.19 - (view) (annotate) - [select for diffs]
Tue Mar 13 18:37:08 2001 UTC (23 years, 1 month ago) by tdb
Branch: MAIN
Changes since 1.18: +17 -28 lines
Diff to previous 1.18
Now makes use of the ConfigurationProxy.

Revision 1.18 - (view) (annotate) - [select for diffs]
Fri Feb 23 17:07:07 2001 UTC (23 years, 2 months ago) by ajm
Branch: MAIN
Changes since 1.17: +8 -5 lines
Diff to previous 1.17
now only uses the reference manager on calls to start()

Revision 1.17 - (view) (annotate) - [select for diffs]
Wed Feb 21 19:11:28 2001 UTC (23 years, 2 months ago) by tdb
Branch: MAIN
Changes since 1.16: +7 -5 lines
Diff to previous 1.16
Modification to the Queue system;
- interval of monitor is now configurable.
- attempt to identify each Queue better, although this is still hard.

Revision 1.16 - (view) (annotate) - [select for diffs]
Sat Feb 3 00:41:04 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.15: +8 -2 lines
Diff to previous 1.15
Added starting up of the CorbaClientListener, and registering it in the Naming
Service.

Revision 1.15 - (view) (annotate) - [select for diffs]
Sun Jan 28 05:58:46 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.14: +4 -4 lines
Diff to previous 1.14
An inability to type is not helping.

Revision 1.14 - (view) (annotate) - [select for diffs]
Sun Jan 28 05:57:29 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.13: +8 -12 lines
Diff to previous 1.13
Tidied up the getting configuration section. It used to bail out completely, but
as seen as we have this Exception we can throw.. why not throw it ?

Revision 1.13 - (view) (annotate) - [select for diffs]
Sat Jan 27 23:30:40 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.12: +3 -2 lines
Diff to previous 1.12
All of these classes have been javadoc'd and commented.

Revision 1.12 - (view) (annotate) - [select for diffs]
Tue Jan 23 18:23:03 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.11: +3 -2 lines
Diff to previous 1.11
General bug fixing. It now works for the features it should.

Revision 1.11 - (view) (annotate) - [select for diffs]
Tue Jan 23 16:56:31 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.10: +6 -6 lines
Diff to previous 1.10
Changed to support the new Protocol 1.1. This protocol supports selecting the
hosts a client wishes to monitor at connect time.

Revision 1.10 - (view) (annotate) - [select for diffs]
Mon Jan 22 02:57:38 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
CVS Tags: CLI_PROTOCOL_1_0
Changes since 1.9: +8 -5 lines
Diff to previous 1.9
All files changed to now incorporate a Queue. Makes the whole setup much tidier
and will enable levels of buffering.

Revision 1.9 - (view) (annotate) - [select for diffs]
Mon Jan 22 01:46:51 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.8: +4 -4 lines
Diff to previous 1.8
Changed due to name change of ClientListener.java to TCPClientListener.java

Revision 1.8 - (view) (annotate) - [select for diffs]
Thu Jan 18 23:08:10 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7
Changes to reflect move of Component, ComponentStartException, and the
ReferenceManager from util to componentmanager.

Revision 1.7 - (view) (annotate) - [select for diffs]
Thu Jan 18 23:07:00 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.6: +4 -3 lines
Diff to previous 1.6
Changes to reflect move of Component, ComponentStartException, and the
ReferenceManager from util to componentmanager.

Revision 1.6 - (view) (annotate) - [select for diffs]
Thu Jan 18 23:01:42 2001 UTC (23 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.5: +3 -3 lines
Diff to previous 1.5
Changes to reflect move of Component, ComponentStartException, and the
ReferenceManager from util to componentmanager.

Revision 1.5 - (view) (annotate) - [select for diffs]
Wed Dec 13 15:48:36 2000 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Changes since 1.4: +3 -14 lines
Diff to previous 1.4
fixed the static naming problem again

Revision 1.4 - (view) (annotate) - [select for diffs]
Wed Dec 13 12:57:38 2000 UTC (23 years, 4 months ago) by ajm
Branch: MAIN
Changes since 1.3: +76 -36 lines
Diff to previous 1.3
now componenterized
also supports new toString standard

Revision 1.3 - (view) (annotate) - [select for diffs]
Tue Dec 5 15:59:35 2000 UTC (23 years, 5 months ago) by ajm
Branch: MAIN
Branch point for: SERVER_PACKAGEBUILD
Changes since 1.2: +91 -91 lines
Diff to previous 1.2
Modified to use the database

Revision 1.2 - (view) (annotate) - [select for diffs]
Mon Dec 4 18:42:19 2000 UTC (23 years, 5 months ago) by ajm
Branch: MAIN
Changes since 1.1: +7 -2 lines
Diff to previous 1.1
fixed Tim's REALLY silly mistake in the TCPClientHandler ;-p

Added support for the ClientListener to the ClientInterface

Revision 1.1 - (view) (annotate) - [select for diffs]
Mon Dec 4 18:12:00 2000 UTC (23 years, 5 months ago) by ajm
Branch: MAIN
initial checkin

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