summaryrefslogtreecommitdiff
path: root/examples/file
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-04-08 14:51:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-04-27 11:38:53 +0300
commit720c5a33b6a49cf328fdd7611f49153cf8f60247 (patch)
tree9725f3d1f42ec90fde84520f49647edea013ce5e /examples/file
parent3183f3bb927a90783ae0aeaf190a0919377aabe4 (diff)
Separate tests and examples into individual packages
Also make cli module to be explicitly enabled via the config.cli configuration variable.
Diffstat (limited to 'examples/file')
-rw-r--r--examples/file/.gitignore1
-rw-r--r--examples/file/README38
-rw-r--r--examples/file/buildfile11
-rw-r--r--examples/file/driver.cxx35
-rw-r--r--examples/file/options.cli7
-rw-r--r--examples/file/test.ops7
6 files changed, 0 insertions, 99 deletions
diff --git a/examples/file/.gitignore b/examples/file/.gitignore
deleted file mode 100644
index c6e608b..0000000
--- a/examples/file/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-options.?xx
diff --git a/examples/file/README b/examples/file/README
deleted file mode 100644
index 289fc64..0000000
--- a/examples/file/README
+++ /dev/null
@@ -1,38 +0,0 @@
-This example shows how to allow the users of your application to supply
-options in files in addition to the command line.
-
-The example consists of the following files:
-
-options.cli
- Command line interface description in the CLI language.
-
-options.hxx
-options.ixx
-options.cxx
- Command line interface implementation in C++. These files are generated
- by the CLI compiler from options.cli using the following command line:
-
- cli --generate-file-scanner hello.cli
-
- We use the --generate-file-scanner CLI compiler option to include the
- argv_file_scanner scanner implementation which provides support for
- reading options from files in addition to the command line.
-
-driver.cxx
- Driver for the example. It first creates the argv_file_scanner object
- and indicates that the values for the --options-file option should be
- recognized as files containing additional options. It then passes this
- scanner object to the option class which parses the command line. The
- driver then prints the option values.
-
-test.ops
- Sample options file.
-
-To run this example you can try the following command line:
-
-$ ./driver --verbose 2 --val 1 --options-file test.ops --val 4
-
-The output will be:
-
-verbosity: 5
-values: 1 2 3 4
diff --git a/examples/file/buildfile b/examples/file/buildfile
deleted file mode 100644
index eadfc66..0000000
--- a/examples/file/buildfile
+++ /dev/null
@@ -1,11 +0,0 @@
-# file : examples/file/buildfile
-# license : MIT; see accompanying LICENSE file
-
-exe{driver}: {hxx cxx}{* -options} cli.cxx{options} doc{README}
-exe{driver}: test.arguments = --options-file
-exe{driver}: file{test.ops}: test.input = true # Added after test.arguments.
-
-cxx.poptions =+ "-I$out_base"
-
-cli.cxx{options}: cli{options}
-cli.options = --generate-file-scanner
diff --git a/examples/file/driver.cxx b/examples/file/driver.cxx
deleted file mode 100644
index d187559..0000000
--- a/examples/file/driver.cxx
+++ /dev/null
@@ -1,35 +0,0 @@
-// file : examples/file/driver.cxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// license : MIT; see accompanying LICENSE file
-
-#include <iostream>
-#include <iterator>
-#include <algorithm>
-
-#include "options.hxx"
-
-using namespace std;
-
-int
-main (int argc, char* argv[])
-{
- try
- {
- cli::argv_file_scanner s (argc, argv, "--options-file");
- options o (s);
-
- cout << "verbosity: " << o.verbose () << endl
- << "values: ";
-
- copy (o.val ().begin (),
- o.val ().end (),
- ostream_iterator<int> (cout, " "));
-
- cerr << endl;
- }
- catch (const cli::exception& e)
- {
- cerr << e << endl;
- return 1;
- }
-}
diff --git a/examples/file/options.cli b/examples/file/options.cli
deleted file mode 100644
index 3e6db5a..0000000
--- a/examples/file/options.cli
+++ /dev/null
@@ -1,7 +0,0 @@
-include <vector>;
-
-class options
-{
- int --verbose;
- std::vector<int> --val;
-};
diff --git a/examples/file/test.ops b/examples/file/test.ops
deleted file mode 100644
index 65fcf07..0000000
--- a/examples/file/test.ops
+++ /dev/null
@@ -1,7 +0,0 @@
-# Sample options file. Empty lines and lines starting with '#' are
-# ignored.
-#
---verbose 5
-
---val 2
---val=3