Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Embedded command documentation needs to be moved outside the C source files #507

Open
krader1961 opened this issue May 6, 2018 · 22 comments
Assignees

Comments

@krader1961
Copy link
Contributor

See issue #503 for an example where the information in man ksh differs from some_command --help. In that issue it is with respect to the hist command but there are plenty of others. It is bad enough that having two sources for command documentation inevitably leads to such discrepancies. Embedding the command help text in the C source also makes it hard for a human to read and edit.

Contrast this state of affairs with how the fish shell does it. It supports both builtin_command --help and man builtin_command. And due to how the help text is managed it is guaranteed they will always be in agreement. This project should be able to do the same thing.

P.S., If and when this is resolved it would be a good idea to switch the markup language from the ancient troff style to Markdown.

@krader1961
Copy link
Contributor Author

For what it's worth the fish shell has decided to switch from Doxygen to Sphinx. Something I strongly recommend for this project. The ancient Troff markup language is all but unknown to anyone younger than myself (50+ years old). Not to mention that Troff markup is awful by modern sensibilities and there are few tools to translate it to other formats.

@krader1961
Copy link
Contributor Author

krader1961 commented Jul 10, 2018

Another example is the whence builtin. Typing whence --help says it supports a -q flag which works as expected. But the man page makes no mention of that flag.

I'm tempted to mark this as a blocking bug for the next ksh release. It should be impossible for the man page and "internal" documentation (e.g., "a_builtin --help") to disagree. People modifying the code shouldn't have to keep two distinct sources of truth in sync. There should be only one source of truth regarding the documented flags and behavior of builtin commands.

@dannyweldon
Copy link

The fact that the ast getopts builtin embeds documentation means that the getopts version should be the most correct version, as it has to be consistent with the options themselves.

The getopts builtin has an option to dump the raw nroff code:

thecmd --nroff

which means one possibility is to generate sections of the ksh man page from the builtins themselves using the above, which is currently dumping a full man page, but it could be modified to dump just the sections needed similarly to:

thecmd --help

Or the output of thecmd --nroff could be parsed to extract just the relevant information. This would enforce the DRY principle, as opposed to currently, where there are two sources of truth.

The getopts builtin also has an api version specification which could be increased to allow a newer format that allows the use of embedded markdown syntax.

@krader1961
Copy link
Contributor Author

krader1961 commented Jul 17, 2018

@siteshwar and I discussed this issue in the ksh93/users Gitter room today. What follows are the comments I made.

Doxygen is a really awful tool for writing user documentation. The fish shell project has had multiple issues related to writing documentation in Doxygen. And among other problems is the lexicon_filter.in script which no one understands.

Using Doxygen makes things hard that should be trivial and it is really hard to know if you've got the markup right. Too, they've had problems with the HTML and man pages looking different.

Moving the command documentation out of the source code has two goals: 1) a single source of truth, and b) switching from the ancient and frankly awful nroff markup to something more sensible that is easy to turn into man pages, HTML, and whatever else makes sense.

And a lesser goal is making it easier to edit the command docs by removing all the C syntax surrounding the text.

Embedding the docs so cmd --help works is a great idea. It just shouldn't have been done by embedding it in the source code. It should be embedded at build time by merging plain text files that contain the documentation.

@DavidMorano
Copy link

@krader1961

Embedding the docs so cmd --help works is a great idea. It just shouldn't have been done by embedding it at source edit time. It should be embedded at build time by merging plain text files that contain the documentation.

I do not know if this has been suggested yet or not, but can we get the on-line documentation out of the regular default run-time code altogether? That is: not included at source-edit time and NOT included either at build time. But rather, stored in the distribution directory tree some place (like for example under /usr/man/ or /usr/share/man or /usr/share/ksh/man/ or /usr/lib/ksh/help/, et cetera). Getting as small a run-time memory footprint for KSH was important years ago for very tight embedded memory budgets. I think this is still a good goal even now. For myself, I feel that the source documentation should never have been included into the regular run-time object from day one, but somehow it got in there in its current edit-time format (hard to read and hard to maintain). Storing the help text separately can also be thought of as using a plugin or a sort. That is, it is loaded at run-time, but only when called for. I tend to have extremely extensive use of run-time plugins (object files) now-a-days, as many other projects in the world also do now-a-days. Storing the help-man text separately can be thought of as an extension of this plugin idea.

I and a gazillion others have included a feature such as $ cmd --help for tons of years (decades) now, and we always stored the help-man text in separate files, stored separately within the run-time distribution tree. I have even done this for my own KSH built-ins. In fact, where I have done this feature at all for programs, I have done it storing the help documentation separately for all of the 40 years I have been programming this particular feature!

