Remove `skip-string-normalization` in Python formatter config
[babeltrace.git] / src / bindings / python / bt2 / bt2 / py_plugin.py
CommitLineData
0235b0db 1# SPDX-License-Identifier: MIT
55bb57e0
PP
2#
3# Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
55bb57e0
PP
4
5from bt2 import utils
3fb99a22 6from bt2 import component as bt2_component
9105c467
PP
7import sys
8
9
10# Python plugin path to `_PluginInfo` (cache)
11_plugin_infos = {}
55bb57e0
PP
12
13
14def plugin_component_class(component_class):
3fb99a22 15 if not issubclass(component_class, bt2_component._UserComponent):
f5567ea8 16 raise TypeError("component class is not a subclass of a user component class")
55bb57e0
PP
17
18 component_class._bt_plugin_component_class = None
19 return component_class
20
21
cfbd7cf3
FD
22def register_plugin(
23 module_name, name, description=None, author=None, license=None, version=None
24):
55bb57e0 25 if module_name not in sys.modules:
cfbd7cf3
FD
26 raise RuntimeError(
27 "cannot find module '{}' in loaded modules".format(module_name)
28 )
55bb57e0
PP
29
30 utils._check_str(name)
31
32 if description is not None:
33 utils._check_str(description)
34
35 if author is not None:
36 utils._check_str(author)
37
38 if license is not None:
39 utils._check_str(license)
40
41 if version is not None:
42 if not _validate_version(version):
cfbd7cf3 43 raise ValueError(
f5567ea8 44 "wrong version: expecting a tuple: (major, minor, patch) or (major, minor, patch, extra)"
cfbd7cf3 45 )
55bb57e0 46
cfbd7cf3
FD
47 sys.modules[module_name]._bt_plugin_info = _PluginInfo(
48 name, description, author, license, version
49 )
55bb57e0
PP
50
51
52def _validate_version(version):
53 if version is None:
54 return True
55
56 if not isinstance(version, tuple):
57 return False
58
59 if len(version) < 3 or len(version) > 4:
60 return False
61
62 if not isinstance(version[0], int):
63 return False
64
65 if not isinstance(version[1], int):
66 return False
67
68 if not isinstance(version[2], int):
69 return False
70
71 if len(version) == 4:
72 if not isinstance(version[3], str):
73 return False
74
75 return True
76
77
78class _PluginInfo:
79 def __init__(self, name, description, author, license, version):
80 self.name = name
81 self.description = description
82 self.author = author
83 self.license = license
84 self.version = version
85 self.comp_class_addrs = None
86
87
88# called by the BT plugin system
89def _try_load_plugin_module(path):
9105c467
PP
90 if path in _plugin_infos:
91 # do not load module and create plugin info twice for this path
92 return _plugin_infos[path]
93
55bb57e0
PP
94 import importlib.machinery
95 import inspect
96 import hashlib
97
98 if path is None:
f5567ea8 99 raise TypeError("missing path")
55bb57e0
PP
100
101 # In order to load the module uniquely from its path, even from
102 # different files which have the same basename, we hash the path
103 # and prefix with `bt_plugin_`. This is its key in sys.modules.
104 h = hashlib.sha256()
105 h.update(path.encode())
f5567ea8 106 module_name = "bt_plugin_{}".format(h.hexdigest())
9105c467 107 assert module_name not in sys.modules
55bb57e0
PP
108 # try loading the module: any raised exception is catched by the caller
109 mod = importlib.machinery.SourceFileLoader(module_name, path).load_module()
110
111 # we have the module: look for its plugin info first
f5567ea8 112 if not hasattr(mod, "_bt_plugin_info"):
55bb57e0
PP
113 raise RuntimeError("missing '_bt_plugin_info' module attribute")
114
115 plugin_info = mod._bt_plugin_info
116
117 # search for user component classes
118 def is_user_comp_class(obj):
119 if not inspect.isclass(obj):
120 return False
121
f5567ea8 122 if not hasattr(obj, "_bt_plugin_component_class"):
55bb57e0
PP
123 return False
124
125 return True
126
127 comp_class_entries = inspect.getmembers(mod, is_user_comp_class)
128 plugin_info.comp_class_addrs = [entry[1].addr for entry in comp_class_entries]
9105c467 129 _plugin_infos[path] = plugin_info
55bb57e0 130 return plugin_info
This page took 0.076792 seconds and 4 git commands to generate.