1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
# M_CLI2.f90 and associated files

## Name
### M_CLI2 - parse Unix-like command line arguments from Fortran
## Description
M_CLI2(3f) is a Fortran module that will crack the command line when
given a prototype string that looks very much like an invocation of
the program. calls are then made for each parameter name to set the
variables appropriately in the program.
## Example Program
This short program defines a command that can be called using
conventional Unix-style syntax for short and long parameters:
```bash
./show -x 10 -y -20 -p 10,20,30 --title "plot of stuff" -L
./show -lL
./show --title="my new title"
./show -T "my new title"
```
```fortran
program show
use M_CLI2, only : set_args, get_args, sget, igets, set_mode
implicit none
real :: x,y,z
logical :: l, lbig
integer,allocatable :: p(:)
character(len=:),allocatable :: title
namelist /args/x,y,z,l,lbig,p,title ! just for printing
call set_mode('strict')
!
! Define command and default values and parse supplied command line options
call set_args('-x 1 -y 2.0 -z 3.5e0 -p 11,-22,33 --title:T "my title" -l F -L F')
!
! multiple scalar non-allocatable values can be done in one call if desired
call get_args('x',x,'y',y,'z',z,'l',l,'L',lbig)
! you can use convenience functions for allocatable arrays and strings.
! The functions are particularly useful in expressions and as arguments on
! procedure calls
title=sget('title') ! string
p=igets('p') ! integer array
!
! All ready to go, print it as a namelist so everything is labeled
write(*,args)
end program show
```
running with no options shows the defaults
```text
&ARGS
X= 1.00000000 ,
Y= 2.00000000 ,
Z= 3.50000000 ,
L=F,
LBIG=F,
P=11 ,-22 ,33 ,
TITLE="my title",
/
```
An arbitrary number of strings such as filenames may be passed in on
the end of commands; you can query whether an option was supplied; and
get_args(3f)-related routines can be used for refining options such as
requiring lists of a specified size.
These parameters are defined automatically
```bash
--help
--usage
--version
```
You must supply text for the optional "--help" and "--version" keywords, as
described under SET_ARGS(3f).

## Documentation

