Files
mercury/tests/debugger/tabled_read_decl.m
Zoltan Somogyi 59b11f84ce Update the debugger test directory.
Replace __ with . as the module qualifier symbol.

Replace references to io.state with just io.

Replace DCGs with state variables.

Replace (C->T;E) syntax for if-then-elses with (if C then T else E) syntax.

Replace if-then-elses with switches when possible and where this does not
affect what is being tested.

Replace separate pred and mode declarations with predmode declarations.

Put predicate and function declarations just before the definition
of the predicate or function.

Delete unneeded module qualifications on predicate and function declarations
and definitions.

Update .exp files (and if needed, .inp files) for the line number changes
that result from the above.

For tests that have more than one .exp file and where one of those files
is affected by the above, add a section to the source file header that says
which .exp file is for what grade, with XXXs for the (as yet) unknown parts.
2018-08-28 21:20:59 +10:00

124 lines
3.4 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ts=4 sw=4 et ft=mercury
%---------------------------------------------------------------------------%
%
% We define our own I/O primitives, in case the library was compiled without
% IO tabling.
:- module tabled_read_decl.
:- interface.
:- import_module io.
:- pred main(io, io).
:- mode main(di, uo) is det.
:- implementation.
:- import_module char.
:- import_module int.
:- import_module list.
main(!IO) :-
tabled_read_decl.open_input("tabled_read_decl.data", Res, Stream, !IO),
( if Res = 0 then
tabled_read_decl.part_1(Stream, !IO),
tabled_read_decl.part_2(Stream, !IO)
else
io.write_string("could not open tabled_read.data\n", !IO)
).
:- pred tabled_read_decl.part_1(c_pointer::in, io::di, io::uo) is det.
tabled_read_decl.part_1(Stream, !IO) :-
tabled_read_decl.test(Stream, 0, A, !IO),
tabled_read_decl.write_int(A, !IO),
tabled_read_decl.poly_test(Stream, ['a', 'b', 'c'], 0, B, !IO),
tabled_read_decl.write_int(B, !IO).
:- pred tabled_read_decl.part_2(c_pointer::in, io::di, io::uo) is det.
tabled_read_decl.part_2(Stream, !IO) :-
tabled_read_decl.test(Stream, 0, A, !IO),
tabled_read_decl.write_int(A, !IO).
:- pred tabled_read_decl.test(c_pointer::in, int::in, int::out,
io::di, io::uo) is det.
tabled_read_decl.test(Stream, SoFar, N, !IO) :-
tabled_read_decl.read_char_code(Stream, CharCode, !IO),
( if
char.to_int(Char, CharCode),
char.is_digit(Char),
char.decimal_digit_to_int(Char, CharInt)
then
tabled_read_decl.test(Stream, SoFar * 10 + CharInt, N, !IO)
else
N = SoFar
).
:- pred tabled_read_decl.poly_test(c_pointer::in, T::in, int::in, int::out,
io::di, io::uo) is det.
tabled_read_decl.poly_test(Stream, Unused, SoFar, N, !IO) :-
tabled_read_decl.poly_read_char_code(Stream, Unused, CharCode, !IO),
( if
char.to_int(Char, CharCode),
char.is_digit(Char),
char.decimal_digit_to_int(Char, CharInt)
then
tabled_read_decl.poly_test(Stream, Unused, SoFar * 10 + CharInt,
N, !IO)
else
N = SoFar
).
:- pragma foreign_decl("C", "#include <stdio.h>").
:- pred open_input(string::in, int::out, c_pointer::out,
io::di, io::uo) is det.
:- pragma foreign_proc("C",
open_input(FileName::in, Res::out, Stream::out, IO0::di, IO::uo),
[will_not_call_mercury, promise_pure, tabled_for_io],
"
Stream = (MR_Word) fopen((const char *) FileName, ""r"");
Res = Stream? 0 : -1;
IO = IO0;
").
:- pred read_char_code(c_pointer::in, int::out,
io::di, io::uo) is det.
:- pragma foreign_proc("C",
read_char_code(Stream::in, CharCode::out, IO0::di, IO::uo),
[will_not_call_mercury, promise_pure, tabled_for_io],
"
CharCode = getc((FILE *) Stream);
IO = IO0;
").
:- pred poly_read_char_code(c_pointer::in, T::in, int::out,
io::di, io::uo) is det.
:- pragma foreign_proc("C",
poly_read_char_code(Stream::in, Unused::in, CharCode::out,
IO0::di, IO::uo),
[will_not_call_mercury, promise_pure, tabled_for_io],
"
/* ignore Unused */
CharCode = getc((FILE *) Stream);
IO = IO0;
").
:- pred write_int(int::in, io::di, io::uo) is det.
:- pragma foreign_proc("C",
write_int(N::in, IO0::di, IO::uo),
[will_not_call_mercury, promise_pure],
"{
printf(""%d\\n"", (int) N);
IO = IO0;
}").