Chart Viewer supports push technology by means of interacting with a parameter server. A programmer can write a parameter server using the class quadbase.chartviewer.ParamServer
to supply updated data continuously for Chart Viewer to plot the chart.
On the client side, the HTML syntax is either:
<applet code = "quadbase.chartviewer.Viewer.class" width=640 height=480> <PARAM name="filename" value="example.cht"> <PARAM name="ParameterServer" value="machine:portno"> </applet>
or
<applet code = "quadbase.chartviewer.Viewer.class" width=640 height=480> <PARAM name="filename" value="example.tpl"> <PARAM name="ParameterServer" value=":portno"> </applet>
Once the browser has loaded Chart Viewer class and the chart data from the web server, Chart Viewer attempts to connect to the parameter server as specified. In the first case, Chart Viewer will try to connect to the specific machine and port number identified in the parameter. In the second case, a default machine is used: the web server machine. For security reasons untrusted applets are not allowed to open a connection to other machines. The parameter server can interact with Chart Viewer in order to update and manipulate the records held by Chart Viewer.
On the server side, a server program should be written to listen to the port number. This server can be written using the class quadbase.chartviewer.Paramserver
.
Upon opening a connection, the server will supply data to Chart Viewer.
The constructor for the server is:
public ParamServer(DataInputStream in, DataOutputStream out)
Where in
and out
are the socket input and output used to communicate with the server.
ParamServer
has three basic methods to manipulate the records in Chart Viewer:
int addRecord(Object record[]); int deleteRecord(int recordNo); int updateRecord(Object record[], int recordNo);
After a sequence of record updates, a final call:
void repaint();
will send a request to Chart Viewer to repaint the chart using the new data.
The following Java program provides an example of using the parameter server class to generate new charts. Chart API for ParamServer is provided in the online API documentation. In this example, one field in the twelfth record is simply updated with an integer chosen at random. In a real application, a programmer would have to write the code which enables the parameter server to interact with the data source.
import java.io.*; import java.net.*; import java.util.*; import quadbase.chartviewer.ParamServer; // Sample Program to update the data in EspressChart Viewer // using Parameter Server public class pserver extends Thread { protected int port = 1997; // port no for chart viewer to connect protected ServerSocket listen_socket; public static void fail(Exception e, String msg) { System.err.println(msg + ":" + e); System.exit(1); } public pserver() { try { listen_socket = new ServerSocket(port); } catch (IOException e) { fail(e, "Exception creating server socket"); } this.start(); } public void run() { try { while(true) { // create a thread for each connection to handle the // request Socket client_socket = listen_socket.accept(); Connection c = new Connection(client_socket); } } catch (IOException e) { fail(e, "Exception while listening for connections"); } } public static void main(String[] args) { new pserver(); } } class Connection extends Thread { protected Socket client; protected DataInputStream in; protected DataOutputStream out; public Connection(Socket client_socket) { client = client_socket; try { // get the input and output stream in = new DataInputStream(client.getInputStream()); out = new DataOutputStream(client.getOutputStream()); } catch (IOException e) { try { client.close(); } catch (IOException e2) {} return; } this.start(); } public void run() { ParamServer paramserver; Random random = new Random(System.currentTimeMillis()); try { paramserver = new ParamServer(in, out); System.out.println("Total no of record = " + paramserver.getRecordNo()); // get record 12 from the chart viewer Object rec[] = paramserver.getRecord(12); for (int i=0; i < 100; i++) { // update the third field of record 12 rec[3] = new Integer(random.nextInt() % 30); paramserver.updateRecord(rec, 12); // tell the chart viewer to repaint //after every tenth record is updated if (i % 10 == 0) paramserver.repaint(); } } catch (IOException e) {} finally { try { client.close(); } catch (IOException e2) {} } } }
Chart Viewer would have read an HTML file of the form:
<html> <title>Sample Chart</title> <applet code = "quadbase.chartviewer.Viewer.class" width=600 height=450> <PARAM name="filename" value="col2d.cht"> <PARAM name="ParameterServer" value=":1997"> </applet> </html>
Here, the Java class that Chart Viewer reads is the name of a chart file col2d.cht
and the next line specifies the machine and port to which Chart Viewer should open a connection. EspressManager will then provide information to Chart Viewer at regular intervals such as updated records so that Chart Viewer can refresh the chart it displays.
UPDATE_RECORD public final static int UPDATE_RECORD INSERT_RECORD public final static int INSERT_RECORD DELETE_RECORD public final static int DELETE_RECORD GET_RECORD public final static int GET_RECORD GET_RECORDNO public final static int GET_RECORDNO GET_RECORD_DATATYPE public final static int GET_RECORD_DATATYPE REPAINT public final static int REPAINT OK public final static int OK ERROR public final static int ERROR
public ParamServer(DataInputStream in, DataOutputStream out) throws IOException
Constructor for Parameter Server
public int updateRecord(String rec[], int recordNo) throws IOException
Update a record
Parameters: |
| ||||
Returns: | OK if success, returns ERROR if no such record number or record type mismatch. |
public int updateRecord(Object rec[], int recordNo) throws IOException
Update a record
Parameters |
| ||||
Returns | OK if success, return ERROR if no such record number or record type mismatch. |
public int addRecord(String rec[]) throws IOException
Add a record
Parameters |
| ||
Returns | OK if success, returns ERROR if record type mismatch. |
public int addRecord(Object rec[]) throws IOException
Add a record
Parameters |
| ||
Returns | OK if success, returns ERROR if record type mismatch. |
public int deleteRecord(int recordNo) throws IOException
Delete a record
Parameters |
| ||
Returns | OK if success, returns ERROR if record type mismatch. |
public void repaint() throws IOException
Inform Chart Viewer to repaint the chart
public Boolean checkRecord(Object rec[])
Auxiliary function to check whether the record type given matches the record type used in Chart Viewer
Parameters |
| ||
Returns | true if record match, otherwise return false |
public int getRecordNo() throws IOException
Get the number of records used
Returns | the number of record |
public int[] getDataType() throws IOException
Get the data type of the record used
Returns | array of data types as defined in jdbc/Types.class, the size of the array is equal to the number of field in record |
public int getRecordSize()
Get the number of fields in record
Returns | number of fields in record |
public Object[] getRecord(int recordNo) throws IOException
Get the record
Parameters |
| ||
Returns | an object array for the record |
public Object[] convertRecord(String rec[])
Convert a record in string array format to Object array format
Returns | object array for the record, null if data type mismatch. |