- New
DkDev_Std.Export create-blib
subcommand to make a blib archive. - Patched capnp behind
Tr1Capnp_Std
that is amenable to codept analysis: capnproto/capnp-ocaml#91 and capnproto/capnp-ocaml#92 DkDev_Std.Export
now exports.cmti
in addition to.cmi
- The
Run
(ex../dk DkRun_Project.Run
) is now native code rather than bytecode. Native code has dead-code and other optimizations necessary so that more features can be added toRun
while still fitting inside a 32-bit end-user environment. - Renamed
DkDev_Std
toMlStd_Std
. In an upcoming version you will be able to drop the trailingStd
segments, so thatMlStd_Std.Export
could be invoked asMl.Export
. - All
MlStd_Std
scripts will skip the ToS check, not just the newly renamedMlStd_Std.Exec
,MlStd_Std.Export
andMlStd_Std.Legal.Record
. This will meandk Ml.*
will be consistently:- Apache 2.0 license
- No terms of service check
- Mitigate occurrence of
Reason: flexdll error: cannot relocate xxxx RELOC_REL32, target is too far
onwindows_x86_64
when./dk DkRun_Project.Run
(etc.) runs: https://github.com/diskuv/dkml-compiler/compare/b211c65d1ac69590ce75e9ae8405fb71a3654f63...main
- The marshalled
.mli
filenames (part ofLocation.t
) are now equal in both DkSDK CMake and DkSDK Coder for all the package dependencies of DkSDKFFI_OCaml: base,ocplib-endian,res,result,sexplib0, and stdio. That makes their.cmi
checksums equivalent which avoidsmake inconsistent assumptions
ocamlc errors.
-
Allow unpackaged scripts to run. That means
./dk DkRun_Project.Run somefile.ml
can havesomefile.ml
be any path on the filesystem. That gives a new third way to run scripts:- With a standard module id (ex. DkDev.Export).
- With a path which ends with one or more MlFront module names and has an immediate MlFront library name ancestor. For example
../a/b/c/SomeTest_Std/X/Y/Z.ml
will be a standard moduleSomeTest_Std.X.Y.Z
because the path ends with the module namesX
,Y
andZ
and has an immediate library nameSomeTest_Std
. - (new change) Any other path will be treated as if it were the reserved module id
ZzZz_Zz.<CapitalizedBasename>
as long as the path's basename, when capitalized, is a valid standard module name. For example:
somefile.ml
becomesZzZz_Zz.Somefile
A.ml
becomesZzZz_Zz.A
AbcDefHello.ml
becomesZzZz_Zz.AbcDefHello
AbcDef_Hello.ml
is not accepted because it matches MlFront library name standardsA__.ml
is not accepted because it has a double underscore_A.ml
is not accepted because it begins with an underscore
- The generated
dune
files in the#/s
are now relocatable. That means you can move the project directory (both the source code and the#s/
folder) and your build should in theory work. However, thefindlib.conf
has hardcoded paths that might be addressed in a later version of findlib ocaml/ocamlfind#72. - The generated
dune
anddune-project
files are now.z-dk-dune
anddune-file
. That lets Dune projects work with DkCoder without having to remove existingdune-project
anddune
files. An emptydune-workspace
will also be created if it doesn't exist so that Merlin knows there is a Dune project.
DKML_TARGET_ABI
environment variable, if set, is honored in./dk dksdk.java.jdk.download
../dk dksdk.java.jdk.download DKML_TARGET_ABI <abi>
is also supported.- Support for
DKCODER_TTL_MINUTES
had regressed, and is now fixed so that it re-fetches DkCoder after the specified minutes from the last time.
- Upgrade to Ninja 1.12.1 from 1.11.1 specifically to fix ninja-build/ninja#829
- Provide and download ninja-build static binaries on Linux since system-installed Ninja versions are unpredictable and Ninja-provided binaries are linked to recent glibc versions.
- Provide and download CMake static binaries for same reasons as ninja-build.
- Remove now-unused code for
unzip
install on Linux in./dk
.unzip
was used for unpacking a Python wheel archive that contained CMake, and for unzipping a Ninja installation zipfile, but that is no longer needed. - Have
./dk
work with BusyBox'star
- Use
FetchContent(URL)
in__dk.cmake
rather than Git to download the latest system scripts (./dk dkml.xxx
and./dk dksdk.xxx
scripts). - breaking change: Remove
git
from being installed during./dk
on Linux, which presumes thatsudo
or something similar is available to do the installation, and presumes authentication is set up. It was previously being done to let CMake doFetchContent(GIT_xxx)
in__dk.cmake
; however, it was never being done for Windows or macOS so it was broken. Instead, user scripts (and system scripts) should handle any Git install + setup themselves. Also, user scripts are long deprecated so this breaking change should affect only system commands. - The archive format for downloads of DkCoder has switched exclusively to zip archives due to varying incompatible tar support.
- bugfix: Initial
./dk
would fail but subsequent ones would work. - bugfix: Search for uname in /usr/bin but also /bin
- Setting
DKML_HOST_ABI
environment variable tolinux_x86
(etc.) will override which binary is downloaded during./dk
on Unix hosts. - Using
./dk dksdk.project.get SANDBOX
will skip fetching from any URL that has${sourceParentDir}
or${projectParentDir}
variables (ie. they go outside the project). Should be used in CI jobs.
- Propagate NO_COLOR and Windows color detection to Dune
- Replace Tr1Tar_LwtUnix/Unix/Std. It is no longer a thin layer on top of the
ocaml-tar
package since that package is very unstable. Instead it exposes only one extraction function, with more functions possible in the future. - bugfix: #1.
Tr1Assets
and other implicit modules no longer depend onopen__.ml
. - bugfix: https://gitlab.com/diskuv/samples/dkcoder/DkHelloScript/-/issues/1. No more duplicate module errors with text "Module ___ is provided simultaneously".
- New
DkDev_Std.Legal.Record --help
for programmatically accepting the license. Designed for continuous integration. - Enable Windows long path support for all executables inside their application manifests. Works only when registry is updated using admin privileges. Confer https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation
- Standard error is used consistently for logging in
./dk
- Use quiet
-q
option foryum install
in./dk
for Linux, and--quiet --no-progress
forapk add
- bugfix: Consistently use
-qq install --no-install-suggests
for apt-get install - Support
DkRun_Project
in addition toDkRun_Env
andDkRun_V<n>_<m>
. The project version is whatever long-term supported version is embedded in__dk.cmake
. Among other things, this simplifies vscode settings.json. - For DkSDK subscribers. Automatic re-install if the checksum on a
DKRUN_ENV_URL_BASE
locally-built DkCoder tarball has changed. - Allow
DKML_HOST_ABI
environment variable to influence which ABI is downloaded in./dk
. - On Windows the data home is
%LOCALAPPDATA%\Programs\DkCoder
. Was previously a mix of%LOCALAPPDATA%\Programs\DkSDK
and%LOCALAPPDATA%\Programs\DkCoder
. You can delete%LOCALAPPDATA%\Programs\DkSDK
. - On Unix the data home is now
$XDG_DATA_HOME/dkcoder
or$HOME/.local/share/dkcoder
. Was previously$XDG_DATA_HOME/dksdk
or$HOME/.local/share/dksdk
, both of which you can delete. - On Unix when
CI=true
use.dk/tools
subdirectory not.tools
. - On Windows and Unix allow DKCODER_DATA_HOME environment variable to override default locations.
- Path-based commands can be given to
./dk
. That means./dk somewhere/DkHello_Std/Hi.ml
will addsomewhere/
to the You directories and run the moduleDkHello_Std.Hi
. This feature simplifies the 0.4.0 feature which had required./dk DkRun_V0_4.Run somewhere/DkHello_Std/Hi.ml
. - Breaking change:
- Default generator is dune (not dune-ide) if non-DkCoder dune-project. That avoids a conflict with existing dune-project based projects.
- If you have an old checkout of DkHelloScript, DkSubscribeWebhook or SanetteBogue, remove the
dune-project
from that checkout so that DkCoder can regenerate a dune-project annotated for 0.5.0.
- Add
./dk DkFs_C99.Dir [mkdir|rm]
script - bugfix: Some module ids were not compilable (ex.
SonicScout_Setup.Q
) since they had dots in their first or last two characters. - bugfix: The squished module ids (ex.
SonicScout_Setup.Qt
) were using the second and third last characters rather than the correct last and second last characters. - performance: Optimize initial
./dk
install by not copying files. On Windows install time (neglecting download time) dropped from 75 seconds to 6 seconds. - usability: Detect if terminal attached on Windows, and use ANSI color when terminal attached (except when NO_COLOR or in CI).
- Add DkCoder_Std package that has module and module types that DkCoder scripts implement.
- Rename
DkDev_Std.ExtractSignatures
toDkDev_Std.Export
. Include writing .cma alongside updated dkproject.jsonc. Pushdown log level fromDkDev_Std.Export
tocodept-lib-dkcodersig
- Add type equations for
Tr1Logs_Std
soLogs.level
(etc.) is equivalent toTr1Logs_Std.Logs.level
- Us scripts are now part of a findlib site-lib and can be referenced from other scripts, not just run as standalone scripts.
__dkcoder_register
has been renamed__init
which means it initializes the module, similar to have Python's__init__
initializes a class.- Let
__init
be overridable. WARNING: Although today__init
is only called for the entry script, future DkCoder will call__init
for allYou
scripts in dependency order. So defining your ownlet __init () = ...
as an alternative toif Tr1EntryName.module_id = __MODULE_ID__ then ...
will eventually break forYou
scripts. - Add --force option to
DkFs_C99.Dir rm
- Add
DkFs_C99.Path
andDkFs_C99.File
. - Add
os
toTr1HostMachine
. - Add
--kill
toDkFs_C99.Path rm
- findlib.conf generated at analysis time rather than __dk.cmake install time
Important Notes
-
open__.ml
is not transitive at compile-time. That means other libraries that use your library may get:Error: This expression has type Uri.t but an expression was expected of type DkCurl_StdO__.Open__.Uri.t DkCurl_StdO__.Open__.Uri.t is abstract because no corresponding cmi file was found in path.
Use fully-qualified module ids if other libraries will use your scripts. A future version of DkCoder may change the error message but won't mandate that you fully qualify every module reference (that defeats the purpose for the vast majority of scripts which aren't shared). Alternatives include requiring fully qualifing module ids in
.mli
files (but not.ml
), or having anexports__.ml
that functions as the public compile-transitive version ofopen__.ml
.
- Run using a file path in addition to module id
- Add Tr1Tar
- Expose Logs.Src and Logs.Tag for codept
- bugfix: Do not search for nephews of implicit or optimistic modules
- Upgrade merlin from 4.12-414 to 4.14-414
- bugfix:
[%sample]
was not dedenting when there was a blank line - Add Tr1String_Ext
- Add
./dk DkStdRestApis_Gen.StripeGen
- Upgrade to Tezt 4.1.0 which has upstreamed Windows fixes from DkCoder 0.3.0
- Add
Tr1HostMachine
implicit with aabi : [`android_arm64v8a|`android_arm32v7a|`android_x86|`android_x86_64|`darwin_arm64|`darwin_x86_64|`linux_arm64|`linux_arm32v6|`linux_arm32v7|`linux_x86_64|`linux_x86|`windows_x86_64|`windows_x86|`windows_arm64|`windows_arm32|`dragonfly_x86_64|`freebsd_x86_64|`netbsd_x86_64|`openbsd_x86_64|`unknown_unknown|`darwin_ppc64|`linux_ppc64|`linux_s390x]
value
- Add cohttp-curl
- Do not distribute .pdb in non-debug builds
- Add Tr1Logs_Std, Tr1Logs_Clap and Tr1Logs_Lwt and Tr1Http_Std and Tr1Uri_Std
- Export base64, ezjsonm, resto and json-data-encoding and uri and cohttp-server-lwt-unix and cohttp-curl-lwt
- bugfix: Stitched modules were not being created if nephews already existed
- bugfix: implicit modules check if known to solver
- bugfix: setting solver state should fully set state
- bugfix: modified aliases means must expand to solve harder
- bugfix: Fix bug with duplicated pending module
- Add simultaneity invariant check of pending and resolved solver states
-
Support
.mli
interface files -
Libraries can have a
open__.ml
module that will be pre-opened for every script in the library. This module is the correct place to supply the DkCoder required module imports without changing existing OCaml code:module Printf = Tr1Stdlib_V414CRuntime.Printf module Bos = Tr1BosStd.Bos module Bogue = Tr1Bogue_Std.Bogue
-
A bugfix for SDL logging is included and SDL logging is now enabled.
-
Module and library names ending with
__
are reserved for DkCoder internal use. -
DkDev_Std
is a reserved "Us" library. You cannot redefine this library. Any library that starts withDk
is also reserved. -
Add implicit modules (see below)
-
Make
__MODULE_ID__
value available to scripts so they can see their own fully qualified module identifiers (ex.SanetteBogue_Snoke.X.Y.Snoke
) -
Make
__LIBRARY__
value available to scripts so they can see which library they belong (ex.SanetteBogue_Snoke
) -
Make
__FILE__
value be the Unix-style (forward slashes) relative path of the script to the script directory (ex.SanetteBogue_Snoke/X/Y/Snoke.ml
). -
Stdlib.Format
was moved from Tr1Stdlib_V414Base to Tr1Stdlib_V414CRuntime becauseFormat.printf
does C-based file I/O. -
The
dune
generator and the internal DuneUs generator will use fixed length encoding of the library names. This partially mitigates very long paths created by Dune that fail on Windows path limits. -
Added
Tr1Tezt_C
andTr1Tezt_Core
.- No Runner module is provided since that only connects to Unix.
- The
Process
module has been removed since it assumes Windows and its dependencyLwt_process
is buggy on Windows. - A
ProcessShexp
is bundled that is a cross-platform, almost API-equivalent of Tezt'sProcess
.- No
spawn_with_stdin
since difficult to bridge I/O channels between Lwt and Shexp. - No
?runner
parameters since Runner is Unix-only. - There is an extra method
spawn_of
that accepts aShexp.t
process
- No
- A
ProcessCompat
is bundled that does not assume Windows but still uses a buggyLwt_process
. Use for porting old code only.
-
The Debug builds are no longer bundled due to Microsoft not allowing those to be distributed. Also speeds install time. Anyone with source code access (ie. DkSDK subscribers) can do debug builds and get meaningful stack traces.
-
End of life and a grace period for a version are enforced with messages and errors. They respect the SOURCE_DATE_EPOCH environment variable so setting it to
1903608000
(Apr 28, 2030) can test what it looks like.
Implicit modules are modules that are automatically created if you use them. Unlike explicit modules, their content can be based on the structure of the project.
The v ()
function will populate a cache folder containing all non-ml source code in the assets__
subfolder of the library directory.
The v ()
function will return the cache folder.
val v : unit -> string
(** [v ()] is the absolute path of a cache folder containing all the files
in the `assets__` subfolder of the library directory.
For example, in a project:
{v
<project>
├── dk
├── dk.cmd
└── src
└── SanetteBogue_Snoke
├── Snoke.ml
└── assets__
├── SnakeChan-MMoJ.ttf
├── images
│ ├── apple.png
│ └── snoke_title.png
└── sounds
└── sol.wav
v}
the ["Snoke.ml"] script would have access to a cached directory from
[v ()] that contains:
{v
<v ()>
├── SnakeChan-MMoJ.ttf
├── images
│ ├── apple.png
│ └── snoke_title.png
└── sounds
└── sol.wav
v}
*)
(** The name of the DkCoder library the entry script belongs to.
Ex: SanetteBogue_Snoke *)
val library : string
(** The simple name of the entry script.
Ex: Snoke *)
val simple_name : string
(** The fully qualfied module name for the entry script.
Ex: SanetteBogue_Snoke.Snoke *)
val module_name : string
Using the Tr1EntryName
module, you can mimic the following Python:
if __name__ == "__main__":
print("Hello, World!")
with
let () =
if Tr1EntryName.module_id = __MODULE_ID__ then
Tr1Stdlib_V414Io.StdIo.print_endline "Hello, World!"
That means you can isolate side-effects when importing other scripts.
(** The fully qualified [Run] module corresponding to the current version.
Ex: DkRun_V0_1.Run *)
val run_module : string
val run_env_url_base : string option
(** The base URL necessary when if launching with {!run_module} when
[run_module = "DkRun_Env.Run"]. *)
val major_version : int
val minor_version : int
Exiting scripts with Ctrl-C on Windows only exits the Windows batch script, not the actual subprocess.
For now taskkill /f /im ocamlrunx.exe
will kill these hung processes.
On first install for Windows running the ./DkHelloScript/dk DkRun_V0_2.Run -- DkHelloScript_Std.Y33Article --serve
example gives:
[00:00:22.564] [�[32m�[1mSUCCESS�[0m] (3/18) reproducibility or quick typing
[00:00:22.564] Starting test: focus on what you run
[00:00:22.566] �[1m[.\dk.cmd#3] '.\dk.cmd' DkRun_V0_2.Run '--generator=dune' -- DkHelloScript_Std.AndHelloAgain�[0m
[ERROR][2024-04-29T00:00:43Z] /Run/
Failed to run
C:\Users\WDAGUtilityAccount\DkHelloScript\src\DkHelloScript_Std\Y33Article.ml
(DkHelloScript_Std.Y33Article). Code fa10b83d.
Problem: The DkHelloScript_Std.Y33Article script exited with
STATUS_ACCESS_VIOLATION (0xC0000005) - The instruction at 0x%08lx
referenced memory at 0x%08lx. The memory could not be %s.
Solution: Scroll up to see why.
Rerunning it works.
-
Fetch and use "Them" libraries
- Adds --cmake-exe (DKCODER_CMAKE_EXE envar) and --ninja-exe (DKCODER_NINJA_EXE envvar) to Run command.
-
Libraries can have a
lib__.ml
module that can provide documentation for the library (ex.MyLibrary_Std
) through a top comment:(** This is the documentation for your library. *) (* Anything else inside lib__.ml will trigger an error *)
Documentation hover tips are refreshed on the next run command (ex.
./dk DkHelloScript_Std.N0xxLanguage.Example051
) -
Running
DkDev_Std.ExtractSignatures
will updatedkproject.jsonc
with anexports
field that has codept signatures. Thedkproject.jsonc
will be created if not present.
Initial version.