Imported Upstream version 2.6.7
[platform/upstream/harfbuzz.git] / src / check-header-guards.py
1 #!/usr/bin/env python3
2
3 import sys, os, re
4
5 os.chdir (os.environ.get ('srcdir', os.path.dirname (__file__)))
6
7 HBHEADERS = os.environ.get ('HBHEADERS', '').split () or \
8         [x for x in os.listdir ('.') if x.startswith ('hb') and x.endswith ('.h')]
9 HBSOURCES = os.environ.get ('HBSOURCES', '').split () or \
10         [x for x in os.listdir ('.') if x.startswith ('hb') and x.endswith (('.cc', '.hh'))]
11
12 stat = 0
13
14 for x in HBHEADERS + HBSOURCES:
15         if not x.endswith ('h') or x == 'hb-gobject-structs.h': continue
16         tag = x.upper ().replace ('.', '_').replace ('-', '_')
17         with open (x, 'r', encoding='utf-8') as f: content = f.read ()
18         if len (re.findall (tag + r'\b', content)) != 3:
19                 print ('Ouch, header file %s does not have correct preprocessor guards' % x)
20                 stat = 1
21
22 sys.exit (stat)