a command line driver generator or what i did when i got
play

A Command-Line Driver Generator or What I did when I got tired of - PowerPoint PPT Presentation

Using a generated command-line driver Using the tool How the tool works Future work A Command-Line Driver Generator or What I did when I got tired of writing command-line interfaces myself... Jacob Sparre Andersen JSA Research &


  1. Using a generated command-line driver Using the tool How the tool works Future work A Command-Line Driver Generator or What I did when I got tired of writing command-line interfaces myself... Jacob Sparre Andersen JSA Research & Innovation January 2016 Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  2. Using a generated command-line driver Using the tool How the tool works Future work A bit of history The declarations of subprograms in the public part of an Ada package specification can be seen as a declaration of how you are supposed to call the features implemented in the package. So why should I have to write command-line interfaces myself? Why not let a tool translate between the Ada package specification and the command-line interface? Last year I was sufficiently tired of writing command-line interfaces, to actually start writing such a tool, and in August 2015 it was released to the unsuspecting public under an Open Source license. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  3. Using a generated command-line driver A package specification Using the tool How we could like to call it as a command How the tool works How we could like to use it on the command-line Future work with Ada.Strings; package Trim is use Ada.Strings; subtype File_Name is String; procedure Filter (Sides : in Trim_End := Both); -- Reads lines from standard input, -- removes leading/trailing spaces, and -- writes the trimmed lines to standard output. procedure Copy (Source : in File_Name; Target : in File_Name; Sides : in Trim_End := Both); -- Reads lines from the file Source, -- removes leading/trailing spaces, and -- writes the trimmed lines to the file Target. end Trim; Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  4. Using a generated command-line driver A package specification Using the tool How we could like to call it as a command How the tool works How we could like to use it on the command-line Future work # Filter: trim-driver trim-driver --sides=both trim-driver --sides=left trim-driver --sides=right # File to file: trim-driver --Source=trim --target=trimmed trim-driver --Sides=both --Source=trim --target=trimmed trim-driver --Source=trim --Target=trimmed --Sides=LEFT trim-driver --sides=right --target=trimmed --Source=trim Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  5. Using a generated command-line driver A package specification Using the tool How we could like to call it as a command How the tool works How we could like to use it on the command-line Future work Small interactive demo. 1 1 I have copied “ examples/generated/_trim-driver ” to “ ˜/.zsh/ ” and put “ examples/bin/trim-driver ” in my path. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  6. Using a generated command-line driver Using the tool Instructions How the tool works Example Future work Note where source files the package specification depends on. List these directories in the environment variable “ ADA_INCLUDE_PATH ”. Call the tool, “ command_line_parser_generator-run ” 2 with the package name 3 as the only argument. Find the generated source files (and a Zsh command-completion specification) in the directory “ generated/ ” (relatively to where you ran the tool). 2 Unless you’ve renamed it to something more sensible. 3 Specifically, not the name of the file containing the package specification. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  7. Using a generated command-line driver Using the tool Instructions How the tool works Example Future work Input % ls ada_2012.gpr default.gpr trim.adb trim.ads We have earlier seen that the specification of “ Trim ” only withs “ Ada.Strings ”, so we don’t need to include other directories in “ ADA_INCLUDE_PATH ”. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  8. Using a generated command-line driver Using the tool Instructions How the tool works Example Future work Running % export ADA_INCLUDE_PATH=. % command_line_parser_generator-run Trim Warning: " use Ada.Strings;" is ignored. Warning: " subtype File_Name is String;" is ignored. package Trim is procedure Filter (Sides : in Ada.Strings.Trim_End := Both); procedure Copy (Source : in Trim.File_Name; Target : in Trim.File_Name; Sides : in Ada .Strings.Trim_End := Both); end Trim; We see how the tool interprets the package specification. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  9. Using a generated command-line driver Using the tool Instructions How the tool works Example Future work Output % ls generated _trim-driver trim-command_line_parser-argument.adb trim-command_line_parser-argument.ads trim-command_line_parser-argument_list.adb trim-command_line_parser-argument_list.ads trim-command_line_parser-key_list.adb trim-command_line_parser-key_list.ads trim-command_line_parser-profiles.adb trim-command_line_parser-profiles.ads trim-command_line_parser.adb trim-command_line_parser.ads trim-driver.adb trim-driver.ads trim-put_help.adb trim-put_help.ads trim-show_help.adb trim-show_help.ads Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired %

  10. Using a generated command-line driver Overview Using the tool Source text How the tool works Some numbers Future work The tool ... parses an Ada package specification (using the Ada 1 Semantic Interface Specification, ASIS), checks that the public part of the package specification 2 doesn’t declare procedures with out or aliased parameters – or functions, decides how to map command-line arguments (of type 3 String ) to the types of the declared formal parameters 4 , generates a command-line driver for the package, 4 generates help texts for the command-line driver (if they 5 aren’t provided by the package), and finally generates Zsh command-completion patterns (because 6 I’m very lazy :-). 4 Selecting mapping functions is an area where the tool needs more work. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  11. Using a generated command-line driver Overview Using the tool Source text How the tool works Some numbers Future work From the beginning of the main procedure: with Ada.Characters.Handling, Ada.Command_Line, Ada.Text_IO, Ada.Wide_Text_IO; with Asis, Asis.Ada_Environments, Asis.Compilation_Units, Asis.Declarations, Asis.Elements, Asis.Implementation, Asis.Text; with Command_Line_Parser_Generator.Formal_Parameter, Command_Line_Parser_Generator.Help, Command_Line_Parser_Generator.Identifier_Set, Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  12. Using a generated command-line driver Overview Using the tool Source text How the tool works Some numbers Future work Getting your hands on a specific compilation unit: use Asis.Compilation_Units; use all type Asis.Unit_Kinds; begin Compilation_Unit := Library_Unit_Declaration (Name => To_Wide_String (Argument (1)), The_Context => Context); case Unit_Kind (Compilation_Unit) is when A_Package => Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  13. Using a generated command-line driver Overview Using the tool Source text How the tool works Some numbers Future work Checking the mode of a formal parameter: case Mode_Kind (Parameter) is when A_Default_In_Mode | An_In_Mode => null ; -- Fine, we continue. when An_In_Out_Mode | An_Out_Mode => Put_Line (File => Standard_Error, Item => "Out parameters not allowed."); Set_Exit_Status (Failure); return ; when Not_A_Mode => Put_Line (File => Standard_Error, Item => "ASIS error."); Set_Exit_Status (Failure); return ; end case ; Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  14. Using a generated command-line driver Overview Using the tool Source text How the tool works Some numbers Future work Some numbers GNAT standard library omissions 52 lines Templates 1’050 lines Data structures and logic 1’579 lines Counting raw source text lines. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  15. Using a generated command-line driver Using the tool How the tool works Future work Refactoring the main procedure in the tool. It has been growing quite “organic”, and needs more structure. Adding missing/skipped features. Deciding which Ada type is the best match for a “flag” on the command-line. Improving the help and error messages. Creating a variation of the tool for producing a web interface to a package 5 . 5 As an alternative to the AWS tools “ ada2wsdl ” and “ wsdl2ada ”. Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

  16. Using a generated command-line driver Using the tool How the tool works Future work Contact Jacob Sparre Andersen JSA Research & Innovation jacob@jacob-sparre.dk http://www.jacob-sparre.dk/ Examples from this presentation: http://www.jacob-sparre.dk/ada/command-line_ driver_generator/fosdem-2016-examples.zip You can find my Open Source software repositories at: http://repositories.jacob-sparre.dk/ Jacob Sparre Andersen A Command-Line Driver Generator or What I did when I got tired

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend