-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Context managers #566
Context managers #566
Conversation
Reviewer's Guide by SourceryThis pull request implements context managers for the Server, Session, Window, and Pane objects in libtmux. This allows these objects to be used in 'with' statements, ensuring that they are automatically killed when the context is exited. Tests have been added to verify this functionality. Updated class diagram for PaneclassDiagram
class Pane {
-pane_id: str | None
-window: Window
-server: Server
+__enter__(): Self
+__exit__(exc_type: type[BaseException] | None, exc_value: BaseException | None, exc_tb: types.TracebackType | None): None
+refresh(): None
}
Updated class diagram for WindowclassDiagram
class Window {
-window_id: str | None
-session: Session
-server: Server
+__enter__(): Self
+__exit__(exc_type: type[BaseException] | None, exc_value: BaseException | None, exc_tb: types.TracebackType | None): None
+refresh(): None
}
Updated class diagram for ServerclassDiagram
class Server {
+__enter__(): Self
+__exit__(exc_type: type[BaseException] | None, exc_value: BaseException | None, exc_tb: types.TracebackType | None): None
+is_alive(): bool
}
Updated class diagram for SessionclassDiagram
class Session {
-session_id: str | None
-server: Server
+__enter__(): Self
+__exit__(exc_type: type[BaseException] | None, exc_value: BaseException | None, exc_tb: types.TracebackType | None): None
+refresh(): None
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #566 +/- ##
==========================================
+ Coverage 88.77% 88.84% +0.07%
==========================================
Files 36 36
Lines 4027 4080 +53
Branches 372 376 +4
==========================================
+ Hits 3575 3625 +50
Misses 310 310
- Partials 142 145 +3 ☔ View full report in Codecov by Sentry. |
b6ed7e4
to
87a392a
Compare
2576bb3
to
f79993a
Compare
14c079f
to
3f1fe07
Compare
3f1fe07
to
c741065
Compare
25a7ada
to
92660e4
Compare
Changes
Added context manager support for all main tmux objects:
Server
: Automatically kills the server when exiting the contextSession
: Automatically kills the session when exiting the contextWindow
: Automatically kills the window when exiting the contextPane
: Automatically kills the pane when exiting the contextExample usage:
This makes it easier to write clean, safe code that properly cleans up tmux resources.
Summary by Sourcery
Add context managers for Server, Session, Window, and Pane objects to automatically kill them when exiting a
with
block.New Features:
Server
,Session
,Window
, andPane
objects. This allows for automatic cleanup of these objects when exiting awith
block. For example, a pane created within awith
block will be automatically killed when the block is exited, even if an exception occurs within the block. This simplifies resource management and prevents resource leaks in scripts and applications using libtmux. The context managers return the object itself, allowing for convenient usage within thewith
block. For instance,with window.split() as pane:
creates a new pane and assigns it to the variablepane
for use within the block, and then kills the pane upon exiting the block.Tests:
Server
,Session
,Window
, andPane
objects. These tests verify that the objects are correctly cleaned up when exiting thewith
block, both under normal conditions and when exceptions are raised within the block. The tests cover scenarios where the objects are created within thewith
block and where they are created outside the block and then entered. They also check that the objects are not killed if they are already closed before exiting the block.