summaryrefslogtreecommitdiff
path: root/fs/base.py
blob: 3d25ec57aea8124252bae1cbc15e10b8b073e8ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
#!/usr/bin/env python
"""
fs.base
=======

This module defines the most basic filesystem abstraction, the FS class.
Instances of FS represent a filesystem containing files and directories
that can be queried and manipulated.  To implement a new kind of filesystem,
start by sublcassing the base FS class.

For more information regarding implementing a working PyFilesystem interface, see :ref:`implementers`.

"""

from __future__ import with_statement

__all__ = ['DummyLock',
           'silence_fserrors',
           'NullFile',
           'synchronize',
           'FS',
           'flags_to_mode',
           'NoDefaultMeta']

import os
import os.path
import shutil
import fnmatch
import datetime
import time
import errno
try:
    import threading
except ImportError:
    import dummy_threading as threading

from fs.path import *
from fs.errors import *
from fs.local_functools import wraps

import six
from six import b


class DummyLock(object):
    """A dummy lock object that doesn't do anything.

    This is used as a placeholder when locking is disabled.  We can't
    directly use the Lock class from the dummy_threading module, since
    it attempts to sanity-check the sequence of acquire/release calls
    in a way that breaks when real threading is available.

    """

    def acquire(self, blocking=1):
        """Acquiring a DummyLock always succeeds."""
        return 1

    def release(self):
        """Releasing a DummyLock always succeeds."""
        pass

    def __enter__(self):
        return self

    def __exit__(self, exc_type, exc_value, traceback):
        pass


def silence_fserrors(f, *args, **kwargs):
    """Perform a function call and return ``None`` if an :class:`~fs.errors.FSError` is thrown

    :param f: Function to call
    :param args: Parameters to f
    :param kwargs: Keyword parameters to f

    """
    try:
        return f(*args, **kwargs)
    except FSError:
        return None


class NoDefaultMeta(object):
    """A singleton used to signify that there is no default for getmeta"""
    pass


class NullFile(object):
    """A NullFile is a file object that has no functionality.

    Null files are returned by the :meth:`~fs.base.FS.safeopen` method in FS objects when the
    file doesn't exist. This can simplify code by negating the need to check
    if a file exists, or handling exceptions.

    """
    def __init__(self):
        self.closed = False

    def __iter__(self):
        return self

    def __enter__(self):
        return self

    def __exit__(self, exc_type, exc_value, traceback):
        self.closed = True

    def flush(self):
        pass

    def next(self):
        raise StopIteration

    def readline(self, *args, **kwargs):
        return b("")

    def close(self):
        self.closed = True

    def read(self, size=None):
        return b("")

    def seek(self, *args, **kwargs):
        pass

    def tell(self):
        return 0

    def truncate(self, *args, **kwargs):
        return 0

    def write(self, data):
        pass

    def writelines(self, *args, **kwargs):
        pass


def synchronize(func):
    """Decorator to synchronize a method on self._lock."""
    @wraps(func)
    def acquire_lock(self, *args, **kwargs):
        self._lock.acquire()
        try:
            return func(self, *args, **kwargs)
        finally:
            self._lock.release()
    return acquire_lock


