|
1234567891011121314151617181920212223 |
- # MegEngine is Licensed under the Apache License, Version 2.0 (the "License")
- #
- # Copyright (c) 2014-2021 Megvii Inc. All rights reserved.
- #
- # Unless required by applicable law or agreed to in writing,
- # software distributed under the License is distributed on an
- # "AS IS" BASIS, WITHOUT ARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- import weakref
-
-
- class HookHandler:
- hook_num = 0
-
- def __init__(self, source_dict, hook):
- self.id = HookHandler.hook_num
- HookHandler.hook_num += 1
- source_dict[self.id] = hook
- self.source_ref = weakref.ref(source_dict)
-
- def remove(self):
- source_dict = self.source_ref()
- if source_dict is not None and self.id in source_dict:
- del source_dict[self.id]
|