All Projects → elliotchance → bento

elliotchance / bento

Licence: other
🍱 bento is an English-based automation language designed to be used by non-technical people.

Programming Languages

go
31211 projects - #10 most used programming language
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to bento

docker-introduction
Reproducible Computational Environments using Containers
Stars: ✭ 34 (+6.25%)
Mutual labels:  english
matlab-novice-inflammation
Programming with MATLAB
Stars: ✭ 26 (-18.75%)
Mutual labels:  english
rhymes
Give me an English word and I’ll give you a list of rhymes
Stars: ✭ 34 (+6.25%)
Mutual labels:  english
introduction-to-conda-for-data-scientists
Introduction to Conda for (Data) Scientists
Stars: ✭ 35 (+9.38%)
Mutual labels:  english
awesome-testing
Software Testing for QA.
Stars: ✭ 48 (+50%)
Mutual labels:  qa
shell-genomics
Introduction to the Command Line for Genomics
Stars: ✭ 54 (+68.75%)
Mutual labels:  english
sql-novice-survey
Databases and SQL
Stars: ✭ 59 (+84.38%)
Mutual labels:  english
cloud-meter
An attempt to port Apache Jmeter to a web based architecture.
Stars: ✭ 18 (-43.75%)
Mutual labels:  qa
nextword
Predict next English words.
Stars: ✭ 65 (+103.13%)
Mutual labels:  english
introcsharpbook
"Fundamentals of Computer Programming with C#" Book
Stars: ✭ 12 (-62.5%)
Mutual labels:  english
English-Persian-Word-Database
English Persian Word Database - Popular database extensions
Stars: ✭ 19 (-40.62%)
Mutual labels:  english
mailhandler
Simple lightweight mail library which allows you to send and retrieve emails, and get more details about email sending and delivery
Stars: ✭ 49 (+53.13%)
Mutual labels:  qa
Pluralize.NET
📘 Pluralize or singularize any English word.
Stars: ✭ 50 (+56.25%)
Mutual labels:  english
ap-style-title-case
Convert a value to AP/APA title case
Stars: ✭ 34 (+6.25%)
Mutual labels:  english
folket
Swedish–English dictionary for macOS (December 20, 2020)
Stars: ✭ 31 (-3.12%)
Mutual labels:  english
DataDigger
A dynamic dataviewer for your Progress / OpenEdge databases
Stars: ✭ 43 (+34.38%)
Mutual labels:  4gl
test junkie
Highly configurable testing framework for Python
Stars: ✭ 72 (+125%)
Mutual labels:  qa
BSD
The Business Scene Dialogue corpus
Stars: ✭ 51 (+59.38%)
Mutual labels:  english
translate english
Java程序员阅读源码必知英语单词
Stars: ✭ 24 (-25%)
Mutual labels:  english
asyncomplete-nextword.vim
Provides intelligent English autocomplete for asyncomplete.vim via nextword
Stars: ✭ 43 (+34.38%)
Mutual labels:  english

🍱 bento

bento is a forth-generation programming language that is English-based. It is designed to separate orchestration from implementation as to provide a generic, self-documenting DSL that can be managed by non-technical individuals.

That's a bunch of fancy talk that means that the developers are able to setup the complex tasks and make them easily rerunnable by non-technical people.

The project is still very young, but it has a primary goal for each half of its intended audience:

For the developer: Programs can be written in any language and easily exposed through a set of specific DSLs called "sentences".

For the user: An English-based language that avoids any nuances that non-technical people would find difficult to understand. The language only contains a handful of special words required for control flow. Whitespace and capitalization do not matter.

Getting Started

Installation

Bento is available for Mac, Windows and Linux. You can download the latest release from the Releases page.

Running A Program

Create a file called hello-world.bento with the contents:

start:
	display "Hello, World!"

Then run this file with (you may need to replace the path to the file if you are not in the same directory as the file):

bento hello-world.bento

Example Use Case

The sales team need to be able to run customer reports against a database. They do not understand SQL, or the reports may need to be generated from multiple tools/steps. As the developer, your primary options are:

  1. Run the reports for them. This is a waste of engineering time and a blocker for the sales team if they need to do it frequently, or while you're on holiday.

  2. Write up some documentation and give them readonly access to what they need. The process could be highly technical. Also, allowing them to access production systems is a bad idea. Also, it's still a waste of time for everyone when things aren't working as expected.

  3. Build a tool that runs the reports for them. This is another rabbit hole of wasted engineering time, especially when requirements change frequently or they need a lot of flexibility.

  4. Build the reporting queries/tasks once in bento, and provide them with a script that they can edit and rerun. An example might look like:

run sales report for last 7 days for customer 123
if there were sales, email report to "[email protected]"

The developer would implement the following sentences:

run sales report for last ? days for customer ?
there were sales
email report to ?

Language

File Structure

