diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-15 19:59:12 +0300 |
commit | 056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11 (patch) | |
tree | 4740980126f32e3af7937ba0ca5f83e59baa4ab0 /build/plugins/cp.py | |
parent | 269126dcced1cc8b53eb4398b4a33e5142f10290 (diff) | |
download | ydb-056bb284ccf8dd6793ec3a54ffa36c4fb2b9ad11.tar.gz |
add library/cpp/actors, ymake build to ydb oss export
Diffstat (limited to 'build/plugins/cp.py')
-rw-r--r-- | build/plugins/cp.py | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/build/plugins/cp.py b/build/plugins/cp.py new file mode 100644 index 0000000000..5c663a3bdd --- /dev/null +++ b/build/plugins/cp.py @@ -0,0 +1,30 @@ +import os + +from _common import sort_by_keywords + + +def oncopy(unit, *args): + keywords = {'RESULT': 1, 'KEEP_DIR_STRUCT': 0, 'DESTINATION': 1, 'FROM': 1} + + flat_args, spec_args = sort_by_keywords(keywords, args) + + dest_dir = spec_args['DESTINATION'][0] if 'DESTINATION' in spec_args else '' + from_dir = spec_args['FROM'][0] if 'FROM' in spec_args else '' + keep_struct = 'KEEP_DIR_STRUCT' in spec_args + save_in_var = 'RESULT' in spec_args + targets = [] + + for source in flat_args: + rel_path = '' + path_list = source.split(os.sep) + filename = path_list[-1] + if keep_struct: + if path_list[:-1]: + rel_path = os.path.join(*path_list[:-1]) + source_path = os.path.join(from_dir, rel_path, filename) + target_path = os.path.join(dest_dir, rel_path, filename) + if save_in_var: + targets.append(target_path) + unit.oncopy_file([source_path, target_path]) + if save_in_var: + unit.set([spec_args["RESULT"][0], " ".join(targets)]) |