package base

  1. Overview
  2. Docs
Full standard library replacement for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

base-v0.10.0.tar.gz
md5=60a9db475c689720cc7fc4304e00b00e

Description

Full standard library replacement for OCaml

Base is a complete and portable alternative to the OCaml standard library. It provides all standard functionalities one would expect from a language standard library. It uses consistent conventions across all of its module.

Base aims to be usable in any context. As a result system dependent features such as I/O are not offered by Base. They are instead provided by companion libraries such as stdio:

https://github.com/janestreet/stdio

Published: 15 Dec 2017

README

README.org

* Base

Base is a standard library for OCaml. It provides a standard set of general purpose
modules that are well-tested, performant, and fully-portable across any environment that
can run OCaml code. Unlike other standard library projects, Base is meant to be used as a
wholesale replacement of the standard library distributed with the OCaml compiler. In
particular it makes different choices and doesn't re-export features that are not fully
portable such as I/O, which are left to other libraries. Documentation can be found
[[https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html][here]].

** Installation

Install Base via [[https://opam.ocaml.org][OPAM]]:

#+begin_src
$ opam install base
#+end_src

Base has no runtime dependencies and is fast to build. Its sole build
dependency is [[https://github.com/janestreet/jbuilder][jbuilder]], which
itself does not requires nothing more than the compiler.

** Using the OCaml standard library with Base

Base is intended as a full stdlib replacement.  As a result, after an
=open Base=, all the modules, values, types, ... coming from the OCaml
standard library that one normally gets in the default environment are
deprecated.

In order to access these values, one must use the =Caml= library,
which re-exports them all through the toplevel name =Caml=:
=Caml.String=, =Caml.print_string=, ...

The recommended way to build code using Base is as follows:

#+begin_src ocaml
$ ocamlc -open Base
#+end_src

** Differences between Base and the OCaml standard library

Programmers who are used to the OCaml standard library should read
through this section to understand major differences between the two
libraries that one should be aware of when switching to Base.

*** Comparison operators

The comparison operators exposed by the OCaml standard library are
polymorphic:

#+begin_src ocaml
val compare : 'a -> 'a -> int
val ( <= ) : 'a -> 'a -> bool
...
#+end_src

What they implement is structural comparison of the runtime
representation of values. Since these are often error-prone,
i.e. they don't correspond to what the user expects, they are not
exposed directly by Base.

To use polymorphic comparison with Base, one should use the
=Polymorphic_compare= module. The default comparison operators exposed
by Base are the integer ones, just like the default arithmetic
operators are the integer ones.

The recommended way to compare arbitrary complex data structures is to
use the specific =compare= functions. For instance:

#+begin_src ocaml
List.compare String.compare x y
#+end_src

The [[https://github.com/janestreet/ppx_compare][ppx_compare]] rewriter
offers an alternative way to write this:

#+begin_src ocaml
[%compare: string list] x y
#+end_src

** Base and ppx code generators

Base uses a few ppx code generators to implement:

- reliable and customizable comparison of OCaml values
- reliable and customizable hash of OCaml values
- conversions between OCaml values and s-expression

However, it doesn't need these code generators to build. What it does
instead is use ppx as a code verification tool during development. It
works in a very similar fashion to
[[https://github.com/janestreet/ppx_expect][expectation tests]].

Whenever you see this in the code source:

#+begin_src ocaml
type t = ... [@@deriving_inline sexp_of]
let sexp_of_t = ...
[@@@end]
#+end_src

the code between the =[@@deriving_inline]= and the =[@@@end]= is
generated code. The generated code is currently quite big and hard to
read, however we are working on making it look like human-written
code.

You can put the following elisp code in your =~/.emacs= file to hide
these blocks:

#+begin_src scheme
(defun deriving-inline-forward-sexp (&optional arg)
  (search-forward-regexp "\\[@@@end\\]") nil nil arg)

(defun setup-hide-deriving-inline ()
  (inline)
  (hs-minor-mode t)
  (let ((hs-hide-comments-when-hiding-all nil))
    (hs-hide-all)))

(require 'hideshow)
(add-to-list 'hs-special-modes-alist
             '(tuareg-mode "\\[@@deriving_inline[^]]*\\]" "\\[@@@end\\]" nil
                           deriving-inline-forward-sexp nil))
(add-hook 'tuareg-mode-hook 'setup-hide-deriving-inline)
#+end_src

Things are not yet setup in the git repository to make it convenient
to change types and update the generated code, but they will be setup
soon.

** Base coding rules

There are a few coding rules across the code base that are enforced by
lint tools.

These rules are:

- Opening the =Caml= module is not allowed. Inside Base, the OCaml
  stdlib is shadowed and accessible through the =Caml= module. We
  forbid opening =Caml= so that we know exactly where things come
  from.
- =Caml.Foo= modules cannot be aliased, one must use =Caml.Foo=
  explicitly. This is to avoid having to remember a list of aliases
  at the beginning of each file.
- For some modules that are both in the OCaml stdlib and Base, such as
  =String=, we define a module =String0= for common functions that
  cannot be defined directly in =Base.String= to avoid creating a
  circular dependency.  Except for =String= itself, other modules
  are not allowed to use =Caml.String= and must use either =String= or
  =String0= instead.
- Indentation is exactly the one of =ocp-indent=.
- A few other coding style rules enforced by
  [[https://github.com/janestreet/ppx_js_style][ppx_js_style]].

The Base specific coding rules are checked by =ppx_base_lint=, in the
=lint= subfolder. The indentation rules are checked by a wrapper around
=ocp-indent= and the coding style rules are checked by =ppx_js_style=.

These checks are currently not run by =jbuilder=, but it will soon get
a =-dev= flag to run them automatically.

** Roadmap

Following is the current plan for a stable version 1 of Base.

*** Add missing modules

There are still a few missing modules in Base:

- =Bytes= (and make Base -safe-string compliant)
- =Format=
- =Queue=
- =Ref=

For =Format=, it might be better to simply import the
[[http://erratique.ch/software/fmt][Fmt module]] that
provides a better API than the =Format= module of the stdlib.

*** Add more integer types

Add support for ={,u}int{8,16,32,64}=. These are always useful when
implementing binary protocols.

Initially they should be implemented with C stubs and eventually we
should propose their inclusion in the compiler.

*** 80 columns limit

Currently lines in Base are limited to a maximum width of 90
characters. To make things more standard, we should use an 80 columns
limit.  The only thing needed for this is to extend the style checker
to enforce a maximum line width.

*** Remove implicit uses of polymorphic comparison

Such as =List.mem= where =?equal= defaults to the polymorphic
comparison. These are error-prone.

*** Improve the generated code

Improve our code generators to produce code that looks more like
hand-written code.

Dependencies (3)

  1. sexplib >= "v0.10" & < "v0.11"
  2. jbuilder >= "1.0+beta12"
  3. ocaml >= "4.04.1" & < "4.07.0"

Dev Dependencies

None

  1. ahrocksdb < "0.2.1"
  2. alcotest-async >= "1.3.0"
  3. async_ssl = "v0.10.0"
  4. bap-main
  5. bap-recipe
  6. bap-recipe-command
  7. bin_prot = "v0.10.0"
  8. bitcoinml < "0.4.1"
  9. bitvec-order
  10. camelsnakekebab
  11. camlimages >= "5.0.3"
  12. configurator = "v0.10.0"
  13. cookie >= "0.1.8"
  14. core = "v0.10.0"
  15. core_kernel = "v0.10.0"
  16. crlibm < "0.3"
  17. dotenv
  18. FPauth
  19. FPauth-core
  20. FPauth-responses
  21. FPauth-strategies
  22. farith
  23. fftw3 >= "0.8" & < "0.8.2"
  24. fieldslib = "v0.10.0"
  25. freetds = "0.6"
  26. GT >= "0.4.0" & < "0.5.2"
  27. gammu >= "0.9.4"
  28. genspio >= "0.0.3"
  29. gobject-introspection
  30. gsl >= "1.20.0" & < "1.24.3"
  31. h1_parser
  32. hacl
  33. influxdb
  34. influxdb-async
  35. influxdb-lwt
  36. inquire < "0.2.0"
  37. json-derivers
  38. lacaml >= "10.0.1" & < "11.0.7"
  39. lbfgs = "0.9"
  40. learn-ocaml >= "0.12"
  41. learn-ocaml-client
  42. libsvm >= "0.9.4"
  43. lilac
  44. liquid_interpreter >= "0.1.2"
  45. liquid_ml >= "0.1.2"
  46. liquid_parser >= "0.1.2"
  47. liquid_std >= "0.1.2"
  48. liquid_syntax >= "0.1.2"
  49. logical
  50. merge-fmt
  51. mesh-triangle >= "0.9.3" & < "0.9.5"
  52. mmdb
  53. nice_parser
  54. nsq >= "0.2.5"
  55. OCanren-ppx >= "0.3.0~alpha1"
  56. ocaml-logicalform
  57. ocaml-protoc-plugin < "1.0.0"
  58. ocaml-r >= "0.1.0" & < "0.3.1"
  59. ocamlformat >= "0.3" & < "0.5"
  60. open_packaging
  61. opine
  62. owl >= "0.3.7"
  63. pa_ppx = "0.03"
  64. parsexp = "v0.10.0"
  65. parsexp_io = "v0.10.0"
  66. pcre >= "7.3.0" & < "7.4.6"
  67. posixat = "v0.10.0"
  68. postgresql >= "4.1.0" & < "4.6.2"
  69. ppx-owl-opt
  70. ppx_assert = "v0.10.0"
  71. ppx_compare = "v0.10.0"
  72. ppx_core = "v0.10.0"
  73. ppx_deriving_cad >= "0.2.0"
  74. ppx_deriving_protocol < "0.8.1"
  75. ppx_deriving_scad
  76. ppx_expect >= "v0.10.0" & < "v0.11.0"
  77. ppx_hash = "v0.10.0"
  78. ppx_inline_test >= "v0.10.0" & < "v0.11.0"
  79. ppx_protocol_conv < "5.1.2"
  80. ppx_protocol_conv_json < "3.1.0"
  81. ppx_protocol_conv_msgpack < "3.1.0"
  82. ppx_protocol_conv_xml_light < "3.1.0"
  83. ppx_protocol_conv_yaml < "3.1.0"
  84. ppx_rapper >= "1.0.1" & < "3.0.0"
  85. ppxlib >= "0.15.0" & < "0.30.0"
  86. prettiest
  87. protocell
  88. psyche
  89. qinap
  90. range = "0.5"
  91. reason-standard
  92. reparse = "2.1.0"
  93. routes >= "2.0.0"
  94. sanddb >= "0.3.0"
  95. secp256k1 >= "0.2.5" & < "0.4.4"
  96. session-cookie
  97. session-cookie-lwt
  98. sexp_pretty = "v0.10.0"
  99. shexp = "v0.10.0"
  100. socialpeek
  101. sqlite3 >= "4.2.0" & < "5.0.1"
  102. stdio = "v0.10.0"
  103. tablecloth-native < "0.0.8"
  104. tensorflow >= "0.0.10"
  105. timmy
  106. torch < "0.5"
  107. twostep
  108. typerep = "v0.10.0"
  109. variantslib = "v0.10.0"
  110. virtual_dom = "v0.10.0"
  111. wseg
  112. zanuda
  113. zmq-async < "5.1.0"
  114. zmq-lwt < "5.1.0"

Conflicts

None