Difference between revisions of "Install xpl hub"

From xPL
Jump to: navigation, search
(Test the hub)
(Ubuntu)
Line 81: Line 81:
 
  env SCRIPTS_DIR='/home/control/Documents/Controls'
 
  env SCRIPTS_DIR='/home/control/Documents/Controls'
 
  env SCRIPT_NAME='xpl-hub.pl'
 
  env SCRIPT_NAME='xpl-hub.pl'
  env LOG_FILE='/tmp/xpl-hub.log'
+
  env PARAMETERS='-l /tmp/xpl-hub.log'
 
   
 
   
 
  #-------------------------------------------------------------------------------
 
  #-------------------------------------------------------------------------------
 
  # Start and stop conditions
 
  # Start and stop conditions
 
  #
 
  #
  start on (local-filesystems and net-device-up)
+
  start on (filesystem and net-device-up)
 
  stop on shutdown
 
  stop on shutdown
 
  respawn
 
  respawn
Line 102: Line 102:
 
  # Start daemon
 
  # Start daemon
 
  #
 
  #
  exec $SCRIPTS_DIR/$SCRIPT_NAME -l $LOG_FILE
+
  exec $SCRIPTS_DIR/$SCRIPT_NAME $PARAMETERS
  
 
Once the xPL hub has been launched, the <code> xpl-hub_started</code> event is emeiited.
 
Once the xPL hub has been launched, the <code> xpl-hub_started</code> event is emeiited.

Revision as of 13:46, 18 May 2014

My xPL hub is based on John Bent's xPL ToolKit for Perl.

Install the hub

Download the xPL base tarball. It contains:

  • xpl-hub.pl: the hub
  • xpl-monitor.pl: a monitor which allows to view the xPL messages
  • xpl-send.pl: a utility for sending xPL messages
  • xPL: a directory containing Perl functions common to all the scripts

Move it to the location you want the scripts to reside. This could be /opt/xPL/ or /usr/opt/xPL/. I personally create a control user who will run these scripts and I place the files in /home/control/Documents/Controls/ on a Linux machine or in /Users/control/Documents/Controls on a Mac. Obviously, if you place the scripts in a different location than mine, you will have to adapt the path everywhere it is given hereafter.

SCRIPTS_BASE_DIR=/home/control/Documents/Controls
mv xPL_base.tar.bz2 $SCRIPTS_BASE_DIR

Extract it:

cd $SCRIPTS_BASE_DIR
tar -xvjpf xPL_base.tar.bz2

Test the hub

Lanch the hub:

su control
SCRIPTS_BASE_DIR=/home/control/Documents/Controls
$SCRIPTS_BASE_DIR/xpl-hub.pl -h
$SCRIPTS_BASE_DIR/xpl-hub.pl -v

Monitor xPL messages: open a second terminal window and:

su control
SCRIPTS_BASE_DIR=/home/control/Documents/Controls
$SCRIPTS_BASE_DIR/xpl-monitor.pl -h
$SCRIPTS_BASE_DIR/xpl-monitor.pl -v

Send a message: open a third terminal window and:

SCRIPTS_BASE_DIR=/home/control/Documents/Controls
$SCRIPTS_BASE_DIR/xpl-send.pl -h
$SCRIPTS_BASE_DIR/xpl-send.pl -vc hbeat.end world=hello

You should see the corresponding world=hello message in the second terminal window.

The hub also logs the connected clients:

cat /tmp/xpl-hub.log

If it works, stop all the running xPL scripts.

Launch the hub at startup

Launching the xPL system on a machine requires the following sequencing:

  • once the file system and the Ethernet connections are up, the xPL hub can be started
  • once the hub is up, most of the xPL clients can be started
  • some xPL clients may have to wait for other clients to be up and running

Ubuntu

On Ubuntu, the sequencing can base on events.

Because of this, one has to allow the members of group users to emit events without typing-in a password. To do so, edit /etc/sudoers and add:

# Allow users to emit upstart events
%users ALL=(ALL) NOPASSWD:/sbin/initctl

In order to have the system launch the xPL hub, edit /etc/init/xpl-hub.conf:

################################################################################
# xPL hub - hub for the home control automation system
#
description "xPL hub"
emits       xpl-hub_started
version     "1.0"
author      "Francois Corthay"

#-------------------------------------------------------------------------------
# Configuration variables
#
env SCRIPTS_DIR='/home/control/Documents/Controls'
env SCRIPT_NAME='xpl-hub.pl'
env PARAMETERS='-l /tmp/xpl-hub.log'

#-------------------------------------------------------------------------------
# Start and stop conditions
#
start on (filesystem and net-device-up)
stop on shutdown
respawn
setuid control
setgid users

#-------------------------------------------------------------------------------
# Startup signalling
#
post-start script
  sudo initctl emit xpl-hub_started
end script

#-------------------------------------------------------------------------------
# Start daemon
#
exec $SCRIPTS_DIR/$SCRIPT_NAME $PARAMETERS

Once the xPL hub has been launched, the xpl-hub_started event is emeiited.

Test launching the daemon:

service xpl-hub start
service xpl-hub status

Reboot the machine and check for the daemon:

service xpl-hub status
ps ax | grep -v grep | grep -i xpl
initctl list | grep xpl

Mac OS

On Mac OS, the xPL agents can be started as Launch Daemons. The Mac OS launchd daemon was designed to remove the need for dependency ordering among daemons. In order to cope with this, the xPL scripts come with a -w parameter which defines a waiting time, in seconds, before the script actually does anything.

In order to have the system launch the xPL hub, edit /Library/LaunchDaemons/xpl-hub.plist:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
  <dict>
    <key>Label</key>
    <string>xPL hub</string>
    <key>UserName</key>
    <string>control</string>
    <key>OnDemand</key>
    <false/>
    <key>ProgramArguments</key>
    <array>
      <string>/Users/control/Documents/Controls/xpl-hub.pl</string>
      <string>-w</string>
      <string>20</string>
      <string>-l</string>
      <string>/tmp/xpl-hub.log</string>
    </array>
  </dict>
</plist>

Launch the daemon:

launchctl load /Library/LaunchDaemons/xpl-hub.plist
launchctl list | grep -i xpl

Reboot the Mac and check for the daemon:

ps ax | grep -v grep | grep -i xpl
launchctl list | grep -i xpl