Is it possible that we can do the same for KSH going forward (that is: store the help-man text in a separate file, accessed at run-time when called for)?

Thanks for any consideration.

@krader1961
Copy link
Contributor Author

krader1961 commented Jul 17, 2018

It is possible to store the documentation external to the binary. The fish shell shows how to do it. It supports help a_cmd to open the local HTML version of doc in your browser. It also supports a_cmd --help to display the man page without piping through the pager. And, lastly, it supports man a_cmd via a man function that manipulates MANPATH so the fish man pages have higher precedence. If the install prefix is /usr/local the man pages end up in /usr/local/share/fish/man/man1/ and the HTML pages in /usr/local/share/doc/fish/. Because these are relative to the install root for the fish binary it also works if you install it under your home directory or some other atypical location.

This should be done in steps:

  1. Separate the embedded command documentation into independent files that get merged when compiling the source.

  2. Switch from Troff to a more modern markup language like reStructuredText as used by Sphinx or Markdown.

  3. Stop embedding the command documentation in the ksh binary. Note that this can be done without losing functionality like a_cmd --help and makes it easier to implement other functionality like the ability to display the HTML version in a web browser.

@dannyweldon
Copy link

Okay, I think it would be good to provide this ability to have the documentation external to the binary, as long as the existing getopts method still works because it is useful to be able to embed docs in shell scripts, which I believe originated with perl, but I agree that the current syntax is difficult, so a new simpler syntax would be nice, hopefully with an api version increase. :)

My main concern though, is will it still be able to work with relative paths because ksh has a feature to allow for easy creation of packages with their own bin, lib, and fun directories using a .paths file in the bin directory, which you just add to $PATH?

@DavidMorano
Copy link

@krader1961

My main concern though, is will it still be able to work with relative paths because ksh has a feature to allow for easy creation of packages with their own bin, lib, and fun directories using a .paths file in the bin directory, which you just add to $PATH?

I am sure that something can be worked out. KSH already does some "magic path" searching for other things. For myself, as I have implemented this sort of thing myself in the past, I search both a set of possible (somewhat standard) set of relative paths, and also a set of relatively standard system absolute paths for a program-specific storage directory in question (in this case one that would contain the doc files). For example, the first doc files found under ${PATH}/../doc/ksh/ would do. But a whole set of both relative and absolute paths could also be searched. For those still without enough imagination, reference both my and Kurtis Rader's previous posts on this topic for search-path suggestions. Not to intentionally complicate things too much, but I actually do an entire indirection on this whole process also. I first search a set of relative and absolute paths for a possible configuration file that itself contains a list of possible relative and absolute search paths, and failing that I search a default list of relative and absolute search paths. Also, not to explain here, but I also allow for arbitrarily different search paths for each individual program or KSH builtin, but that is likely not needed for most purposes. For those who may say, "but this is a lot of code?" the answer is, it only has to be written once (pretty much for all time). For a reasonably good and experienced programmer (with maybe a little OOD and knowledge of containers and the such), this is not a big problem (rather trivial in the scheme of things). But only a minimal solution is needed for starters.

If someone is thinking that searching for doc or help files might be a time consuming and long process, the correct answer is "who the hell cares." It is not something that matters from a performance perspective. Sorry if I was a bit too abrupt just now. :-)

@siteshwar
Copy link
Contributor

I hit this issue again in #945 and #948 and I think it's the right time to start taking steps to switch to a newer documentation system. I have discussed this issue before with @krader1961 and we agreed on switching to Sphinx. If anyone has objection to using it, please state why and what other tools we should consider.

@krader1961
Copy link
Contributor Author

@dannyweldon mentioned the ability to embed documentation inside scripts/functions that can be used by builtin getopts. This is similar to DocOpt but far uglier due to the support for Troff markup. I loath DocOpt type schemes. The AST implementation is particularly bad. It makes it harder to write clear documentation and harder to understand which options are valid. Trivial typos that are easy for a human to overlook can change the results. It does have the advantage of supporting more than plain text output compared to DocOpt.

AFAICT the ability to use DocOpt like strings with the builtin getopts command is undocumented. There are only two unit tests that verify it works. I am strongly opposed to documenting this feature. It makes far more sense to ensure the ksh implementation is compatible with bash and zsh. If we're going to embark on a radical change to how commands are documented we shouldn't be bound to supporting an undocumented feature of the getopts builtin.

