gnoga_2.1.2_5f127c56/deps/zanyblue/src/zbtest/commands/zbtest-commands-print_command.adb

  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
--  -*- coding: utf-8 -*-
--
--  ZanyBlue, an Ada library and framework for finite element analysis.
--
--  Copyright (c) 2012, 2016, Michael Rohan <mrohan@zanyblue.com>
--  All rights reserved.
--
--  Redistribution and use in source and binary forms, with or without
--  modification, are permitted provided that the following conditions
--  are met:
--
--    * Redistributions of source code must retain the above copyright
--      notice, this list of conditions and the following disclaimer.
--
--    * Redistributions in binary form must reproduce the above copyright
--      notice, this list of conditions and the following disclaimer in the
--      documentation and/or other materials provided with the distribution.
--
--    * Neither the name of ZanyBlue nor the names of its contributors may
--      be used to endorse or promote products derived from this software
--      without specific prior written permission.
--
--  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
--  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
--  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
--  A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
--  HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
--  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
--  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
--  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
--  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
--  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
--  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
--

--  @usage print [ -l | -s ] parameter [ -l | -s ] parameter ...
--  @summary print the value of parameters
--  @start-doc
--  Print the value of a scalar (-s, default) or list (-l) parameters.  With
--  the -s option, the value is first converted to a string which gives the
--  normal representation of value (list values are enclosed in square
--  brackers, e.g.,d::
--
--      ZBTest> print path
--      [/home/mrohan/xmpl/test-area, /home/mrohan/bin, /usr/bin, /bin]
--      ZBTest> print _platform
--      unix
--
--  With the -l option, the value is printed as a list.  If the parameter is
--  not a list, it''s value is first converted to a list.  E.g.,::
--
--      ZBTest> print -l l1
--      ZBTest> print _platform
--      unix
--      ZBTest> print -l _platform
--      1) "unix"
--      ZBTest> print -l path
--      1) "/home/mrohan/xmpl/test-area"
--      2) "/home/mrohan/bin"
--      3) "/usr/bin"
--      4) "/bin"
--

with Ada.Strings.Wide_Fixed;

separate (ZBTest.Commands)
procedure Print_Command
  (State : in out State_Type;
   Args  :        List_Type)
is

   use Ada.Strings.Wide_Fixed;

   procedure Handle_Argument
     (State    : in out State_Type;
      Argument :        String;
      Scalar   : in out Boolean);
   --  Handle the printing of a value (scalar or list).

   procedure Print_List
     (State : in out State_Type;
      Name  :        String);

   ---------------------
   -- Handle_Argument --
   ---------------------

   procedure Handle_Argument
     (State    : in out State_Type;
      Argument :        String;
      Scalar   : in out Boolean)
   is
   begin
      if Argument = "-l" then
         Scalar := False;
      elsif Argument = "-s" then
         Scalar := True;
      elsif Head (Argument, 1) = "-" then
         raise Command_Usage_Error;
      elsif Scalar then
         Print_00004 (+State.Get_String (Argument));
      else
         Print_List (State, Argument);
      end if;
   exception
      when Not_Defined_Error =>
         Print_10005 (+Argument);
   end Handle_Argument;

   ----------------
   -- Print_List --
   ----------------

   procedure Print_List
     (State : in out State_Type;
      Name  :        String)
   is
      List   : constant List_Type := State.Get_List (Name);
      N_Elem : constant Natural   := Length (List);
   begin
      if N_Elem = 0 then
         Print_00005;
      else
         for I in 1 .. N_Elem loop
            Print_00006 (+I, +Value (List, I));
         end loop;
      end if;
   end Print_List;

   Scalar : Boolean := True;

begin
   for I in 2 .. Length (Args) loop
      Handle_Argument (State, Value (Args, I), Scalar);
   end loop;
end Print_Command;