Commit b3b4f988 by Paul Sokolovsky

copy: Implement recursive copying if src is a directory.

If src param to copy is a directory, all files under it are collected
and pushed one by one to target. Source dir path handled in a way
simalar to rsync: if it ends with slash, only inside contents of
directory are copied to destination, otherwise the dir itself is
copied (with all contents of course). Original idea and implementation
by https://github.com/ansible/ansible/pull/1809 . Rewritten to address
review comments and simplify/correct logic.
parent ebbf845e
...@@ -59,6 +59,10 @@ class ActionModule(object): ...@@ -59,6 +59,10 @@ class ActionModule(object):
result=dict(failed=True, msg="src and content are mutually exclusive") result=dict(failed=True, msg="src and content are mutually exclusive")
return ReturnData(conn=conn, result=result) return ReturnData(conn=conn, result=result)
source_trailing_slash = False
if source:
source_trailing_slash = source.endswith("/")
# if we have first_available_file in our vars # if we have first_available_file in our vars
# look up the files and use the first one we find as src # look up the files and use the first one we find as src
if 'first_available_file' in inject: if 'first_available_file' in inject:
...@@ -95,86 +99,133 @@ class ActionModule(object): ...@@ -95,86 +99,133 @@ class ActionModule(object):
source = utils.path_dwim(self.runner.basedir, source) source = utils.path_dwim(self.runner.basedir, source)
local_md5 = utils.md5(source) source_files = []
if local_md5 is None: if os.path.isdir(source):
result=dict(failed=True, msg="could not find src=%s" % source) # Implement rsync-like behavior: if source is "dir/" , only
return ReturnData(conn=conn, result=result) # inside its contents will be copied to destination. Otherwise
# if it's "dir", dir itself will be copied to destination.
if dest.endswith("/"): if source_trailing_slash:
base = os.path.basename(source) sz = len(source) + 1
dest = os.path.join(dest, base) else:
sz = len(source.rsplit('/', 1)[0]) + 1
remote_md5 = self.runner._remote_md5(conn, tmp, dest) for base_path, sub_folders, files in os.walk(source):
if remote_md5 == '3': for file in files:
# Destination is a directory full_path = os.path.join(base_path, file)
if content is not None: rel_path = full_path[sz:]
os.remove(tmp_content) source_files.append((full_path, rel_path))
result = dict(failed=True, msg="can not use content with a dir as dest") else:
source_files.append((source, os.path.basename(source)))
changed = False
diffs = []
module_result = None
for source_full, source_rel in source_files:
# We need to get a new tmp path for each file, otherwise the copy module deletes the folder.
tmp = self.runner._make_tmp_path(conn)
local_md5 = utils.md5(source_full)
if local_md5 is None:
result=dict(failed=True, msg="could not find src=%s" % source_full)
return ReturnData(conn=conn, result=result) return ReturnData(conn=conn, result=result)
dest = os.path.join(dest, os.path.basename(source))
remote_md5 = self.runner._remote_md5(conn, tmp, dest)
# remote_md5 == '1' would mean that the file does not exist.
if remote_md5 != '1' and not force:
return ReturnData(conn=conn, result=dict(changed=False))
exec_rc = None
if local_md5 != remote_md5:
if self.runner.diff and not raw: # This is kind of optimization - if user told us destination is
diff = self._get_diff_data(conn, tmp, inject, dest, source) # dir, do path manipulation right away, otherwise we still check
# for dest being a dir via remote call below.
if dest.endswith("/"):
dest_file = os.path.join(dest, source_rel)
else: else:
diff = {} dest_file = dest
if self.runner.noop_on_check(inject): remote_md5 = self.runner._remote_md5(conn, tmp, dest_file)
if remote_md5 == '3':
# Destination is a directory
if content is not None: if content is not None:
os.remove(tmp_content) os.remove(tmp_content)
return ReturnData(conn=conn, result=dict(changed=True), diff=diff) result = dict(failed=True, msg="can not use content with a dir as dest")
return ReturnData(conn=conn, result=result)
dest_file = os.path.join(dest, source_rel)
remote_md5 = self.runner._remote_md5(conn, tmp, dest_file)
# remote_md5 == '1' would mean that the file does not exist.
if remote_md5 != '1' and not force:
continue
exec_rc = None
if local_md5 != remote_md5:
# Assume we either really change file or error out
changed = True
if self.runner.diff and not raw:
diff = self._get_diff_data(conn, tmp, inject, dest_file, source_full)
else:
diff = {}
if self.runner.noop_on_check(inject):
if content is not None:
os.remove(tmp_content)
diffs.append(diff)
continue
# transfer the file to a remote tmp location
tmp_src = tmp + 'source'
if not raw: # transfer the file to a remote tmp location
conn.put_file(source, tmp_src) tmp_src = tmp + 'source'
else:
conn.put_file(source, dest)
if content is not None: if not raw:
os.remove(tmp_content) conn.put_file(source_full, tmp_src)
else:
conn.put_file(source_full, dest_file)
# fix file permissions when the copy is done as a different user if content is not None:
if self.runner.sudo and self.runner.sudo_user != 'root' and not raw: os.remove(tmp_content)
self.runner._low_level_exec_command(conn, "chmod a+r %s" % tmp_src, tmp)
if raw: # fix file permissions when the copy is done as a different user
return ReturnData(conn=conn, result=dict(dest=dest, changed=True)) if self.runner.sudo and self.runner.sudo_user != 'root' and not raw:
self.runner._low_level_exec_command(conn, "chmod a+r %s" % tmp_src, tmp)
# run the copy module if raw:
if raw: continue
# don't send down raw=no
module_args.pop('raw')
module_args = "%s src=%s original_basename=%s" % (module_args, pipes.quote(tmp_src), pipes.quote(os.path.basename(source)))
return self.runner._execute_module(conn, tmp, 'copy', module_args, inject=inject, complex_args=complex_args)
else: # run the copy module
# no need to transfer the file, already correct md5, but still need to call if raw:
# the file module in case we want to change attributes # don't send down raw=no
module_args.pop('raw')
module_args = "%s src=%s original_basename=%s" % (module_args, pipes.quote(tmp_src), pipes.quote(source_rel))
module_return = self.runner._execute_module(conn, tmp, 'copy', module_args, inject=inject, complex_args=complex_args)
if content is not None: else:
os.remove(tmp_content) # no need to transfer the file, already correct md5, but still need to call
# the file module in case we want to change attributes
if raw: if content is not None:
return ReturnData(conn=conn, result=dict(dest=dest, changed=False)) os.remove(tmp_content)
tmp_src = tmp + os.path.basename(source) if raw:
if raw: continue
# don't send down raw=no
module_args.pop('raw') tmp_src = tmp + source_rel
module_args = "%s src=%s" % (module_args, pipes.quote(tmp_src)) if raw:
if self.runner.noop_on_check(inject): # don't send down raw=no
module_args = "%s CHECKMODE=True" % module_args module_args.pop('raw')
return self.runner._execute_module(conn, tmp, 'file', module_args, inject=inject, complex_args=complex_args) module_args = "%s src=%s" % (module_args, pipes.quote(tmp_src))
if self.runner.noop_on_check(inject):
module_args = "%s CHECKMODE=True" % module_args
module_return = self.runner._execute_module(conn, tmp, 'file', module_args, inject=inject, complex_args=complex_args)
module_result = module_return.result
if module_result.get('failed') == True:
return module_return
if module_result.get('changed') == True:
changed = True
# TODO: Support detailed status/diff for multiple files
if len(source_files) == 1:
result = module_result
else:
result = dict(dest=dest, src=source, changed=changed)
if len(diffs) == 1:
return ReturnData(conn=conn, result=result, diff=diffs[0])
else:
return ReturnData(conn=conn, result=result)
def _get_diff_data(self, conn, tmp, inject, destination, source): def _get_diff_data(self, conn, tmp, inject, destination, source):
peek_result = self.runner._execute_module(conn, tmp, 'file', "path=%s diff_peek=1" % destination, inject=inject, persist_files=True) peek_result = self.runner._execute_module(conn, tmp, 'file', "path=%s diff_peek=1" % destination, inject=inject, persist_files=True)
......
...@@ -31,6 +31,10 @@ options: ...@@ -31,6 +31,10 @@ options:
src: src:
description: description:
- Local path to a file to copy to the remote server; can be absolute or relative. - Local path to a file to copy to the remote server; can be absolute or relative.
If path is a directory, it is copied recursively. In this case, if path ends
with "/", only inside contents of that directory are copied to destination.
Otherwise, if it does not end with "/", the directory itself with all contents
is copied. This behavior is similar to Rsync.
required: false required: false
default: null default: null
aliases: [] aliases: []
...@@ -42,7 +46,8 @@ options: ...@@ -42,7 +46,8 @@ options:
default: null default: null
dest: dest:
description: description:
- Remote absolute path where the file should be copied to. - Remote absolute path where the file should be copied to. If src is a directory,
this must be a directory too.
required: true required: true
default: null default: null
backup: backup:
...@@ -76,8 +81,8 @@ options: ...@@ -76,8 +81,8 @@ options:
required: false required: false
author: Michael DeHaan author: Michael DeHaan
notes: notes:
- The "copy" module can't be used to recursively copy directory structures to the target machine. Please see the - The "copy" module recursively copy facility does not scale to lots (>hundreds) of files.
"Delegation" section of the Advanced Playbooks documentation for a better approach to recursive copies. For alternative, see "Delegation" section of the Advanced Playbooks documentation.
''' '''
EXAMPLES = ''' EXAMPLES = '''
...@@ -122,6 +127,13 @@ def main(): ...@@ -122,6 +127,13 @@ def main():
md5sum_src = module.md5(src) md5sum_src = module.md5(src)
md5sum_dest = None md5sum_dest = None
# Special handling for recursive copy - create intermediate dirs
if original_basename and dest.endswith("/"):
dest = os.path.join(dest, original_basename)
dirname = os.path.dirname(dest)
if not os.path.exists(dirname):
os.makedirs(dirname)
if os.path.exists(dest): if os.path.exists(dest):
if not force: if not force:
module.exit_json(msg="file already exists", src=src, dest=dest, changed=False) module.exit_json(msg="file already exists", src=src, dest=dest, changed=False)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment