Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://dbis-uibk.github.io/relax/

RelaX - a relational algebra calculator
https://dbis-uibk.github.io/relax/

Last synced: 9 days ago
JSON representation

RelaX - a relational algebra calculator

Awesome Lists containing this project

README

        

# Relax
A relational algebra calculator

## How to build
* Install yarn https://yarnpkg.com/
* Install node https://nodejs.org/en/
* Clone the repo
* Checkout the `development` branch
* Execute `yarn install` to install all dependencies
* Execute `yarn serve` to locally run the webapp on port 8088
* (Optional) open folder with https://code.visualstudio.com/ and install the workspace recommended extensions (includes tasks)

## How to Release
* Clone the repo
* Checkout the `development` branch
* Execute `yarn install` to install all dependencies
* Use `yarn build` to create release build in the `dist` folder
* Copy the content of your `dist` folder somewhere outside of the repository
* Checkout the branch `gh-pages`
* Remove everything there and paste content of the former `dist` folder
* Push to github (the person doing this must be an administrator of the project)

## Contributions
* Contributions are **highly appreciated**
* Please create a **pull request** for the **development** branch

### Add a new Language
* Open `src/locales/languages.csv` as csv with e.g. libreoffice (use ',' as delimiter and '"' as string marker)
* Every column represents a language, every row a value
* Create a new column (use the country code as first row/header cell)
* Insert a string for every language key there is (pay attention to {{variables}} as they must stay untouched)
* When finished, execute the script `writeLanguageFiles.py` which generates the json files based on the csv
* In `src/calc2/i18n.tsx` add an import for this file as well as initializing it in the i18n init function (see other languages for examples)
* Add a new dropdown entry to `src/calc2/calculator.entry.tsx` and `src/calc2/calculator.entry.tsx`
* Test your language
* Create a pull request to the development branch

## Features

### Data Sources
There are two ways to provide a group of tables:

* static groups: the groups and tables are loaded from a text file stored on the server
* github gist: the groups and tables are loaded from a github gits via its unique id

In the group's description markdown code can be used but javascript code will be removed for security reasons.

### Static Groups
Static groups are loaded from the file `data/local_groups`.
In this file multiple groups can be declared in the following text format.

A group starts with the group header:

group:sample group
description:this is the description

Every keyword can be followed by either a colon and a single line of content terminated with a line break or
the content is surrounded with '[[' and ']]' if the content spans multiple lines.

group:sample group
description[[this is the description
that spans multiple lines]]

Headers can also be provided for different languages e.g. `description@de:...`.

After the group header the tables are defined using the variable assignment syntax.
The name of the variable is used for the tables name and the assigned RA-expression defines its content.
Every valid RA-expression can be used if the only relations used are defined in that group.
The qualifier of each column is its tables name and is automatically added at runtime.

group:sample group
description:this is the description

A = {a, b
1, 2
3, 4
}
B = {a, c, d
1, 'test', 1970-01-01
3, 'test2', null
42, 'test3', null
}
C = A x B

It is also possible to define example queries in both relational algebra and SQL.
These will be automatically loaded into the editor when the group is loaded for the first time.

group:sample group
description:this is the description

exampleSql - {
Select * from A where a = 1
}

exampleRelAlg - {
sigma R.a = 1 R
}

A = {a, b
1, 2
3, 4
}
B = {a, c, d
1, 'test', 1970-01-01
3, 'test2', null
42, 'test3', null
}
C = A x B

### Github Gist

The program can load groups from a gist.
This allows any user to use their own tables and share them with others.

The format to define a group in the gist ist the same format as for the static group definition.

The data can be loaded by adding the git's id to the query string.
If you call the application with the query string `data=gist:ac267b9cc810ac5f20e2`,
it tries to load additional groups from the gits with the id _ac267b9cc810ac5f20e2_.

So a user could publish a url like `http://example.com/?data=gist:ac267b9cc810ac5f20e2` to share
the group with other users.

#### Known Issue: Network Access Limitations

Some users have encountered difficulties accessing certain databases on the Relax page when multiple users are connected through the same network (e.g. university network, eduroam) . In these cases, users are restricted to accessing only the test database, while connections to other databases fail.

- GitHub imposes rate limits on requests from the same IP address, common in shared networks like university environments.
- As a result, GitHub may block additional requests from the same IP, restricting database access.

**Solution/Workaround:**
- **Log into GitHub:** Logging into a GitHub account while using Relax can help bypass rate limits by associating requests with individual accounts instead of a shared IP.
- **Access from a Different Network:** Users can also avoid this issue by connecting to Relax from a network outside the university.

## Contributors
* Spanish translation was contributed by https://github.com/Nifled
* Korean translation was contributed by https://github.com/jeongwhanchoi