Skip to content

Commit

Permalink
cEP 23: Breaking down coala
Browse files Browse the repository at this point in the history
Closes #138
  • Loading branch information
yukiisbored committed Jan 1, 2019
1 parent 93c7cce commit cae663e
Showing 1 changed file with 277 additions and 0 deletions.
277 changes: 277 additions & 0 deletions cEP-0023.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,277 @@
# Breaking down coala

| Metadata | |
|----------|-----------------------------------------------|
| cEP | 0023 |
| Version | 1.0 |
| Title | Breaking down the coala |
| Authors | Muhammad Kaisar Arkhan <mailto:yuki@coala.io> |
| Status | Proposed |
| Type | Feature |

## Abstract

This cEP proposes a new architecture evolution for coala.

## How coala works

coala is a Python program that also provides API for bears and interacting with
them.

Bears are Python classes filled with metadata needed to execute linter programs
and may contain helper code to generate configuration files. Since bears are
Python code, some bears have the actual linter inside of them and some just
execute the Python API of a linter.

Bears are written with the API provided by the coala core and they're running
under the same process as coala.

On startup, coala reads and intepret the configuration file. Configuration files
are separated by sections which contains what bear is required and the
configuration for the bear.

After it's intepreted, it is passed over to an executor which will executes it
per section. The executor will find and import the bear class which usually
resides in the Python packages path. It then pass the Section data to the bear
and set it's require configuration. The bear first prepare the whole command
along with it's parameters or generate a configuration file. After that's done,
the linter program will be executed by the bear as a separate process and the
bear will intepret it's standard output by matching a regex. The bear will yield
the output of the program to the executor which will end up to the generator
where the user see the warning/error and determine an action.

## The Architectural Issue

There is no clear distinction between the coala core which job is to intepret
and run bears and the one that shows the command line interface to the user. In
addition, bears in essence can do anything it wants to since it is just a Python
class that is loaded into the coala process.

This caused numerous unwanted regressions between bears and coala and costed a
lot in maintenance. This is also the reason why bears are not released
separately as a "collection" rather it is shipped with coala core along with
every linter in the collection.

Instead of leaving the project at this state, we should define borders and setup
a more proper architecture and standards.

## The new architecture

Bears are now just simple formatted plain-text file containing the metadata
needed. It can also contain a simple program as helpers or sole linters.

coala will separated into two parts: The coala Engine and The coala CLI.

The coala CLI's sole job is to present an interactive command line interface for
the coala Engine. The CLI will present the output of the Engine and present them
with possible actions that the user can do.

Meanwhile, the coala Engine's sole job is to intepret the bear files and
execute/supervise the linter/helper programs along with committing the action
that is requsted by the user.

If a helper program is needed, They'll act as the linter program and do stuff
before the program (e.g generating the configuration file) and do stuff
after it (e.g cleaning).

The frontend and backend programs will communicate to each other via json-rpc.
json-rpc is chosen for it's simplicity.

## The new bear file

Bears will be ini files which is already a part of the Python standard library.
Ini files are readable and simple to write. Making it a lot easier for projects
making their own internal bears.

### GoVet.bear

```ini
[bear]
name = GoVetBear
description = Analyze Go code and raise suspicious constructs, such as printf
calls whose arguments do not correctly match the format string,
useless assignments, common mistakes about boolean operations, unreachable code,
etc.
languages = Go
authors = The coala developers
authors_email = coala-devel@googlegroups.com
license = AGPL-3.0
can_detect = Unused code, Smell, Unreachable Code

[requirement]
type = go
package = golang.org/cmd/vet

[run]
executable = go
arguments = vet
use_stdout = false
use_stderr = true
output_regex = .+:(?P<line>\d+): (?P<message>.*)
```

The coala Engine will intepret the following file, check the requirement, and
execute the linter program while intepreting the output with the regex.

### SpaceConsistency.bear

