~ubuntu-branches/ubuntu/feisty/avr-libc/feisty

« back to all changes in this revision

Viewing changes to devtools/cr_check.py

  • Committer: Bazaar Package Importer
  • Author(s): Hakan Ardo
  • Date: 2006-11-15 21:12:47 UTC
  • mfrom: (3.1.2 feisty)
  • Revision ID: james.westby@ubuntu.com-20061115211247-b7qhgnb6o49v5zsg
Tags: 1:1.4.5-2
* Convertion to debheler fixed (closes: #398220)
* Reference to /usr/share/common-licenses in copyright file

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
#
 
3
# Copyright (c) 2004  Theodore A. Roth
 
4
# All rights reserved.
 
5
#
 
6
# Redistribution and use in source and binary forms, with or without
 
7
# modification, are permitted provided that the following conditions are met:
 
8
#
 
9
# * Redistributions of source code must retain the above copyright
 
10
#   notice, this list of conditions and the following disclaimer.
 
11
#
 
12
# * Redistributions in binary form must reproduce the above copyright
 
13
#   notice, this list of conditions and the following disclaimer in
 
14
#   the documentation and/or other materials provided with the
 
15
#   distribution.
 
16
#
 
17
# * Neither the name of the copyright holders nor the names of
 
18
#   contributors may be used to endorse or promote products derived
 
19
#   from this software without specific prior written permission.
 
20
#
 
21
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 
22
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 
23
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 
24
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 
25
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 
26
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 
27
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 
28
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 
29
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 
30
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 
31
# POSSIBILITY OF SUCH DAMAGE.
 
32
#
 
33
# $Id: cr_check.py,v 1.2 2004/11/02 16:01:29 troth Exp $
 
34
#
 
35
 
 
36
#
 
37
# Use this script from the toplevel of the avr-libc tree to find files with
 
38
# bogus carriage returns.
 
39
#
 
40
 
 
41
import os.path, fnmatch
 
42
 
 
43
def listFiles (root='.', match=['*'], ignore=[], recurse=1, return_folders=0):
 
44
    class Bunch:
 
45
        def __init__ (self, **kw):
 
46
            self.__dict__.update (kw)
 
47
 
 
48
    arg = Bunch (recurse=recurse, match_list=match, ignore_list=ignore,
 
49
                 return_folders=return_folders, results=[])
 
50
 
 
51
    def visit (arg, dirname, files):
 
52
        # Append to arg.results all relevant files (and perhaps folders)
 
53
        for name in files:
 
54
            fullname = os.path.normpath (os.path.join (dirname, name))
 
55
            if arg.return_folders or os.path.isfile (fullname):
 
56
                for match in arg.match_list:
 
57
                    if fnmatch.fnmatch (name, match):
 
58
                        add = 1
 
59
                        for ignore in arg.ignore_list:
 
60
                            if fnmatch.fnmatch (name, ignore):
 
61
                                add = 0
 
62
                        if add:
 
63
                            arg.results.append (fullname)
 
64
                            break
 
65
        # Block recursion if recursion was disallowed
 
66
        if not arg.recurse:
 
67
            files[:]=[]
 
68
 
 
69
    os.path.walk (root, visit, arg)
 
70
 
 
71
    return arg.results
 
72
 
 
73
def cr_check (file):
 
74
    ln = 1
 
75
    f = open (file).readlines ()
 
76
 
 
77
    for l in f:
 
78
        if '\r' in l:
 
79
            print '%s:%d: Found CR.' % (file, ln)
 
80
        ln += 1
 
81
 
 
82
def check_cvs_dir (entry):
 
83
    f = open (entry).readlines ()
 
84
 
 
85
    base_dir = os.path.dirname (os.path.dirname (entry))
 
86
 
 
87
    for l in f:
 
88
        if l[0] == 'D':
 
89
            continue
 
90
        else:
 
91
            file = l.split ('/')[1]
 
92
            if base_dir:
 
93
                file = base_dir+'/'+file
 
94
 
 
95
            cr_check (file)
 
96
 
 
97
if __name__ == '__main__':
 
98
    for file in listFiles (match=['*Entries*']):
 
99
        check_cvs_dir (file)