blob: badef920440caac79e43b1c537f702e42248e9c4 [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001#!/usr/bin/env python
2#
3import sys, cpp, kernel, glob, os, re, getopt, clean_header
4from defaults import *
5from utils import *
6
7def usage():
8 print """\
David 'Digit' Turnerfc269312010-10-11 22:11:06 +02009 usage: %(progname)s [kernel-original-path]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080010
11 this program is used to update all the auto-generated clean headers
12 used by the Bionic C library. it assumes the following:
13
14 - a set of source kernel headers is located in '../original',
15 relative to the program's directory
16
17 - the clean headers will be placed in '../arch-<arch>/asm',
18 '../common/linux', '../common/asm-generic', etc..
19
20 - if ANDROID_PRODUCT_OUT is defined in your environment, you're
21 using the Android build system, and the program will issue
22 p4 add / edit / delete commands to update the depot for you.
23 (you'll need to p4 submit manually though)
24""" % { "progname" : os.path.basename(sys.argv[0]) }
25 sys.exit(0)
26
27try:
28 optlist, args = getopt.getopt( sys.argv[1:], '' )
29except:
30 # unrecognized option
31 sys.stderr.write( "error: unrecognized option\n" )
32 usage()
33
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020034if len(optlist) > 0 or len(args) > 1:
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080035 usage()
36
37progdir = find_program_dir()
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020038
39if len(args) == 1:
Glenn Kastenc61f9902011-12-19 11:27:50 -080040 original_dir = args[0]
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020041 if not os.path.isdir(original_dir):
Glenn Kastenc61f9902011-12-19 11:27:50 -080042 panic( "Not a directory: %s\n" % original_dir )
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020043else:
44 original_dir = kernel_original_path
45 if not os.path.isdir(original_dir):
Glenn Kastenc61f9902011-12-19 11:27:50 -080046 panic( "Missing directory, please specify one through command-line: %s\n" % original_dir )
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080047
48# find all source files in 'original'
49#
50sources = []
51for root, dirs, files in os.walk( original_dir ):
52 for file in files:
53 base, ext = os.path.splitext(file)
54 if ext == ".h":
55 sources.append( "%s/%s" % (root,file) )
56
57b = BatchFileUpdater()
58
59for arch in kernel_archs:
60 b.readDir( os.path.normpath( progdir + "/../arch-%s" % arch ) )
61
62b.readDir( os.path.normpath( progdir + "/../common" ) )
63
64#print "OLD " + repr(b.old_files)
65
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020066oldlen = 120
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080067for path in sources:
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020068 dst_path, newdata = clean_header.cleanupFile(path, original_dir)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080069 if not dst_path:
70 continue
71
72 b.readFile( dst_path )
73 r = b.editFile( dst_path, newdata )
74 if r == 0:
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020075 state = "unchanged"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080076 elif r == 1:
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020077 state = "edited"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080078 else:
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020079 state = "added"
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080080
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020081 str = "cleaning: %-*s -> %-*s (%s)" % ( 35, "<original>" + path[len(original_dir):], 35, dst_path, state )
82 if sys.stdout.isatty():
83 print "%-*s" % (oldlen,str),
84 if (r == 0):
85 print "\r",
86 else:
87 print "\n",
88 oldlen = 0
89 else:
90 print str
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080091
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020092 oldlen = len(str)
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080093
David 'Digit' Turnerfc269312010-10-11 22:11:06 +020094print "%-*s" % (oldlen,"Done!")
95
96b.updateGitFiles()
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080097
98sys.exit(0)