1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
#! /usr/bin/env python
"""
::BOH
Copyright (c) 2005 Peter Kropf. All rights reserved.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
::EOH
Create an XML-RPC server for a 1-wire network.
Run xmlrpc_client.py to see the server in action.
Or point a browser at http://localhost:8765 to see some documentation.
"""
import sys
import ow
from DocXMLRPCServer import DocXMLRPCServer, DocXMLRPCRequestHandler
from SocketServer import ThreadingMixIn
class owr:
"""
A wrapper class is needed around the ow.Sensor class since the
XML-RPC protocol doesn't know anything about generators, Python
objects and such. XML-RPC is a pretty simple protocol that deals
pretty well with basic types. So that's what it'll get.
"""
def entries( self, path ):
"""List a sensor's attributes."""
return [entry for entry in ow.Sensor( path ).entries( )]
def sensors( self, path ):
"""List all the sensors that exist in a particular path."""
return [sensor._path for sensor in ow.Sensor( path ).sensors( )]
def attr( self, path, attr ):
"""Lookup a specific sensor attribute."""
sensor = ow.Sensor( path )
exec 'val = sensor.' + attr
return val
class ThreadingServer( ThreadingMixIn, DocXMLRPCServer ):
pass
# Initialize ow for a USB controller or for a serial port.
ow.init( 'u' )
#ow.init( '/dev/ttyS0' )
# Allow connections for the localhost on port 8765.
serveraddr = ( '', 8765 )
srvr = ThreadingServer( serveraddr, DocXMLRPCRequestHandler )
srvr.set_server_title( '1-wire network' )
srvr.set_server_documentation( 'Welcome to the world of 1-wire networks.' )
srvr.register_instance( owr( ) )
srvr.register_introspection_functions( )
srvr.serve_forever( )
|