[installation] Change to nightly
This commit is contained in:
@ -1,13 +1,10 @@
|
||||
# This file was automatically generated by SWIG (http://www.swig.org).
|
||||
# Version 4.0.2
|
||||
# This file was automatically generated by SWIG (https://www.swig.org).
|
||||
# Version 4.3.1
|
||||
#
|
||||
# Do not make changes to this file unless you know what you are doing--modify
|
||||
# Do not make changes to this file unless you know what you are doing - modify
|
||||
# the SWIG interface file instead.
|
||||
|
||||
from sys import version_info as _swig_python_version_info
|
||||
if _swig_python_version_info < (2, 7, 0):
|
||||
raise RuntimeError("Python 2.7 or later required")
|
||||
|
||||
# Import the low-level C/C++ module
|
||||
if __package__ or "." in __name__:
|
||||
from . import _client
|
||||
@ -29,10 +26,10 @@ def _swig_repr(self):
|
||||
|
||||
def _swig_setattr_nondynamic_instance_variable(set):
|
||||
def set_instance_attr(self, name, value):
|
||||
if name == "thisown":
|
||||
self.this.own(value)
|
||||
elif name == "this":
|
||||
if name == "this":
|
||||
set(self, name, value)
|
||||
elif name == "thisown":
|
||||
self.this.own(value)
|
||||
elif hasattr(self, name) and isinstance(getattr(type(self), name), property):
|
||||
set(self, name, value)
|
||||
else:
|
||||
@ -123,7 +120,6 @@ class SwigPyIterator(object):
|
||||
|
||||
# Register SwigPyIterator in _client:
|
||||
_client.SwigPyIterator_swigregister(SwigPyIterator)
|
||||
|
||||
import seiscomp.system
|
||||
import seiscomp.core
|
||||
import seiscomp.logging
|
||||
@ -186,21 +182,6 @@ class Packet(seiscomp.core.BaseObject):
|
||||
|
||||
# Register Packet in _client:
|
||||
_client.Packet_swigregister(Packet)
|
||||
|
||||
def Packet_Cast(*args):
|
||||
r"""
|
||||
Packet_Cast(BaseObject o) -> Packet
|
||||
Packet_Cast(Seiscomp::Core::BaseObjectPtr o) -> Packet
|
||||
"""
|
||||
return _client.Packet_Cast(*args)
|
||||
|
||||
def Packet_ConstCast(*args):
|
||||
r"""
|
||||
Packet_ConstCast(BaseObject o) -> Packet
|
||||
Packet_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> Packet
|
||||
"""
|
||||
return _client.Packet_ConstCast(*args)
|
||||
|
||||
OK = _client.OK
|
||||
|
||||
InvalidURL = _client.InvalidURL
|
||||
@ -277,11 +258,6 @@ class EResultNames(object):
|
||||
|
||||
# Register EResultNames in _client:
|
||||
_client.EResultNames_swigregister(EResultNames)
|
||||
|
||||
def EResultNames_name(i):
|
||||
r"""EResultNames_name(int i) -> char const *"""
|
||||
return _client.EResultNames_name(i)
|
||||
|
||||
class Protocol(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::Protocol class."""
|
||||
|
||||
@ -339,6 +315,10 @@ class Protocol(object):
|
||||
r"""schemaVersion(Protocol self) -> Version"""
|
||||
return _client.Protocol_schemaVersion(self)
|
||||
|
||||
def isDeleteTreeSupported(self):
|
||||
r"""isDeleteTreeSupported(Protocol self) -> bool"""
|
||||
return _client.Protocol_isDeleteTreeSupported(self)
|
||||
|
||||
def extendedParameters(self):
|
||||
r"""extendedParameters(Protocol self) -> Seiscomp::Client::Protocol::KeyValueStore const &"""
|
||||
return _client.Protocol_extendedParameters(self)
|
||||
@ -360,7 +340,7 @@ class Protocol(object):
|
||||
return _client.Protocol_sendData(self, targetGroup, data, len, type, contentEncoding, contentType)
|
||||
|
||||
def sendMessage(self, *args):
|
||||
r"""sendMessage(Protocol self, std::string const & targetGroup, Message msg, Seiscomp::Client::Protocol::MessageType type=Regular, Seiscomp::Core::Optional< Seiscomp::Client::Protocol::ContentEncoding >::Impl contentEncoding=Unset, Seiscomp::Core::Optional< Seiscomp::Client::Protocol::ContentType >::Impl contentType=Unset) -> Seiscomp::Client::Result"""
|
||||
r"""sendMessage(Protocol self, std::string const & targetGroup, Message msg, Seiscomp::Client::Protocol::MessageType type=Regular, Seiscomp::Core::Optional< Seiscomp::Client::Protocol::ContentEncoding > contentEncoding=Unset, Seiscomp::Core::Optional< Seiscomp::Client::Protocol::ContentType > contentType=Unset) -> Seiscomp::Client::Result"""
|
||||
return _client.Protocol_sendMessage(self, *args)
|
||||
|
||||
def recv(self):
|
||||
@ -439,17 +419,6 @@ Protocol.STATUS_GROUP = _client.cvar.Protocol_STATUS_GROUP
|
||||
Protocol.LISTENER_GROUP = _client.cvar.Protocol_LISTENER_GROUP
|
||||
Protocol.IMPORT_GROUP = _client.cvar.Protocol_IMPORT_GROUP
|
||||
|
||||
def Protocol_decode(*args):
|
||||
r"""
|
||||
Protocol_decode(std::string const & blob, Seiscomp::Client::Protocol::ContentEncoding encoding, Seiscomp::Client::Protocol::ContentType type) -> Message
|
||||
Protocol_decode(char const * blob, size_t blob_length, Seiscomp::Client::Protocol::ContentEncoding encoding, Seiscomp::Client::Protocol::ContentType type) -> Message
|
||||
"""
|
||||
return _client.Protocol_decode(*args)
|
||||
|
||||
def Protocol_encode(blob, msg, encoding, type, schemaVersion):
|
||||
r"""Protocol_encode(std::string & blob, Message msg, Seiscomp::Client::Protocol::ContentEncoding encoding, Seiscomp::Client::Protocol::ContentType type, int schemaVersion) -> bool"""
|
||||
return _client.Protocol_encode(blob, msg, encoding, type, schemaVersion)
|
||||
|
||||
class Connection(seiscomp.core.BaseObject):
|
||||
r"""Proxy of C++ Seiscomp::Client::Connection class."""
|
||||
|
||||
@ -588,13 +557,16 @@ class Connection(seiscomp.core.BaseObject):
|
||||
r"""schemaVersion(Connection self) -> Version"""
|
||||
return _client.Connection_schemaVersion(self)
|
||||
|
||||
def isDeleteTreeSupported(self):
|
||||
r"""isDeleteTreeSupported(Connection self) -> bool"""
|
||||
return _client.Connection_isDeleteTreeSupported(self)
|
||||
|
||||
def extendedParameters(self):
|
||||
r"""extendedParameters(Connection self) -> Seiscomp::Client::Protocol::KeyValueStore const *"""
|
||||
return _client.Connection_extendedParameters(self)
|
||||
|
||||
# Register Connection in _client:
|
||||
_client.Connection_swigregister(Connection)
|
||||
|
||||
class ServiceRequestMessage(seiscomp.core.Message):
|
||||
r"""Proxy of C++ Seiscomp::Client::ServiceRequestMessage class."""
|
||||
|
||||
@ -649,29 +621,6 @@ class ServiceRequestMessage(seiscomp.core.Message):
|
||||
|
||||
# Register ServiceRequestMessage in _client:
|
||||
_client.ServiceRequestMessage_swigregister(ServiceRequestMessage)
|
||||
|
||||
def ServiceRequestMessage_ClassName():
|
||||
r"""ServiceRequestMessage_ClassName() -> char const *"""
|
||||
return _client.ServiceRequestMessage_ClassName()
|
||||
|
||||
def ServiceRequestMessage_TypeInfo():
|
||||
r"""ServiceRequestMessage_TypeInfo() -> RTTI"""
|
||||
return _client.ServiceRequestMessage_TypeInfo()
|
||||
|
||||
def ServiceRequestMessage_Cast(*args):
|
||||
r"""
|
||||
ServiceRequestMessage_Cast(BaseObject o) -> ServiceRequestMessage
|
||||
ServiceRequestMessage_Cast(Seiscomp::Core::BaseObjectPtr o) -> ServiceRequestMessage
|
||||
"""
|
||||
return _client.ServiceRequestMessage_Cast(*args)
|
||||
|
||||
def ServiceRequestMessage_ConstCast(*args):
|
||||
r"""
|
||||
ServiceRequestMessage_ConstCast(BaseObject o) -> ServiceRequestMessage
|
||||
ServiceRequestMessage_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> ServiceRequestMessage
|
||||
"""
|
||||
return _client.ServiceRequestMessage_ConstCast(*args)
|
||||
|
||||
class ServiceProvideMessage(seiscomp.core.Message):
|
||||
r"""Proxy of C++ Seiscomp::Client::ServiceProvideMessage class."""
|
||||
|
||||
@ -734,29 +683,6 @@ class ServiceProvideMessage(seiscomp.core.Message):
|
||||
|
||||
# Register ServiceProvideMessage in _client:
|
||||
_client.ServiceProvideMessage_swigregister(ServiceProvideMessage)
|
||||
|
||||
def ServiceProvideMessage_ClassName():
|
||||
r"""ServiceProvideMessage_ClassName() -> char const *"""
|
||||
return _client.ServiceProvideMessage_ClassName()
|
||||
|
||||
def ServiceProvideMessage_TypeInfo():
|
||||
r"""ServiceProvideMessage_TypeInfo() -> RTTI"""
|
||||
return _client.ServiceProvideMessage_TypeInfo()
|
||||
|
||||
def ServiceProvideMessage_Cast(*args):
|
||||
r"""
|
||||
ServiceProvideMessage_Cast(BaseObject o) -> ServiceProvideMessage
|
||||
ServiceProvideMessage_Cast(Seiscomp::Core::BaseObjectPtr o) -> ServiceProvideMessage
|
||||
"""
|
||||
return _client.ServiceProvideMessage_Cast(*args)
|
||||
|
||||
def ServiceProvideMessage_ConstCast(*args):
|
||||
r"""
|
||||
ServiceProvideMessage_ConstCast(BaseObject o) -> ServiceProvideMessage
|
||||
ServiceProvideMessage_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> ServiceProvideMessage
|
||||
"""
|
||||
return _client.ServiceProvideMessage_ConstCast(*args)
|
||||
|
||||
class DatabaseRequestMessage(ServiceRequestMessage):
|
||||
r"""Proxy of C++ Seiscomp::Client::DatabaseRequestMessage class."""
|
||||
|
||||
@ -807,29 +733,6 @@ class DatabaseRequestMessage(ServiceRequestMessage):
|
||||
|
||||
# Register DatabaseRequestMessage in _client:
|
||||
_client.DatabaseRequestMessage_swigregister(DatabaseRequestMessage)
|
||||
|
||||
def DatabaseRequestMessage_ClassName():
|
||||
r"""DatabaseRequestMessage_ClassName() -> char const *"""
|
||||
return _client.DatabaseRequestMessage_ClassName()
|
||||
|
||||
def DatabaseRequestMessage_TypeInfo():
|
||||
r"""DatabaseRequestMessage_TypeInfo() -> RTTI"""
|
||||
return _client.DatabaseRequestMessage_TypeInfo()
|
||||
|
||||
def DatabaseRequestMessage_Cast(*args):
|
||||
r"""
|
||||
DatabaseRequestMessage_Cast(BaseObject o) -> DatabaseRequestMessage
|
||||
DatabaseRequestMessage_Cast(Seiscomp::Core::BaseObjectPtr o) -> DatabaseRequestMessage
|
||||
"""
|
||||
return _client.DatabaseRequestMessage_Cast(*args)
|
||||
|
||||
def DatabaseRequestMessage_ConstCast(*args):
|
||||
r"""
|
||||
DatabaseRequestMessage_ConstCast(BaseObject o) -> DatabaseRequestMessage
|
||||
DatabaseRequestMessage_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> DatabaseRequestMessage
|
||||
"""
|
||||
return _client.DatabaseRequestMessage_ConstCast(*args)
|
||||
|
||||
class DatabaseProvideMessage(ServiceProvideMessage):
|
||||
r"""Proxy of C++ Seiscomp::Client::DatabaseProvideMessage class."""
|
||||
|
||||
@ -884,29 +787,6 @@ class DatabaseProvideMessage(ServiceProvideMessage):
|
||||
|
||||
# Register DatabaseProvideMessage in _client:
|
||||
_client.DatabaseProvideMessage_swigregister(DatabaseProvideMessage)
|
||||
|
||||
def DatabaseProvideMessage_ClassName():
|
||||
r"""DatabaseProvideMessage_ClassName() -> char const *"""
|
||||
return _client.DatabaseProvideMessage_ClassName()
|
||||
|
||||
def DatabaseProvideMessage_TypeInfo():
|
||||
r"""DatabaseProvideMessage_TypeInfo() -> RTTI"""
|
||||
return _client.DatabaseProvideMessage_TypeInfo()
|
||||
|
||||
def DatabaseProvideMessage_Cast(*args):
|
||||
r"""
|
||||
DatabaseProvideMessage_Cast(BaseObject o) -> DatabaseProvideMessage
|
||||
DatabaseProvideMessage_Cast(Seiscomp::Core::BaseObjectPtr o) -> DatabaseProvideMessage
|
||||
"""
|
||||
return _client.DatabaseProvideMessage_Cast(*args)
|
||||
|
||||
def DatabaseProvideMessage_ConstCast(*args):
|
||||
r"""
|
||||
DatabaseProvideMessage_ConstCast(BaseObject o) -> DatabaseProvideMessage
|
||||
DatabaseProvideMessage_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> DatabaseProvideMessage
|
||||
"""
|
||||
return _client.DatabaseProvideMessage_ConstCast(*args)
|
||||
|
||||
class RunningAverage(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::RunningAverage class."""
|
||||
|
||||
@ -944,7 +824,6 @@ class RunningAverage(object):
|
||||
|
||||
# Register RunningAverage in _client:
|
||||
_client.RunningAverage_swigregister(RunningAverage)
|
||||
|
||||
class ObjectMonitor(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::ObjectMonitor class."""
|
||||
|
||||
@ -978,7 +857,6 @@ class ObjectMonitor(object):
|
||||
|
||||
# Register ObjectMonitor in _client:
|
||||
_client.ObjectMonitor_swigregister(ObjectMonitor)
|
||||
|
||||
STARTED = _client.STARTED
|
||||
|
||||
FINISHED = _client.FINISHED
|
||||
@ -1003,11 +881,6 @@ class EApplicationStatusNames(object):
|
||||
|
||||
# Register EApplicationStatusNames in _client:
|
||||
_client.EApplicationStatusNames_swigregister(EApplicationStatusNames)
|
||||
|
||||
def EApplicationStatusNames_name(i):
|
||||
r"""EApplicationStatusNames_name(int i) -> char const *"""
|
||||
return _client.EApplicationStatusNames_name(i)
|
||||
|
||||
class ApplicationStatusMessage(seiscomp.core.Message):
|
||||
r"""Proxy of C++ Seiscomp::Client::ApplicationStatusMessage class."""
|
||||
|
||||
@ -1079,29 +952,6 @@ class ApplicationStatusMessage(seiscomp.core.Message):
|
||||
|
||||
# Register ApplicationStatusMessage in _client:
|
||||
_client.ApplicationStatusMessage_swigregister(ApplicationStatusMessage)
|
||||
|
||||
def ApplicationStatusMessage_ClassName():
|
||||
r"""ApplicationStatusMessage_ClassName() -> char const *"""
|
||||
return _client.ApplicationStatusMessage_ClassName()
|
||||
|
||||
def ApplicationStatusMessage_TypeInfo():
|
||||
r"""ApplicationStatusMessage_TypeInfo() -> RTTI"""
|
||||
return _client.ApplicationStatusMessage_TypeInfo()
|
||||
|
||||
def ApplicationStatusMessage_Cast(*args):
|
||||
r"""
|
||||
ApplicationStatusMessage_Cast(BaseObject o) -> ApplicationStatusMessage
|
||||
ApplicationStatusMessage_Cast(Seiscomp::Core::BaseObjectPtr o) -> ApplicationStatusMessage
|
||||
"""
|
||||
return _client.ApplicationStatusMessage_Cast(*args)
|
||||
|
||||
def ApplicationStatusMessage_ConstCast(*args):
|
||||
r"""
|
||||
ApplicationStatusMessage_ConstCast(BaseObject o) -> ApplicationStatusMessage
|
||||
ApplicationStatusMessage_ConstCast(Seiscomp::Core::BaseObjectCPtr o) -> ApplicationStatusMessage
|
||||
"""
|
||||
return _client.ApplicationStatusMessage_ConstCast(*args)
|
||||
|
||||
class Notification(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::Notification class."""
|
||||
|
||||
@ -1136,7 +986,6 @@ class Notification(object):
|
||||
|
||||
# Register Notification in _client:
|
||||
_client.Notification_swigregister(Notification)
|
||||
|
||||
class Application(seiscomp.system.SystemApplication):
|
||||
r"""Proxy of C++ Seiscomp::Client::Application class."""
|
||||
|
||||
@ -1499,6 +1348,10 @@ class Application(seiscomp.system.SystemApplication):
|
||||
r"""handleTimeout(Application self)"""
|
||||
return _client.Application_handleTimeout(self)
|
||||
|
||||
def handleSOH(self):
|
||||
r"""handleSOH(Application self)"""
|
||||
return _client.Application_handleSOH(self)
|
||||
|
||||
def handleClose(self):
|
||||
r"""handleClose(Application self) -> bool"""
|
||||
return _client.Application_handleClose(self)
|
||||
@ -1589,11 +1442,6 @@ class Application(seiscomp.system.SystemApplication):
|
||||
|
||||
# Register Application in _client:
|
||||
_client.Application_swigregister(Application)
|
||||
|
||||
def Application_Instance():
|
||||
r"""Application_Instance() -> Application"""
|
||||
return _client.Application_Instance()
|
||||
|
||||
class StreamApplication(Application):
|
||||
r"""Proxy of C++ Seiscomp::Client::StreamApplication class."""
|
||||
|
||||
@ -1634,11 +1482,11 @@ class StreamApplication(Application):
|
||||
return _client.StreamApplication_addStream(self, networkCode, stationCode, locationCode, channelCode)
|
||||
|
||||
def setStartTime(self, arg2):
|
||||
r"""setStartTime(StreamApplication self, Time arg2)"""
|
||||
r"""setStartTime(StreamApplication self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & arg2)"""
|
||||
return _client.StreamApplication_setStartTime(self, arg2)
|
||||
|
||||
def setEndTime(self, arg2):
|
||||
r"""setEndTime(StreamApplication self, Time arg2)"""
|
||||
r"""setEndTime(StreamApplication self, Seiscomp::Core::Optional< Seiscomp::Core::Time > const & arg2)"""
|
||||
return _client.StreamApplication_setEndTime(self, arg2)
|
||||
|
||||
def setTimeWindow(self, arg2):
|
||||
@ -1785,6 +1633,10 @@ class StreamApplication(Application):
|
||||
r"""handleTimeout(StreamApplication self)"""
|
||||
return _client.StreamApplication_handleTimeout(self)
|
||||
|
||||
def handleSOH(self):
|
||||
r"""handleSOH(StreamApplication self)"""
|
||||
return _client.StreamApplication_handleSOH(self)
|
||||
|
||||
def handleClose(self):
|
||||
r"""handleClose(StreamApplication self) -> bool"""
|
||||
return _client.StreamApplication_handleClose(self)
|
||||
@ -1823,7 +1675,6 @@ class StreamApplication(Application):
|
||||
|
||||
# Register StreamApplication in _client:
|
||||
_client.StreamApplication_swigregister(StreamApplication)
|
||||
|
||||
class StationLocation(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::StationLocation class."""
|
||||
|
||||
@ -1843,7 +1694,6 @@ class StationLocation(object):
|
||||
|
||||
# Register StationLocation in _client:
|
||||
_client.StationLocation_swigregister(StationLocation)
|
||||
|
||||
class Inventory(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::Inventory class."""
|
||||
|
||||
@ -1929,15 +1779,6 @@ class Inventory(object):
|
||||
|
||||
# Register Inventory in _client:
|
||||
_client.Inventory_swigregister(Inventory)
|
||||
|
||||
def Inventory_Instance():
|
||||
r"""Inventory_Instance() -> Inventory"""
|
||||
return _client.Inventory_Instance()
|
||||
|
||||
def Inventory_Reset():
|
||||
r"""Inventory_Reset()"""
|
||||
return _client.Inventory_Reset()
|
||||
|
||||
class ConfigDB(object):
|
||||
r"""Proxy of C++ Seiscomp::Client::ConfigDB class."""
|
||||
|
||||
@ -1959,7 +1800,7 @@ class ConfigDB(object):
|
||||
|
||||
def load(self, *args):
|
||||
r"""
|
||||
load(ConfigDB self, DatabaseReader reader, Seiscomp::Core::Optional< std::string >::Impl const & moduleName=Unset, Seiscomp::Core::Optional< std::string >::Impl const & networkCode=Unset, Seiscomp::Core::Optional< std::string >::Impl const & stationCode=Unset, Seiscomp::Core::Optional< std::string >::Impl const & setupName=Unset, std::set< std::string,std::less< std::string >,std::allocator< std::string > > const & parameterNames=std::set< std::string >())
|
||||
load(ConfigDB self, DatabaseReader reader, Seiscomp::Core::Optional< std::string > const & moduleName=Unset, Seiscomp::Core::Optional< std::string > const & networkCode=Unset, Seiscomp::Core::Optional< std::string > const & stationCode=Unset, Seiscomp::Core::Optional< std::string > const & setupName=Unset, std::set< std::string,std::less< std::string >,std::allocator< std::string > > const & parameterNames=std::set< std::string >())
|
||||
load(ConfigDB self, char const * xml)
|
||||
"""
|
||||
return _client.ConfigDB_load(self, *args)
|
||||
@ -1972,13 +1813,3 @@ class ConfigDB(object):
|
||||
# Register ConfigDB in _client:
|
||||
_client.ConfigDB_swigregister(ConfigDB)
|
||||
|
||||
def ConfigDB_Instance():
|
||||
r"""ConfigDB_Instance() -> ConfigDB"""
|
||||
return _client.ConfigDB_Instance()
|
||||
|
||||
def ConfigDB_Reset():
|
||||
r"""ConfigDB_Reset()"""
|
||||
return _client.ConfigDB_Reset()
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user