Uname:
Linux server.thebazaar99.com 5.14.0-687.17.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Jun 22 07:21:26 EDT 2026 x86_64
Software:
Apache
PHP version:
8.3.32 [ PHP INFO ] PHP os:
Linux
Server Ip:
163.227.92.254
Your Ip:
216.73.217.24
User:
gutlooks (1003) | Group:
gutlooks (1005)
Safe Mode:
OFF
Disable Function:
exec,passthru,shell_exec,system
from . import interfaces
from . import controller
from . import dbus_exporter as dbus
from . import dbus_exporter_with_properties as dbus_with_properties
from . import unix_socket_exporter as unix_socket
def export(*args, **kwargs):
"""Decorator, use to mark exportable methods."""
def wrapper(method):
method.export_params = [ args, kwargs ]
return method
return wrapper
def signal(*args, **kwargs):
"""Decorator, use to mark exportable signals."""
def wrapper(method):
method.signal_params = [ args, kwargs ]
return method
return wrapper
def property_setter(*args, **kwargs):
"""Decorator, use to mark setters of exportable properties."""
def wrapper(method):
method.property_set_params = [ args, kwargs ]
return method
return wrapper
def property_getter(*args, **kwargs):
"""Decorator, use to mark getters of exportable properties."""
def wrapper(method):
method.property_get_params = [ args, kwargs ]
return method
return wrapper
def property_changed(*args, **kwargs):
ctl = controller.ExportsController.get_instance()
return ctl.property_changed(*args, **kwargs)
def register_exporter(instance):
if not isinstance(instance, interfaces.ExporterInterface):
raise Exception()
ctl = controller.ExportsController.get_instance()
return ctl.register_exporter(instance)
def register_object(instance):
if not isinstance(instance, interfaces.ExportableInterface):
raise Exception()
ctl = controller.ExportsController.get_instance()
return ctl.register_object(instance)
def send_signal(*args, **kwargs):
ctl = controller.ExportsController.get_instance()
return ctl.send_signal(*args, **kwargs)
def start():
ctl = controller.ExportsController.get_instance()
return ctl.start()
def stop():
ctl = controller.ExportsController.get_instance()
return ctl.stop()
def period_check():
ctl = controller.ExportsController.get_instance()
return ctl.period_check()