trendy_terminal_0.0.5_f56da7f1/src/macos/trendy_terminal-platform.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
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
-------------------------------------------------------------------------------
-- Copyright 2021, The Trendy Terminal Developers (see AUTHORS file)

-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at

--     http://www.apache.org/licenses/LICENSE-2.0

-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-------------------------------------------------------------------------------

with Ada.Text_IO;
with Ada.Unchecked_Conversion;

with Interfaces.C.Strings;

with System;

with Trendy_Terminal.Mac;
with Trendy_Terminal.Maps;

package body Trendy_Terminal.Platform is
    use type Mac.BOOL;

    ---------------------------------------------------------------------------
    --
    ---------------------------------------------------------------------------
    type IOStream is record
        File            : Mac.FILE_Ptr;
        File_Descriptor : Mac.FD;
        Settings        : aliased Mac.Termios;
    end record;

    ---------------------------------------------------------------------------
    -- Original settings
    ---------------------------------------------------------------------------
    Original_Input_Setting, Original_Output_Setting, Original_Error_Setting :
    Mac.Termios;

    ---------------------------------------------------------------------------
    -- The triad of I/O streams.
    ---------------------------------------------------------------------------
    Std_Input, Std_Output, Std_Error : IOStream;

    function Load_Terminal (File_Descriptor : Mac.FD; Terminal : not null access
        Mac.Termios) return Boolean is
    begin
        if Mac.isatty (File_Descriptor) = 0 then
            Ada.Text_IO.Put_Line ("Unable to load file descriptor for terminal.");
            return False;
        end if;
        if Mac.tcgetattr (File_Descriptor, Terminal.all'Address) /= 0 then
            Ada.Text_IO.Put_Line ("Unable to get terminal attributes.");
            return False;
        end if;
        return True;
    end Load_Terminal;

    function Make_Handle (File_Descriptor : Mac.FILE_Ptr; Handle : out IOStream) return Boolean is
    begin
        Handle.File := File_Descriptor;
        Handle.File_Descriptor := Mac.fileno (Handle.File);
        return Load_Terminal (Handle.File_Descriptor, Handle.Settings'Unchecked_Access);
    end Make_Handle;

    procedure Require_Settings_Change (Stream : IOStream) with
        Pre => Mac.isatty (Stream.File_Descriptor) /= 0
    is
    begin
        if Mac.tcsetattr (Stream.File_Descriptor, Mac.TCSANOW, Stream.Settings'Address) /= 0 then
            Ada.Text_IO.Put_Line ("Unable to change settings.");
        end if;
    end Require_Settings_Change;

    function Init return Boolean is
        -- Initializes and captures the original settings for the terminal so they can
        -- be restored when the system is shutdown.
    begin
        if not Make_Handle (Mac.stdin, Std_Input) or else not Make_Handle (Mac.stdout, Std_Output)
            or else not Make_Handle (Mac.stderr, Std_Error) then
            Ada.Text_IO.Put_Line ("Unable to get standard stream handles.");
        end if;

        -- Save the startup settings.
        Original_Input_Setting  := Std_Input.Settings;
        Original_Output_Setting := Std_Output.Settings;
        Original_Error_Setting  := Std_Error.Settings;
        return True;
    end Init;

    procedure Shutdown is
    begin
        Std_Input.Settings  := Original_Input_Setting;
        Std_Output.Settings := Original_Output_Setting;
        Std_Error.Settings  := Original_Error_Setting;

        Require_Settings_Change (Std_Input);
        Require_Settings_Change (Std_Output);
        Require_Settings_Change (Std_Error);
    end Shutdown;

    procedure Set (Setting : Platform.Input_Setting; Enabled : Boolean) is
    begin
        case Setting is
            when Platform.Echo =>
                Std_Input.Settings.c_lflag (Mac.ECHO) := Enabled;
            when Platform.Line_Input =>
                Std_Input.Settings.c_lflag (Mac.ICANON) := Enabled;
            when Platform.Signals_As_Input =>
                Std_Input.Settings.c_lflag (Mac.ISIG) := not Enabled;
        end case;
        Require_Settings_Change (Std_Input);
    end Set;

    procedure Set (Setting : Output_Setting; Enabled : Boolean) is
    begin
        pragma Unreferenced (Enabled);
        case Setting is
            when Escape_Sequences =>
                null;
                -- nothing to do here
        end case;
    end Set;

    procedure Put (C : Character) renames Ada.Text_IO.Put;
    procedure Put (S : String) renames Ada.Text_IO.Put;

    type VOIDP is new Interfaces.C.Strings.chars_ptr;
    function Read (File_Descriptor : Mac.FD; Buffer : VOIDP; Buffer_Size : Natural) return Integer
        with Import     => True,
             Convention => C;

    -- Gets an entire input line from one keypress.  E.g. all the characters
    -- received for a controlling keypress, such as an arrow key.
    function Get_Input return String is
        Buffer_Size  : constant := 512;
        Buffer       : aliased Interfaces.C.char_array := (1 .. Interfaces.C.size_t(Buffer_Size) => Interfaces.C.nul);
        Chars_Read   : Integer;
        use all type Interfaces.C.size_t;
    begin
        Chars_Read := Read (Mac.fileno (Std_Input.File),
            VOIDP (Interfaces.C.Strings.To_Chars_Ptr (Buffer'Unchecked_Access)),
            Buffer_Size);
        if Chars_Read > 0 then
            return Interfaces.C.To_Ada(Buffer(1 .. Interfaces.C.size_t(Chars_Read) + 1));
        else
            return "";
        end if;
    end Get_Input;

    function End_Of_Line return String is
    begin
        return (1 => Maps.Characters.LF);
    end End_Of_Line;

    procedure Print_Configuration is
        function To_Integer is new Ada.Unchecked_Conversion (Mac.c_lflag_t, Interfaces.C.long);
    begin
        Ada.Text_IO.Put_Line ("Original Input Mode:  " & To_Integer (Original_Input_Setting.c_lflag)'Image);
        Ada.Text_IO.Put_Line ("Original Output Mode: " & To_Integer (Original_Output_Setting.c_lflag)'Image);
        Ada.Text_IO.Put_Line ("Original Error Mode:  " & To_Integer (Original_Error_Setting.c_lflag)'Image);

        Ada.Text_IO.Put_Line ("Input Mode:  " & To_Integer (Std_Input.Settings.c_lflag)'Image);
        Ada.Text_IO.Put_Line ("Output Mode: " & To_Integer (Std_Output.Settings.c_lflag)'Image);
        Ada.Text_IO.Put_Line ("Error Mode:  " & To_Integer (Std_Error.Settings.c_lflag)'Image);
    end Print_Configuration;

end Trendy_Terminal.Platform;