slixmpp/examples/rpc_client_side.py

52 lines
1.1 KiB
Python
Raw Normal View History

2014-08-16 20:37:29 +00:00
#!/usr/bin/env python3
2021-02-05 19:51:15 +00:00
# Slixmpp: The Slick XMPP Library
# Copyright (C) 2011 Dann Martens
# This file is part of Slixmpp.
# See the file LICENSE for copying permission.
2011-01-13 10:58:20 +00:00
2014-07-17 12:19:04 +00:00
from slixmpp.plugins.xep_0009.remote import Endpoint, remote, Remote, \
2011-01-13 10:58:20 +00:00
ANY_ALL
import threading
import time
class Thermostat(Endpoint):
2011-01-13 10:58:20 +00:00
def FQN(self):
return 'thermostat'
def __init__(self, initial_temperature):
2011-01-13 10:58:20 +00:00
self._temperature = initial_temperature
self._event = threading.Event()
2011-01-13 10:58:20 +00:00
@remote
def set_temperature(self, temperature):
return NotImplemented
2011-01-13 10:58:20 +00:00
@remote
def get_temperature(self):
return NotImplemented
@remote(False)
def release(self):
return NotImplemented
2011-01-13 10:58:20 +00:00
def main():
session = Remote.new_session('operator@xmpp.org/rpc', '*****')
2011-01-13 10:58:20 +00:00
thermostat = session.new_proxy('thermostat@xmpp.org/rpc', Thermostat)
2011-01-13 10:58:20 +00:00
print("Current temperature is %s" % thermostat.get_temperature())
2011-01-13 10:58:20 +00:00
thermostat.set_temperature(20)
2011-01-13 10:58:20 +00:00
time.sleep(10)
2011-01-13 10:58:20 +00:00
session.close()
2011-01-13 10:58:20 +00:00
if __name__ == '__main__':
main()