buffet: Adding GCD command definition schema - phase 1.
Initial implementation of GCD command definition schema
and parsing command definition provided as JSON.
This change introduces the class hierarchy to describe
parameter type description (ParamType-derived classes),
parameter values (ParamValue-derived classes), constraints,
and general object schema which is a collection of
parameter definition for an object which corresponds
almost directly into a GCD command definition.
Object definition parsing from JSON is implemented
as well as validation of parameter values with rich
error reporting.
This is a basis for future command definition implementation
and device draft definition for GCD devices.
BUG=chromium:374860
TEST=Unit tests pass
Change-Id: I82d185b155956ff31a2d2e33f75bec9605ef32ee
Reviewed-on: https://chromium-review.googlesource.com/201159
Reviewed-by: Christopher Wiley <wiley@chromium.org>
Commit-Queue: Alex Vakulenko <avakulenko@chromium.org>
Tested-by: Alex Vakulenko <avakulenko@chromium.org>
diff --git a/buffet/buffet.gyp b/buffet/buffet.gyp
index f997532..c16d741 100644
--- a/buffet/buffet.gyp
+++ b/buffet/buffet.gyp
@@ -11,10 +11,8 @@
'libcurl',
],
},
- # TODO(sosa): Remove gflags: crbug.com/356745.
'link_settings': {
'libraries': [
- '-lgflags',
'-lbase-dbus_test_support-<(libbase_ver)',
],
},
@@ -29,6 +27,11 @@
'sources': [
'any.cc',
'async_event_sequencer.cc',
+ 'commands/object_schema.cc',
+ 'commands/prop_constraints.cc',
+ 'commands/prop_types.cc',
+ 'commands/prop_values.cc',
+ 'commands/schema_constants.cc',
'data_encoding.cc',
'dbus_constants.cc',
'dbus_utils.cc',
@@ -80,6 +83,7 @@
'any_internal_impl_unittest.cc',
'async_event_sequencer_unittest.cc',
'buffet_testrunner.cc',
+ 'commands/object_schema_unittest.cc',
'data_encoding_unittest.cc',
'device_registration_info_unittest.cc',
'error_unittest.cc',