Note that getopts --help outputs:

Usage: getopts [ options ] opstring name [args...]
OPTIONS
  -a name         Use name instead of the command name in usage messages.

Heck if I can tell how that results from the text in var sh_optgetopts. And doing getopts --man dumps a wall of text to my terminal with no styling (e.g., bold, italics, etc.) of the text and weird artifacts like --??man (which seeming should just be --man). It doesn't even have the courtesy to pipe the output through my pager. I have to run getopts --man 2>&1 | less (note the stderr redirection).

For comparison the fish shell has an open issue to implement a DocOpt like capability which is more than six years old. The lead on that project promised, 2 years ago, to implement it within six months. That never happened and didn't appear like it would ever happen. So I implemented argparse in just a couple of weeks. Now every fish function/script can implement option parsing in a manner 100% compatible with the bog standard getopt_long() function that 99% of all UNIX programs written in C/C++ uses.

@krader1961
Copy link
Contributor Author

When I say "builtin getopts command is undocumented" I mean in the output of "man ksh" which is all that most people will read. Few people are going to think to run getopts --man to learn what it really supports.

@krader1961
Copy link
Contributor Author

FWIW, I noticed that the clang documentation is generated using Sphinx. For example, see the bottom of this page: https://clang.llvm.org/docs/ClangFormat.html

This was referenced Nov 23, 2018
@krader1961
Copy link
Contributor Author

krader1961 commented Jul 3, 2019

Did you know the sleep builtin has a -s flag? I didn't because the ksh man page doesn't document it. I noticed it because I was reviewing code coverage stats and noticed the sleep -s path was never executed. Sure enough, typing sleep --help shows that option. Fixing this issue needs to be a high priority after the next stable release.

@krader1961
Copy link
Contributor Author

krader1961 commented Aug 27, 2019

I've started working on moving the documentation out of the source code. That revealed several problems. The main one being the "docopt" text format that is recognized by optget() is unforgiving and brittle. A misplaced, or missing, empty line not only mangles the output of a_command --man it also affects which flags are recognized. That is absurd.

@krader1961
Copy link
Contributor Author

I've moved almost all of the builtin command "docopt" style documentation and flag definition text used by the AST optget() function into external files in the src/cmd/ksh93/docs directory. The next step is to convert one of those documents to reStructuredText format used by Sphinx. Then change that command's use of optget() to the borg standard getopt_long() plus support for a --help flag. That will show the path for modernizing the rest of the documentation. Not to mention unifying two, often different, copies of the documentation for each builtin command.

@krader1961
Copy link
Contributor Author

I just noticed, while refactoring the src/cmd/ksh93/bltins/bg_fg_disown.c module, this bogosity:

KSH PROMPT:1: disown --help
Usage: disown [ options ] [job ...]
KSH PROMPT:2: fg --help
Usage: fg [ options ] [job ...]
KSH PROMPT:3: bg --help
Usage: bg [ options ] [job ...]

Notice that bg, fg, and disown do not support any options yet the help output implies there are (undocumented) options for those commands. This is a consequence of the docopt based AST optget() implementation. It is not because those commands support otherwise undocumented options.

@krader1961
Copy link
Contributor Author

I have been chipping away at converting builtin commands from the DocOpt style documentation and flag definition used by the AST optget() function to Sphinx/reStructuredText and getopt_long(). 95% of the work is repetitive and could be done by anyone. But some changes are challenging. For example, supporting -rwx in the chmod builtin since -r isn't a flag. Or the command builtin since b_command() can be invoked with argc == 0. Which doesn't cause a problem for optget() but causes getopt_long() to ignore every CLI arg.

@krader1961
Copy link
Contributor Author

krader1961 commented Sep 13, 2019

Also, this work has brought to light more instances where the documentation for a builtin command in the ksh(1) man page differs from the actual implementation. For example, cd supports a -f fd flag. Which is why we need to finish this work. There needs to be a single source of truth regarding the CLI of each builtin command. That the AST team didn't address this problem long ago suggests they were typical PhD's, focused on creating cool algorithms, and not software engineers.

@krader1961
Copy link
Contributor Author

I just found another "gotcha". It looks like optget() defaults to POSIXLY_CORRECT behavior. Which is not surprising. But that behavior requires + to be the first char of the getopt_long() optstring argument. Something that isn't obvious from reading the optget() source. Which is the only option since there is no optget() man page.