```ini
[bear]
name = SpaceConsistencyBear
description = Check and correct spacing for all textual data. This includes usage of
tabs vs. spaces, trailing whitespace and (missing) newlines before
the end of the file.
languages = All
authors = The coala developers
authors_email = coala-devel@googlegroups.com
license = AGPL-3.0
can_detect = Formatting

[param.use_spaces]
description = True if spaces are to be used instead of tabs
type = boolean

[param.allow_trailing_whitespace]
description = Whether to allow trailing whitespace or not.
type = boolean
default = false

[params.indent_size]
description = Number of spaces per indentation level
type = int
default = 8

[params.enforce_newline_at_EOF]
description = Whether to enforce a newline at the end of file
type = boolean
default = true
config_key = enforce_newline

[run]
local = true
executable = space_consistency_bear.py
output_regex = .+:(?P<line>\d+): (?P<message>.*)

```

The coala Engine will intepret the following file, setup the command arguments,
and run the Python file. Note that it does not load it as a library rather
running it as a program.

This also means it is possible to run it without the engine.

```
/usr/local/share/coala/bears/SpaceConsistency/space_consistency_bear.py \
--use_spaces=false \
--allow_trailing_whitespace=false \
--indent_size=8 \
--enforce_newline_at_EOF=8 \
```

## The RPC

The RPC will follow the JSON-RPC specification
(https://www.jsonrpc.org/specification).

The methods will be the following:
* `start`
* `commit`

The following examples will use the syntax below:
```
--> data sent to the Engine
<-- data sent to the Frontend
```

### `start_session`

`start_session` will start a new coala session. It will pass the whole
configuration.

```json
--> {
"jsonrpc": "2.0",
"method": "start_session",
"params": {
"sections": [
"all": {
"bears": ["SpaceConsistencyBear"],
"use_spaces": true,
"files": "**/**.py"
}
]
}
}
<-- {
"jsonrpc": "2.0",
"result": {
"file": "/home/asuka/src/myproject/main.py",
"bear": "SpaceConsistencyBear",
"message": "Tabs used instead of spaces.",
"line": 47,
"patch": "<patch goes here>",
"has_next": true,
"actions": [
{
"action": "patch",
"name": "Apply Patch",
"description": "Applies the proposed patch to the file"
},
{
"action": "ignore",
"name": "Ignore",
"description": "Ignore the warning"
}
]
}
}
```

### `commit`

`commit` will commit an action proposed by the Engine and pass onto the next warning.

```json
--> {
"jsonrpc": "2.0",
"method": "commit",
"params": {
"action": "ignore"
}
}
<-- {
"jsonrpc": "2.0",
"result": {
"file": "/home/asuka/src/myproject/handler.py",
"bear": "SpaceConsistencyBear",
"message": "Tabs used instead of spaces.",
"line": 20,
"patch": "<patch goes here>",
"section": "all",
"has_next": false,
"actions": [
{
"action": "patch",
"name": "Apply Patch",
"description": "Applies the proposed patch to the file"
},
{
"action": "ignore",
"name": "Ignore",
"description": "Ignore the warning"
}
]
}
}
--> {
"jsonrpc": "2.0",
"method": "commit",
"params": {
"action": "ignore"
}
}
<-- {
"jsonrpc": "2.0",
"result": {}
}
```

1 comment on commit cae663e

@gitmate-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment on cae663e.

There are 66 results for the section spacing. They have been shortened and will not be shown inline because they are more than 10.

Message File Line
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 194
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 195
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 196
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 197
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 198
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 199
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 200
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 201
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 202
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 203
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 204
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 207
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 208
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 209
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 210
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 211
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 212
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 213
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 214
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 215
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 216
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 217
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 218
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 219
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 220
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 221
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 222
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 223
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 224
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 225
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 226
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 227
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 237
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 238
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 239
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 240
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 241
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 244
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 245
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 246
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 247
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 248
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 249
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 250
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 251
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 252
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 253
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 254
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 255
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 256
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 257
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 258
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 259
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 260
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 261
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 262
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 263
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 264
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 265
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 268
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 269
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 270
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 271
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 272
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 275
Line contains following spacing inconsistencies: - Tabs used instead of spaces. cEP-0023.md 276

Until GitMate provides an online UI to show a better overview, you can run coala locally for more details.

Please sign in to comment.