Skip to content
Snippets Groups Projects
Commit c1cd4109 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #1418: Added assertions to check parset validity (storage location keys)

parent b5ffd7c5
No related branches found
No related tags found
No related merge requests found
......@@ -358,6 +358,8 @@ Observation::Observation(const ParameterSet* aParSet,
vector<string> locations = aParSet->getStringVector(prefix+str(format("DataProducts.Output_%s.locations") % dataProductNames[d]), true);
vector<unsigned> &psets = dataProductPhases[d] == 2 ? phaseTwoPsets : phaseThreePsets;
ASSERTSTR(filenames.size() == locations.size(), "Parset provides " << filenames.size() << " filenames but only " << locations.size() << " locations.");
unsigned numFiles = filenames.size();
unsigned filesPerPset = (numFiles + psets.size() - 1) / psets.size();
......@@ -371,6 +373,8 @@ Observation::Observation(const ParameterSet* aParSet,
a.sourcePset = psets[i / filesPerPset];
vector<string> locparts = StringUtil::split(locations[i],':');
ASSERTSTR(locparts.size() == 2, "A DataProduct location must be of the format host:directory (but I found " << locations[i] << ")");
a.destStorageNode = locparts[0];
a.destDirectory = locparts[1];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment