aboutsummaryrefslogtreecommitdiff
path: root/bbot/manifest
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/manifest')
-rw-r--r--bbot/manifest17
1 files changed, 13 insertions, 4 deletions
diff --git a/bbot/manifest b/bbot/manifest
index 3022535..087fd25 100644
--- a/bbot/manifest
+++ b/bbot/manifest
@@ -17,8 +17,6 @@
#include <bbot/export>
-#include <bbot/variable>
-
namespace bbot
{
using strings = std::vector<std::string>;
@@ -105,8 +103,12 @@ namespace bbot
// Build system configuration variables (in addition to build environment
// configuration variables).
+ // Note: could be quoted.
//
- variables config;
+ strings config;
+
+ strings
+ unquoted_config ();
task_manifest (std::string nm,
bpkg::version vr,
@@ -114,7 +116,7 @@ namespace bbot
strings tr,
std::string mn,
butl::optional<butl::target_triplet> tg,
- variables cf)
+ strings cf)
: name (std::move (nm)),
version (std::move (vr)),
repository (std::move (rl)),
@@ -132,6 +134,13 @@ namespace bbot
void
serialize (butl::manifest_serializer&) const;
+
+ // Check that a string has the name=value format. The name must not
+ // contain spaces. Throw invalid_argument if the string doesn't conform to
+ // these rules.
+ //
+ static void
+ check_config (const std::string&);
};
class LIBBBOT_EXPORT task_response_manifest