GenerateFrameLists.py (1645B)
1 # This Source Code Form is subject to the terms of the Mozilla Public 2 # License, v. 2.0. If a copy of the MPL was not distributed with this 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 4 5 from FrameClasses import FRAME_CLASSES 6 7 HEADER = "// THIS IS AUTOGENERATED BY GenerateFrameLists.py. DO NOT EDIT\n" 8 9 10 # Returns a list of list of FrameClass objects. The outermost list groups 11 # the FrameClasses by their frame type, and is sorted from the largest group 12 # to the smallest, and otherwise sorted by the frame type or class name. 13 def grouped_frame_classes(): 14 groups = dict() 15 for frame in FRAME_CLASSES: 16 if frame.is_concrete: 17 groups.setdefault(frame.ty, []).append(frame) 18 groups = groups.values() 19 return sorted(groups, key=lambda x: (-len(x), x[0].ty if len(x) > 1 else x[0].cls)) 20 21 22 def generate_frame_id_list_h(output, *ignore): 23 groups = grouped_frame_classes() 24 output.write(HEADER) 25 for group in groups: 26 for frame in group: 27 output.write( 28 "FRAME_ID(%s, %s, %s)\n" 29 % ( 30 frame.cls, 31 frame.ty, 32 "|".join("ClassFlags::%s" % flag for flag in sorted(frame.flags)), 33 ) 34 ) 35 for frame in FRAME_CLASSES: 36 if not frame.is_concrete: 37 output.write("ABSTRACT_FRAME_ID(%s)\n" % frame.cls) 38 39 40 def generate_frame_type_list_h(output, *ignore): 41 groups = grouped_frame_classes() 42 output.write(HEADER) 43 for group in groups: 44 output.write( 45 "FRAME_TYPE(%s, %s, %s)\n" % (group[0].ty, group[0].cls, group[-1].cls) 46 )