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