Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
From: Richard Jones <rich@annexia.org>
To: Kip Macy <kmacy@fsmware.com>
Cc: caml-list@inria.fr
Subject: Re: [Caml-list] adding an ocaml interpreter to my C program
Date: Wed, 7 Jan 2004 13:00:48 +0000	[thread overview]
Message-ID: <20040107130048.GA18624@redhat.com> (raw)
In-Reply-To: <20040107005029.V39150@demos.bsdclusters.com>

On Wed, Jan 07, 2004 at 01:01:00AM -0800, Kip Macy wrote:
> It is possible to add many scripting languages as configuration
> languages for an arbitrary C program. One can transfer control
> to the interpreter, let it use the C bindings to modify program
> state, and then get control back. I'll give perl as an example:
[...]
> I don't see any obvious way of doing this with ocaml.

It's documented here (right at the bottom, in the "Advanced" section):

http://caml.inria.fr/ocaml/htmlman/manual032.html

Basically, you call caml_main, which runs your initialization code
(written in OCaml), which registers C callbacks, which your C can then
execute by calling callbackN ().

What the manual doesn't tell you is that none of this stuff works at
all if your C code is contained in a dynamically linked library (.so
file), unless you undertake some pretty horrific hacks.  Particularly
if you plan to use the OCaml Dynlink module at the same time.  See the
code in my mod_caml project[1] for details.

Also, it only works for bytecode.  (And it only works for compiled
code - linking in the toplevel so you can parse ML directly is a
different thing entirely).

> I'm using perl as a powerful macro language for gdb by just doing:
> (gdb) sourceperl mycoreanalyser.pl
> <OUTPUT>

You might also be interested in [2].

Rich.

[1] http://www.merjis.com/developers/mod_caml/
[2] http://www.merjis.com/developers/perl4caml/

-- 
Richard Jones. http://www.annexia.org/ http://freshmeat.net/users/rwmj
Merjis Ltd. http://www.merjis.com/ - improving website return on investment
If I have not seen as far as others, it is because I have been
standing in the footprints of giants.  -- from Usenet

-------------------
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-01-07 13:01 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-01-07  9:01 Kip Macy
2004-01-07 13:00 ` Richard Jones [this message]
2004-01-07 15:42   ` Kip Macy
2004-01-07 16:04     ` Richard Jones
2004-01-07 16:51       ` Damien Doligez
2004-01-07 21:09   ` Kip Macy
2004-01-08 16:40     ` Adolf Mathias

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=20040107130048.GA18624@redhat.com \
    --to=rich@annexia.org \
    --cc=caml-list@inria.fr \
    --cc=kmacy@fsmware.com \
    /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