vote up 4 vote down
star

I'm looking for a tool that will, in bulk, add a license header to some source files, some of which already have the header. Is there a tool out there that will insert a header, if it is not already present?

offensive?
add comment

5 Answers:

vote up 5 vote down
for i in *.cc # or whatever other pattern...
do
  if ! grep -q Copyright $i
  then
    cat copyright.txt $i >$i.new && mv $i.new $i
  fi
done
link|offensive?
comments (1)
vote up 1 vote down

Here's a Bash script that'll do the trick, assuming you have the license header in the file license.txt:

File addlicense.sh:


#!/bin/bash
for x in $*; do
  head -$LICENSELEN $x | diff license.txt - || ( ( cat license.txt; echo; cat $x) > /tmp/file; mv /tmp/file $x )
done

Now run this:


export LICENSELEN=`wc -l license.txt | sed 's/[^0-9]//g`
find dir -type f -name \( \*.cpp -o -type \*.h \) -print0 | xargs -0 ./addlicense.sh
link|offensive?
add comment
vote up 1 vote down

Python solution, modify for your own need

Features:

  • handles UTF headers (important for most IDEs)
  • recursively updates all files in target directory passing given mask (modify the .endswith parameter for the filemask of your language (.c, .java, ..etc)
  • ability to overwrite previous copyright text (provide old copyright parameter to do this)
  • optionally omits directories given in the excludedir array

-

# updates the copyright information for all .cs files
# usage: call recursive_traversal, with the following parameters
# parent directory, old copyright text content, new copyright text content

import os

excludedir = ["..\\Lib"]

def update_source(filename, oldcopyright, copyright):
    utfstr = chr(0xef)+chr(0xbb)+chr(0xbf)
    fdata = file(filename,"r+").read()
    isUTF = False
    if (fdata.startswith(utfstr)):
        isUTF = True
        fdata = fdata[3:]
    if (oldcopyright != None):
        if (fdata.startswith(oldcopyright)):
            fdata = fdata[len(oldcopyright):]
    if not (fdata.startswith(copyright)):
        print "updating "+filename
        fdata = copyright + fdata
        if (isUTF):
            file(filename,"w").write(utfstr+fdata)
        else:
            file(filename,"w").write(fdata)

def recursive_traversal(dir,  oldcopyright, copyright):
    global excludedir
    fns = os.listdir(dir)
    print "listing "+dir
    for fn in fns:
        fullfn = os.path.join(dir,fn)
        if (fullfn in excludedir):
            continue
        if (os.path.isdir(fullfn)):
            recursive_traversal(fullfn, oldcopyright, copyright)
        else:
            if (fullfn.endswith(".cs")):
                update_source(fullfn, oldcopyright, copyright)


oldcright = file("oldcr.txt","r+").read()
cright = file("copyrightText.txt","r+").read()
recursive_traversal("..", oldcright, cright)
exit()
link|offensive?
comments (1)
vote up 1 vote down

For Java, http://code.google.com/p/maven-license-plugin/

Kind Regards

link|offensive?
add comment
vote up 0 vote down

Here is one I used once (in ruby) which may help.

link|offensive?
add comment

Your Answer:


hide preview
Get an OpenID.
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.