Tool for adding license headers to source files? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T18:33:45Zhttp://stackoverflow.com/feeds/question/151677http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files7Tool for adding license headers to source files?Alex Lyman2008-09-30T03:37:12Z2009-03-20T20:03:27Z
<p>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?</p>
<p><em>Edit: I am intentionally not marking an answer to this question, since answers are basically all environment-specific and subjective</em> </p>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/151684#1516842Answer by Silver Dragon for Tool for adding license headers to source files?Silver Dragon2008-09-30T03:44:46Z2008-09-30T04:06:08Z<p>Python solution, modify for your own need</p>
<p>Features:</p>
<ul>
<li>handles UTF headers (important for most IDEs)</li>
<li>recursively updates all files in target directory passing given mask (modify the .endswith parameter for the filemask of your language (.c, .java, ..etc)</li>
<li>ability to overwrite previous copyright text (provide old copyright parameter to do this)</li>
<li>optionally omits directories given in the excludedir array</li>
</ul>
<p>-</p>
<pre><code># 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()
</code></pre>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/151690#1516908Answer by Tim for Tool for adding license headers to source files?Tim2008-09-30T03:48:48Z2008-09-30T03:48:48Z<pre><code>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
</code></pre>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/151699#1516992Answer by Adam Rosenfield for Tool for adding license headers to source files?Adam Rosenfield2008-09-30T03:56:06Z2008-09-30T03:56:06Z<p>Here's a Bash script that'll do the trick, assuming you have the license header in the file license.txt:</p>
<p>File addlicense.sh:</p>
<pre><code>
#!/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
</code></pre>
<p>Now run this:</p>
<pre><code>
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
</code></pre>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/151705#1517050Answer by Michael Neale for Tool for adding license headers to source files?Michael Neale2008-09-30T04:00:22Z2008-09-30T04:00:22Z<p><a href="http://anonsvn.jboss.org/repos/labs/labs/jbossrules/trunk/lib/utility-scripts/copyright-headers/copy_wrong.rb" rel="nofollow">Here</a> is one I used once (in ruby) which may help.</p>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/155953#1559531Answer by marcospereira for Tool for adding license headers to source files?marcospereira2008-10-01T02:07:49Z2008-10-01T02:07:49Z<p>For Java, <a href="http://code.google.com/p/maven-license-plugin/" rel="nofollow">http://code.google.com/p/maven-license-plugin/</a></p>
<p>Kind Regards</p>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/498711#4987111Answer by Richard for Tool for adding license headers to source files?Richard2009-01-31T11:59:25Z2009-01-31T11:59:25Z<p><a href="http://www.mail-archive.com/community@apache.org/msg04322.html" rel="nofollow">Here's one</a> 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. :)</p>
http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/667750#6677501Answer by Jan Langenberg for Tool for adding license headers to source files?Jan Langenberg2009-03-20T20:03:27Z2009-03-20T20:03:27Z<p>If you still need one, there is a little tool I have written, named <strong>SrcHead</strong>. You can find it at <a href="http://www.solvasoft.nl/downloads.html" rel="nofollow">http://www.solvasoft.nl/downloads.html</a></p>