blob: 46de3039dfe1e41f499360b0af352bcdba26e976 [file] [log] [blame]
fbrosson533407a2018-04-04 21:44:29 +00001#!/usr/bin/env perl
Bence Szépkúti700ee442020-05-26 00:33:31 +02002#
3# Copyright (C) 2015-2019, Arm Limited, All Rights Reserved
Bence Szépkútic7da1fe2020-05-26 01:54:15 +02004# SPDX-License-Identifier: Apache-2.0
5#
6# Licensed under the Apache License, Version 2.0 (the "License"); you may
7# not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
Bence Szépkúti700ee442020-05-26 00:33:31 +020017#
18# This file is part of Mbed TLS (https://tls.mbed.org)
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +010019
20use warnings;
21use strict;
22
23use utf8;
24use open qw(:std utf8);
25
Manuel Pégourié-Gonnardd1ddd292015-04-09 10:15:10 +020026-d 'include/mbedtls' or die "$0: must be run from root\n";
27
Manuel Pégourié-Gonnarde137ea62015-04-09 10:47:44 +020028@ARGV = grep { ! /compat-1\.3\.h/ } <include/mbedtls/*.h>;
Christoph M. Wintersteiger8a0f5bb2018-12-14 15:46:34 +000029push @ARGV, "3rdparty/everest/include/everest/everest.h";
30push @ARGV, "3rdparty/everest/include/everest/x25519.h";
31
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +010032
33my @consts;
34my $state = 'out';
35while (<>)
36{
Manuel Pégourié-Gonnardae738c22015-07-01 19:32:00 +020037 if( $state eq 'out' and /^(typedef )?enum \{/ ) {
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +010038 $state = 'in';
39 } elsif( $state eq 'out' and /^(typedef )?enum/ ) {
40 $state = 'start';
41 } elsif( $state eq 'start' and /{/ ) {
42 $state = 'in';
43 } elsif( $state eq 'in' and /}/ ) {
44 $state = 'out';
Christoph M. Wintersteiger7cc4c682018-12-14 13:18:52 +000045 } elsif( $state eq 'in' and not /^#/) {
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +010046 s/=.*//; s!/\*.*!!; s/,.*//; s/\s+//g; chomp;
47 push @consts, $_ if $_;
48 }
49}
50
51open my $fh, '>', 'enum-consts' or die;
52print $fh "$_\n" for sort @consts;
53close $fh or die;
54
55printf "%8d enum-consts\n", scalar @consts;