P.S., I really dislike the non-POSIX behavior that continues to scan for flags after the first non-flag argument. Thus, I like the AST optget() default behavior. The point of this comment is to make it clear that given the opacity of the optget() API refactoring the code to use getopt_long() is more challenging than it should be.

@krader1961
Copy link
Contributor Author

Converting the b_umask() function to use getopt_long() should have been straightforward. It wasn't because of this line in the infof() function in src/cmd/ksh93/bltins/ulimit.c:

sfprintf(sp, "[%c=%d:%s?The %s", tp->option, tp - shtab_limits + 1, tp->name, tp->description);

What does that do? It dynamically defines an option that maps a single letter option like -a to an int that is assigned to the global opt variable by the AST optget() function. That int is then used to set a bit in a mask representing the ulimit options that have been selected. This is the only use of this obscure optget() feature. The intent is to squash a wide range of values ('a' to 'Z') into something can be represented as an unsigned long bit mask; i.e., in 32 bits.

As we see over and over again in this project this is too clever by half for something that is not performance sensitive and should be coded in a straightforward manner.

@krader1961
Copy link
Contributor Author

Note that my previous comment applies to the ksh93u+ release. That optget() behavior seemingly exists solely for the use of the b_umask() function. There is no other place in the ksh source that uses that optget() feature. That includes the thousands of lines of code we have removed in the past two years. That optget() feature was seemingly added solely for the benefit of the b_umask() function without regard for whether the feature is likely to be generally useful.

@krader1961
Copy link
Contributor Author

The flag parsing by the ksh, set, and typeset commands depends on the AST optget() handling flags that begin with a + rather than - char. The platform getopt_long() provided by BSD and Linux does not support that behavior. It looks like we're going to have to implement a private version of getopt_long() similar to the bash internal_getopt() function. I can't see any practical way to use a POSIX compliant getopt_long() to handle set +Eo errexit (as just one example) of the problem.

Not even using - as the first character of the short option string to force non-options to be treated as values to an option with char code value one. That mechanism would work (with some difficulty) if we didn't have to support bundling short options. For example, using that behavior we could handle set +E +o errexit but not set +Eo errexit. At least not without so much effort (read: complexity) that it is impractical and undesirable. Far better to write and leverage a custom getopt_long() that can handle + as a flag prefix in a far more straightforward manner.

P.S., This comment also affects the getopts builtin since it exposes the support for a + flag prefix implemented by the AST optget() function.

krader1961 added a commit that referenced this issue Oct 24, 2019
Implement an alternative to the legacy AST optget() function. This looks
and behaves much like the getopt_long() function provided by GNU and BSD
based platforms but with two extensions supported by AST optget().  First,
integers represented as short flags; e.g., `-123`. Second, short flags that
are prefixed by `+` rather than `-`. It also deviates from getopt_long()
by not supporting some legacy behaviors of that API which we don't need.

This is related to Github issue #507 because having such a function is
required for parsing the `set`, `typeset`, and `ksh` command args. That
is because those commands/programs require supporting short flags like
`+o abc` to mean the opposite of `-o abc`. Something that is effectively
impossible using the borg standard getopt_long() function.

Handling numeric args that otherwise look like an invalid short flag can
be done with getopt_long_only() but this implementation makes it much
easier. Too, without the risk of recognizing `-abc` as equivalent to
`--abc` since that wasn't supported by the legacy AST optget() function.

Related #507
krader1961 added a commit that referenced this issue Oct 24, 2019
krader1961 added a commit that referenced this issue Oct 24, 2019
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 man page fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  NiL to NULL.
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 man page fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel NULL.
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 man page fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel NULL.
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 man page fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel NULL.
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 documentation fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel NULL.
JohnoKing added a commit to JohnoKing/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 documentation fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel to NULL.
McDutchie pushed a commit to ksh93/ksh that referenced this issue Aug 6, 2020
Most of these fixes are for typos and extra whitespace at the
end of lines. These are the notable changes:
- Fixed a compatibility issue with how asterisks are displayed
  using certain fonts. Bug report: att#764
- Fixed a bug in the man page that caused searches for the '|'
  character to fail. Bug report: att#871
- Removed a duplicate description of 'set -B' from the man
  page. Bug report: att#789
- Added documentation for options missing from the ksh man
  page (applies to 'hist -N', 'sleep -s', 'whence -q' and
  many of ulimit's options). Bug reports:
  att#948
  att#503 (comment)
  att#507 (comment)
- Applied the following ksh2020 documentation fixes:
  att#351
  att#352
- Fixed a minor GCC -Wformat warning in procopen.c by changing
  a sentinel to NULL.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants