Mélodium is a dataflow-oriented language, focusing on treatments applied on data, allowing high scalability and massive parallelization safely.
Mélodium is a tool and language for manipulation of large amount of data, using the definition of treatments that applies on data through connections, with a track approach that makes any script higly scalable and implicitly parallelizable.
For more exhaustive explanations, please refer to the Mélodium Language book.
Mélodium is under development and continously being defined and improved. Released documentation is available on docs.rs and standard reference on melodium.tech. Development documentation is available at https://melodium.gitlab.io/melodium/melodium/, and the standard reference at https://melodium.gitlab.io/melodium/reference/.
The following code makes a copy of the file ./input.txt
to ./output.txt
. More examples are available under examples.
``` use std/fs/mono::ReadFile use std/fs/mono::WriteFile
sequence Main() { Reader: ReadFile(path="./input.txt") Writer: WriteFile(path="./output.txt")
Reader.data -> Writer.data
} ```
Mélodium releases can be downloaded for some platforms from the Mélodium Repository.
On Linux systems, ALSA development files are required, provided through libasound2-dev
on Debian-like systems and alsa-lib-devel
on Fedora-like ones.
Mélodium is fully written in Rust, and just need usual cargo build
and cargo test
.
shell
git clone https://gitlab.com/melodium/melodium.git
cd melodium
cargo build
Mélodium can also be directly installed from crates.io.
shell
cargo install melodium
A more detailed explanation on how to cross-compile Mélodium is written in dedicated file.
Mélodium can be called through the melodium
command.
- if compiled from source, look at the target/
directory;
- if installed through crates.io, it should already be in your PATH
.
Mélodium also need to know where its standard library is located. It can either be set up with the MELODIUM_STDLIB
environment variable, or by passing explicily the option --stdlib <PATH>
to the command line.
If compiled from source, standard library can be found in the std/
folder. If installed through crates.io, it should be found within ~/.cargo/registry/src/<cargo git reference>/melodium-<version>/std
.
To launch a script:
shell
melodium <SCRIPT>
Or if your script has an entry sequence that is not called Main
:
shell
melodium -m <EntrySequenceName> <SCRIPT>
Development channels and related Mélodium stuff are available on Discord.
Mélodium were first developed during research in signal analysis and musical information retrieval, in need of a tool to manage large amount of records and easily write experimentations, without being concerned of underlying technical operations. It has been presented in this thesis (in French).
The first implementation was in C++ and ran well on high performance computers, such as those of Compute Canada. That tool appeared to be really useful, and the concepts used within its configuration language to deserve more attention. This first experimental design is still available at https://gitlab.com/qvignaud/Melodium.
The current project is the continuation of that work, rewritten from ground in Rust, and redesigned with a general approach of massively multithreaded data flows in mind.
This software is free and open-source, under the EUPL licence.
Why this one specifically? Well, as this project have a particular relationship with cultural world, probably more than most other softwares, it is important to have a strong legal basis covering also the notion of artwork. In the same way, as no culture is more important than another, it was important to have a licence readable and understanble by most of people. The EUPL is available and legally valid in 23 languages, covering a large number of people.
Then, the legal part:
Licensed under the EUPL, Version 1.2 or - as soon they will be approved by the European Commission - subsequent versions of the EUPL (the "Licence"); You may not use this work except in compliance with the Licence. You may obtain a copy of the Licence at: https://joinup.ec.europa.eu/software/page/eupl
Unless required by applicable law or agreed to in writing, software distributed under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the Licence for the specific language governing permissions and limitations under the Licence.
And do not worry, this licence is explicitly compatible with the ones mentionned in its appendix, including most of the common open-source licences.