A .bento file consists of one or more functions. Each of those functions can contain zero or more sentences and call other sentences before of after they are defined.

The file must contain a start function. This can be located anywhere in the
file, but it is recommended to put it as the first function.

Sentences

A sentence contains a collection of words and values and it is terminated by a new line. For example:

display "Hello"

Wrapping Long Sentences

You can explicitly use ... at the end of the line to indicate a continuation:

this is a really long...
	sentence that should go...
	over multiple lines

Indentation between lines does not make an difference. However, it is easier to read when following lines are indented.

Sentences can also contains new lines if the line ends with a ,. This is useful for long inline statements:

if my-name != "John",
  display "oops!",
  otherwise display "All good."

Comments

Comments start with a # and continue until a new line or the end of the program is reached. The comment may be on its own line or at the end of a sentence:

# A comment looks like this.
display "Hello" # It can also be here

Variables

declare first-name is text
declare counter is a number
  1. Only text and number is supported. See specific documentation below.
  2. The word a or an may appear before the type. This can make it easier to read: "is a number" rather than "is number". However, the "a" or "an" does not have any affect on the program.
  3. All variables for a function must be declare before any other sentences.
  4. The same variable name cannot be defined twice within the same function. However, the same variable name can appear in different functions. These are unrelated to each other.
  5. You cannot declare a variable with the same name as one of the function parameters.
  6. All types have a default value which is safe to use before it is set to another value.
  7. There is a special variable called _ which is called the blackhole. Explained in more detail below.

Variables can be set with:

set first-name to "Bob"

Blackhole

The blackhole variable is a single underscore (_). It can be used as a placeholder when the value can be ignored. For example:

divide 1.23 by 7.89 into _

If _ is used in a place where the value would be read it will return a zero value (the same as the default value for that type).

The following lines would function the same. However, you should not rely on the blackhole variable as a readable value and it may be made illegal in the future:

add _ and 7.89 into result
add 0 and 7.89 into result

Text

my-variable is text
  1. A text variable can contain any text, including being empty (zero characters).
  2. It's perfectly safe to use text variables before they have been given a value, the default value will be empty.

Number

my-variable is number
my-variable is number with 1 decimal place
my-variable is number with 3 decimal places
  1. A number variable is exact and has a maximum number of decimal places (this is also called the precision).
  2. If the number of decimal places is not specified it will use 6.
  3. For integers you should use number with 0 decimal places.
  4. The number of decimal places cannot be negative.
  5. A number has no practical minimum (negative) or maximum (positive) value. You can process incredibly large numbers with absolute precision.
  6. Any calculated value will be rounded at the end of the operation so that it never contains more precision than what is allowed. For example if the number has one decimal place, 5.5 * 6.5 * 11 evaluates to 393.8 because 5.5 * 6.5 = 35.75 => 35.8, 35.8 * 11 = 393.8.
  7. Numbers are always displayed without trailing zeroes after the decimal point. For example, 12.3100 is displayed as 12.31 as long as the number of decimal places is at least 2.
  8. The words places and place mean the same thing. However, it is easier to read when place is reserved for when there is only one decimal place.
  9. The default value of a number is 0. This is safe to use use before it has been set.

Mathematical Operations

add a and b into c          # c = a + b
subtract a from b into c    # c = b - c
multiply a and b into c     # c = a * b
divide a and b into c       # c = a / b

Note: Be careful with subtract as the operands are in the reverse order of the others.

Functions

Functions (custom sentences) can be defined by using the : character:

print everything:
	display "Hello"
	display "World"

The whitespace is not required. However, it is easier to read when content of functions are indented with spaces or tabs.

Arguments

Variables can be declared in the function name by specifying their names and types in (), for example:

say greeting to persons-name (greeting is text, persons-name is text):
	display greeting
	display persons-name

Can be called with:

say "Hi" to "Bob"

The order in which the arguments are defined is not important.

Questions

A question is a special type of function that is defined with a ? instead of a ::

it is ok?
	yes

A question is answered with the yes or no sentences. Once a question is answered it will return immediately.

If a question is not explicitly answered by the end, it's assumed to be no.

Questions can be asked in conditionals:

start:
	if it is ok, display "All good!"

Questions can also take arguments in the same way that functions do:

start:
	declare x is number

	set x to 123
    if x is over 100, display "It's over 100", otherwise display "Not yet"

the-number is over threshold (the-number is number, threshold is number)?
	if the-number > threshold, yes

Controlling Flow

Conditions

A condition is a simple comparison between two variables or values. Some examples are:

name = "Bob"
counter > 10
first-name != last-name

All supported operators are:

  • = - Equal.
  • != - Not equal.
  • > - Greater than.
  • >= - Greater than or equal.
  • < - Less than.
  • <= - Less than or equal.

Values can only be compared when they are the same type. For example the following is not allowed, and will return an error:

"123" = 123

Decisions (if/unless)