class FS(object):
    """The base class for Filesystem abstraction objects.
    An instance of a class derived from FS is an abstraction on some kind of filesystem, such as the OS filesystem or a zip file.

    """

    _meta = {}

    def __init__(self, thread_synchronize=True):
        """The base class for Filesystem objects.

        :param thread_synconize: If True, a lock object will be created for the object, otherwise a dummy lock will be used.
        :type thread_synchronize: bool

        """

        self.closed = False
        super(FS, self).__init__()
        self.thread_synchronize = thread_synchronize
        if thread_synchronize:
            self._lock = threading.RLock()
        else:
            self._lock = DummyLock()

    def __del__(self):
        if not getattr(self, 'closed', True):
            try:
                self.close()
            except:
                pass

    def __enter__(self):
        return self

    def __exit__(self, type, value, traceback):
        self.close()

    def cachehint(self, enabled):
        """Recommends the use of caching. Implementations are free to use or
            ignore this value.

        :param enabled: If True the implementation is permitted to aggressively cache directory
            structure / file information. Caching such information can speed up many operations,
            particularly for network based filesystems. The downside of caching is that
            changes made to directories or files outside of this interface may not be picked up immediately.

        """
        pass
    # Deprecating cache_hint in favour of no underscore version, for consistency
    cache_hint = cachehint

    def close(self):
        """Close the filesystem. This will perform any shutdown related
        operations required. This method will be called automatically when
        the filesystem object is garbage collected, but it is good practice
        to call it explicitly so that any attached resourced are freed when they
        are no longer required.

        """
        self.closed = True

    def __getstate__(self):
        #  Locks can't be pickled, so instead we just indicate the
        #  type of lock that should be there.  None == no lock,
        #  True == a proper lock, False == a dummy lock.
        state = self.__dict__.copy()
        lock = state.get("_lock", None)
        if lock is not None:
            if isinstance(lock, threading._RLock):
                state["_lock"] = True
            else:
                state["_lock"] = False
        return state

    def __setstate__(self, state):
        self.__dict__.update(state)
        lock = state.get("_lock")
        if lock is not None:
            if lock:
                self._lock = threading.RLock()
            else:
                self._lock = DummyLock()

    def getmeta(self, meta_name, default=NoDefaultMeta):
        """Retrieve a meta value associated with an FS object.

        Meta values are a way for an FS implementation to report potentially
        useful information associated with the file system.

        A meta key is a lower case string with no spaces. Meta keys may also
        be grouped in namespaces in a dotted notation, e.g. 'atomic.namespaces'.
        FS implementations aren't obliged to return any meta values, but the
        following are common:

         * *read_only* True if the file system cannot be modified
         * *thread_safe* True if the implementation is thread safe
         * *network* True if the file system requires network access
         * *unicode_paths* True if the file system supports unicode paths
         * *case_insensitive_paths* True if the file system ignores the case of paths
         * *atomic.makedir* True if making a directory is an atomic operation
         * *atomic.rename* True if rename is an atomic operation, (and not implemented as a copy followed by a delete)
         * *atomic.setcontents* True if the implementation supports setting the contents of a file as an atomic operation (without opening a file)
         * *free_space* The free space (in bytes) available on the file system
         * *total_space* The total space (in bytes) available on the file system
         * *virtual* True if the filesystem defers to other filesystems
         * *invalid_path_chars* A string containing characters that may not be used in paths

        FS implementations may expose non-generic meta data through a self-named namespace. e.g. ``"somefs.some_meta"``

        Since no meta value is guaranteed to exist, it is advisable to always supply a
        default value to ``getmeta``.

        :param meta_name: The name of the meta value to retrieve
        :param default: An option default to return, if the meta value isn't present
        :raises `fs.errors.NoMetaError`: If specified meta value is not present, and there is no default

        """
        if meta_name not in self._meta:
            if default is not NoDefaultMeta:
                return default
            raise NoMetaError(meta_name=meta_name)
        return self._meta[meta_name]

    def hasmeta(self, meta_name):
        """Check that a meta value is supported

        :param meta_name: The name of a meta value to check
        :rtype: bool

        """
        try:
            self.getmeta(meta_name)
        except NoMetaError:
            return False
        return True

    def validatepath(self, path):
        """Validate an fs path, throws an :class:`~fs.errors.InvalidPathError` exception if validation fails.

        A path is invalid if it fails to map to a path on the underlaying filesystem. The default
        implementation checks for the presence of any of the characters in the meta value 'invalid_path_chars',
        but implementations may have other requirements for paths.

        :param path: an fs path to validatepath
        :raises `fs.errors.InvalidPathError`: if `path` does not map on to a valid path on this filesystem

        """
        invalid_chars = self.getmeta('invalid_path_chars', default=None)
        if invalid_chars:
            re_invalid_chars = getattr(self, '_re_invalid_chars', None)
            if re_invalid_chars is None:
                self._re_invalid_chars = re_invalid_chars = re.compile('|'.join(re.escape(c) for c in invalid_chars), re.UNICODE)
            if re_invalid_chars.search(path):
                raise InvalidCharsInPathError(path)

    def isvalidpath(self, path):
        """Check if a path is valid on this filesystem

        :param path: an fs path

        """
        try:
            self.validatepath(path)
        except InvalidPathError:
            return False
        else:
            return True

    def getsyspath(self, path, allow_none=False):
        """Returns the system path (a path recognized by the OS) if one is present.

        If the path does not map to a system path (and `allow_none` is False)
        then a NoSysPathError exception is thrown.  Otherwise, the system
        path will be returned as a unicode string.

        :param path: a path within the filesystem
        :param allow_none: if True, this method will return None when there is no system path,
            rather than raising NoSysPathError
        :type allow_none: bool
        :raises `fs.errors.NoSysPathError`: if the path does not map on to a system path, and allow_none is set to False (default)
        :rtype: unicode

        """
        if not allow_none:
            raise NoSysPathError(path=path)
        return None

    def hassyspath(self, path):
        """Check if the path maps to a system path (a path recognized by the OS).

        :param path: path to check
        :returns: True if `path` maps to a system path
        :rtype: bool

        """
        return self.getsyspath(path, allow_none=True) is not None

    def getpathurl(self, path, allow_none=False):
        """Returns a url that corresponds to the given path, if one exists.

        If the path does not have an equivalent URL form (and allow_none is False)
        then a :class:`~fs.errors.NoPathURLError` exception is thrown. Otherwise the URL will be
        returns as an unicode string.

        :param path: a path within the filesystem
        :param allow_none: if true, this method can return None if there is no
            URL form of the given path
        :type allow_none: bool
        :raises `fs.errors.NoPathURLError`: If no URL form exists, and allow_none is False (the default)
        :rtype: unicode

        """
        if not allow_none:
            raise NoPathURLError(path=path)
        return None

    def haspathurl(self, path):
        """Check if the path has an equivalent URL form

        :param path: path to check
        :returns: True if `path` has a URL form
        :rtype: bool

        """
        return self.getpathurl(path, allow_none=True) is not None

    def open(self, path, mode='r', buffering=-1, encoding=None, errors=None, newline=None, line_buffering=False, **kwargs):
        """Open a the given path as a file-like object.

        :param path: a path to file that should be opened
        :type path: string
        :param mode: mode of file to open, identical to the mode string used
            in 'file' and 'open' builtins
        :type mode: string
        :param kwargs: additional (optional) keyword parameters that may
            be required to open the file
        :type kwargs: dict

        :rtype: a file-like object

        :raises `fs.errors.ParentDirectoryMissingError`: if an intermediate directory is missing
        :raises `fs.errors.ResourceInvalidError`: if an intermediate directory is an file
        :raises `fs.errors.ResourceNotFoundError`: if the path is not found

        """
        raise UnsupportedError("open file")

    def safeopen(self, path, mode='r', buffering=-1, encoding=None, errors=None, newline=None, line_buffering=False, **kwargs):
        """Like :py:meth:`~fs.base.FS.open`, but returns a
        :py:class:`~fs.base.NullFile` if the file could not be opened.

        A ``NullFile`` is a dummy file which has all the methods of a file-like object,
        but contains no data.

        :param path: a path to file that should be opened
        :type path: string
        :param mode: mode of file to open, identical to the mode string used
            in 'file' and 'open' builtins
        :type mode: string
        :param kwargs: additional (optional) keyword parameters that may
            be required to open the file
        :type kwargs: dict

        :rtype: a file-like object

        """
        try:
            f = self.open(path, mode=mode, buffering=buffering, encoding=encoding, errors=errors, newline=newline, line_buffering=line_buffering, **kwargs)
        except ResourceNotFoundError:
            return NullFile()
        return f

    def exists(self, path):
        """Check if a path references a valid resource.

        :param path: A path in the filesystem
        :type path: string

        :rtype: bool

        """
        return self.isfile(path) or self.isdir(path)

    def isdir(self, path):
        """Check if a path references a directory.

        :param path: a path in the filesystem
        :type path: string

        :rtype: bool

        """
        raise UnsupportedError("check for directory")

    def isfile(self, path):
        """Check if a path references a file.

        :param path: a path in the filesystem
        :type path: string

        :rtype: bool

        """
        raise UnsupportedError("check for file")

    def __iter__(self):
        """ Iterates over paths returned by :py:meth:`~fs.base.listdir` method with default params. """
        for f in self.listdir():
            yield f

    def listdir(self,
                path="./",
                wildcard=None,
                full=False,
                absolute=False,
                dirs_only=False,
                files_only=False):
        """Lists the the files and directories under a given path.

        The directory contents are returned as a list of unicode paths.

        :param path: root of the path to list
        :type path: string
        :param wildcard: Only returns paths that match this wildcard
        :type wildcard: string containing a wildcard, or a callable that accepts a path and returns a boolean
        :param full: returns full paths (relative to the root)
        :type full: bool
        :param absolute: returns absolute paths (paths beginning with /)
        :type absolute: bool
        :param dirs_only: if True, only return directories
        :type dirs_only: bool
        :param files_only: if True, only return files
        :type files_only: bool

        :rtype: iterable of paths

        :raises `fs.errors.ParentDirectoryMissingError`: if an intermediate directory is missing
        :raises `fs.errors.ResourceInvalidError`: if the path exists, but is not a directory
        :raises `fs.errors.ResourceNotFoundError`: if the path is not found

        """
        raise UnsupportedError("list directory")

    def listdirinfo(self,
                    path="./",
                    wildcard=None,
                    full=False,
                    absolute=False,
                    dirs_only=False,
                    files_only=False):
        """Retrieves a list of paths and path info under a given path.

        This method behaves like listdir() but instead of just returning
        the name of each item in the directory, it returns a tuple of the
        name and the info dict as returned by getinfo.

        This method may be more efficient than calling
        :py:meth:`~fs.base.FS.getinfo` on each individual item returned by :py:meth:`~fs.base.FS.listdir`, particularly
        for network based filesystems.

        :param path: root of the path to list
        :param wildcard: filter paths that match this wildcard
        :param dirs_only: only retrieve directories
        :type dirs_only: bool
        :param files_only: only retrieve files
        :type files_only: bool

        :raises `fs.errors.ResourceNotFoundError`: If the path is not found
        :raises `fs.errors.ResourceInvalidError`: If the path exists, but is not a directory

        """
        path = normpath(path)

        def getinfo(p):
            try:
                if full or absolute:
                    return self.getinfo(p)
                else:
                    return self.getinfo(pathjoin(path, p))
            except FSError:
                return {}

        return [(p, getinfo(p))
                for p in self.listdir(path,
                                      wildcard=wildcard,
                                      full=full,
                                      absolute=absolute,
                                      dirs_only=dirs_only,
                                      files_only=files_only)]

    def _listdir_helper(self,
                        path,
                        entries,
                        wildcard=None,
                        full=False,
                        absolute=False,
                        dirs_only=False,
                        files_only=False):
        """A helper method called by listdir method that applies filtering.

        Given the path to a directory and a list of the names of entries within
        that directory, this method applies the semantics of the listdir()
        keyword arguments. An appropriately modified and filtered list of
        directory entries is returned.

        """
        path = normpath(path)
        if dirs_only and files_only:
            raise ValueError("dirs_only and files_only can not both be True")

        if wildcard is not None:
            if not callable(wildcard):
                wildcard_re = re.compile(fnmatch.translate(wildcard))
                wildcard = lambda fn: bool(wildcard_re.match(fn))
            entries = [p for p in entries if wildcard(p)]

        if dirs_only:
            isdir = self.isdir
            entries = [p for p in entries if isdir(pathcombine(path, p))]
        elif files_only:
            isfile = self.isfile
            entries = [p for p in entries if isfile(pathcombine(path, p))]

        if full:
            entries = [pathcombine(path, p) for p in entries]
        elif absolute:
            path = abspath(path)
            entries = [(pathcombine(path, p)) for p in entries]

        return entries

    def ilistdir(self,
                 path="./",
                 wildcard=None,
                 full=False,
                 absolute=False,
                 dirs_only=False,
                 files_only=False):
        """Generator yielding the files and directories under a given path.

        This method behaves identically to :py:meth:`~fs.base.FS.listdir` but returns an generator
        instead of a list.  Depending on the filesystem this may be more
        efficient than calling :py:meth:`~fs.base.FS.listdir` and iterating over the resulting list.

        """
        return iter(self.listdir(path,
                                 wildcard=wildcard,
                                 full=full,
                                 absolute=absolute,
                                 dirs_only=dirs_only,
                                 files_only=files_only))

    def ilistdirinfo(self,
                     path="./",
                     wildcard=None,
                     full=False,
                     absolute=False,
                     dirs_only=False,
                     files_only=False):
        """Generator yielding paths and path info under a given path.

        This method behaves identically to :py:meth:`~fs.base.listdirinfo` but returns an generator
        instead of a list.  Depending on the filesystem this may be more
        efficient than calling :py:meth:`~fs.base.listdirinfo` and iterating over the resulting
        list.

        """
        return iter(self.listdirinfo(path,
                                     wildcard,
                                     full,
                                     absolute,
                                     dirs_only,
                                     files_only))

    def makedir(self, path, recursive=False, allow_recreate=False):
        """Make a directory on the filesystem.

        :param path: path of directory
        :type path: string
        :param recursive: if True, any intermediate directories will also be created
        :type recursive: bool
        :param allow_recreate: if True, re-creating a directory wont be an error
        :type allow_create: bool

        :raises `fs.errors.DestinationExistsError`: if the path is already a directory, and allow_recreate is False
        :raises `fs.errors.ParentDirectoryMissingError`: if a containing directory is missing and recursive is False
        :raises `fs.errors.ResourceInvalidError`: if a path is an existing file
        :raises `fs.errors.ResourceNotFoundError`: if the path is not found

        """
        raise UnsupportedError("make directory")

    def remove(self, path):
        """Remove a file from the filesystem.

        :param path: Path of the resource to remove
        :type path: string

        :raises `fs.errors.ParentDirectoryMissingError`: if an intermediate directory is missing
        :raises `fs.errors.ResourceInvalidError`: if the path is a directory
        :raises `fs.errors.ResourceNotFoundError`: if the path does not exist

        """
        raise UnsupportedError("remove resource")

    def removedir(self, path, recursive=False, force=False):
        """Remove a directory from the filesystem

        :param path: path of the directory to remove
        :type path: string
        :param recursive: if True, empty parent directories will be removed
        :type recursive: bool
        :param force: if True, any directory contents will be removed
        :type force: bool

        :raises `fs.errors.DirectoryNotEmptyError`: if the directory is not empty and force is False
        :raises `fs.errors.ParentDirectoryMissingError`: if an intermediate directory is missing
        :raises `fs.errors.ResourceInvalidError`: if the path is not a directory
        :raises `fs.errors.ResourceNotFoundError`: if the path does not exist

        """
        raise UnsupportedError("remove directory")

    def rename(self, src, dst):
        """Renames a file or directory

        :param src: path to rename
        :type src: string
        :param dst: new name
        :type dst: string

        :raises ParentDirectoryMissingError: if a containing directory is missing
        :raises ResourceInvalidError: if the path or a parent path is not a
            directory or src is a parent of dst or one of src or dst is a dir
            and the other don't
        :raises ResourceNotFoundError: if the src path does not exist

        """
        raise UnsupportedError("rename resource")

    @convert_os_errors
    def settimes(self, path, accessed_time=None, modified_time=None):
        """Set the accessed time and modified time of a file

        :param path: path to a file
        :type path: string
        :param accessed_time: the datetime the file was accessed (defaults to current time)
        :type accessed_time: datetime
        :param modified_time: the datetime the file was modified (defaults to current time)
        :type modified_time: datetime

        """

        with self._lock:
            sys_path = self.getsyspath(path, allow_none=True)
            if sys_path is not None:
                now = datetime.datetime.now()
                if accessed_time is None:
                    accessed_time = now
                if modified_time is None:
                    modified_time = now
                accessed_time = int(time.mktime(accessed_time.timetuple()))
                modified_time = int(time.mktime(modified_time.timetuple()))
                os.utime(sys_path, (accessed_time, modified_time))
                return True
            else:
                raise UnsupportedError("settimes")

    def getinfo(self, path):
        """Returns information for a path as a dictionary. The exact content of
        this dictionary will vary depending on the implementation, but will
        likely include a few common values. The following values will be found
        in info dictionaries for most implementations:

         * "size" - Number of bytes used to store the file or directory
         * "created_time" - A datetime object containing the time the resource was created
         * "accessed_time" - A datetime object containing the time the resource was last accessed
         * "modified_time" - A datetime object containing the time the resource was modified

        :param path: a path to retrieve information for
        :type path: string

        :rtype: dict

        :raises `fs.errors.ParentDirectoryMissingError`: if an intermediate directory is missing
        :raises `fs.errors.ResourceInvalidError`: if the path is not a directory
        :raises `fs.errors.ResourceNotFoundError`: if the path does not exist

        """
        raise UnsupportedError("get resource info")

    def getinfokeys(self, path, *keys):
        """Get specified keys from info dict, as returned from `getinfo`. The returned dictionary may
        not contain all the keys that were asked for, if they aren't available.

        This method allows a filesystem to potentially provide a faster way of retrieving these info values if you
        are only interested in a subset of them.

        :param path: a path to retrieve information for
        :param keys: the info keys you would like to retrieve

        :rtype: dict

        """
        info = self.getinfo(path)
        return dict((k, info[k]) for k in keys if k in info)

    def desc(self, path):
        """Returns short descriptive text regarding a path. Intended mainly as
        a debugging aid.

        :param path: A path to describe
        :rtype: str

        """
        #if not self.exists(path):
        #    return ''
        try:
            sys_path = self.getsyspath(path)
        except NoSysPathError:
            return "No description available"
        return sys_path

    def getcontents(self, path, mode='rb', encoding=None, errors=None, newline=None):
        """Returns the contents of a file as a string.

        :param path: A path of file to read
        :param mode: Mode to open file with (should be 'rb' for binary or 't' for text)
        :param encoding: Encoding to use when reading contents in text mode
        :param errors: Unicode errors parameter if text mode is use
        :param newline: Newlines parameter for text mode decoding
        :rtype: str
        :returns: file contents

        """
        if 'r' not in mode:
            raise ValueError("mode must contain 'r' to be readable")
        f = None
        try:
            f = self.open(path, mode=mode, encoding=encoding, errors=errors, newline=newline)
            contents = f.read()
            return contents
        finally:
            if f is not None:
                f.close()

    def _setcontents(self,
                     path,
                     data,
                     encoding=None,
                     errors=None,
                     chunk_size=1024 * 64,
                     progress_callback=None,
                     finished_callback=None):
        """Does the work of setcontents. Factored out, so that `setcontents_async` can use it"""
        if progress_callback is None:
            progress_callback = lambda bytes_written: None
        if finished_callback is None:
            finished_callback = lambda: None

        if not data:
            progress_callback(0)
            self.createfile(path, wipe=True)
            finished_callback()
            return 0

        bytes_written = 0
        progress_callback(0)

        if hasattr(data, 'read'):
            read = data.read
            chunk = read(chunk_size)
            if isinstance(chunk, six.text_type):
                f = self.open(path, 'wt', encoding=encoding, errors=errors)
            else:
                f = self.open(path, 'wb')
            write = f.write
            try:
                while chunk:
                    write(chunk)
                    bytes_written += len(chunk)
                    progress_callback(bytes_written)
                    chunk = read(chunk_size)
            finally:
                f.close()
        else:
            if isinstance(data, six.text_type):
                with self.open(path, 'wt', encoding=encoding, errors=errors) as f:
                    f.write(data)
                    bytes_written += len(data)
            else:
                with self.open(path, 'wb') as f:
                    f.write(data)
                    bytes_written += len(data)
            progress_callback(bytes_written)

        finished_callback()
        return bytes_written

    def setcontents(self, path, data=b'', encoding=None, errors=None, chunk_size=1024 * 64):
        """A convenience method to create a new file from a string or file-like object

        :param path: a path of the file to create
        :param data: a string or bytes object containing the contents for the new file
        :param encoding: if `data` is a file open in text mode, or a text string, then use this `encoding` to write to the destination file
        :param errors: if `data` is a file open in text mode or a text string, then use `errors` when opening the destination file
        :param chunk_size: Number of bytes to read in a chunk, if the implementation has to resort to a read / copy loop

        """
        return self._setcontents(path, data, encoding=encoding, errors=errors, chunk_size=1024 * 64)

    def setcontents_async(self,
                          path,
                          data,
                          encoding=None,
                          errors=None,
                          chunk_size=1024 * 64,
                          progress_callback=None,
                          finished_callback=None,
                          error_callback=None):
        """Create a new file from a string or file-like object asynchronously

        This method returns a ``threading.Event`` object. Call the ``wait`` method on the event object
        to block until all data has been written, or simply ignore it.

        :param path: a path of the file to create
        :param data: a string or a file-like object containing the contents for the new file
        :param encoding: if `data` is a file open in text mode, or a text string, then use this `encoding` to write to the destination file
        :param errors: if `data` is a file open in text mode or a text string, then use `errors` when opening the destination file
        :param chunk_size: Number of bytes to read and write in a chunk
        :param progress_callback: A function that is called periodically
            with the number of bytes written.
        :param finished_callback: A function that is called when all data has been written
        :param error_callback: A function that is called with an exception
            object if any error occurs during the copy process.
        :returns: An event object that is set when the copy is complete, call
            the `wait` method of this object to block until the data is written

        """

        finished_event = threading.Event()

        def do_setcontents():
            try:
                self._setcontents(path,
                                  data,
                                  encoding=encoding,
                                  errors=errors,
                                  chunk_size=1024 * 64,
                                  progress_callback=progress_callback,
                                  finished_callback=finished_callback)
            except Exception, e:
                if error_callback is not None:
                    error_callback(e)
            finally:
                finished_event.set()

        threading.Thread(target=do_setcontents).start()
        return finished_event

    def createfile(self, path, wipe=False):
        """Creates an empty file if it doesn't exist

        :param path: path to the file to create
        :param wipe: if True, the contents of the file will be erased

        """
        with self._lock:
            if not wipe and self.isfile(path):
                return
            f = None
            try:
                f = self.open(path, 'wb')
            finally:
                if f is not None:
                    f.close()

    def opendir(self, path):
        """Opens a directory and returns a FS object representing its contents.

        :param path: path to directory to open
        :type path: string

        :return: the opened dir
        :rtype: an FS object

        """

        from fs.wrapfs.subfs import SubFS
        if not self.exists(path):
            raise ResourceNotFoundError(path)
        if not self.isdir(path):
            raise ResourceInvalidError("path should reference a directory")
        return SubFS(self, path)

    def walk(self,
             path="/",
             wildcard=None,
             dir_wildcard=None,
             search="breadth",
             ignore_errors=False):
        """Walks a directory tree and yields the root path and contents.
        Yields a tuple of the path of each directory and a list of its file
        contents.

        :param path: root path to start walking
        :type path: string
        :param wildcard: if given, only return files that match this wildcard
        :type wildcard: a string containing a wildcard (e.g. `*.txt`) or a callable that takes the file path and returns a boolean
        :param dir_wildcard: if given, only walk directories that match the wildcard
        :type dir_wildcard: a string containing a wildcard (e.g. `*.txt`) or a callable that takes the directory name and returns a boolean
        :param search: a string identifying the method used to walk the directories. There are two such methods:

             * ``"breadth"`` yields paths in the top directories first
             * ``"depth"`` yields the deepest paths first

        :param ignore_errors: ignore any errors reading the directory
        :type ignore_errors: bool

        :rtype: iterator of (current_path, paths)

        """

        path = normpath(path)

        if not self.exists(path):
            raise ResourceNotFoundError(path)

        def listdir(path, *args, **kwargs):
            if ignore_errors:
                try:
                    return self.listdir(path, *args, **kwargs)
                except:
                    return []
            else:
                return self.listdir(path, *args, **kwargs)

        if wildcard is None:
            wildcard = lambda f: True
        elif not callable(wildcard):
            wildcard_re = re.compile(fnmatch.translate(wildcard))
            wildcard = lambda fn: bool(wildcard_re.match(fn))

        if dir_wildcard is None:
            dir_wildcard = lambda f: True
        elif not callable(dir_wildcard):
            dir_wildcard_re = re.compile(fnmatch.translate(dir_wildcard))
            dir_wildcard = lambda fn: bool(dir_wildcard_re.match(fn))

        if search == "breadth":
            dirs = [path]
            dirs_append = dirs.append
            dirs_pop = dirs.pop
            isdir = self.isdir
            while dirs:
                current_path = dirs_pop()
                paths = []
                paths_append = paths.append
                try:
                    for filename in listdir(current_path, dirs_only=True):
                        path = pathcombine(current_path, filename)
                        if dir_wildcard(path):
                            dirs_append(path)
                    for filename in listdir(current_path, files_only=True):
                        path = pathcombine(current_path, filename)
                        if wildcard(filename):
                            paths_append(filename)
                except ResourceNotFoundError:
                    # Could happen if another thread / process deletes something whilst we are walking
                    pass

                yield (current_path, paths)

        elif search == "depth":

            def recurse(recurse_path):
                try:
                    for path in listdir(recurse_path, wildcard=dir_wildcard, full=True, dirs_only=True):
                        for p in recurse(path):
                            yield p
                except ResourceNotFoundError:
                    # Could happen if another thread / process deletes something whilst we are walking
                    pass
                yield (recurse_path, listdir(recurse_path, wildcard=wildcard, files_only=True))

            for p in recurse(path):
                yield p

        else:
            raise ValueError("Search should be 'breadth' or 'depth'")

    def walkfiles(self,
                  path="/",
                  wildcard=None,
                  dir_wildcard=None,
                  search="breadth",
                  ignore_errors=False):
        """Like the 'walk' method, but just yields file paths.

        :param path: root path to start walking
        :type path: string
        :param wildcard: if given, only return files that match this wildcard
        :type wildcard: A string containing a wildcard (e.g. `*.txt`) or a callable that takes the file path and returns a boolean
        :param dir_wildcard: if given, only walk directories that match the wildcard
        :type dir_wildcard: A string containing a wildcard (e.g. `*.txt`) or a callable that takes the directory name and returns a boolean
        :param search: a string identifying the method used to walk the directories. There are two such methods:

             * ``"breadth"`` yields paths in the top directories first
             * ``"depth"`` yields the deepest paths first

        :param ignore_errors: ignore any errors reading the directory
        :type ignore_errors: bool

        :rtype: iterator of file paths

        """
        for path, files in self.walk(normpath(path), wildcard=wildcard, dir_wildcard=dir_wildcard, search=search, ignore_errors=ignore_errors):
            for f in files:
                yield pathcombine(path, f)

    def walkdirs(self,
                 path="/",
                 wildcard=None,
                 search="breadth",
                 ignore_errors=False):
        """Like the 'walk' method but yields directories.

        :param path: root path to start walking
        :type path: string
        :param wildcard: if given, only return directories that match this wildcard
        :type wildcard: A string containing a wildcard (e.g. `*.txt`) or a callable that takes the directory name and returns a boolean
        :param search: a string identifying the method used to walk the directories. There are two such methods:

             * ``"breadth"`` yields paths in the top directories first
             * ``"depth"`` yields the deepest paths first

        :param ignore_errors: ignore any errors reading the directory
        :type ignore_errors: bool

        :rtype: iterator of dir paths

        """
        for p, _files in self.walk(path, dir_wildcard=wildcard, search=search, ignore_errors=ignore_errors):
            yield p

    def getsize(self, path):
        """Returns the size (in bytes) of a resource.

        :param path: a path to the resource
        :type path: string

        :returns: the size of the file
        :rtype: integer

        """
        info = self.getinfo(path)
        size = info.get('size', None)
        if size is None:
            raise OperationFailedError("get size of resource", path)
        return size

    def copy(self, src, dst, overwrite=False, chunk_size=1024 * 64):
        """Copies a file from src to dst.

        :param src: the source path
        :type src: string
        :param dst: the destination path
        :type dst: string
        :param overwrite: if True, then an existing file at the destination may
            be overwritten; If False then DestinationExistsError
            will be raised.
        :type overwrite: bool
        :param chunk_size: size of chunks to use if a simple copy is required
            (defaults to 64K).
        :type chunk_size: bool

        """
        with self._lock:
            if not self.isfile(src):
                if self.isdir(src):
                    raise ResourceInvalidError(src, msg="Source is not a file: %(path)s")
                raise ResourceNotFoundError(src)
            if not overwrite and self.exists(dst):
                raise DestinationExistsError(dst)

            src_syspath = self.getsyspath(src, allow_none=True)
            dst_syspath = self.getsyspath(dst, allow_none=True)

            if src_syspath is not None and dst_syspath is not None:
                self._shutil_copyfile(src_syspath, dst_syspath)
            else:
                src_file = None
                try:
                    src_file = self.open(src, "rb")
                    self.setcontents(dst, src_file, chunk_size=chunk_size)
                except ResourceNotFoundError:
                    if self.exists(src) and not self.exists(dirname(dst)):
                        raise ParentDirectoryMissingError(dst)
                finally:
                    if src_file is not None:
                        src_file.close()

    @classmethod
    @convert_os_errors
    def _shutil_copyfile(cls, src_syspath, dst_syspath):
        try:
            shutil.copyfile(src_syspath, dst_syspath)
        except IOError, e:
            #  shutil reports ENOENT when a parent directory is missing
            if getattr(e, "errno", None) == errno.ENOENT:
                if not os.path.exists(dirname(dst_syspath)):
                    raise ParentDirectoryMissingError(dst_syspath)
            raise

    @classmethod
    @convert_os_errors
    def _shutil_movefile(cls, src_syspath, dst_syspath):
        shutil.move(src_syspath, dst_syspath)


    def move(self, src, dst, overwrite=False, chunk_size=16384):
        """moves a file from one location to another.

        :param src: source path
        :type src: string
        :param dst: destination path
        :type dst: string
        :param overwrite: When True the destination will be overwritten (if it exists),
            otherwise a DestinationExistsError will be thrown
        :type overwrite: bool
        :param chunk_size: Size of chunks to use when copying, if a simple copy
            is required
        :type chunk_size: integer

        :raise `fs.errors.DestinationExistsError`: if destination exists and `overwrite` is False

        """

        with self._lock:
            src_syspath = self.getsyspath(src, allow_none=True)
            dst_syspath = self.getsyspath(dst, allow_none=True)

            #  Try to do an os-level rename if possible.
            #  Otherwise, fall back to copy-and-remove.
            if src_syspath is not None and dst_syspath is not None:
                if not os.path.isfile(src_syspath):
                    if os.path.isdir(src_syspath):
                        raise ResourceInvalidError(src, msg="Source is not a file: %(path)s")
                    raise ResourceNotFoundError(src)
                if not overwrite and os.path.exists(dst_syspath):
                    raise DestinationExistsError(dst)
                try:
                    os.rename(src_syspath, dst_syspath)
                    return
                except OSError:
                    pass
            self.copy(src, dst, overwrite=overwrite, chunk_size=chunk_size)
            self.remove(src)

    def movedir(self, src, dst, overwrite=False, ignore_errors=False, chunk_size=16384):
        """moves a directory from one location to another.

        :param src: source directory path
        :type src: string
        :param dst: destination directory path
        :type dst: string
        :param overwrite: if True then any existing files in the destination
            directory will be overwritten
        :type overwrite: bool
        :param ignore_errors: if True then this method will ignore FSError
            exceptions when moving files
        :type ignore_errors: bool
        :param chunk_size: size of chunks to use when copying, if a simple copy
            is required
        :type chunk_size: integer

        :raise `fs.errors.DestinationExistsError`: if destination exists and `overwrite` is False

        """
        with self._lock:
            if not self.isdir(src):
                if self.isfile(src):
                    raise ResourceInvalidError(src, msg="Source is not a directory: %(path)s")
                raise ResourceNotFoundError(src)
            if not overwrite and self.exists(dst):
                raise DestinationExistsError(dst)

            src_syspath = self.getsyspath(src, allow_none=True)
            dst_syspath = self.getsyspath(dst, allow_none=True)

            if src_syspath is not None and dst_syspath is not None:
                try:
                    os.rename(src_syspath, dst_syspath)
                    return
                except OSError:
                    pass

            def movefile_noerrors(src, dst, **kwargs):
                try:
                    return self.move(src, dst, **kwargs)
                except FSError:
                    return
            if ignore_errors:
                movefile = movefile_noerrors
            else:
                movefile = self.move

            src = abspath(src)
            dst = abspath(dst)

            if dst:
                self.makedir(dst, allow_recreate=overwrite)

            for dirname, filenames in self.walk(src, search="depth"):

                dst_dirname = relpath(frombase(src, abspath(dirname)))
                dst_dirpath = pathjoin(dst, dst_dirname)
                self.makedir(dst_dirpath, allow_recreate=True, recursive=True)

                for filename in filenames:

                    src_filename = pathjoin(dirname, filename)
                    dst_filename = pathjoin(dst_dirpath, filename)
                    movefile(src_filename, dst_filename, overwrite=overwrite, chunk_size=chunk_size)

                self.removedir(dirname)

    def copydir(self, src, dst, overwrite=False, ignore_errors=False, chunk_size=16384):
        """copies a directory from one location to another.

        :param src: source directory path
        :type src: string
        :param dst: destination directory path
        :type dst: string
        :param overwrite: if True then any existing files in the destination
            directory will be overwritten
        :type overwrite: bool
        :param ignore_errors: if True, exceptions when copying will be ignored
        :type ignore_errors: bool
        :param chunk_size: size of chunks to use when copying, if a simple copy
            is required (defaults to 16K)

        """
        with self._lock:
            if not self.isdir(src):
                raise ResourceInvalidError(src, msg="Source is not a directory: %(path)s")

            def copyfile_noerrors(src, dst, **kwargs):
                try:
                    return self.copy(src, dst, **kwargs)
                except FSError:
                    return
            if ignore_errors:
                copyfile = copyfile_noerrors
            else:
                copyfile = self.copy

            src = abspath(src)
            dst = abspath(dst)

            if not overwrite and self.exists(dst):
                raise DestinationExistsError(dst)

            if dst:
                self.makedir(dst, allow_recreate=True)

            for dirname, filenames in self.walk(src):
                dst_dirname = relpath(frombase(src, abspath(dirname)))
                dst_dirpath = pathjoin(dst, dst_dirname)
                self.makedir(dst_dirpath, allow_recreate=True, recursive=True)
                for filename in filenames:
                    src_filename = pathjoin(dirname, filename)
                    dst_filename = pathjoin(dst_dirpath, filename)
                    copyfile(src_filename, dst_filename, overwrite=overwrite, chunk_size=chunk_size)

    def isdirempty(self, path):
        """Check if a directory is empty (contains no files or sub-directories)

        :param path: a directory path

        :rtype: bool

        """
        with self._lock:
            path = normpath(path)
            iter_dir = iter(self.ilistdir(path))
            try:
                next(iter_dir)
            except StopIteration:
                return True
            return False

    def makeopendir(self, path, recursive=False):
        """makes a directory (if it doesn't exist) and returns an FS object for
        the newly created directory.

        :param path: path to the new directory
        :param recursive: if True any intermediate directories will be created

        :return: the opened dir
        :rtype: an FS object

        """
        with self._lock:
            self.makedir(path, allow_recreate=True, recursive=recursive)
            dir_fs = self.opendir(path)
            return dir_fs

    def printtree(self, max_levels=5):
        """Prints a tree structure of the FS object to the console

        :param max_levels: The maximum sub-directories to display, defaults to
            5. Set to None for no limit

        """
        from fs.utils import print_fs
        print_fs(self, max_levels=max_levels)
    tree = printtree

    def browse(self, hide_dotfiles=False):
        """Displays the FS tree in a graphical window (requires wxPython)

        :param hide_dotfiles: If True, files and folders that begin with a dot will be hidden

        """
        from fs.browsewin import browse
        browse(self, hide_dotfiles)

    def getmmap(self, path, read_only=False, copy=False):
        """Returns a mmap object for this path.

        See http://docs.python.org/library/mmap.html for more details on the mmap module.

        :param path: A path on this filesystem
        :param read_only: If True, the mmap may not be modified
        :param copy: If False then changes wont be written back to the file
        :raises `fs.errors.NoMMapError`: Only paths that have a syspath can be opened as a mmap

        """
        syspath = self.getsyspath(path, allow_none=True)
        if syspath is None:
            raise NoMMapError(path)

        try:
            import mmap
        except ImportError:
            raise NoMMapError(msg="mmap not supported")

        if read_only:
            f = open(syspath, 'rb')
            access = mmap.ACCESS_READ
        else:
            if copy:
                f = open(syspath, 'rb')
                access = mmap.ACCESS_COPY
            else:
                f = open(syspath, 'r+b')
                access = mmap.ACCESS_WRITE

        m = mmap.mmap(f.fileno(), 0, access=access)
        return m


def flags_to_mode(flags, binary=True):
    """Convert an os.O_* flag bitmask into an FS mode string."""
    if flags & os.O_WRONLY:
        if flags & os.O_TRUNC:
            mode = "w"
        elif flags & os.O_APPEND:
            mode = "a"
        else:
            mode = "r+"
    elif flags & os.O_RDWR:
        if flags & os.O_TRUNC:
            mode = "w+"
        elif flags & os.O_APPEND:
            mode = "a+"
        else:
            mode = "r+"
    else:
        mode = "r"
    if flags & os.O_EXCL:
        mode += "x"
    if binary:
        mode += 'b'
    else:
        mode += 't'
    return mode