/stdhome

To get this branch, use:
bzr branch http://bzr.ed.am/stdhome

« back to all changes in this revision

Viewing changes to lib/stdhome/walker/copy_out.py

  • Committer: Tim Marston
  • Date: 2014-04-05 19:20:06 UTC
  • Revision ID: tim@ed.am-20140405192006-fv0toip4b8m5pc88
fixed bug preventing skipping of subdirectories in walker; also added
walker.File.__str__()

Show diffs side-by-side

added added

removed removed

19
19
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
 
21
21
 
22
 
import re
23
 
from .copy_base import CopyBaseWalker
 
22
import filecmp, os, shutil
 
23
from copy_base import CopyBaseWalker
24
24
import stdhome.the as the
25
 
from stdhome.file_matcher import FileMatcher
26
25
 
27
26
 
28
27
class CopyOutWalker( CopyBaseWalker ):
29
28
        """The copy-out walker traverses the repo, copying its content to the home
30
 
        directory.  During an update, it is run *after* checking for conflicts that
31
 
        might occur during copy-out, so any conflicts that exist can be assumed to
32
 
        be unimportant and disposable.  In other words, this will happily overwrite
33
 
        stuff in the home directory, without regard to its content.
 
29
        directory.  It is run *after* checking for conflicts that might occur during
 
30
        copy-out, so any conflicts that exist can be assumed to be unimportant and
 
31
        disposable.  In other words, this will happily overwrite stuff in the home
 
32
        directory, without regard to its content.
34
33
 
35
34
        Walker source:       repo
36
35
        Walker destination:  home dir
38
37
                                                        that no longer exists in the repo
39
38
        """
40
39
 
41
 
        def __init__( self, walk_files = None, report = True ):
42
 
                CopyBaseWalker.__init__( self )
 
40
        def __init__( self, updated_files = None ):
43
41
                self.src_dir = the.repo.full_dir
44
42
                self.dst_dir = the.full_home_dir
45
 
                self.walk_list = walk_files if walk_files is not None else \
 
43
                self.walk_list = updated_files if updated_files is not None else \
46
44
                                                 self.generate_walk_list( the.repo.full_dir )
47
 
                self.check_dst_symlinks = True
48
 
                self.check_dst_ignores = True
49
 
                self.report = report
50
 
 
51
 
 
52
 
        def print_op( self, rel_file, src, op, dst ):
53
 
 
54
 
                CopyBaseWalker.print_op( self, rel_file, src, op, dst )
55
 
 
56
 
                # verbose reporting
57
 
                if the.verbose >= 2:
58
 
                        if op == '*': op = '<'
59
 
                        print("  %s%s%s %s" % ( src, op, dst, rel_file ))
 
45
 
 
46
 
 
47
        def print_cp( self, rel_file, src_type, dst_type, operation = '<' ):
 
48
                if( the.verbose <= 1 ): return
 
49
                print "  %s%s%s %s" % ( dst_type, operation, src_type, rel_file )