Sentences starting with if or unless can be used to control the flow. The sentence takes one of the following forms (each either starting with if or unless):

if/unless <condition>, <true>

if/unless <condition>, <true>, otherwise <false>

When unless is used instead of if the comparison is inverted, so that:

if "Bob" = "Bob"      # true
unless "Bob" = "Bob"  # false

Loops (while/until)

Sentences starting with while repeat the sentence until while the condition is true. That is, the loop will only stop once the condition becomes false.

Conversely, using until will repeat the sentence until the condition becomes true.

Loops are written in one of the following forms:

while/until <condition>, <true>

while/until <condition>, <true>, otherwise <false>

Backends

A backend is program controlled by bento. A backend can be any program (compiled or interpreted) that implements the bento protocol on the port specified on the BENTO_PORT environment variable.

Locating and Starting Backends

A backend is started (that is the program is started) when a variable is declared with a type that represents the backend. For example:

declare my-var is my-backend

Will find and start the backend with the name my-backend. The process is:

  1. $BENTO_BACKEND works similar to $PATH where it may contain zero or more paths split by a :. If $BENTO_BACKEND is not defined or is empty then it will receive a default value of . - the current directory.

  2. For each of the backend paths, in order, it will attempt to find a directory called my-backend. The first one that it finds will be the one used, even if another directory of the same name exists in other backend paths.

  3. The my-backend directory must contain a file called bento.json. This describes the backend, and also how it is to be executed. A minimal bento.json looks like:

{
  "run": "php myscript.php"
}

The run contains the system command that will be executed. The program is expected to open a socket, listening on the BENTO_PORT environment variable.

The program must remain running until the socket is closed by bento. All communication is defined in the Backend Protocol.

Communication Protocol

All communication between bento and the backend is done through a socket. The port will be provided to the backend with the BENTO_PORT environment variable.

Bento will always start the communication with a request and wait for a response. This synchronous process will continue indefinitely until bento closes the connection. You may perform final cleanup if need be, then exit the backend program.

A request or response will be a JSON object that consists of a single line, then terminated by a single new line (\n). The newline is important because it signals to the other side that the end of the message has been reached. It's also important to make sure JSON objects are encoded correctly so that any new line characters have been escaped.

Request

A request object is sent from bento to the backend and looks like:

{
  "sentence": "add ? to ?",
  "args": ["57", "example-scores-php"]
}

sentence is always a non-empty string. ? is used as placeholders for the respective order of elements in args. args will always be an array that will contain the same number elements as their are placeholders.

Each of the args will be a string (regardless of the internal type in bento).

Response

Bento will wait for a response after sending a request before proceeding. Like the request, the response must be a valid JSON object encoded in a single line, follow by a new line character to signal termination.

A response can contain the following keys:

{
  "text": "something",
  "set": {
  	"$0": "foo"
  },
  "error": "Oh-noes!"
}
  • text - The text representation of the variable. This is what is output with display ?. You do not need to return a value in other cases. You must implement the display ? sentence in your backend for this feature.

  • set - This will set the value of a variable based on it's index in the sentence ($n where n is an index). The first placeholder (?) will have an index of 0. The value must be a string and a valid valid for the destination type.

  • error must exist and be a string when an error has occurred. It also must not be empty. The error should contain a description of the problem in a human-readable manner. It should not contain sensitive information such as passwords, or details such as stack traces used for debugging.

Special Cases

sentences

All backends must implement sentences, which is used to fetch all of the allowed sentences:

{
  "special": "sentences"
}

The response must be in the form:

{
  "sentences": ["increase ? by ?", "display ?"]
}

The sentences is allowed to have zero elements.

The special sentences request is sent once, immediately after the socket connection to the backend is successful. However, you should allow this request to come at any time and return the same result in all cases.

Examples

Each of the examples implement the backend for the following:

start:
	declare total is my-backend
	increase total by 57
	increase total by 13
	display total

The result of running the program in all cases is:

The total is 70.

PHP

System

The system backend provides direct access to running programs on the host machine.

  • run system command <command>: Run the command and send all stdout and stderr to the console.

  • run system command <command> output into <output>: Run the command and capture all of the stdout and stderr into the output.

  • run system command <command> status code into <status>: Run the command and discard and stdout and stderr. Instead capture the status code returned in status.

  • run system command <command> output into <output> status code into <status>: Run the command and capture the stdout and stderr into output as well as the status code returned into status.

Example:

start:
	declare echo-result is number
	run system command "echo hello" status code into echo-result
	unless echo-result = 0, display "command failed!"

Examples

Hello, World!

start:
	display "Hello, World!"

Variables

start:
	declare first-name is text
	set first-name to "Bob"
	display first-name

Functions (Custom Sentences)

start:
	print everything
	say "Hi" to "Bob"

print everything:
	display "Hello"
	display "World"

say greeting to persons-name (persons-name is text, greeting is text):
	display greeting
	display persons-name
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].