Skip to content

Commit

Permalink
add OPAM blog entry
Browse files Browse the repository at this point in the history
  • Loading branch information
avsm committed Oct 18, 2012
1 parent b5d9f5c commit 4b60a2f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/blog.ml
Expand Up @@ -219,6 +219,12 @@ let entries = [
body = "/blog/xenstore-stub.md";
permalink = "xenstore-stub-domain";
};
{ updated = date (2012, 10, 17, 17, 30);
author = anil;
subject = "Breaking up is easy to do (with OPAM)";
body = "/blog/breaking-up-with-opam.md";
permalink = "breaking-up-is-easy-with-opam";
};
]

let cmp_ent a b = Atom.compare (atom_date a.updated) (atom_date b.updated)
Expand Down
22 changes: 22 additions & 0 deletions tmpl/blog/breaking-up-with-opam.md
@@ -0,0 +1,22 @@
When we first started developing Mirage in 2009, we were rewriting huge chunks of operating system and runtime code in OCaml. This ranged from low-level device drivers to higher-level networking protocols such as TCP/IP or HTTP. The changes weren't just straight rewrites of C code either, but also involved experimenting with interfaces such as iteratees and lightweight threading to take advantage of OCaml's rich static type system. To make it easy to work with, we decided to lump everything into a [single Git repository](http://github.com/avsm/mirage) that would bootstrap the entire system with a single `make` invocation.

Nowadays though, Mirage is self-hosting, the interfaces are settling down, and the number of libraries are growing every day. So for the first developer release, we wanted to make it as easy as possible for the average OCaml developer to try out Mirage, and pull in the various libraries they need.

Thanks to much hard work from [Thomas](http://gazagnaire.org) and his colleagues at [OCamlPro](http://ocamlpro.com), we now have [OPAM](http://opam.ocamlpro.com): a fully-fledged package manager for Mirage! OPAM is a source-based package manager that supports a growing number of community OCaml libraries. More importantly for Mirage, it can also switch between multiple compiler installations, and so support cross-compiled runtimes and modified standard libraries.

OPAM includes compiler variants for Mirage-friendly environments for Xen and the UNIX `tuntap` backends. The [installation instructions](/wiki/install) now give you instructions on how to use OPAM, and the old monolithic repository is considered deprecated. We're still working on full documentation for the first beta release, but all the repositories are on the [Mirage organisation](http://github.com/mirage) on Github, with some of the important ones being:

* [mirage-platform](http://github.com/mirage/mirage-platform) has the core runtime for Xen and UNIX, implemented as the `OS` module.
* [mirage-net](http://github.com/mirage/mirage-net) has the TCP/IP networking stack.
* [ocaml-cstruct](http://github.com/mirage/ocaml-cstruct) has the camlp4 extension to manipulate memory like C `struct`s, but with type-safe accessors in OCaml.
* [ocaml-xenstore](http://github.com/mirage/ocaml-xenstore) has a portable implementation of the Xenstore protocol to communicate with the Xen management stack from a VM (or even act as a [server in a stub domain](/blog/xenstore-stub-domain)).
* [ocaml-dns](http://github.com/mirage/ocaml-dns) is a pure OCaml implementation of the DNS protocol.
* [ocaml-dns](http://github.com/mirage/ocaml-re) is a pure OCaml version of several regular expression engines, including Perl compatibility.
* [ocaml-uri](http://github.com/mirage/ocaml-uri) handles parsing the surprisingly complex URI strings.
* [ocaml-cohttp](http://github.com/mirage/ocaml-cohttp) is a portable HTTP parser, with backends for Mirage, Lwt and Core/Async. This is a good example of how to factor out OS-specific concerns using the OCaml type system (and I plan to blog more about this soon).
* [ocaml-cow](http://github.com/mirage/ocaml-cow) is a set of syntax extensions for JSON, CSS, XML and XHTML, which are explained [here](/wiki/cow), and used by this site.
* [ocaml-dyntype](http://github.com/mirage/dyntype) uses camlp4 to [generate dynamic types](http://anil.recoil.org/papers/2011-dynamics-ml.pdf) and values from OCaml type declarations.
* [ocaml-orm](http://github.com/mirage/orm) auto-generates SQL scheme from OCaml types via Dyntype, and currently supports SQLite.
* [ocaml-openflow](http://github.com/mirage/ocaml-openflow) implements an OCaml switch and controller for the Openflow protocol.

There are quite a few more that are still being hacked for release by the team. We also have the Mirage ports of [SSH](http://github.com/avsm/ocaml-ssh) and DNSSEC to integrate before the first release this year, to add to the fun! If you want to get involved, just join the (mailing list)[/about] or IRC channel!

0 comments on commit 4b60a2f

Please sign in to comment.