ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/server/configure
Revision: 1.22
Committed: Mon May 5 22:04:55 2003 UTC (21 years, 4 months ago) by tdb
Branch: MAIN
Changes since 1.21: +2 -2 lines
Log Message:
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.

File Contents

# Content
1 #!/bin/sh
2
3 #
4 # i-scream Distributed Centralised Monitoring System
5 # Server configure script
6 #
7 # $Id: configure,v 1.21 2003/02/21 21:21:51 tdb Exp $
8 #
9
10 ## Config
11
12 # HTTP Server. This is the source of all downloads.
13 HTTPSERVER="http://www.i-scream.org.uk/downloads/lib/"
14
15 # This script uses wget, set it's path and parameters here
16 WGETPARAM="-nv"
17 if test -x /usr/bin/wget; then
18 WGET="/usr/bin/wget ${WGETPARAM}"
19 else
20 if test -x /usr/local/bin/wget; then
21 WGET="/usr/local/bin/wget ${WGETPARAM}"
22 else
23 WGET="wget ${WGETPARAM}";
24 fi
25 fi
26
27 # This should always be the same
28 SRCROOT=`pwd`
29
30 ## Library check
31
32 echo "> Checking for required libraries"
33 cd build/lib
34
35 LIBRARIES="crimson.jar idl.jar jacorb.jar jaxp.jar pircbot.jar iscream_util.jar"
36
37 for LIB in ${LIBRARIES}; do
38
39 if test -r "${LIB}"; then \
40 echo " + ${LIB} found"; \
41 else \
42 echo " - ${LIB} not found, fetching from ${HTTPSERVER}${LIB}"; \
43 ${WGET} -nv ${HTTPSERVER}${LIB}; \
44 fi
45
46 done
47
48 ## Cache javadoc API package-list files
49 echo "> Caching remote API's"
50
51 JDKURL="http://java.sun.com/j2se/1.4.1/docs/api/"
52 mkdir -p ${SRCROOT}/.api-cache/jdk
53 cd ${SRCROOT}/.api-cache/jdk
54 if test -r "package-list"; then \
55 echo " + jdk/package-list found"; \
56 else \
57 echo " - jdk/package-list not found, fetching from ${JDKURL}package-list"; \
58 ${WGET} ${JDKURL}package-list; \
59 fi
60
61 PIRCBOTURL="http://www.jibble.org/javadocs/pircbot/"
62 mkdir -p ${SRCROOT}/.api-cache/pircbot
63 cd ${SRCROOT}/.api-cache/pircbot
64 if test -r "package-list"; then \
65 echo " + pircbot/package-list found"; \
66 else \
67 echo " - pircbot/package-list not found, fetching from ${PIRCBOTURL}package-list"; \
68 ${WGET} ${PIRCBOTURL}package-list; \
69 fi
70
71 UTILURL="http://www.i-scream.org.uk/javadoc/util/"
72 mkdir -p ${SRCROOT}/.api-cache/util
73 cd ${SRCROOT}/.api-cache/util
74 if test -r "package-list"; then \
75 echo " + util/package-list found"; \
76 else \
77 echo " - util/package-list not found, fetching from ${UTILURL}package-list"; \
78 ${WGET} ${UTILURL}package-list; \
79 fi
80
81 ## Write out the include file for the Makefile's
82
83 echo "> Generating Makefile includes"
84 echo " + writing root of source tree"
85 echo "SOURCEROOT=${SRCROOT}" > ${SRCROOT}/Config.inc
86 echo " + writing include"
87 echo "include \$(SOURCEROOT)/Config2.inc" >> ${SRCROOT}/Config.inc
88
89 echo "> Configure Completed"
90
91 ## End