[ANN] Core Suite 109.11.00 released + ocaml_plugin

130 views
Skip to first unread message

Jeremie Dimino

unread,
Feb 28, 2013, 11:37:35 AM2/28/13
to caml...@inria.fr, ocaml...@googlegroups.com
I'm pleased to announce the 109.11.00 release of the Core suite. We
are now distributing the ocaml_plugin project, which aims at making
dynlink more easier. It offers a high-level API where the user can get
a first class module out of a few ml source files, the compilation
being handled automatically.

ocaml_plugin has been tested only on Linux, but we plan to make it usable
on other platforms as well.

Files and documentation are available on our website and all packages
are in opam:

https://ocaml.janestreet.com/ocaml-core/109.11.00/individual/
https://ocaml.janestreet.com/ocaml-core/109.11.00/doc/

Changelogs for versions 109.08.00 to 109.11.00:

# 109.08.00

## async_extra

- Added module `Async.Command`
This is `Core.Command` with additional async functions. In particular
it contains a function `async_basic` that is exactly the same as
`Core.Command.basic`, except that the function it wraps returns
`unit Deferred.t`, instead of `unit`. `async_basic` will also start the
async scheduler before the wrapped function is run, and will stop the
scheduler when the wrapped function returns.

## async_unix

- Added module `Async.Process`
This is a new module for creating and dealing with child processes.
- For `Writer.save`, replaced the `temp_prefix` argument with `temp_file`.
- Added `Ivar.invariant` function.
- Added value `Scheduler.fold_fields`
This lets one fold over the fields in the scheduler, eliminates an
annoying place in catalog browser that reached into the internals of
async to compute the sizes of the scheduler fields

## core

- Cleaned up and updated the `README`.
- Changed executables to enable backtraces if `OCAMLRUNPARAM` is not set.
- Changed `Command` so that executables show build info and version info
This happens when an executatble is called as:

foo.exe version

Before this change, rather than display build info, executables
would display the not-so-helpful:

(no option given - printing version)
- Added back `Float` rounding functions with a hardcoded direction.
- Exposed `with bin_io` and `with compare` for the =sexp_bool= type.
- Added value `Core.Never_returns.sexp_of_t`.
- Added values `Or_error.tag{,_arg}`
These are analogous to `Error` functions of the same name.
- Added functor `Sexpable.Of_sexpable`
This is for serializing values of one type as though it were some
other isomorphic type.
- Added module `Backtrace.Exn`
This exposes OCaml stdlib's `Printexc` functions for backtraces.
- Added module `Flags`
This implements Unix-style sets of flags that are represented as an
`int` with various bits set, one bit for each flag, e.g.,
`Linux_ext.Epoll.Flag`.
- Added module `Uuid`
This module implements universally unique identifiers based on version
3 of the UUID specification. It used to be in `Core_extended=`
- Added module `Type_equal`, which defines the "equality" GADT.

## type_conv

- Fixed type_conv to stop dropping parens in arguments such as:

type t = {
a : int with default(1), sexp_drop_if(fun x -> (x + 1) * 2 = 4)
} with sexp

# 109.09.00

## async

- Switched `Async.Std`'s toplevel bindings for `Deferred.Or_error`'s
`bind` and `map` to use
`Deferred.Result`.
This allows them to be used with any `'error` type, rather than just
`Error.t`.

## async_core

- Fixed bug in `Async.Throttle`, in which jobs weren't started in order.

## async_unix

- Added module `Thread_safe_pipe`, for streaming data outside async into async.
This a more efficient and feature-ful way to send a sequence of values
from outside async into async than `Thread_safe.pipe`, which has been
eliminated.
- Changed functions in `Thread_safe` to always wake up the scheduler.
Changed `Thread_safe.run_in_async{,_exn}` to not run a cycle, and
instead rely on the scheduler to run the cycle.

## core

- In `Core.Std`, exposed `Or_error.ok_exn` and `Or_error.error`
- Removed some values exported by `Core.Std`.

Removed some values from `Core.Std` that weren't widely used, or we
didn't think should be exposed, including `ascending`, `descending`,
and `equal`, which use polymorphic comparison, and we want to
discourage.

Here's a guide to some of what was removed, and what one should now
use instead.

| removed | replace with |
|-----------------------------------+---------------------------------------|
| `Int_replace_polymorphic_compare` | `Int.Replace_polymorphic_compare` |
| `ascending` | `Polymorphic_compare.ascending` |
| `descending` | `Polymorphic_compare.descending` |
| `equal` | `Polymorphic_compare.equal` |
| `ifprintf` | `Printf.ifprintf` |
| `sscanf` | `Scanf.sscanf` |
| `Scan_failure` | `Scanf.Scan_failure` |
| `string_of__of__sexp_of` | `Sexplib.Conv.string_of__of__sexp_of` |
| `of_string__of__of_sexp` | `Sexplib.Conv.of_string__of__of_sexp` |
| `type vec` | `type float64_vec` |

