xref: /aosp_15_r20/system/media/camera/docs/CameraCharacteristicsKeys.mako (revision b9df5ad1c9ac98a7fefaac271a55f7ae3db05414)
1## -*- coding: utf-8 -*-
2##
3## Copyright (C) 2013 The Android Open Source Project
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<%include file="CameraMetadataKeys.mako" args="java_class='CameraCharacteristics', xml_kind='static'" />
18    /**
19     * Mapping from INFO_SESSION_CONFIGURATION_QUERY_VERSION to session characteristics key.
20     */
21    private static final Map<Integer, Key<?>[]> AVAILABLE_SESSION_CHARACTERISTICS_KEYS_MAP =
22            Map.ofEntries(
23<% api_level_to_session_characteristic_keys = get_api_level_to_session_characteristic_keys(find_all_sections(metadata)) %>\
24            %for idx, items in enumerate(api_level_to_session_characteristic_keys.items()):
25<% api_level, keys = items %>\
26                Map.entry(
27                    ${api_level},
28                    new Key<?>[] {
29                    %for key in keys:
30                        ${key | jkey_identifier},
31                    %endfor
32                    }
33                )${',' if idx + 1 < len(api_level_to_session_characteristic_keys) else ''}
34            %endfor
35            );
36
37    /*~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~
38     * End generated code
39     *~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~O@*/
40