2015-03-10 13:09:31 +00:00
|
|
|
#!/usr/bin/env python
|
2019-06-04 13:40:29 +01:00
|
|
|
# Copyright 2015-2019 ARM Limited
|
2015-03-10 13:09:31 +00:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import string
|
|
|
|
from copy import copy
|
|
|
|
|
2018-05-30 11:22:14 +01:00
|
|
|
from wa.framework.instrument import SIGNAL_MAP
|
|
|
|
from wa.framework.signal import CallbackPriority
|
2018-01-19 10:49:56 +00:00
|
|
|
from wa.utils.doc import format_simple_table
|
2015-03-10 13:09:31 +00:00
|
|
|
|
2018-04-27 10:57:49 +01:00
|
|
|
OUTPUT_TEMPLATE_FILE = os.path.join(os.path.dirname(__file__), 'source', 'instrument_method_map.template')
|
2015-03-10 13:09:31 +00:00
|
|
|
|
|
|
|
|
2018-04-27 10:57:49 +01:00
|
|
|
def generate_instrument_method_map(outfile):
|
2019-06-04 13:40:29 +01:00
|
|
|
signal_table = format_simple_table([(k, v) for k, v in SIGNAL_MAP.items()],
|
2015-03-10 13:09:31 +00:00
|
|
|
headers=['method name', 'signal'], align='<<')
|
2020-06-30 11:14:10 +01:00
|
|
|
decorator_names = map(lambda x: x.replace('high', 'fast').replace('low', 'slow'), CallbackPriority.names)
|
|
|
|
priority_table = format_simple_table(zip(decorator_names, CallbackPriority.names, CallbackPriority.values),
|
|
|
|
headers=['decorator', 'CallbackPriority name', 'CallbackPriority value'], align='<>')
|
2015-03-10 13:09:31 +00:00
|
|
|
with open(OUTPUT_TEMPLATE_FILE) as fh:
|
|
|
|
template = string.Template(fh.read())
|
|
|
|
with open(outfile, 'w') as wfh:
|
|
|
|
wfh.write(template.substitute(signal_names=signal_table, priority_prefixes=priority_table))
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-06-04 14:15:43 +01:00
|
|
|
generate_instrument_method_map(sys.argv[1])
|