up vote 22 down vote favorite
7
share [g+] share [fb]

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?

Edit: I am intentionally not marking an answer to this question, since answers are basically all environment-specific and subjective

link|improve this question

70% accept rate
"I am intentionally not marking an answer to this question, since answers are basically all environment-specific and subjective" Are you looking for an environment agnostic solution, such as pseudo code? If not, please let us know what environment you're working with. – jrummell Mar 20 '09 at 20:41
jrummell: No, not looking for a environment-agnostic solution. Was looking for things that a multiple-environment team I was on could use. – Alex Lyman Mar 21 '09 at 5:26
would a windows UI app that let you do this, be an acceptable answer? – boomhauer Sep 2 '11 at 18:12
@boomhauer I am looking for a windows UI app. Do you know of any? – Jus12 Oct 26 '11 at 19:30
I added a new answer below, it should do just this. – boomhauer Oct 30 '11 at 3:32
show 1 more comment
feedback

8 Answers

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|improve this answer
for i in "$@" is a pretty good choice. You can also get inventive with checkouts if your VCS system needs those. – Jonathan Leffler Sep 30 '08 at 3:57
feedback

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|improve this answer
The sed expression won't work well if the filename contains digits. Instead, consider using cut -f1 -d ' ' – schweerelos Apr 26 '11 at 3:14
@Rosenfield The closing single quote is missed in export statement. – Talespin_Kit Sep 19 '11 at 9:02
feedback

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|improve this answer
2  
Probably wouldn't hurt to mention your script is in python. – Dana Sep 30 '08 at 3:46
feedback

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

Kind Regards

link|improve this answer
feedback

If you still need one, there is a little tool I have written, named SrcHead. You can find it at http://www.solvasoft.nl/downloads.html

link|improve this answer
feedback

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

link|improve this answer
feedback

Here's one I found on the Apache list. Its written in Ruby and seems easy enough to read. You should even be able to call it from rake for extra special niceness. :)

link|improve this answer
feedback

Ok here is a simple windows-only UI tool that searches for all files of your specified type in a folder, prepends the text you desire to the top (your license text), and copies the result to another directory (avoiding potential overwrite problems). It's also free. Required .Net 4.0.

I am actually the author, so feel free to request fixes or new features... no promises on delivery schedule though. ;)

more info: License Header tool at Amazify.com

link|improve this answer
also, i'd appreciate any feedback on this, thanks – boomhauer Nov 9 '11 at 0:16
feedback

Your Answer

 
or
required, but never shown

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