Salome HOME
Revert "Synchronize adm files"
[modules/kernel.git] / src / KERNEL_PY / kernel / syshelper.py
1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License, or (at your option) any later version.
11 #
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 # Lesser General Public License for more details.
16 #
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20 #
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23
24 __author__="gboulant"
25 __date__ ="$21 mai 2010 18:00:23$"
26
27
28 def findFiles(rootpath, excludes=[]):
29     """
30     This looks after files recursively from the specified rootpath,
31     but without visiting directories whose basename is in the list
32     @param excludes.
33     """
34     if not os.path.exists(rootpath):
35         raise RuntimeError("the path %s does not exists"%rootpath)
36
37     exclude_options=""
38     for excludepath in excludes:
39         exclude_options+="-e %s "%excludepath
40
41     listfiles=[]        
42     stream=os.popen("find %s -type f | grep -v -e '\.svn' %s 2>/dev/null"%(rootpath,exclude_options))
43     for line in stream.readlines():
44         listfiles.append(line.split('\n')[0])
45         
46     return listfiles
47
48 import sys
49 from stat import ST_MODE, S_ISDIR, S_ISREG
50 def walktree(rootpath, callback, **kwargs):
51     '''
52     This recursively descends the directory tree rooted at rootpath,
53     calling the callback function for each regular file
54     '''
55     for f in os.listdir(rootpath):
56         pathname = os.path.join(rootpath, f)
57         try:
58             mode = os.stat(pathname)[ST_MODE]
59         except OSError, e:
60             # It probably means that the file is a broken inode
61             mode = -1
62         if S_ISDIR(mode):
63             # It's a directory, recurse into it
64             walktree(pathname, callback, **kwargs)
65         elif S_ISREG(mode):
66             # It's a file, call the callback function
67             callback(pathname, **kwargs)
68         else:
69             # Unknown file type, print a message
70             print 'Skipping %s' % pathname
71
72
73 #
74 # =============================================================
75 # Use cases and unit test functions
76 # =============================================================
77 #
78 import os
79 try:
80     TESTDOCDIR=os.path.join(os.environ["KERNEL_ROOT_DIR"],"share")
81 except KeyError:
82     TESTDOCDIR="/tmp"
83     
84 def TEST_findFiles():
85     print "########## find 1"
86     rootpath=TESTDOCDIR
87     listfiles=findFiles(rootpath)
88     for filename in listfiles:
89         print filename
90
91     print "########## find 2"
92     excludes=[os.path.join(TESTDOCDIR,"doc")]
93     listfiles=findFiles(rootpath,excludes)
94     for filename in listfiles:
95         print filename
96
97     return True
98
99 # This is the test callback function
100 def visitfile_withargs(file, rootid):
101     print 'visiting file %s (rootid=%s)'%(file,str(rootid))
102
103 def visitfile_withoutargs(file):
104     print 'visiting file %s'%(file)
105
106 def TEST_walktree():
107     #walktree(TESTDOCDIR, visitfile_withargs, rootid=2)
108     walktree(TESTDOCDIR, visitfile_withoutargs)
109     return True
110
111 if __name__ == "__main__":
112     import unittester
113     unittester.run("syshelper", "TEST_findFiles")
114     unittester.run("syshelper", "TEST_walktree")