Skip to content
This repository was archived by the owner on Feb 3, 2023. It is now read-only.

Commit 0aaddb9

Browse files
author
Nicolas Luck
committed
Imported ADRs that Damian shared via gdrive
Started using https://github.com/npryce/adr-tools
1 parent db9c5b8 commit 0aaddb9

12 files changed

+228
-0
lines changed

.adr-dir

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
doc/architecture/decisions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 1. Record architecture decisions
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
We need to record the architectural decisions made on this project.
12+
13+
## Decision
14+
15+
We will use Architecture Decision Records, as described by Michael Nygard in this article: http://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions
16+
17+
## Consequences
18+
19+
See Michael Nygard's article, linked above. For a lightweight ADR toolset, see Nat Pryce's _adr-tools_ at https://github.com/npryce/adr-tools.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# 2. Rewrite second iteration in Rust
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
We want to have holochain run in the browser (for Holo).
12+
13+
Rust can compile to WASM. Rust is language for experts. Rust is trending.
14+
15+
There is a WASM interpretor in Rust (WASMI).
16+
17+
## Decision
18+
19+
Refactor Holochain in the Rust programming language
20+
21+
## Consequences
22+
23+
We have to recode all holochain in Rust which will delay the next version release.
24+
25+
It is an opportunity to refactor the architecture.
26+
27+
We must have clear coding practice on how we manage memory ownership in Rust.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 3. Redux architecture pattern
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
Context here...
12+
13+
## Decision
14+
15+
The new holochain architecture will follow a redux architecture in order for an agent to have one global state. This reduce the complexity of handling state management which is already complex for a distributed app.
16+
17+
## Consequences
18+
19+
Holochain refactor must fit this new model of having State objects and Actions objects.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# 4. Have only one WASM Ribosome
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
There is a WASM intepretor in Rust which can enable hApps in many different languages. WASM is more performant than any other interpretor.
12+
13+
14+
## Decision
15+
16+
Implement only one WASM ribosome for holochain and have it working for 2 different toolchains (Javascript and Rust or C++)
17+
18+
## Consequences
19+
20+
Might do another ribosome non-wasm compatible languages like Closurescript, Python or Ruby
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 5. Alpha1 is last major Go release
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
A complete Rust rewrite is planned (see ADR #0)
12+
13+
## Decision
14+
15+
Alpha1 go release is last major go release of holochain because energy will be focused on the new Rust version.
16+
17+
## Consequences
18+
19+
They will still be minor releases for bug fixing.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 6. Splitting agent into front-house / back-house - OR NOT
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
Holo wants to have front-end part of holochain run in the browser
12+
13+
## Decision
14+
15+
For Holo, seperating the back end networking part of the agent from the front-end UI & logic part of the agent.
16+
17+
## Consequences
18+
19+
Consequences here...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# 7. Abstraction for network layer
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
libp2p has issues. DHT is too tied to network.
12+
What we want from a network library: Public Key cryptography: Hash public key that corresponds to identity on the network. Seemless port use.
13+
Handles routing tables?
14+
15+
## Decision
16+
17+
Have an abstraction layer for the networking library so we are not dependent on a specific one.
18+
Investigate Promether and see if it fits all our needs, including beeing network protocol agnostic (not just IP).
19+
20+
## Consequences
21+
22+
Consequences here...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# 8. Mobile first development
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
Mobile is the main platform today. We want to reach as much users as possible.
12+
13+
## Decision
14+
15+
Support only 64bits platforms and not any 32bits platforms because we may have issues with cryptography on 32bits.
16+
17+
## Consequences
18+
19+
Have mobile testing in place and always test on mobile before releasing.
20+
Development has mobile platform performance considerations.
21+
Holo binding helps achieve this in a short-term way.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# 9. Support 64bit architectures only
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
Context here...
12+
13+
## Decision
14+
15+
Decision here...
16+
17+
## Consequences
18+
19+
Consequences here...
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# 10. Write our own Kademlia DHT implementation
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
No mature one in Rust?
12+
DHT is crucial to holochain and holochain has specific DHT needs.
13+
14+
## Decision
15+
16+
Decision here...
17+
18+
## Consequences
19+
20+
Support and maintain forever our Kademlia code.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# 11. Build HCadmin app with Qt/C++
2+
3+
Date: 2018-05-16
4+
5+
## Status
6+
7+
Accepted
8+
9+
## Context
10+
11+
HCadmin app needs:
12+
Crossplatform, including mobile. Systems tray. Handle processes
13+
HCD a 'hidden' thing.
14+
Keep HCDev and app more features.
15+
16+
## Decision
17+
18+
Use QT framework for building the crossplatform HcAdmin - HC app manager app for end users
19+
20+
## Consequences
21+
22+
Dependence on QT

0 commit comments

Comments
 (0)