Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Christophe TROESTLER <debian00@tiscali.be>
To: Andrej.Bauer@andrej.com
Cc: "O'Caml Mailing List" <caml-list@inria.fr>
Subject: Re: [Caml-list] Polymorphic pretty printing
Date: Sat, 23 Oct 2004 00:07:11 +0200 (CEST)	[thread overview]
Message-ID: <20041023.000711.91476428.debian00@tiscali.be> (raw)
In-Reply-To: <4173E464.7030500@andrej.com>

On Mon, 18 Oct 2004, Andrej Bauer <Andrej.Bauer@andrej.com> wrote:
> 
> how to install a pretty printer for a _polymorphic_ type.
> http://caml.inria.fr/archives/200201/msg00234.html
> 
> I should use Toplevel.print_out_value to do this. But,
> print_out_value expects an arguments of type Outcometree.out_value,
> and it is not clear to me where I will get it.

Since you will register a new printing function, you will not have to
get it, Outcometree.out_value will be provided to your function!  To
get you a flavor of how (I understand) it works, here is some code:

let oldpp = !Toploop.print_out_value
let pp f o =
  (match o with
   | Outcometree.Oval_list _ ->
       Format.fprintf f "list:"
   | _ -> ());
    oldpp f o
Toploop.print_out_value := pp

Now, a list is written as

# [1;2];;
- : int list = list:[1; 2]

> Am I supposed to rewrite half of toplevel.ml to get this working?

I am afraid that the awser is yes :(.  Let's see why:

# ([1; 2], 2);;
- : int list * int = ([1; 2], 2)

Now the above [pp] pretty printer is registered but it does not to
work.  This is because the original function registered in
[Toploop.print_out_value] is recursive instead of calling
[!Toploop.print_out_value] (there is certainly a reason but I do not
know it) -- thus since the "top" structure is a couple, [oldpp] is
called and never calls back [pp].

Therefore, not only we have to duplicate all the code of the original
[!Toploop.print_out_value] (and check conformance at every upgrade)
but that also means it is difficult for several polymorphic pretty
printers to cooperate.

This is really unfortunate as this prevents libraries to use
[Sys.interactive] in order to install pretty printers for their
polymorphic types.

Hope a nice solution can be designed for this last usage.

Cheers,
ChriS

-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners


  reply	other threads:[~2004-10-22 22:07 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-10-18 15:42 Andrej Bauer
2004-10-22 22:07 ` Christophe TROESTLER [this message]
2004-10-24 20:54   ` Andrej Bauer
2004-10-25  1:04     ` skaller
2004-10-25  3:02       ` David Brown
2004-10-25  7:26         ` Andrej Bauer
2004-10-25 14:45     ` Jon Harrop
2004-11-26 22:54   ` Frédéric Gava

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20041023.000711.91476428.debian00@tiscali.be \
    --to=debian00@tiscali.be \
    --cc=Andrej.Bauer@andrej.com \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox