32
def resolve_homedir_file( file ):
33
"""Given a filename, which could be absolute or relative to the CWD, this
34
returns a pair of 'resolved' filenames: the name of the file relative to
35
the homedir and the full, absolute filename. Neither of the returned
36
filenames are guaranteed nor required to exist. But the supplied
37
filename will cause an error if it is not iteself or when resolved (if
38
it is a symlink) under the homedirectory.
41
home_dir_prefix = os.path.realpath( the.full_home_dir ) + os.sep
43
# obtain absolute filename
44
abs_file = os.path.abspath( file )
46
# if absolute filename is not under home directory, attempt to
48
if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
49
parts = os.path.split( file )
50
if os.path.exists( parts[ 0 ] ):
51
abs_file = os.path.join(
52
os.path.realpath( parts[ 0 ] ), parts[ 1 ] )
54
# absolute file must now be under home directory and exist
55
if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
56
raise the.program.FatalError(
57
'not under home directory: %s' % file )
60
rel_file = abs_file[ len( home_dir_prefix ) : ]
62
return ( rel_file, abs_file )
66
def expand_files( files, recurse = True ):
32
def expand_files( files ):
67
33
"""Returns a unique, sorted list of relative files, calculated from the list
68
34
provided, which is made up from individual files and directories
69
35
relative to the CWD (and which must be contained within the home
70
36
directory, although the files need not actually exist in the home
71
directory). All files must exist in the repository. Directories are
72
recursed in to as required.
37
directory). All files must exist in the repository. Any directories
38
are recursed in to so that their content is also returned.
42
home_dir_prefix = os.path.realpath( the.full_home_dir ) + os.sep
78
44
# iterate through file list
80
( rel_file, abs_file ) = self.resolve_homedir_file( file )
82
# check that file exists in repository
46
parts = os.path.split( file )
47
abs_file = os.path.join(
48
os.path.realpath( parts[ 0 ] ), parts[ 1 ] )
50
# check the file is in the home directory
51
if abs_file[ : len( home_dir_prefix ) ] != home_dir_prefix:
52
raise the.program.FatalError(
53
'not under home directory: %s' % abs_file )
56
rel_file = abs_file[ len( home_dir_prefix ) : ]
58
# check if file exists in repository
83
59
repo_file = os.path.join( the.repo.full_dir, rel_file )
84
60
if not os.path.lexists( repo_file ):
85
61
raise the.program.FatalError(
86
62
'not managed by stdhome: %s' % rel_file )
88
64
# append the file or directory tree
89
ret.update( Walker.generate_walk_list(
90
the.repo.full_dir, rel_file, recurse ) )
65
ret.extend( Walker.generate_walk_list( rel_file ) )
92
67
return sorted( set ( ret ) )
96
def print_stage_commands_notice():
97
# 01234567890123456789012345678901234567890123456789012345678901234567890123456789
98
print("In addition to using the primary commands (such as add and remove) to modify a")
99
print("remote repository, you can also set up changes in the local repository and")
100
print("manually commit them in one go to a remote repository when you're ready. This")
101
print("is done with the staging commands. Note, some primary commands will not work")
102
print("when there are staged changes. You can revert all staged changes with the")
103
print("stage-revert command.")