### man-pages
- HTML [man-pages](https://urbanjost.github.io/M_CLI2/man3.html) index of individual procedures
- HTML [book-form ](https://urbanjost.github.io/M_CLI2/BOOK_M_CLI2.html) of pages consolidated using JavaScript
+ [manpages.zip](https://urbanjost.github.io/M_CLI2/manpages.zip) for installing wherever the man(1) command is available
+ [manpages.tgz](https://urbanjost.github.io/M_CLI2/manpages.tgz) is an alternative tar(1) format archive
### developer documentation
- [doxygen(1) output](https://urbanjost.github.io/M_CLI2/doxygen_out/html/index.html).
- [ford(1) output](https://urbanjost.github.io/M_CLI2/fpm-ford/index.html).
### logs
- [CHANGELOG](docs/CHANGELOG.md)
- [STATUS](docs/STATUS.md) of most recent CI/CD runs

## Download and Build with Make(1)
Compile the M_CLI2 module and build all the example programs.
```bash
git clone https://github.com/urbanjost/M_CLI2.git
cd M_CLI2/src
# change Makefile if not using one of the listed compilers
# for gfortran
make clean
make gfortran
# for ifort
make clean
make ifort
# for nvfortran
make clean
make nvfortran
# display other options (test, run, doxygen, ford, ...)
make help
```
To install you then generally copy the *.mod file and *.a file to
an appropriate directory. Unfortunately, the specifics vary but in
general if you have a directory $HOME/.local/lib and copy those files
there then you can generally enter something like
```bash
gfortran -L$HOME/.local/lib -lM_CLI2 myprogram.f90 -o myprogram
```
There are different methods for adding the directory to your default
load path, but frequently you can append the directory you have
placed the files in into the colon-separated list of directories
in the $LD_LIBRARY_PATH or $LIBRARY_PATH environment variable, and
then the -L option will not be required (or it's equivalent in your
programming environment).
```bash
export LD_LIBRARY_PATH=$HOME/.local/lib:$LD_LIBRARY_PATH
```
**NOTE**: If you use multiple Fortran compilers you may need to create
a different directory for each compiler. I would recommend it, such
as $HOME/.local/lib/gfortran/.
### Creating a shared library
If you desire a shared library as well, for gfortran you may enter
```bash
make clean gfortran gfortran_install
```
and everything needed by gfortran will be placed in libgfortran/ that
you may add to an appropriate area, such as $HOME/.local/lib/gfortran/.
```bash
make clean ifort ifort_install # same for ifort
```
does the same for the ifort compiler and places the output in libifort/.
### Specifics may vary
NOTE: The build instructions above are specific to a ULS (Unix-Like
System) and may differ, especially for those wishing to generate shared
libraries (which varies significantly depending on the programming
environment). For some builds it is simpler to make a Makefile for
each compiler, which might be required for a more comprehensive build
unless you are very familiar with gmake(1).
If you always use one compiler it is relatively simple, otherwise
make sure you know what your system requires and change the Makefile
as appropriate.

## Build with FPM
Alternatively, fpm(1) users may download the github repository and build it with
fpm ( as described at [Fortran Package Manager](https://github.com/fortran-lang/fpm) )
```bash
git clone https://github.com/urbanjost/M_CLI2.git
cd M_CLI2
fpm test # build and test the module
fpm install # install the module (in the default location)
```
or just list it as a dependency in your fpm.toml project file.
```toml
[dependencies]
M_CLI2 = { git = "https://github.com/urbanjost/M_CLI2.git" }
```
## Supports Meson
Alternatively, meson(1) users may download the github repository and build it with
meson ( as described at [Meson Build System](https://mesonbuild.com/) )
```bash
git clone https://github.com/urbanjost/M_CLI2.git
cd M_CLI2
meson setup _build
meson test -C _build # build and test the module
# install the module (in the <DIR> location)
# --destdir is only on newer versions of meson
meson install -C _build --destdir <DIR>
# older method if --destdir is not available
env DESTDIR=<DIR> meson install -C _build
```
or just list it as a [subproject dependency](https://mesonbuild.com/Subprojects.html) in your meson.build project file.
```meson
M_CLI2_dep = subproject('M_CLI2').get_variable('M_CLI2_dep')
```
## Functional Specification
**This is how the interface works --**
* Pass in a string to set_args(3f) that looks almost like the command
you would use to execute the program except with all keywords and
default values specified.
* you add calls to the get_args(3f) procedure or one of its variants.
The alternative convenience procedures (rget(3f),sget(3f),iget(3f)
...) allow you to use a simple function-based interface model. There
are special routines for when you want to use fixed length. CHARACTER
variables or fixed-size arrays instead of the allocatable variables
best used with get_args(3f)).
Now when you call the program all the values in the prototype should
be updated using values from the command line and queried and ready
to use in your program.

## Demo Programs
These demo programs provide templates for the most common usage:
* [demo3](example/demo3.f90) Example of **basic** use
* [demo1](example/demo1.f90) Using the convenience functions
* [demo9](example/demo9.f90) Long and short names using --LONGNAME:SHORTNAME.
* [demo2](example/demo2.f90) Putting everything including **help** and **version** information into a contained procedure.
* [demo17](example/demo17.f90) Using unnamed options as filenames or strings
* [demo16](example/demo16.f90) Using unnamed values as numbers
## Optional Modes
* [demo15](example/demo15.f90) Allowing bundling short Boolean keys using "strict" mode
* [demo14](example/demo14.f90) Case-insensitive long keys
* [demo12](example/demo12.f90) Enabling response files
* [demo13](example/demo13.f90) Equivalencing dash to underscore in keynames
## Niche examples
* [demo8](example/demo8.f90) Parsing multiple keywords in a single call to get_args(3f)
* [demo4](example/demo4.f90) _COMPLEX_ type values
* [demo7](example/demo7.f90) Controlling array delimiter characters
* [demo6](example/demo6.f90) How to create a command with subcommands
* [demo5](example/demo5.f90) extended description of using _CHARACTER_ type values
## Response files
[Response files](response.md) are supported as described in the documentation for
[set_args](https://urbanjost.github.io/M_CLI2/set_args.3m_cli2.html).
They are a system-independent way to create short abbreviations for long
complex commands. This option is generally not needed by programs with
just a few options, but can be particularly useful for programs with
dozens of options where various values are frequently reused.
## Commit Tests ##
commit `598e44164eee383b8a0775aa75b7d1bb100481c3` was tested on 2020-11-22 with
+ GNU Fortran (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5)
+ ifort (IFORT) 19.1.3.304 20200925
+ nvfortran 20.7-0 LLVM 64-bit target on x86-64 Linux
commit `8fe841d8c0c1867f88847e24009a76a98484b31a` was tested on 2021-09-29 with
+ GNU Fortran (Ubuntu 10.3.0-1ubuntu1~20.04) 10.3.0
+ ifort (IFORT) 2021.3.0 20210609
+ nvfortran 21.5-0 LLVM 64-bit target on x86-64 Linux -tp nehalem
commit `732bcadf95e753ccdf025cec2c08d776ea2534c2` was tested on 2023-02-10 with
+ ifort (IFORT) 2021.8.0 20221119
+ GNU Fortran (Ubuntu 11.1.0-1ubuntu1~20.04) 11.1.0
---
<!--
Last updated: Wed Sep 29 17:34:52 2021 -0400
Last update: Sat 21 Jan 2023 11:10:53 PM EST
-->
Last update: Saturday, February 4th, 2023 1:12:54 AM UTC-05:00
|