From: Gabriel Scherer <gabriel.scherer@gmail.com>
To: frederic.fort@univ-lille.fr
Cc: caml users <caml-list@inria.fr>
Subject: Re: [Caml-list] Dynlink plugin reevaluates modules of main program
Date: Thu, 8 Nov 2018 11:32:32 +0100 [thread overview]
Message-ID: <CAPFanBFMBFX2EndAXZzE92+Naj1-tvA9PSS4D9_xHU1BFceYvA@mail.gmail.com> (raw)
In-Reply-To: <1238750250.1711857.1541671514743.JavaMail.zimbra@univ-lille.fr>
[-- Attachment #1: Type: text/plain, Size: 2381 bytes --]
Ocamlbuild knows of two ways to build .cmxs files:
- from a .cmxa file, repackaged for dynamic loading
- from a .mldylib, listing the modules to be included (like .mllib for
.cm{x,}a)
(See "ocamlbuild -documentation | grep cmxs" to check this)
Your build uses the first approach, and this results in d *and its
dependencies* being packaged in d.cmxa and then d.cmxs. (See the log, or
use -classic-display to see the commands). The behavior you expect requires
the second approach. You can obtain it by adding
d.mldylib:
D
On Thu, Nov 8, 2018 at 11:06 AM Frédéric Fort <frederic.fort@univ-lille.fr>
wrote:
> Hello,
>
> I have an existing program and would like to allow to extend it's
> functionalities with plugins.
> If I simplify my code structure it looks as follows:
> - a.ml : "main module" of the program
> - b.ml : additional definitions used in a.ml
> - c.ml : interface for plugins (a collection of function refs)
> - d.ml : plugin I would like to load
>
> Now, d.ml uses values defined in b.ml. Some of them are of type string ref
> and it seems that the code of b.ml is reevaluated when I call
> Dynlink.loadfile "/path/to/d.cmxs" which resets them to the empty string.
>
> Is there a way to prevent this from happening ?
> Using allow_only and prohibit is not an option, since multiple plugins
> would each reevaluate C
> and undo each others modifications.
>
> Yours sincerely,
> Frédéric Fort
>
> P.S.: Here follows a minimal working example.
> I compiled it with
> ocamlbuild -use-ocamlfind -lib dynlink a.native
> ocamlbuild -use-ocamlfind d.cmxs
>
> a.ml:
> open Format
>
> let _ =
> B.str := "abc";
> printf "%s\n" !B.str;
> begin
> try
> Dynlink.loadfile "./_build/d.cmxs"
> with Dynlink.Error err ->
> failwith (Dynlink.error_message err) end;
> printf "%s\n" !B.str;
> match !C.f with
> | Some(f) -> printf "%s\n" (f 0)
> | None -> ()
>
> b.ml:
> let str = ref ""
>
> c.ml:
> let f : (int -> string) option ref = ref None
>
> d.ml:
> let _ =
> C.f := Some((fun x -> !B.str^(string_of_int x)))
>
> --
> Caml-list mailing list. Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> https://inbox.ocaml.org/caml-list
> Forum: https://discuss.ocaml.org/
> Bug reports: http://caml.inria.fr/bin/caml-bugs
[-- Attachment #2: Type: text/html, Size: 4010 bytes --]
next prev parent reply other threads:[~2018-11-08 10:23 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-08 10:05 Frédéric Fort
2018-11-08 10:23 ` Nicolás Ojeda Bär
2018-11-08 10:32 ` Gabriel Scherer [this message]
2018-11-08 13:02 ` Ivan Gotovchits
2018-11-15 16:35 ` Nicolás Ojeda Bär
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=CAPFanBFMBFX2EndAXZzE92+Naj1-tvA9PSS4D9_xHU1BFceYvA@mail.gmail.com \
--to=gabriel.scherer@gmail.com \
--cc=caml-list@inria.fr \
--cc=frederic.fort@univ-lille.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