~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/_readdir_py.py

  • Committer: Vincent Ladeuil
  • Date: 2008-09-11 19:36:38 UTC
  • mfrom: (3703 +trunk)
  • mto: (3705.1.1 trunk2)
  • mto: This revision was merged to the branch mainline in revision 3708.
  • Revision ID: v.ladeuil+lp@free.fr-20080911193638-wtjyc1kcmacc6t1f
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Python implementation of readdir interface."""
18
18
 
19
19
 
20
 
import stat
21
 
 
22
 
 
23
 
_directory = 'directory'
24
 
_chardev = 'chardev'
25
 
_block = 'block'
26
 
_file = 'file'
27
 
_fifo = 'fifo'
28
 
_symlink = 'symlink'
29
 
_socket = 'socket'
30
 
_unknown = 'unknown'
31
 
 
32
 
_formats = {
33
 
    stat.S_IFDIR:'directory',
34
 
    stat.S_IFCHR:'chardev',
35
 
    stat.S_IFBLK:'block',
36
 
    stat.S_IFREG:'file',
37
 
    stat.S_IFIFO:'fifo',
38
 
    stat.S_IFLNK:'symlink',
39
 
    stat.S_IFSOCK:'socket',
40
 
}
41
 
 
42
 
 
43
 
def _kind_from_mode(stat_mode, _formats=_formats, _unknown='unknown'):
44
 
    """Generate a file kind from a stat mode. This is used in walkdirs.
45
 
 
46
 
    It's performance is critical: Do not mutate without careful benchmarking.
 
20
import os
 
21
 
 
22
 
 
23
def read_dir(path):
 
24
    """Like os.listdir, this reads the contents of a directory.
 
25
 
 
26
    There is a C module which is recommended which will return
 
27
    a sort key in the first element of the tuple to allow slightly
 
28
    more efficient behaviour on the operating systems part.
 
29
 
 
30
    :param path: the directory to list.
 
31
    :return: a list of (None, basename) tuples.
47
32
    """
48
 
    try:
49
 
        return _formats[stat_mode & 0170000]
50
 
    except KeyError:
51
 
        return _unknown
 
33
    return [(None, name) for name in os.listdir(path)]