Human Computer Interaction » History » Version 12
Aleksander Bešir, 31.12.2010 18:49
1 | 5 | Aleksander Bešir | h1. Human Computer Interaction |
---|---|---|---|
2 | 1 | Aleksander Bešir | |
3 | {{toc}} |
||
4 | |||
5 | h2. 1 Basic concept |
||
6 | |||
7 | h3. 1.1 Hardware |
||
8 | |||
9 | 5 | Aleksander Bešir | p. The HCI will will be realised as a website. It will run on an Apache Tomcat http server, which will not run on the same device as Eneraptor's logic. Instead it will run on an independent proxy server. |
10 | 1 | Aleksander Bešir | |
11 | p=. !HMI_website_overall.png! |
||
12 | |||
13 | p. The intended server-side html generating aplication is Tomcat's Jasper, making JSP the intended website programming language. |
||
14 | |||
15 | 8 | Aleksander Bešir | h3. 1.2 HCI features |
16 | 1 | Aleksander Bešir | |
17 | 8 | Aleksander Bešir | The picture below shows basic HCI features: |
18 | |||
19 | !HCI_basic.png! |
||
20 | 1 | Aleksander Bešir | |
21 | 9 | Aleksander Bešir | h2. 2 Communication with other parts |
22 | |||
23 | h3. Logged data (instructions for syslog dev) |
||
24 | |||
25 | All logged data has to be written in a *PostgreSQL* database. Database's name must be *eneraptor-db*. Data must be writen in *standard public schema* (default). |
||
26 | |||
27 | The database table will exist prior to logging unit's (Janez) first run, so logging unit does not need to create the table. The logging unit *must* know, how to add a log entry to the database correctly, so that HCI will be able to use this data: |
||
28 | |||
29 | Every new log entry should be added with the following SQL query: |
||
30 | |||
31 | <pre> |
||
32 | INSERT INTO logged_data( |
||
33 | id, "version", date_recieved, device_id, reported_data) |
||
34 | VALUES (nextval('hibernate_sequence'), 0, now(), 'enterDeviceIdHere', 'enterReportedDataHere'); |
||
35 | </pre> |
||
36 | |||
37 | enterDeviceIdHere and enterReportedDataHere should be replaced with actual data. Logging unit *must not* change other parts of the SQL query above. |
||
38 | |||
39 | 10 | Aleksander Bešir | While developing the logging unit (Janez) it may be useful to have a test database like the one HCI will create in the final product. You can create such a database with the following SQL query: |
40 | |||
41 | [[createEneraptorDatabase.backup]] |
||
42 | |||
43 | 11 | Aleksander Bešir | h3. Getting info from the logic unit (instructions for DMS dev) |
44 | |||
45 | Every time HCI wants to get any information from the logic directly, it establishes a TCP connection (using sockets). The logic unit should use a socket to listen to a port for an incoming connection. |
||
46 | |||
47 | |||
48 | When a connection is established, HCI sends a series of lines that together represent some XML data and waits until the logic unit sends some XML data back. The connection is then closed. The root node of HCI's request will always be: |
||
49 | 12 | Aleksander Bešir | <pre><code class="xml"> |
50 | 11 | Aleksander Bešir | <hci-request type="..."> |
51 | ... |
||
52 | </hci-request> |
||
53 | </code></pre> |
||
54 | |||
55 | The _type_ attribute value may be one of the following: checkConnection, getConfig, setConfig, getActions, setActions, executeAction. |
||
56 | |||
57 | | *type* | *purpose* | *what HCI expects in the reply* | |
||
58 | | @checkConnection@ | a simple echo for testing connectivity | echoed data | |
||
59 | | @getConfig @ | HCI gets current logic's configuration | logic's current configuration | |
||
60 | | @setConfig @ | HCI sends new configuration to the logic unit | confirmation that new config was accepted | |
||
61 | | @getActions @ | HCI gets a list of actions | logic's currently installed actions | |
||
62 | | @setActions @ | HCI sends a new list of actions to the logic unit | confirmation that new actions list was accepted | |
||
63 | | @executeAction @ | HCI demands executing an action instantly | confirmation that the action has been executed | |
||
64 | |||
65 | 1 | Aleksander Bešir | h2. References |
66 | |||
67 | # Chopra, Vivek, et al., _Professional Apache Tomcat 6_, Wrox - Wiley, 2007 |
||
68 | # Basham, Bryan, et al., _Head First Servlets and JSP™_, O’Reilly, 2008 |
||
69 | |||
70 | h2. Attachments |