File: fixheader.py

package info (click to toggle)
python 1.5.2-10potato11
  • links: PTS
  • area: main
  • in suites: potato
  • size: 13,340 kB
  • ctags: 36,680
  • sloc: ansic: 97,117; python: 88,266; makefile: 2,518; lisp: 2,363; sh: 882
file content (49 lines) | stat: -rwxr-xr-x 996 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#! /usr/bin/env python

# Add some standard cpp magic to a header file

import sys
import string

def main():
	args = sys.argv[1:]
	for file in args:
		process(file)

def process(file):
	try:
		f = open(file, 'r')
	except IOError, msg:
		sys.stderr.write('%s: can\'t open: %s\n' % (file, str(msg)))
		return
	data = f.read()
	f.close()
	if data[:2] <> '/*':
		sys.stderr.write('%s does not begin with C comment\n' % file)
		return
	try:
		f = open(file, 'w')
	except IOError, msg:
		sys.stderr.write('%s: can\'t write: %s\n' % (file, str(msg)))
		return
	sys.stderr.write('Processing %s ...\n' % file)
	magic = 'Py_'
	for c in file:
		if c in string.letters + string.digits:
			magic = magic + string.upper(c)
		else: magic = magic + '_'
	sys.stdout = f
	print '#ifndef', magic
	print '#define', magic
	print '#ifdef __cplusplus'
	print 'extern "C" {'
	print '#endif'
	print
	f.write(data)
	print
	print '#ifdef __cplusplus'
	print '}'
	print '#endif'
	print '#endif /*', '!'+magic, '*/'

main()