Base & Interfaces
biopro_sdk.plugin.base
Base plugin class for BioPro SDK.
Provides the main PluginBase class that all plugins should inherit from, with integrated state management and undo/redo support.
PluginBase
Bases: QWidget
Abstract base class for all BioPro plugins.
This class implements the BioProPlugin Protocol.
Source code in src/biopro_sdk/plugin/base.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 | |
history
property
writable
Lazy-loaded HistoryManager to avoid circular dependencies.
__getattr__(name)
Proxy signal access to self.signals for convenience.
Allows using self.state_changed.emit() instead of
self.signals.state_changed.emit().
Source code in src/biopro_sdk/plugin/base.py
__init__(plugin_id, parent=None)
Initialize the plugin.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
plugin_id
|
str
|
Unique identifier for this plugin |
required |
parent
|
Parent QWidget (usually None for top-level plugins) |
None
|
Source code in src/biopro_sdk/plugin/base.py
can_redo()
Check if redo is available.
Returns:
| Type | Description |
|---|---|
bool
|
True if there are states to redo to |
can_undo()
Check if undo is available.
Returns:
| Type | Description |
|---|---|
bool
|
True if there are states to undo to |
cleanup()
Automatic Resource Cleansing.
Uses ResourceInspector to break references to heavy objects in both the plugin instance and its state. This helps the GC reclaim memory immediately when a tab is closed.
Source code in src/biopro_sdk/plugin/base.py
closeEvent(event)
get_panel_class()
classmethod
get_state()
abstractmethod
Return the current analysis state.
Must be implemented by subclasses. Called by BioPro core to capture plugin state for undo/redo and workflow persistence.
Returns:
| Type | Description |
|---|---|
PluginState
|
Current PluginState instance |
Source code in src/biopro_sdk/plugin/base.py
publish_event(topic, data=None)
push_state()
Save current state to undo history.
Call this whenever the user makes a destructive edit (e.g., changing a parameter, drawing on an image). BioPro will emit state_changed signal and automatically capture this state for undo/redo.
Source code in src/biopro_sdk/plugin/base.py
redo()
Redo to next state.
Source code in src/biopro_sdk/plugin/base.py
set_state(state)
abstractmethod
Set the plugin state and update UI accordingly.
Must be implemented by subclasses. Called by BioPro core to restore plugin state during undo/redo and workflow loading.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
PluginState
|
PluginState instance to restore |
required |
Source code in src/biopro_sdk/plugin/base.py
shutdown()
subscribe_event(topic, callback)
undo()
Undo to previous state.
Source code in src/biopro_sdk/plugin/base.py
biopro_sdk.plugin.interfaces
BioPro Plugin Interfaces.
Defines the formal structural requirements for BioPro analysis modules using PEP 544 Protocols.
BioProPlugin
Bases: Protocol
Structural protocol for a valid BioPro Plugin module.
Any Python module or class that implements this protocol can be loaded as a BioPro plugin.
Source code in src/biopro_sdk/plugin/interfaces.py
__plugin_id__
property
The unique identifier for the plugin (matches manifest.json id).
__version__
property
The version string of the plugin (e.g. '1.2.3').
cleanup()
Release instance-specific resources (e.g. caches, local memory).
Called when a specific instance of the plugin panel is closed.
get_panel_class()
shutdown()
Release global/module resources (e.g. GPU models, open files).
Called when the application exists or the module is unloaded.