/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/command/command.py

  • Committer: Tim Marston
  • Date: 2016-05-22 16:45:54 UTC
  • Revision ID: tim@ed.am-20160522164554-n5qhuibvnv0z4tk1
added general reporting to CopyBase and configured it via copy-in and copy-out
walkers (it is required in copy in, during add command); added -R (recursive)
flass to add command; allow vcs backends to augment statically ignored files
list; added detection of out of date working copy to bzr backend;
generate_walk_list() now takes a mandatory directory as the first argument;
don't copy entire subtree during copy of missing directory (as this makes
assumptions about what's in the walk-list)

Show diffs side-by-side

added added

removed removed

20
20
 
21
21
 
22
22
import os
23
 
 
24
23
import stdhome.the as the
25
24
from stdhome.walker.walker import Walker
26
25
 
30
29
        """
31
30
 
32
31
        @staticmethod
33
 
        def resolve_homedir_file( file ):
34
 
                """Given a filename, which could be absolute or relative to the CWD, this
35
 
                returns a pair of 'resolved' filenames: the name of the file relative to
36
 
                the homedir and the full, absolute filename.  Neither of the returned
37
 
                filenames are guaranteed nor required to exist.  But the supplied
38
 
                filename will cause an error if it is not iteself or when resolved (if
39
 
                it is a symlink) under the homedirectory.
40
 
 
41
 
                """
42
 
                home_dir_prefix = os.path.realpath( the.full_home_dir ) + os.sep
43
 
 
44
 
                # obtain absolute filename
45
 
                abs_file = os.path.abspath( file )
46
 
 
47
 
                # if absolute filename is not under home directory, attempt to
48
 
                # resolve symlinks
49
 
                if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
50
 
                        parts = os.path.split( file )
51
 
                        if os.path.exists( parts[ 0 ] ):
52
 
                                abs_file = os.path.join(
53
 
                                        os.path.realpath( parts[ 0 ] ), parts[ 1 ] )
54
 
 
55
 
                # absolute file must now be under home directory and exist
56
 
                if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
57
 
                        raise the.program.FatalError(
58
 
                                        'not under home directory: %s' % file )
59
 
 
60
 
                # relative file
61
 
                rel_file = abs_file[ len( home_dir_prefix ) : ]
62
 
 
63
 
                return ( rel_file, abs_file )
64
 
 
65
 
 
66
 
        @classmethod
67
 
        def expand_files( cls, files, recurse = True ):
 
32
        def expand_files( files, recurse = True ):
68
33
                """Returns a unique, sorted list of relative files, calculated from the list
69
34
                provided, which is made up from individual files and directories
70
35
                relative to the CWD (and which must be contained within the home
75
40
                """
76
41
 
77
42
                ret = set()
 
43
                home_dir_prefix = os.path.realpath( the.full_home_dir ) + os.sep
78
44
 
79
45
                # iterate through file list
80
46
                for file in files:
81
 
                        ( rel_file, abs_file ) = cls.resolve_homedir_file( file )
82
 
 
83
 
                        # check that file exists in repository
 
47
                        parts = os.path.split( file )
 
48
                        abs_file = os.path.join(
 
49
                                os.path.realpath( parts[ 0 ] ), parts[ 1 ] )
 
50
 
 
51
                        # check the file is in the home directory
 
52
                        if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
 
53
                                raise the.program.FatalError(
 
54
                                        'not under home directory: %s' % abs_file )
 
55
 
 
56
                        # relative file
 
57
                        rel_file = abs_file[ len( home_dir_prefix ) : ]
 
58
 
 
59
                        # check if file exists in repository
84
60
                        repo_file = os.path.join( the.repo.full_dir, rel_file )
85
61
                        if not os.path.lexists( repo_file ):
86
62
                                raise the.program.FatalError(
91
67
                                the.repo.full_dir, rel_file, recurse ) )
92
68
 
93
69
                return sorted( set ( ret ) )
94
 
 
95
 
 
96
 
        @staticmethod
97
 
        def print_stage_commands_notice():
98
 
                #      01234567890123456789012345678901234567890123456789012345678901234567890123456789
99
 
                print("In addition to using the primary commands (such as add and remove) to modify a")
100
 
                print("remote repository, you can also set up changes in the local repository and")
101
 
                print("manually commit them in one go to a remote repository when you're ready.  This")
102
 
                print("is done with the staging commands.  Note, some primary commands will not work")
103
 
                print("when there are staged changes.  You can revert all staged changes with the")
104
 
                print("stage-revert command.")