- Disallowed `<:sexp_of<` with two underscores; using a single
underscore instead.
- Added `Command.Spec.Arg_type.of_alist_exn` as an alternative for `of_map`.
This captures the common pattern to create the map from an alist.
- Improved the performance of `Hashtbl`.
Constrained hashtbl size to a power of two and used a bitmask rather
than mod operation for finding hash buckets.
- Improved the performance of `Univ`, using the `Type_equal` GADT.
The new implementation improves the run-time and space usage over
the old one. In the old implementation, a `Univ.t` was represented
as record with three fields: an exception, a string, and a closure.
Creating a univ required allocating three heap blocks, the exception
(3 words), the closure (3 words), and the three-field record (4
words). In the new implementation, a `Univ.t` is represented as a
2-field heap block containing the `Constr.t` and the value.
Creating a univ allocates that single 3-word block, improving on the
10 words needed previously.

Matching on univs is also faster. In the old implementation,
matching on a univ required making a function call, testing
exception equality, and allocating a `Some` block. Now, it does
just the test and allocation. Furthermore, it is possible to use
`does_match` and `match_exn` to avoid the allocation.
- Added `Version_util.build_info_as_sexp`.
- Added `_squelch_unused_module_warning_` to
`Comparable.S.Replace_polymorphic_compare`.

## sexplib

- Fixed an `unused rec` warning in the code generated by `pa_sexp` in
rare cases.

# 109.10.00

## async_extra

- Fixed a race condition in `Pipe_rpc` and `State_rpc`. This race
could cause an exception to be raised on connection closing.

## async_unix

- Added `Shutdown.do_not_finish_shutdown_before`. This allows one to
add `unit Deferred.t`'s that will delay the `shutdown` from
finishing. The implementation is more efficient than using
`at_shutdown`.

## bin_prot

- Improved error messages in presence of GADTs.

## comparelib

- Improved error messages in presence of GADTs.

## core

- Added `|>`, which means the same as `|!`, but is likely to replace
it someday. This is mostly because `|>` is an accepted notation
elsewhere, particularly in F#. In the future, we will consider
eliminating `|!` in favor of `|>`, so as to avoid the duplication.
- Made `module Lazy` into a monad.
- Renamed
`List.stable_dedup_involving_an_application_of_the_set_functor` as
`List.stable_dedup_staged`. Made it use `Staged.t` to make explicit
the expectation of partial application.
- Added pretty printers for the toplevel to `Error` and `Info`.

## fieldslib

- Changed `with fields` on `private` types to not expose mutators or
creators.

## pa_ounit

- Rewrote `pa_ounit` to simplify execution order and work better with
functors. Rewrote `pa_ounit` to solve its shortcomings with
functors, namely that functors need to be applied with `TEST_MODULE`
for their tests to be registered. The order of execution is also
much simpler: tests are executed inline, at the toplevel (or functor
application time). There is still a limitation: when a library
doesn't have any occurrence of `TEST`, `TEST_UNIT`, or `TEST_MODULE`
inside of it, the test runners are not set up, so tests inside of
functors (from other libraries) will not be executed. Running
`inline_test_runner.exe` is not going to run tests anymore; people
should run the `inline_test_runner` script instead. Backtraces are
now properly shown when exceptions are thrown.

## sexplib

- Improved error messages in presence of GADTs.
- Made `with sexp` work with types containing `as` in signatures.

## variantslib

- Improved error messages in presence of GADTs.

# 109.11.00

## async_core

- Extended `Deferred.Or_error` to parallel almost all of the
`Core.Or_error` interface.
- Improved the performance of `Clock.at`, and added a more efficient
version, `Clock.run_at`.

Reworked the async heap of clock alarms to use async jobs as alarms.

Reworked `Clock.at` to use this and to not use abortable events,
which is a performance improvement.

Added a more efficient version of `Clock.at`, for the common
situation when one doesn't need a deferred.

```ocaml
(*** [run_at time ~f] is a more efficient version of [at time >>> f]. *)
val run_at : Time.t -> f:(unit -> unit) -> unit
```

## async_extra

- Exposed a `version` function in `Pipe_rpc` and `State_rpc`.

## async_unix

- Added a check to fail if `Scheduler.go` is called more than once.

## core

- Added module `Interned_string` This has a functor for creating
modules of interned strings. It uses the very simple mechanism of
mapping distinct strings to consecutive ints.
- Added value `Hashtbl.find_and_remove`.

## fieldslib

- `with fields`, for a type `u` that isn't named `t`, creates module
`Fields_of_u` rather than module `Fields`. This allows one to us
`with fields` on several types in the same structure.

--
Jeremie Dimino, for the Core team

Alain Frisch

unread,
Mar 1, 2013, 3:45:06 AM3/1/13
to Jeremie Dimino, caml...@inria.fr, ocaml...@googlegroups.com
ocaml_plugin seems quite interesting! Can you give some information
about possible applications you have in mind? Did you consider turning
the compiler into a library (maybe with some hooks to reroute lookups
for .cmi files on the file system into preloaded data), instead of
embedding a .tgz of the toolchain in the executable?

