Create common json_parser_utils functions

Create a json_parser_utils namespace containing common functions for
parsing JSON.

Extract the common functions from the JSON parsing code in the
phosphor-regulators and phosphor-power-sequencer applications.
Both applications have some identical parsing functions.

Create a common ConfigFileParserError class. The phosphor-regulators and
phosphor-power-sequencer applications both have an identical version of
this exception class.

Extract the common test cases from the two applications and put them in
a common location as well.

Summary:
* Common JSON parsing functions in
  phosphor-power-sequencer/src/config_file_parser.* and
  phosphor-regulators/src/config_file_parser.* moved to
  json_parser_utils.*
* Common test cases in
  phosphor-power-sequencer/test/config_file_parser_tests.cpp and
  phosphor-regulators/test/config_file_parser_tests.cpp moved to
  test/json_parser_utils_tests.cpp
* phosphor-power-sequencer/src/config_file_parser_error.hpp and
  phosphor-regulators/src/config_file_parser_error.hpp replaced with
  config_file_parser_error.hpp
* phosphor-power-sequencer/test/config_file_parser_error_tests.cpp and
  phosphor-regulators/test/config_file_parser_error_tests.cpp replaced
  with test/config_file_parser_error_tests.cpp

Tested:
* Ran automated test cases.

Change-Id: I35074c5e42d9e89def41ba8e729fe11c54ed8d27
Signed-off-by: Shawn McCarney <shawnmm@us.ibm.com>
diff --git a/test/meson.build b/test/meson.build
index 35f851e..4e096e1 100644
--- a/test/meson.build
+++ b/test/meson.build
@@ -2,8 +2,10 @@
     'common-code-tests',
     executable(
         'common-code-tests',
+        'config_file_parser_error_tests.cpp',
         'file_descriptor_tests.cpp',
         'format_utils_tests.cpp',
+        'json_parser_utils_tests.cpp',
         'nvtest.cpp',
         'temporary_file_tests.cpp',
         'temporary_subdirectory_tests.cpp',