-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy path__init__.py
More file actions
44 lines (34 loc) · 1.17 KB
/
__init__.py
File metadata and controls
44 lines (34 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0.
from weakref import WeakSet
__all__ = [
'aio',
'auth',
'crypto',
'http',
'io',
'logging',
'mqtt',
'mqtt5',
'mqtt_request_response',
's3',
'websocket',
'aws_iot_metrics',
]
__version__ = '1.0.0.dev0'
class NativeResource:
"""
Base for classes that bind to a native type.
_binding is a python capsule referencing the native object.
Note to developers: If NativeResource B depends on the existence of NativeResource A,
have B's native code Py_INCREF/DECREF A's python class. This ensures that A will not be destroyed before B.
If we simply had python class B referencing A, and the GC decided to clean up both, it might destroy A before B.
"""
# For tracking live NativeResources in tests/debug.
# Note that WeakSet can accurately report if 0 objects exist, but iteration isn't 100% thread-safe.
_track_lifetime = False
_living = WeakSet()
__slots__ = ('_binding', '__weakref__')
def __init__(self):
if NativeResource._track_lifetime:
NativeResource._living.add(self)