@abc.abstractmethod
def add_context(self, context_type):
# type: (ContextType) -> None
- pass
+ raise NotImplementedError
@property
@abc.abstractmethod
def domain(self):
# type: () -> TracingDomain
- pass
+ raise NotImplementedError
@property
@abc.abstractmethod
def name(self):
# type: () -> str
- pass
+ raise NotImplementedError
@abc.abstractmethod
def add_recording_rule(self, rule) -> None:
# type: (Type[EventRule]) -> None
- pass
+ raise NotImplementedError
class SessionOutputLocation(abc.ABC):
@abc.abstractmethod
def track(self, pid):
# type: (int) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, pid):
# type: (int) -> None
- pass
+ raise NotImplementedError
class VirtualProcessIDProcessAttributeTracker(ProcessAttributeTracker):
@abc.abstractmethod
def track(self, vpid):
# type: (int) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, vpid):
# type: (int) -> None
- pass
+ raise NotImplementedError
class UserIDProcessAttributeTracker(ProcessAttributeTracker):
@abc.abstractmethod
def track(self, uid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, uid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
class VirtualUserIDProcessAttributeTracker(ProcessAttributeTracker):
@abc.abstractmethod
def track(self, vuid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, vuid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
class GroupIDProcessAttributeTracker(ProcessAttributeTracker):
@abc.abstractmethod
def track(self, gid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, gid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
class VirtualGroupIDProcessAttributeTracker(ProcessAttributeTracker):
@abc.abstractmethod
def track(self, vgid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def untrack(self, vgid):
# type: (Union[int, str]) -> None
- pass
+ raise NotImplementedError
class Session(abc.ABC):
@abc.abstractmethod
def name(self):
# type: () -> str
- pass
+ raise NotImplementedError
@property
@abc.abstractmethod
def output(self):
# type: () -> Optional[Type[SessionOutputLocation]]
- pass
+ raise NotImplementedError
@abc.abstractmethod
def add_channel(
):
# type: (TracingDomain, Optional[str], BufferSharingPolicy) -> Channel
"""Add a channel with default attributes to the session."""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def start(self):
# type: () -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def stop(self):
# type: () -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def destroy(self):
# type: () -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def is_active(self):
# type: () -> bool
- pass
+ raise NotImplementedError
@abc.abstractmethod
def rotate(self):
Create a session with an output. Don't specify an output
to create a session without an output.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def start_session_by_name(self, name):
"""
Start a session by name.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def start_session_by_glob_pattern(self, pattern):
"""
Start sessions whose name matches `pattern`, see GLOB(7).
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def start_sessions_all(self):
Start all sessions visible to the current user.
"""
# type: () -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def stop_session_by_name(self, name):
"""
Stop a session by name.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def stop_session_by_glob_pattern(self, pattern):
"""
Stop sessions whose name matches `pattern`, see GLOB(7).
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def stop_sessions_all(self):
Stop all sessions visible to the current user.
"""
# type: () -> None
- pass
+ raise NotImplementedError
@abc.abstractmethod
def destroy_session_by_name(self, name):
"""
Destroy a session by name.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def destroy_session_by_glob_pattern(self, pattern):
"""
Destroy sessions whose name matches `pattern`, see GLOB(7).
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def destroy_sessions_all(self):
"""
Destroy all sessions visible to the current user.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def list_sessions(self):
"""
List all sessions visible to the current user.
"""
- pass
+ raise NotImplementedError
@abc.abstractmethod
def rotate_session_by_name(self, name, wait=True):