]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/workspace_tools/host_tests/host_registry.py
xt_usb: Fix XT soft reset
[max/tmk_keyboard.git] / tmk_core / tool / mbed / mbed-sdk / workspace_tools / host_tests / host_registry.py
1 """
2 mbed SDK
3 Copyright (c) 2011-2013 ARM Limited
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9     http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16 """
17
18 class HostRegistry:
19     """ Class stores registry with host tests and objects representing them
20     """ 
21     HOST_TESTS = {} # host_test_name -> host_test_ojbect
22
23     def register_host_test(self, ht_name, ht_object):
24         if ht_name not in self.HOST_TESTS:
25             self.HOST_TESTS[ht_name] = ht_object
26     
27     def unregister_host_test(self):
28         if ht_name in HOST_TESTS:
29             self.HOST_TESTS[ht_name] = None
30
31     def get_host_test(self, ht_name):
32         return self.HOST_TESTS[ht_name] if ht_name in self.HOST_TESTS else None
33
34     def is_host_test(self, ht_name):
35         return ht_name in self.HOST_TESTS
36