From a8ec94f528d633fef6ab1d40a3c7564f38d15238 Mon Sep 17 00:00:00 2001 From: Ralph Amissah Date: Sun, 8 Dec 2019 13:05:35 -0500 Subject: src without pod.manifest, report on verbose --- org/default_paths.org | 21 ++++++++++++--------- org/spine.org | 2 +- 2 files changed, 13 insertions(+), 10 deletions(-) (limited to 'org') diff --git a/org/default_paths.org b/org/default_paths.org index 3092571..1e09455 100644 --- a/org/default_paths.org +++ b/org/default_paths.org @@ -48,8 +48,9 @@ import template PodManifest() { mixin spineRgxInit; static auto rgx = Rgx(); - auto PodManifest(P)( - P _pth="" + auto PodManifest(O)( + O _opt_actions, + string _pth="" ) { struct ManifestFile_ { string pod_manifest_filename() { @@ -57,20 +58,22 @@ template PodManifest() { } string pod_manifest_path() { string _manifest_path; - if ((isValidPath(_pth) && exists(_pth)!=0 && _pth.isDir) - && (exists(_pth.chainPath(pod_manifest_filename).array)!=0 + if ((isValidPath(_pth) && exists(_pth) != 0 && _pth.isDir) + && (exists(_pth.chainPath(pod_manifest_filename).array) != 0 && (_pth.chainPath(pod_manifest_filename).array).isFile)) { _manifest_path = _pth; } else if (_pth.match(rgx.src_pth_contents) - && exists(_pth)!=0 && _pth.isFile) { + && exists(_pth) != 0 && _pth.isFile) { _manifest_path = _pth.dirName; } else if (_pth.match(rgx.src_pth_pod_sst_or_ssm) - && exists(_pth)!=0 && (_pth.isFile)) { + && exists(_pth) != 0 && (_pth.isFile)) { if (auto m = _pth.match(rgx.src_pth_pod_sst_or_ssm)) { _manifest_path = m.captures["podpath"]; } } else { - writeln("WARNING, issue with manifest_path: ", _pth); + if (_opt_actions.verbose || _opt_actions.very_verbose || _opt_actions.debug_do) { + writeln("WARNING, src is not a pod, issue with manifest_path: ", _pth); // remove? unless can distinguish pod + } _manifest_path = null; // _manifest_path = ""; } return _manifest_path; @@ -129,7 +132,7 @@ template PathMatters() { string _fns = "", char[][] _manifest_fn_list = [[]], ) { - auto _manifested = PodManifest!()(_pth); + auto _manifested = PodManifest!()(_opt_actions, _pth); struct ManifestMatters_ { auto env() { auto _env = _env; @@ -908,7 +911,7 @@ template spinePathsPods() { } auto fn_pod_filelist(string fn_src) { auto pod_root_ = pod_root(fn_src); - auto _manifested = PodManifest!()(fn_src).pod_manifest_filename; + auto _manifested = PodManifest!()(doc_matters.opt.action, fn_src).pod_manifest_filename; auto pth_1_ = _manifested; auto pth_2_ = ((pod_root(fn_src).filesystem_open_zpod.chainPath(_manifested)).asNormalizedPath).array; struct _pods { diff --git a/org/spine.org b/org/spine.org index 256311d..42030c7 100644 --- a/org/spine.org +++ b/org/spine.org @@ -791,7 +791,7 @@ if (_opt_action.config_path_set.empty) { } } foreach(arg; args[1..$]) { // refigure how args relate to _opt_action, need path from _opt_action or args early _manifested too late, work on (search for PathMatters and .harvest, - auto _manifest_start = PodManifest!()(arg); + auto _manifest_start = PodManifest!()(_opt_action, arg); if (arg.match(rgx.flag_action)) { /+ cli instruction, flag do +/ flag_action ~= " " ~ arg; // flags not taken by getopt } else { /+ cli, assumed to be path to source files +/ -- cgit v1.2.3