README 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [GetOpt]
  2. #####################
  3. Origin:
  4. [Lattera FreeBSD]
  5. [https://github.com/lattera/freebsd/blob/master/lib/libc/stdlib/getopt.c]
  6. Status:
  7. [So far Zephyr samples were using getopt implementation from: argtable3.c.]
  8. Purpose:
  9. [Shell users would like to parse options passed to the command handler.]
  10. Description:
  11. [This library is going to be used by the shell module. Some shell users
  12. are not satisfied with subcommands alone and need to use the options for
  13. commands as well. A library is needed that allows the developer to parse
  14. the arguments string, looking for supported options. Typically, this task
  15. is accomplished by the getopt function.
  16. For this purpose I decided to port the getopt library available
  17. in the FreeBSD project. I had to modify it so that it could be used
  18. by all instances of the shell at the same time.
  19. Originally this function was using global variables which were defining
  20. its state. In my implementation I put those variables in a structure
  21. and a pointer to that structure is passed as an additional parameter
  22. to getopt function. In proposed implementation each shell backend has its
  23. own getopt function state structure which it uses.
  24. This module is intended to be used inside the shell command handler
  25. by the abstraction layer "SHELL_GETOPT". For example:
  26. while ((char c = shell_getopt(shell, argc, argv, "abhc:")) != -1) {
  27. /* some code */
  28. }
  29. ]
  30. Dependencies:
  31. [This package does not depend on any other component.
  32. Zephyr project will only need this component if the user configures a shell
  33. module: SHELL_GETOPT.]
  34. URL:
  35. [https://github.com/lattera/freebsd]
  36. commit:
  37. [324e4c082c14aebf00f8dbee0fb7ad285393756a]
  38. Maintained-by:
  39. [External]
  40. License:
  41. [BSD 3-Clause "New" or "Revised" License]
  42. License Link:
  43. [BSD 3-Clause used in getopt: https://spdx.org/licenses/BSD-3-Clause.html]
  44. [Project license: https://github.com/lattera/freebsd/blob/master/COPYRIGHT]