Another question. Some parts of Core clearly depend on a Unix
environment and there is little hope of making it run flawlessly under
Windows without some serious porting effort. If the ambition is to push
Core has a recommended alternative to the stdlib, I'd suggest to cleanly
separate those OS-related parts to the more portable ones (maybe as two
libraries). It would be cool that once OPAM works under Windows,
Windows users can easily benefit from the portable parts of Core.

Alain

Yaron Minsky

unread,
Mar 1, 2013, 6:22:30 AM3/1/13
to Alain Frisch, Jeremie Dimino, caml...@inria.fr, ocaml...@googlegroups.com
On Fri, Mar 1, 2013 at 3:45 AM, Alain Frisch <al...@frisch.fr> wrote:
> ocaml_plugin seems quite interesting! Can you give some information about
> possible applications you have in mind? Did you consider turning the
> compiler into a library (maybe with some hooks to reroute lookups for .cmi
> files on the file system into preloaded data), instead of embedding a .tgz
> of the toolchain in the executable?

We use it internally a lot for configuration of running programs.
Basically, every time we are tempted to invent a configuration DSL, we
use OCaml-Plugin instead to allow us to make our specification
language be OCaml.

One example of this that prodded us to do this release is Jenga, a new
build system, an early version of which we're about to release. (Yes,
we're miserable that we find ourselves writing our own build system.
No, none of the existing ones are quite suitable to are needs. Yes, I
know how ridiculous that all sounds.)

As for your concrete suggestion as to how to structure it as a
library, Jeremie Dimino told me just yesterday that he and Mathieu
Barbin are considering precisely this change, to make it more
portable. We didn't need to think about this internally, but now that
we release it, it seems the right thing to do.

> Another question. Some parts of Core clearly depend on a Unix environment
> and there is little hope of making it run flawlessly under Windows without
> some serious porting effort. If the ambition is to push Core has a
> recommended alternative to the stdlib, I'd suggest to cleanly separate those
> OS-related parts to the more portable ones (maybe as two libraries). It
> would be cool that once OPAM works under Windows, Windows users can easily
> benefit from the portable parts of Core.

This is an excellent point, and one that Anil has also mentioned to us
is a concern for him and for Citrix. And it's not just a Windows
issue: he also wants to be able to compile Core to Javascript!

We've agreed in principle to reorganize Core by breaking off some of
the libraries to a sub-group called Ucore (short for micro-core).
Ucore will avoid:

- C bindings (so, no UNIX module, no Bigstrings)
- Objects (According to Anil the Oo module is quite big, and is
painful to use in Javascript
- Threads

Now, I don't think this quite finishes the story, because to make
Windows (and Javascript) a happy place for Core, someone should really
re-implement most of our Unix library on Windows, somehow, even if
most calls are stubbed out. And we should also implement the missing
pieces of Async.

We'll probably need help for much of the work of actually building
compatible alternatives on Windows. But the breaking-out of the
core-of-core is a clear win.

(As a side-note, this is another case of wanting to control
namespaces. In some programs, you'll want to use the Ucore namespace,
in some the full Core.Std namespace, and in some cases the Core.Stable
namespace.)

y
> --
> Caml-list mailing list. Subscription management and archives:
> https://sympa.inria.fr/sympa/arc/caml-list
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs

Anil Madhavapeddy

unread,
Mar 1, 2013, 10:15:27 AM3/1/13
to ocaml...@googlegroups.com, Alain Frisch, Jeremie Dimino, caml...@inria.fr
On 1 Mar 2013, at 11:22, Yaron Minsky <ymi...@janestreet.com> wrote:

> - Objects (According to Anil the Oo module is quite big, and is
> painful to use in Javascript

This was actually referring to the desire to eliminate objects for
extremely restricted environments such as the 8-bit microcontrollers
described in:
http://www.algo-prog.info/ocaml_for_pic/web/index.php?id=ocapic

Objects aren't a problem in js_of_ocaml, but the general principle
of staying away from them in a core library seems to what everyone
wants anyway.

-anil

Daniel Bünzli

unread,
Mar 1, 2013, 10:41:51 AM3/1/13
to Anil Madhavapeddy, ocaml...@googlegroups.com, Alain Frisch, Jeremie Dimino, caml...@inria.fr
Le vendredi, 1 mars 2013 à 16:15, Anil Madhavapeddy a écrit :
> Objects aren't a problem in js_of_ocaml, but the general principle
> of staying away from them in a core library seems to what everyone
> wants anyway.

I agree but there's one exception, the thread-safe generation of program uid. I used this more than once to implement the keys of heterogenous dictionaries (à la http://mlton.org/PropertyList). And it's also used in cmdliner here [1].

I would really like to have that in Sys to avoid linking against Oo. There's a way to do it yourself but it does rely on implementation details of the runtime system, see discussion here [2]. As such for now I prefered to use the Oo.id trick.

Best,

Daniel

[1] https://github.com/dbuenzli/cmdliner/blob/master/src/cmdliner.ml#L156
[2] http://caml.inria.fr/mantis/view.php?id=5436#c6549


Reply all
Reply to author
Forward
0 new messages