├── .gitignore
├── _config.yml
├── Dockerfile.unisockets-runner
├── go.mod
├── .github
└── workflows
│ ├── make.yaml
│ └── mirror.yaml
├── go.sum
├── cmd
├── net_echo_client
│ └── main.go
├── net_echo_server
│ └── main.go
├── tcp_echo_client
│ └── main.go
├── tcp_echo_server
│ └── main.go
├── tinyperf
│ └── main.go
├── softmax_client
│ └── main.go
└── softmax_server
│ └── main.go
├── README.md
├── CODE_OF_CONDUCT.md
├── pkg
└── tinynet
│ └── tinynet.go
├── Makefile
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | out
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | theme: jekyll-theme-cayman
--------------------------------------------------------------------------------
/Dockerfile.unisockets-runner:
--------------------------------------------------------------------------------
1 | FROM ubuntu:20.10
2 |
3 | RUN apt update
4 | RUN apt install -y npm
5 |
6 | RUN npm i -g @alphahorizonio/unisockets --unsafe-perm
7 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module github.com/alphahorizonio/tinynet
2 |
3 | go 1.15
4 |
5 | require (
6 | github.com/alphahorizonio/unisockets v0.1.1
7 | github.com/valyala/fastjson v1.6.3
8 | )
9 |
--------------------------------------------------------------------------------
/.github/workflows/make.yaml:
--------------------------------------------------------------------------------
1 | name: make CI
2 |
3 | on: [push, pull_request]
4 |
5 | jobs:
6 | make:
7 | runs-on: ubuntu-latest
8 |
9 | steps:
10 | - uses: actions/checkout@v2
11 | - name: Build with make
12 | run: make -j$(nproc)
13 |
--------------------------------------------------------------------------------
/go.sum:
--------------------------------------------------------------------------------
1 | github.com/alphahorizonio/unisockets v0.1.1 h1:LNR3Uy+xm09zlj0QGlrDw2ljF80/4J/nbfvpqBeXSpM=
2 | github.com/alphahorizonio/unisockets v0.1.1/go.mod h1:GHmI67/4EW9Jx+d1QiytJOHXnlI127uErrRgIHzwBB4=
3 | github.com/valyala/fastjson v1.6.3 h1:tAKFnnwmeMGPbwJ7IwxcTPCNr3uIzoIj3/Fh90ra4xc=
4 | github.com/valyala/fastjson v1.6.3/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
5 |
--------------------------------------------------------------------------------
/.github/workflows/mirror.yaml:
--------------------------------------------------------------------------------
1 | name: Mirror
2 |
3 | on: [push]
4 |
5 | jobs:
6 | mirror:
7 | runs-on: ubuntu-latest
8 |
9 | steps:
10 | - uses: actions/checkout@v2
11 | with:
12 | fetch-depth: "0"
13 | - uses: spyoungtech/mirror-action@master
14 | with:
15 | REMOTE: "https://gitlab.mi.hdm-stuttgart.de/fp036/tinynet.git"
16 | GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
17 | GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
18 |
--------------------------------------------------------------------------------
/cmd/net_echo_client/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "bufio"
5 | "fmt"
6 | "os"
7 |
8 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
9 | )
10 |
11 | var (
12 | RADDR = "127.0.0.1:1234"
13 | BUFLEN = 1038
14 | )
15 |
16 | func main() {
17 | conn, err := tinynet.Dial("tcp", RADDR)
18 | if err != nil {
19 | fmt.Println("could not listen", err)
20 |
21 | os.Exit(1)
22 | }
23 |
24 | fmt.Println("Connected to", RADDR)
25 |
26 | reader := bufio.NewReader(os.Stdin)
27 |
28 | for {
29 | out, err := reader.ReadString('\n')
30 | if err != nil {
31 | fmt.Println("could not read from stdin", err)
32 |
33 | os.Exit(1)
34 | }
35 |
36 | if n, err := conn.Write([]byte(out)); err != nil {
37 | if n == 0 {
38 | break
39 | }
40 |
41 | fmt.Println("could not write from connection, removing connection", err)
42 |
43 | break
44 | }
45 |
46 | buf := make([]byte, BUFLEN)
47 | if n, err := conn.Read(buf); err != nil {
48 | if n == 0 {
49 | break
50 | }
51 |
52 | fmt.Println("could not read from connection, removing connection", err)
53 |
54 | break
55 | }
56 |
57 | fmt.Print(string(buf))
58 | }
59 |
60 | fmt.Println("Disconnected")
61 |
62 | if err := conn.Close(); err != nil {
63 | fmt.Println("could not close connection", err)
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/cmd/net_echo_server/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "fmt"
5 | "os"
6 |
7 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
8 | )
9 |
10 | var (
11 | LADDR = "127.0.0.1:1234"
12 | BUFLEN = 1024
13 | )
14 |
15 | func main() {
16 | lis, err := tinynet.Listen("tcp", LADDR)
17 | if err != nil {
18 | fmt.Println("could not listen", err)
19 |
20 | os.Exit(1)
21 | }
22 |
23 | fmt.Println("Listening on", LADDR)
24 |
25 | for {
26 | conn, err := lis.Accept()
27 | if err != nil {
28 | fmt.Println("could not accept", err)
29 |
30 | os.Exit(1)
31 | }
32 |
33 | fmt.Println("Client connected")
34 |
35 | go func(innerConn tinynet.Conn) {
36 | for {
37 | buf := make([]byte, BUFLEN)
38 | if n, err := innerConn.Read(buf); err != nil {
39 | if n == 0 {
40 | break
41 | }
42 |
43 | fmt.Println("could not read from connection, removing connection", err)
44 |
45 | break
46 | }
47 |
48 | out := []byte(fmt.Sprintf("You've sent: %v", string(buf)))
49 | if n, err := innerConn.Write(out); err != nil {
50 | if n == 0 {
51 | break
52 | }
53 |
54 | fmt.Println("could not write from connection, removing connection", err)
55 |
56 | break
57 | }
58 | }
59 |
60 | fmt.Println("Client disconnected")
61 |
62 | if err := innerConn.Close(); err != nil {
63 | fmt.Println("could not close connection", err)
64 | }
65 |
66 | return
67 | }(conn)
68 | }
69 | }
70 |
--------------------------------------------------------------------------------
/cmd/tcp_echo_client/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "bufio"
5 | "fmt"
6 | "os"
7 |
8 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
9 | )
10 |
11 | var (
12 | RADDR = "127.0.0.1:1234"
13 | BUFLEN = 1038
14 | )
15 |
16 | func main() {
17 | raddr, err := tinynet.ResolveTCPAddr("tcp", RADDR)
18 | if err != nil {
19 | fmt.Println("could not resolve TCP address", err)
20 |
21 | os.Exit(1)
22 | }
23 |
24 | conn, err := tinynet.DialTCP("tcp", nil, raddr)
25 | if err != nil {
26 | fmt.Println("could not listen", err)
27 |
28 | os.Exit(1)
29 | }
30 |
31 | fmt.Println("Connected to", RADDR)
32 |
33 | reader := bufio.NewReader(os.Stdin)
34 |
35 | for {
36 | out, err := reader.ReadString('\n')
37 | if err != nil {
38 | fmt.Println("could not read from stdin", err)
39 |
40 | os.Exit(1)
41 | }
42 |
43 | if n, err := conn.Write([]byte(out)); err != nil {
44 | if n == 0 {
45 | break
46 | }
47 |
48 | fmt.Println("could not write from connection, removing connection", err)
49 |
50 | break
51 | }
52 |
53 | buf := make([]byte, BUFLEN)
54 | if n, err := conn.Read(buf); err != nil {
55 | if n == 0 {
56 | break
57 | }
58 |
59 | fmt.Println("could not read from connection, removing connection", err)
60 |
61 | break
62 | }
63 |
64 | fmt.Print(string(buf))
65 | }
66 |
67 | fmt.Println("Disconnected")
68 |
69 | if err := conn.Close(); err != nil {
70 | fmt.Println("could not close connection", err)
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/cmd/tcp_echo_server/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "fmt"
5 | "os"
6 |
7 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
8 | )
9 |
10 | var (
11 | LADDR = "127.0.0.1:1234"
12 | BUFLEN = 1024
13 | )
14 |
15 | func main() {
16 | laddr, err := tinynet.ResolveTCPAddr("tcp", LADDR)
17 | if err != nil {
18 | fmt.Println("could not resolve TCP address", err)
19 |
20 | os.Exit(1)
21 | }
22 |
23 | lis, err := tinynet.ListenTCP("tcp", laddr)
24 | if err != nil {
25 | fmt.Println("could not listen", err)
26 |
27 | os.Exit(1)
28 | }
29 |
30 | fmt.Println("Listening on", LADDR)
31 |
32 | for {
33 | conn, err := lis.AcceptTCP()
34 | if err != nil {
35 | fmt.Println("could not accept", err)
36 |
37 | os.Exit(1)
38 | }
39 |
40 | fmt.Println("Client connected")
41 |
42 | go func(innerConn *tinynet.TCPConn) {
43 | for {
44 | buf := make([]byte, BUFLEN)
45 | if n, err := innerConn.Read(buf); err != nil {
46 | if n == 0 {
47 | break
48 | }
49 |
50 | fmt.Println("could not read from connection, removing connection", err)
51 |
52 | break
53 | }
54 |
55 | out := []byte(fmt.Sprintf("You've sent: %v", string(buf)))
56 | if n, err := innerConn.Write(out); err != nil {
57 | if n == 0 {
58 | break
59 | }
60 |
61 | fmt.Println("could not write from connection, removing connection", err)
62 |
63 | break
64 | }
65 | }
66 |
67 | fmt.Println("Client disconnected")
68 |
69 | if err := innerConn.Close(); err != nil {
70 | fmt.Println("could not close connection", err)
71 | }
72 |
73 | return
74 | }(conn)
75 | }
76 | }
77 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # tinynet
2 |
3 | A `net` implementation for Go and TinyGo based on [unisockets](https://github.com/alphahorizonio/unisockets), targeting both WebAssembly and native platforms.
4 |
5 | 
6 | 
7 | [](https://pkg.go.dev/github.com/alphahorizonio/tinynet)
8 | [](https://webnetes.dev/)
9 |
10 | ## Overview
11 |
12 | tinynet implements a subnet of the [Go `net` package](https://golang.org/pkg/net/). Because it is based on [unisockets](https://github.com/alphahorizonio/unisockets), it supports more platforms (WASM/JS, WASM/WASI, TinyGo, Go etc.) than the official `net` package.
13 |
14 | ## Usage
15 |
16 | Check out [](https://pkg.go.dev/github.com/alphahorizonio/tinynet) for API documentation. Many examples on how to use it (clients, servers and an example distributed system) can also be found in [the `cmd` package](https://pkg.go.dev/github.com/alphahorizonio/tinynet/cmd). Additionally, the [`Makefile`](https://github.com/alphahorizonio/tinynet/blob/main/Makefile) might also be of interest; it shows how to build native and WASM binaries.
17 |
18 | You want a Kubernetes-style system for WASM, running in the browser and in node? You might be interested in [webnetes](https://github.com/alphahorizonio/webnetes), which supports the unisockets-based networking used by tinynet.
19 |
20 | ## License
21 |
22 | tinynet (c) 2021 Felicitas Pojtinger and contributors
23 |
24 | SPDX-License-Identifier: AGPL-3.0
25 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at felicitas@pojtinger.com. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72 |
73 | [homepage]: https://www.contributor-covenant.org
74 |
75 | For answers to common questions about this code of conduct, see
76 | https://www.contributor-covenant.org/faq
77 |
--------------------------------------------------------------------------------
/cmd/tinyperf/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "flag"
5 | "fmt"
6 | "log"
7 | "sync"
8 | "time"
9 |
10 | net "github.com/alphahorizonio/tinynet/pkg/tinynet"
11 | )
12 |
13 | var (
14 | elapsed time.Duration
15 | result []int
16 | )
17 |
18 | func main() {
19 |
20 | port := flag.String("p", "8888", "port to connect/listen to")
21 | interval := flag.Int("i", 1, "report intervals in seconds")
22 | server := flag.Bool("s", false, "run as server")
23 | client := flag.Bool("c", false, "run as client")
24 | duration := flag.Int("t", 10, "time to test in s")
25 | length := flag.Int("l", 128, "size of the buffer to transfer in Kb")
26 | ip := flag.String("ip", "127.0.0.1", "ip to connect to")
27 |
28 | flag.Parse()
29 |
30 | *length = *length * 1000
31 |
32 | if *server {
33 | handleServerMode(ip, port, length, interval, duration)
34 | }
35 |
36 | if *client {
37 | handleClientMode(length, ip, port, interval)
38 | }
39 |
40 | sum := 0
41 |
42 | for i := 0; i < len(result); i++ {
43 | sum += result[i]
44 | }
45 |
46 | if *server {
47 | fmt.Println("-----------------------------------------------------")
48 | fmt.Println("Server mode")
49 | fmt.Println(fmt.Sprintf("Packets of length %v Kb have been received for %v s", *length/1000, *duration))
50 | fmt.Println(fmt.Sprintf("Number of requests: %v", len(result)))
51 | fmt.Println(fmt.Sprintf("Average transfer speed: %v Mb/s", float64(len(result)*(*length))/float64(10*1000*1000)))
52 | fmt.Println("-----------------------------------------------------")
53 | }
54 |
55 | if *client {
56 | fmt.Println("-----------------------------------------------------")
57 | fmt.Println(fmt.Sprintf("Connection to: %v:%v", *ip, *port))
58 | fmt.Println(fmt.Sprintf("Packets of length %v Kb have been sent for %v s", *length/1000, *duration))
59 | fmt.Println(fmt.Sprintf("Number of requests: %v", len(result)))
60 | fmt.Println(fmt.Sprintf("Average transfer speed: %v Mb/s", float64(len(result)*(*length))/float64(10*1000*1000)))
61 | fmt.Println("-----------------------------------------------------")
62 | }
63 | }
64 |
65 | func handleServerMode(ip *string, port *string, length *int, interval *int, duration *int) {
66 | tcpAddr, err := net.ResolveTCPAddr("tcp", fmt.Sprintf("%v:%v", *ip, *port))
67 | checkError(err)
68 |
69 | ln, err := net.ListenTCP("tcp", tcpAddr)
70 | checkError(err)
71 |
72 | var wg sync.WaitGroup
73 | wg.Add(1)
74 |
75 | for {
76 | conn, err := ln.Accept()
77 | checkError(err)
78 |
79 | go handleConnection(conn, &wg, length, interval, duration)
80 |
81 | wg.Wait()
82 |
83 | break
84 | }
85 | }
86 |
87 | func handleConnection(conn net.Conn, wg *sync.WaitGroup, length *int, interval *int, duration *int) {
88 | input := make([]byte, *length)
89 |
90 | go doEvery(time.Duration(*interval) * time.Second)
91 | for start := time.Now(); time.Since(start) < time.Second*(time.Duration(*duration)); {
92 |
93 | startTimer := time.Now()
94 |
95 | _, err := conn.Write(input)
96 | checkError(err)
97 |
98 | _, err = conn.Read(input[0:])
99 | checkError(err)
100 |
101 | result = append(result, int(time.Since(startTimer)))
102 |
103 | elapsed = time.Since(startTimer)
104 |
105 | }
106 |
107 | wg.Done()
108 | }
109 |
110 | func handleClientMode(length *int, ip *string, port *string, interval *int) {
111 | input := make([]byte, *length)
112 |
113 | tcpAddr, err := net.ResolveTCPAddr("tcp", fmt.Sprintf("%v:%v", *ip, *port))
114 | checkError(err)
115 |
116 | conn, err := net.DialTCP("tcp", nil, tcpAddr)
117 | checkError(err)
118 |
119 | go doEvery(time.Duration(*interval) * time.Second)
120 | for start := time.Now(); time.Since(start) < time.Second*time.Duration(10); {
121 |
122 | startTimer := time.Now()
123 |
124 | _, err = conn.Write(input)
125 | checkError(err)
126 |
127 | _, err := conn.Read(input[0:])
128 | checkError(err)
129 |
130 | result = append(result, int(time.Since(startTimer)))
131 |
132 | elapsed = time.Since(startTimer)
133 |
134 | }
135 | }
136 |
137 | func doEvery(d time.Duration) {
138 | for x := range time.Tick(d) {
139 | fmt.Println(fmt.Sprintf("Current response time: %v", elapsed))
140 | _ = x
141 | }
142 | }
143 |
144 | func checkError(err error) {
145 | if err != nil {
146 | log.Fatal(err)
147 | }
148 | }
149 |
--------------------------------------------------------------------------------
/cmd/softmax_client/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "fmt"
5 | "log"
6 | "math"
7 |
8 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
9 | "github.com/valyala/fastjson"
10 | )
11 |
12 | // DecodeJSONSumInput decodes JSON sum input
13 | type DecodeJSONSumInput struct {
14 | InputArray []float64 `json:"inputArray"`
15 | IonCount int `json:"ionCount"`
16 | MyCount int `json:"myCount"`
17 | }
18 |
19 | // EncodeJSONSumResult encodes JSON sum result
20 | type EncodeJSONSumResult struct {
21 | SumResult []float64 `json:"sumResult"`
22 | MyCount int `json:"myCount"`
23 | }
24 |
25 | // DecodeJSONSoftmaxInput decodes JSON softmax input
26 | type DecodeJSONSoftmaxInput struct {
27 | InputArray []float64 `json:"inputArray"`
28 | IonCount int `json:"ionCount"`
29 | MyCount int `json:"myCount"`
30 | Sum float64 `json:"sum"`
31 | }
32 |
33 | // EncodeJSONSoftmaxResult encodes JSON softmax result
34 | type EncodeJSONSoftmaxResult struct {
35 | SoftmaxResult []float64 `json:"softmaxResult"`
36 | MyCount int `json:"myCount"`
37 | }
38 |
39 | func main() {
40 | var jsonSumInput [512]byte
41 | var jsonSoftmaxInput [512]byte
42 | var JSONArena fastjson.Arena
43 |
44 | tcpAddr, err := tinynet.ResolveTCPAddr("tcp", "127.0.0.1:1234")
45 | checkError(err)
46 |
47 | conn, err := tinynet.DialTCP("tcp", nil, tcpAddr)
48 | checkError(err)
49 |
50 | _, err = conn.Write([]byte(`Connected`))
51 | checkError(err)
52 |
53 | n, err := conn.Read(jsonSumInput[0:])
54 | checkError(err)
55 |
56 | a := decodeJSON(string(jsonSumInput[0:n]))
57 |
58 | var jsonSumResult []float64
59 |
60 | for i := int(math.Ceil(float64(len(a.GetArray("inputArray")))/float64(a.GetInt("ionCount")))) * a.GetInt("myCount"); i < int(math.Ceil(float64(len(a.GetArray("inputArray")))/float64(a.GetInt("ionCount"))))*a.GetInt("myCount")+int(math.Ceil(float64(len(a.GetArray("inputArray")))/float64(a.GetInt("ionCount")))) && i < len(a.GetArray("inputArray")); i++ {
61 |
62 | jsonSumResult = append(jsonSumResult, softmaxSum(a.GetFloat64("inputArray", fmt.Sprintf("%v", i))))
63 | }
64 |
65 | output := JSONArena.NewObject()
66 |
67 | jsonSumResultArray := JSONArena.NewArray()
68 |
69 | for i := 0; i < len(jsonSumResult); i++ {
70 | jsonSumResultArray.SetArrayItem(i, JSONArena.NewNumberFloat64(jsonSumResult[i]))
71 | }
72 |
73 | output.Set("sumResult", jsonSumResultArray)
74 | output.Set("myCount", JSONArena.NewNumberInt(a.GetInt("myCount")))
75 |
76 | outputDecoded := output.MarshalTo([]byte{})
77 |
78 | fmt.Println(string(outputDecoded))
79 |
80 | _, err = conn.Write(outputDecoded)
81 | checkError(err)
82 |
83 | o, err := conn.Read(jsonSoftmaxInput[0:])
84 | checkError(err)
85 |
86 | b := decodeJSON(string(jsonSoftmaxInput[0:o]))
87 |
88 | var jsonSoftmaxResult []float64
89 |
90 | for i := int(math.Ceil(float64(len(b.GetArray("inputArray")))/float64(b.GetInt("ionCount")))) * b.GetInt("myCount"); i < int(math.Ceil(float64(len(b.GetArray("inputArray")))/float64(b.GetInt("ionCount"))))*b.GetInt("myCount")+int(math.Ceil(float64(len(b.GetArray("inputArray")))/float64(b.GetInt("ionCount")))) && i < len(b.GetArray("inputArray")); i++ {
91 |
92 | jsonSoftmaxResult = append(jsonSoftmaxResult, softmaxResult(b.GetFloat64("sum"), a.GetFloat64("inputArray", fmt.Sprintf("%v", i))))
93 | }
94 |
95 | output2 := JSONArena.NewObject()
96 |
97 | jsonSoftmaxResultArray := JSONArena.NewArray()
98 |
99 | for i := 0; i < len(jsonSoftmaxResult); i++ {
100 | jsonSoftmaxResultArray.SetArrayItem(i, JSONArena.NewNumberFloat64(jsonSoftmaxResult[i]))
101 | }
102 |
103 | output2.Set("softmaxResult", jsonSoftmaxResultArray)
104 | output2.Set("myCount", JSONArena.NewNumberInt(a.GetInt("myCount")))
105 |
106 | outputDecoded2 := output2.MarshalTo([]byte{})
107 |
108 | fmt.Println(string(outputDecoded2))
109 |
110 | _, err = conn.Write(outputDecoded2)
111 | checkError(err)
112 | }
113 |
114 | func softmaxSum(input float64) float64 {
115 | return math.Exp(input)
116 | }
117 |
118 | func softmaxResult(sum float64, input float64) float64 {
119 | return math.Exp(input) / sum
120 | }
121 |
122 | func checkError(err error) {
123 | if err != nil {
124 | log.Fatal(err)
125 | }
126 | }
127 |
128 | func decodeJSON(input string) *fastjson.Value {
129 |
130 | var p fastjson.Parser
131 | v, err := p.Parse(input)
132 | checkError(err)
133 |
134 | return v
135 | }
136 |
--------------------------------------------------------------------------------
/cmd/softmax_server/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "bufio"
5 | "fmt"
6 | "log"
7 | "math"
8 | "os"
9 | "sync"
10 |
11 | "github.com/alphahorizonio/tinynet/pkg/tinynet"
12 | "github.com/valyala/fastjson"
13 | )
14 |
15 | // DecodeJSONSumResult decodes JSON sum results
16 | type DecodeJSONSumResult struct {
17 | SumResult []float64 `json:"sumResult"`
18 | MyCount int `json:"myCount"`
19 | }
20 |
21 | // EncodeJSONSumInput encodes JSON sum input
22 | type EncodeJSONSumInput struct {
23 | InputArray []float64 `json:"inputArray"`
24 | IonCount int `json:"ionCount"`
25 | MyCount int `json:"myCount"`
26 | }
27 |
28 | // EncodeJSONSoftmaxInput encodes JSON softmax input
29 | type EncodeJSONSoftmaxInput struct {
30 | InputArray []float64 `json:"inputArray"`
31 | IonCount int `json:"ionCount"`
32 | MyCount int `json:"myCount"`
33 | Sum float64 `json:"sum"`
34 | }
35 |
36 | // DecodeJSONSoftmaxResult decodes JSON softmax result
37 | type DecodeJSONSoftmaxResult struct {
38 | SoftmaxResult []float64 `json:"softmaxResult"`
39 | MyCount int `json:"myCount"`
40 | }
41 |
42 | // Softmax provides variables for the softmax calculation
43 | type Softmax struct {
44 | sumResultArray []float64
45 | softmaxResultArray []float64
46 | sumResult float64
47 | inputArray []float64
48 | ionCount int
49 | }
50 |
51 | func main() {
52 |
53 | tcpAddr, err := tinynet.ResolveTCPAddr("tcp", "127.0.0.1:1234")
54 | checkError(err)
55 |
56 | ln, err := tinynet.ListenTCP("tcp", tcpAddr)
57 | checkError(err)
58 |
59 | inputArray := []float64{1, 1, 3}
60 | var data = Softmax{make([]float64, len(inputArray)), make([]float64, len(inputArray)), 0, inputArray, 0}
61 |
62 | var wgSum sync.WaitGroup
63 | var wgSoftmax sync.WaitGroup
64 | var wgStart sync.WaitGroup
65 | var wgStart2 sync.WaitGroup
66 |
67 | id := 0
68 |
69 | go manager(&wgSum, &wgSoftmax, &data, &wgStart, &wgStart2)
70 |
71 | for {
72 | conn, err := ln.Accept()
73 | checkError(err)
74 |
75 | wgSum.Add(1)
76 | wgSoftmax.Add(1)
77 |
78 | go handleConnection(conn.(*tinynet.TCPConn), &wgSum, &wgSoftmax, id, &data, &wgStart, &wgStart2)
79 |
80 | id++
81 | data.ionCount++
82 |
83 | }
84 |
85 | }
86 |
87 | func manager(wgSum *sync.WaitGroup, wgSoftmax *sync.WaitGroup, data *Softmax, wgStart *sync.WaitGroup, wgStart2 *sync.WaitGroup) {
88 |
89 | reader := bufio.NewReader(os.Stdin)
90 |
91 | wgStart.Add(1)
92 | wgStart2.Add(1)
93 |
94 | fmt.Println("[INFO] Press ENTER to start calculation")
95 | input, _ := reader.ReadString('\n')
96 | _ = input
97 |
98 | wgStart.Done()
99 |
100 | wgSum.Wait()
101 |
102 | for i := 0; i < len(data.sumResultArray); i++ {
103 | data.sumResult += data.sumResultArray[i]
104 | }
105 |
106 | wgStart2.Done()
107 |
108 | wgSoftmax.Wait()
109 |
110 | fmt.Println(data.softmaxResultArray)
111 |
112 | }
113 |
114 | func handleConnection(conn *tinynet.TCPConn, wgSum *sync.WaitGroup, wgSoftmax *sync.WaitGroup, id int, data *Softmax, wgStart *sync.WaitGroup, wgStart2 *sync.WaitGroup) {
115 | var input [512]byte
116 | var JSONArena fastjson.Arena
117 |
118 | n, err := conn.Read(input[0:])
119 | checkError(err)
120 |
121 | wgStart.Wait()
122 |
123 | output := JSONArena.NewObject()
124 |
125 | inputArray := JSONArena.NewArray()
126 |
127 | for i := 0; i < len(data.inputArray); i++ {
128 | inputArray.SetArrayItem(i, JSONArena.NewNumberFloat64(data.inputArray[i]))
129 | }
130 |
131 | output.Set("inputArray", inputArray)
132 | output.Set("ionCount", JSONArena.NewNumberInt(data.ionCount))
133 | output.Set("myCount", JSONArena.NewNumberInt(id))
134 |
135 | outputEncoded := output.MarshalTo([]byte{})
136 |
137 | _, err = conn.Write(outputEncoded)
138 | checkError(err)
139 |
140 | n, err = conn.Read(input[0:])
141 | checkError(err)
142 |
143 | sumResultChunk := decodeJSON(string(input[0:n]))
144 |
145 | for i := 0; i < len(sumResultChunk.GetArray("sumResult")); i++ {
146 | data.sumResultArray[i+(int(math.Ceil(float64(len(data.inputArray))/float64(data.ionCount)))*sumResultChunk.GetInt("myCount"))] = sumResultChunk.GetFloat64("sumResult", fmt.Sprintf("%v", i))
147 | }
148 |
149 | wgSum.Done()
150 |
151 | wgStart2.Wait()
152 |
153 | output2 := JSONArena.NewObject()
154 |
155 | output2.Set("inputArray", inputArray)
156 | output2.Set("ionCount", JSONArena.NewNumberInt(data.ionCount))
157 | output2.Set("myCount", JSONArena.NewNumberInt(id))
158 | output2.Set("sum", JSONArena.NewNumberFloat64(data.sumResult))
159 |
160 | outputDecoded2 := output2.MarshalTo([]byte{})
161 |
162 | _, err = conn.Write([]byte(outputDecoded2))
163 | checkError(err)
164 |
165 | o, err := conn.Read(input[0:])
166 | checkError(err)
167 |
168 | softmaxResultChunk := decodeJSON(string(input[0:o]))
169 |
170 | for i := 0; i < len(softmaxResultChunk.GetArray("softmaxResult")); i++ {
171 | data.softmaxResultArray[i+(int(math.Ceil(float64(len(data.inputArray))/float64(data.ionCount)))*softmaxResultChunk.GetInt("myCount"))] = softmaxResultChunk.GetFloat64("softmaxResult", fmt.Sprintf("%v", i))
172 | }
173 |
174 | wgSoftmax.Done()
175 | }
176 |
177 | func checkError(err error) {
178 | if err != nil {
179 | log.Fatal(err)
180 | }
181 | }
182 |
183 | func decodeJSON(input string) *fastjson.Value {
184 |
185 | var p fastjson.Parser
186 | v, err := p.Parse(input)
187 | checkError(err)
188 |
189 | return v
190 | }
191 |
--------------------------------------------------------------------------------
/pkg/tinynet/tinynet.go:
--------------------------------------------------------------------------------
1 | package tinynet
2 |
3 | import (
4 | "encoding/binary"
5 | "errors"
6 | "strconv"
7 | "strings"
8 | "time"
9 |
10 | "github.com/alphahorizonio/unisockets/pkg/unisockets"
11 | )
12 |
13 | type IP []byte
14 |
15 | type Addr interface {
16 | Network() string
17 | String() string
18 | }
19 |
20 | type TCPAddr struct {
21 | stringAddr string
22 |
23 | IP IP
24 | Port int
25 | Zone string
26 | }
27 |
28 | func (t *TCPAddr) Network() string {
29 | return "tcp"
30 | }
31 |
32 | func (t *TCPAddr) String() string {
33 | return t.stringAddr
34 | }
35 |
36 | func ResolveTCPAddr(network, address string) (*TCPAddr, error) {
37 | parts := strings.Split(address, ":")
38 |
39 | ip := make([]byte, 4) // xxx.xxx.xxx.xxx
40 | for i, part := range strings.Split(parts[0], ".") {
41 | innerPart, err := strconv.Atoi(part)
42 | if err != nil {
43 | return nil, errors.New("could not parse IP")
44 | }
45 |
46 | ip[i] = byte(innerPart)
47 | }
48 |
49 | port, err := strconv.Atoi(parts[1])
50 | if err != nil {
51 | return nil, errors.New("could not parse port")
52 | }
53 |
54 | return &TCPAddr{
55 | stringAddr: address,
56 |
57 | IP: ip,
58 | Port: port,
59 | Zone: "",
60 | }, nil
61 | }
62 |
63 | type Listener interface {
64 | Accept() (Conn, error)
65 |
66 | Close() error
67 |
68 | Addr() Addr
69 | }
70 |
71 | func Listen(network, address string) (Listener, error) {
72 | laddr, err := ResolveTCPAddr(network, address)
73 | if err != nil {
74 | return TCPListener{}, err
75 | }
76 |
77 | return ListenTCP(network, laddr)
78 | }
79 |
80 | func ListenTCP(network string, laddr *TCPAddr) (*TCPListener, error) {
81 | // Create address
82 | serverAddress := unisockets.SockaddrIn{
83 | SinFamily: unisockets.PF_INET,
84 | SinPort: unisockets.Htons(uint16(laddr.Port)),
85 | SinAddr: struct{ SAddr uint32 }{
86 | SAddr: binary.LittleEndian.Uint32(laddr.IP),
87 | },
88 | }
89 |
90 | // Create socket
91 | serverSocket, err := unisockets.Socket(unisockets.PF_INET, unisockets.SOCK_STREAM, 0)
92 | if err != nil {
93 | return nil, err
94 | }
95 |
96 | // Bind
97 | if err := unisockets.Bind(serverSocket, &serverAddress); err != nil {
98 | return nil, err
99 | }
100 |
101 | // Listen
102 | if err := unisockets.Listen(serverSocket, 5); err != nil {
103 | return nil, err
104 | }
105 |
106 | return &TCPListener{
107 | fd: serverSocket,
108 | addr: laddr,
109 | }, nil
110 | }
111 |
112 | type TCPListener struct {
113 | fd int32
114 | addr Addr
115 | }
116 |
117 | func (t TCPListener) Close() error {
118 | return unisockets.Shutdown(t.fd, unisockets.SHUT_RDWR)
119 | }
120 |
121 | func (t TCPListener) Addr() Addr {
122 | return t.addr
123 | }
124 |
125 | func (l TCPListener) Accept() (Conn, error) {
126 | conn, err := l.AcceptTCP()
127 |
128 | return conn, err
129 | }
130 |
131 | func (l *TCPListener) AcceptTCP() (*TCPConn, error) {
132 | clientAddress := unisockets.SockaddrIn{}
133 |
134 | // Accept
135 | clientSocket, err := unisockets.Accept(l.fd, &clientAddress)
136 | if err != nil {
137 | return nil, err
138 | }
139 |
140 | return &TCPConn{
141 | fd: clientSocket,
142 | }, nil
143 | }
144 |
145 | func Dial(network, address string) (Conn, error) {
146 | raddr, err := ResolveTCPAddr(network, address)
147 | if err != nil {
148 | return TCPConn{}, err
149 | }
150 |
151 | conn, err := DialTCP(network, nil, raddr) // TODO: Set laddr here
152 | if err != nil {
153 | return TCPConn{}, err
154 | }
155 |
156 | return *conn, err
157 | }
158 |
159 | func DialTCP(network string, laddr, raddr *TCPAddr) (*TCPConn, error) {
160 | // Create address
161 | serverAddress := unisockets.SockaddrIn{
162 | SinFamily: unisockets.PF_INET,
163 | SinPort: unisockets.Htons(uint16(raddr.Port)),
164 | SinAddr: struct{ SAddr uint32 }{
165 | SAddr: binary.LittleEndian.Uint32(raddr.IP),
166 | },
167 | }
168 |
169 | // Create socket
170 | serverSocket, err := unisockets.Socket(unisockets.PF_INET, unisockets.SOCK_STREAM, 0)
171 | if err != nil {
172 | return nil, err
173 | }
174 |
175 | // Connect
176 | if err := unisockets.Connect(serverSocket, &serverAddress); err != nil {
177 | return nil, err
178 | }
179 |
180 | return &TCPConn{
181 | fd: serverSocket,
182 | laddr: laddr,
183 | raddr: raddr,
184 | }, nil
185 | }
186 |
187 | type Conn interface {
188 | Read(b []byte) (n int, err error)
189 |
190 | Write(b []byte) (n int, err error)
191 |
192 | Close() error
193 |
194 | LocalAddr() Addr
195 |
196 | RemoteAddr() Addr
197 |
198 | SetDeadline(t time.Time) error
199 |
200 | SetReadDeadline(t time.Time) error
201 |
202 | SetWriteDeadline(t time.Time) error
203 | }
204 |
205 | type TCPConn struct {
206 | fd int32
207 |
208 | laddr Addr
209 | raddr Addr
210 | }
211 |
212 | func (c TCPConn) Read(b []byte) (int, error) {
213 | readMsg := make([]byte, len(b))
214 |
215 | n, err := unisockets.Recv(c.fd, &readMsg, uint32(len(b)), 0)
216 | if n == 0 {
217 | return int(n), errors.New("client disconnected")
218 | }
219 |
220 | copy(b, readMsg)
221 |
222 | return int(n), err
223 | }
224 |
225 | func (c TCPConn) Write(b []byte) (int, error) {
226 | n, err := unisockets.Send(c.fd, b, 0)
227 | if n == 0 {
228 | return int(n), errors.New("client disconnected")
229 | }
230 |
231 | return int(n), err
232 | }
233 |
234 | func (c TCPConn) Close() error {
235 | return unisockets.Shutdown(c.fd, unisockets.SHUT_RDWR)
236 | }
237 |
238 | func (c TCPConn) LocalAddr() Addr {
239 | return c.laddr
240 | }
241 |
242 | func (c TCPConn) RemoteAddr() Addr {
243 | return c.laddr
244 | }
245 |
246 | func (c TCPConn) SetDeadline(t time.Time) error {
247 | // TODO: Currently there is an infinite deadline
248 |
249 | return nil
250 | }
251 |
252 | func (c TCPConn) SetReadDeadline(t time.Time) error {
253 | // TODO: Currently there is an infinite deadline
254 |
255 | return nil
256 | }
257 |
258 | func (c TCPConn) SetWriteDeadline(t time.Time) error {
259 | // TODO: Currently there is an infinite deadline
260 |
261 | return nil
262 | }
263 |
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | # All
2 | all: build
3 |
4 | # Build
5 | build: \
6 | build-unisockets-runner \
7 | build-net-server-native-posix-go \
8 | build-net-server-native-posix-tinygo \
9 | build-net-server-wasm-jssi-go \
10 | build-net-server-wasm-wasi-tinygo \
11 | build-net-client-native-posix-go \
12 | build-net-client-native-posix-tinygo \
13 | build-net-client-wasm-jssi-go \
14 | build-net-client-wasm-wasi-tinygo \
15 | build-tcp-server-native-posix-go \
16 | build-tcp-server-native-posix-tinygo \
17 | build-tcp-server-wasm-jssi-go \
18 | build-tcp-server-wasm-wasi-tinygo \
19 | build-tcp-client-native-posix-go \
20 | build-tcp-client-native-posix-tinygo \
21 | build-tcp-client-wasm-jssi-go \
22 | build-tcp-client-wasm-wasi-tinygo \
23 | build-softmax-server-native-posix-go \
24 | build-softmax-server-native-posix-tinygo \
25 | build-softmax-server-wasm-jssi-go \
26 | build-softmax-server-wasm-wasi-tinygo \
27 | build-softmax-client-native-posix-go \
28 | build-softmax-client-native-posix-tinygo \
29 | build-softmax-client-wasm-jssi-go \
30 | build-softmax-client-wasm-wasi-tinygo \
31 | build-tinyperf-native-posix-go \
32 | build-tinyperf-wasm-jssi-go
33 |
34 | build-unisockets-runner:
35 | @docker build -t alphahorizonio/unisockets-runner -f Dockerfile.unisockets-runner .
36 |
37 | build-net-server-native-posix-go:
38 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/net_echo_server ./cmd/net_echo_server/main.go'
39 | build-net-server-native-posix-tinygo:
40 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/net_echo_server ./cmd/net_echo_server/main.go'
41 | build-net-server-wasm-jssi-go:
42 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/net_echo_server.wasm ./cmd/net_echo_server/main.go'
43 | build-net-server-wasm-wasi-tinygo:
44 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/net_echo_server_wasi_original.wasm ./cmd/net_echo_server/main.go'
45 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/net_echo_server_wasi_original.wasm -o out/tinygo/net_echo_server_wasi.wasm'
46 |
47 | build-net-client-native-posix-go:
48 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/net_echo_client ./cmd/net_echo_client/main.go'
49 | build-net-client-native-posix-tinygo:
50 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/net_echo_client ./cmd/net_echo_client/main.go'
51 | build-net-client-wasm-jssi-go:
52 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/net_echo_client.wasm ./cmd/net_echo_client/main.go'
53 | build-net-client-wasm-wasi-tinygo:
54 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/net_echo_client_wasi_original.wasm ./cmd/net_echo_client/main.go'
55 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/net_echo_client_wasi_original.wasm -o out/tinygo/net_echo_client_wasi.wasm'
56 |
57 | build-tcp-server-native-posix-go:
58 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/tcp_echo_server ./cmd/tcp_echo_server/main.go'
59 | build-tcp-server-native-posix-tinygo:
60 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/tcp_echo_server ./cmd/tcp_echo_server/main.go'
61 | build-tcp-server-wasm-jssi-go:
62 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/tcp_echo_server.wasm ./cmd/tcp_echo_server/main.go'
63 | build-tcp-server-wasm-wasi-tinygo:
64 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/tcp_echo_server_wasi_original.wasm ./cmd/tcp_echo_server/main.go'
65 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/tcp_echo_server_wasi_original.wasm -o out/tinygo/tcp_echo_server_wasi.wasm'
66 |
67 | build-tcp-client-native-posix-go:
68 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/tcp_echo_client ./cmd/tcp_echo_client/main.go'
69 | build-tcp-client-native-posix-tinygo:
70 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/tcp_echo_client ./cmd/tcp_echo_client/main.go'
71 | build-tcp-client-wasm-jssi-go:
72 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/tcp_echo_client.wasm ./cmd/tcp_echo_client/main.go'
73 | build-tcp-client-wasm-wasi-tinygo:
74 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/tcp_echo_client_wasi_original.wasm ./cmd/tcp_echo_client/main.go'
75 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/tcp_echo_client_wasi_original.wasm -o out/tinygo/tcp_echo_client_wasi.wasm'
76 |
77 | build-softmax-server-native-posix-go:
78 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/softmax_server ./cmd/softmax_server/main.go'
79 | build-softmax-server-native-posix-tinygo:
80 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/softmax_server ./cmd/softmax_server/main.go'
81 | build-softmax-server-wasm-jssi-go:
82 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/softmax_server.wasm ./cmd/softmax_server/main.go'
83 | build-softmax-server-wasm-wasi-tinygo:
84 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/softmax_server_wasi_original.wasm ./cmd/softmax_server/main.go'
85 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/softmax_server_wasi_original.wasm -o out/tinygo/softmax_server_wasi.wasm'
86 |
87 | build-softmax-client-native-posix-go:
88 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/softmax_client ./cmd/softmax_client/main.go'
89 | build-softmax-client-native-posix-tinygo:
90 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -o out/tinygo/softmax_client ./cmd/softmax_client/main.go'
91 | build-softmax-client-wasm-jssi-go:
92 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/softmax_client.wasm ./cmd/softmax_client/main.go'
93 | build-softmax-client-wasm-wasi-tinygo:
94 | @docker run -v ${PWD}:/src:z tinygo/tinygo sh -c 'cd /src && mkdir -p out/tinygo && tinygo build -heap-size 20M -cflags "-DUNISOCKETS_WITH_CUSTOM_ARPA_INET" -target wasi -o out/tinygo/softmax_client_wasi_original.wasm ./cmd/softmax_client/main.go'
95 | @docker run -v ${PWD}:/src:z alphahorizonio/wasi-sdk sh -c 'cd /src && wasm-opt --asyncify -O out/tinygo/softmax_client_wasi_original.wasm -o out/tinygo/softmax_client_wasi.wasm'
96 |
97 | build-tinyperf-native-posix-go:
98 | @docker run -v ${PWD}:/src:z golang sh -c 'cd /src && go build -o out/go/tinyperf ./cmd/tinyperf/main.go'
99 | build-tinyperf-wasm-jssi-go:
100 | @docker run -v ${PWD}:/src:z -e GOOS=js -e GOARCH=wasm golang sh -c 'cd /src && go build -o out/go/tinyperf.wasm ./cmd/tinyperf/main.go'
101 |
102 | # Clean
103 | clean: \
104 | clean-net-server-native-posix-go \
105 | clean-net-server-native-posix-tinygo \
106 | clean-net-server-wasm-jssi-go \
107 | clean-net-server-wasm-wasi-tinygo \
108 | clean-net-client-native-posix-go \
109 | clean-net-client-native-posix-tinygo \
110 | clean-net-client-wasm-jssi-go \
111 | clean-net-client-wasm-wasi-tinygo \
112 | clean-tcp-server-native-posix-go \
113 | clean-tcp-server-native-posix-tinygo \
114 | clean-tcp-server-wasm-jssi-go \
115 | clean-tcp-server-wasm-wasi-tinygo \
116 | clean-tcp-client-native-posix-go \
117 | clean-tcp-client-native-posix-tinygo \
118 | clean-tcp-client-wasm-jssi-go \
119 | clean-tcp-client-wasm-wasi-tinygo \
120 | clean-softmax-server-native-posix-go \
121 | clean-softmax-server-native-posix-tinygo \
122 | clean-softmax-server-wasm-jssi-go \
123 | clean-softmax-server-wasm-wasi-tinygo \
124 | clean-softmax-client-native-posix-go \
125 | clean-softmax-client-native-posix-tinygo \
126 | clean-softmax-client-wasm-jssi-go \
127 | clean-softmax-client-wasm-wasi-tinygo \
128 | clean-tinyperf-native-posix-go \
129 | clean-tinyperf-wasm-jssi-go
130 |
131 | clean-net-server-native-posix-go:
132 | @rm -f out/go/net_echo_server
133 | clean-net-server-native-posix-tinygo:
134 | @rm -f out/tinygo/net_echo_server
135 | clean-net-server-wasm-jssi-go:
136 | @rm -f out/go/net_echo_server.wasm
137 | clean-net-server-wasm-wasi-tinygo:
138 | @rm -f out/tinygo/net_echo_server_wasi_original.wasm
139 | @rm -f out/tinygo/net_echo_server_wasi.wasm
140 |
141 | clean-net-client-native-posix-go:
142 | @rm -f out/go/net_echo_client
143 | clean-net-client-native-posix-tinygo:
144 | @rm -f out/tinygo/net_echo_client
145 | clean-net-client-wasm-jssi-go:
146 | @rm -f out/go/net_echo_client.wasm
147 | clean-net-client-wasm-wasi-tinygo:
148 | @rm -f out/tinygo/net_echo_client_wasi_original.wasm
149 | @rm -f out/tinygo/net_echo_client_wasi.wasm
150 |
151 | clean-tcp-server-native-posix-go:
152 | @rm -f out/go/tcp_echo_server
153 | clean-tcp-server-native-posix-tinygo:
154 | @rm -f out/tinygo/tcp_echo_server
155 | clean-tcp-server-wasm-jssi-go:
156 | @rm -f out/go/tcp_echo_server.wasm
157 | clean-tcp-server-wasm-wasi-tinygo:
158 | @rm -f out/tinygo/tcp_echo_server_wasi_original.wasm
159 | @rm -f out/tinygo/tcp_echo_server_wasi.wasm
160 |
161 | clean-tcp-client-native-posix-go:
162 | @rm -f out/go/tcp_echo_client
163 | clean-tcp-client-native-posix-tinygo:
164 | @rm -f out/tinygo/tcp_echo_client
165 | clean-tcp-client-wasm-jssi-go:
166 | @rm -f out/go/tcp_echo_client.wasm
167 | clean-tcp-client-wasm-wasi-tinygo:
168 | @rm -f out/tinygo/tcp_echo_client_wasi_original.wasm
169 | @rm -f out/tinygo/tcp_echo_client_wasi.wasm
170 |
171 | clean-softmax-server-native-posix-go:
172 | @rm -f out/go/softmax_server
173 | clean-softmax-server-native-posix-tinygo:
174 | @rm -f out/tinygo/softmax_server
175 | clean-softmax-server-wasm-jssi-go:
176 | @rm -f out/go/softmax_server.wasm
177 | clean-softmax-server-wasm-wasi-tinygo:
178 | @rm -f out/tinygo/softmax_server_wasi_original.wasm
179 | @rm -f out/tinygo/softmax_server_wasi.wasm
180 |
181 | clean-softmax-client-native-posix-go:
182 | @rm -f out/go/softmax_client
183 | clean-softmax-client-native-posix-tinygo:
184 | @rm -f out/tinygo/softmax_client
185 | clean-softmax-client-wasm-jssi-go:
186 | @rm -f out/go/softmax_client.wasm
187 | clean-softmax-client-wasm-wasi-tinygo:
188 | @rm -f out/tinygo/softmax_client_wasi_original.wasm
189 | @rm -f out/tinygo/softmax_client_wasi.wasm
190 |
191 | clean-tinyperf-native-posix-go:
192 | @rm -f out/go/tinyperf
193 | clean-tinyperf-wasm-jssi-go:
194 | @rm -f out/go/tinyperf.wasm
195 |
196 | # Run
197 | run: \
198 | run-signaling-server \
199 | run-net-server-native-posix-go \
200 | run-net-server-native-posix-tinygo \
201 | run-net-server-wasm-jssi-go \
202 | run-net-server-wasm-wasi-tinygo \
203 | run-net-client-native-posix-go \
204 | run-net-client-native-posix-tinygo \
205 | run-net-client-wasm-jssi-go \
206 | run-net-client-wasm-wasi-tinygo \
207 | run-tcp-server-native-posix-go \
208 | run-tcp-server-native-posix-tinygo \
209 | run-tcp-server-wasm-jssi-go \
210 | run-tcp-server-wasm-wasi-tinygo \
211 | run-tcp-client-native-posix-go \
212 | run-tcp-client-native-posix-tinygo \
213 | run-tcp-client-wasm-jssi-go \
214 | run-tcp-client-wasm-wasi-tinygo \
215 | run-softmax-server-native-posix-go \
216 | run-softmax-server-native-posix-tinygo \
217 | run-softmax-server-wasm-jssi-go \
218 | run-softmax-server-wasm-wasi-tinygo \
219 | run-softmax-client-native-posix-go \
220 | run-softmax-client-native-posix-tinygo \
221 | run-softmax-client-wasm-jssi-go \
222 | run-softmax-client-wasm-wasi-tinygo \
223 | run-tinyperf-native-posix-go \
224 | run-tinyperf-wasm-jssi-go
225 |
226 | run-signaling-server: build-unisockets-runner
227 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runSignalingServer true'
228 |
229 | run-net-server-native-posix-go:
230 | @./out/go/net_echo_server
231 | run-net-server-native-posix-tinygo:
232 | @./out/tinygo/net_echo_server
233 | run-net-server-wasm-jssi-go: build-unisockets-runner
234 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/net_echo_server.wasm'
235 | run-net-server-wasm-wasi-tinygo: build-unisockets-runner
236 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/net_echo_server_wasi.wasm'
237 |
238 | run-net-client-native-posix-go:
239 | @./out/go/net_echo_client
240 | run-net-client-native-posix-tinygo:
241 | @./out/tinygo/net_echo_client
242 | run-net-client-wasm-jssi-go: build-unisockets-runner
243 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/net_echo_client.wasm'
244 | run-net-client-wasm-wasi-tinygo: build-unisockets-runner
245 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/net_echo_client_wasi.wasm'
246 |
247 | run-tcp-server-native-posix-go:
248 | @./out/go/tcp_echo_server
249 | run-tcp-server-native-posix-tinygo:
250 | @./out/tinygo/tcp_echo_server
251 | run-tcp-server-wasm-jssi-go: build-unisockets-runner
252 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/tcp_echo_server.wasm'
253 | run-tcp-server-wasm-wasi-tinygo: build-unisockets-runner
254 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/tcp_echo_server_wasi.wasm'
255 |
256 | run-tcp-client-native-posix-go:
257 | @./out/go/tcp_echo_client
258 | run-tcp-client-native-posix-tinygo:
259 | @./out/tinygo/tcp_echo_client
260 | run-tcp-client-wasm-jssi-go: build-unisockets-runner
261 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/tcp_echo_client.wasm'
262 | run-tcp-client-wasm-wasi-tinygo: build-unisockets-runner
263 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/tcp_echo_client_wasi.wasm'
264 |
265 | run-softmax-server-native-posix-go:
266 | @./out/go/softmax_server
267 | run-softmax-server-native-posix-tinygo:
268 | @./out/tinygo/softmax_server
269 | run-softmax-server-wasm-jssi-go: build-unisockets-runner
270 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/softmax_server.wasm'
271 | run-softmax-server-wasm-wasi-tinygo: build-unisockets-runner
272 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/softmax_server_wasi.wasm'
273 |
274 | run-softmax-client-native-posix-go:
275 | @./out/go/softmax_client
276 | run-softmax-client-native-posix-tinygo:
277 | @./out/tinygo/softmax_client
278 | run-softmax-client-wasm-jssi-go: build-unisockets-runner
279 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/softmax_echo_client.wasm'
280 | run-softmax-client-wasm-wasi-tinygo: build-unisockets-runner
281 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useTinyGo true --useWASI true --binaryPath ./out/tinygo/softmax_echo_client_wasi.wasm'
282 |
283 | run-tinyperf-native-posix-go:
284 | @./out/go/tinyperf $(ARGS)
285 | run-tinyperf-wasm-jssi-go: build-unisockets-runner
286 | @docker run --net host -v ${PWD}:/src:z alphahorizonio/unisockets-runner sh -c 'cd /src && unisockets_runner --runBinary true --useGo true --useJSSI true --binaryPath ./out/go/tinyperf.wasm' $(ARGS)
287 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU AFFERO GENERAL PUBLIC LICENSE
2 | Version 3, 19 November 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU Affero General Public License is a free, copyleft license for
11 | software and other kinds of works, specifically designed to ensure
12 | cooperation with the community in the case of network server software.
13 |
14 | The licenses for most software and other practical works are designed
15 | to take away your freedom to share and change the works. By contrast,
16 | our General Public Licenses are intended to guarantee your freedom to
17 | share and change all versions of a program--to make sure it remains free
18 | software for all its users.
19 |
20 | When we speak of free software, we are referring to freedom, not
21 | price. Our General Public Licenses are designed to make sure that you
22 | have the freedom to distribute copies of free software (and charge for
23 | them if you wish), that you receive source code or can get it if you
24 | want it, that you can change the software or use pieces of it in new
25 | free programs, and that you know you can do these things.
26 |
27 | Developers that use our General Public Licenses protect your rights
28 | with two steps: (1) assert copyright on the software, and (2) offer
29 | you this License which gives you legal permission to copy, distribute
30 | and/or modify the software.
31 |
32 | A secondary benefit of defending all users' freedom is that
33 | improvements made in alternate versions of the program, if they
34 | receive widespread use, become available for other developers to
35 | incorporate. Many developers of free software are heartened and
36 | encouraged by the resulting cooperation. However, in the case of
37 | software used on network servers, this result may fail to come about.
38 | The GNU General Public License permits making a modified version and
39 | letting the public access it on a server without ever releasing its
40 | source code to the public.
41 |
42 | The GNU Affero General Public License is designed specifically to
43 | ensure that, in such cases, the modified source code becomes available
44 | to the community. It requires the operator of a network server to
45 | provide the source code of the modified version running there to the
46 | users of that server. Therefore, public use of a modified version, on
47 | a publicly accessible server, gives the public access to the source
48 | code of the modified version.
49 |
50 | An older license, called the Affero General Public License and
51 | published by Affero, was designed to accomplish similar goals. This is
52 | a different license, not a version of the Affero GPL, but Affero has
53 | released a new version of the Affero GPL which permits relicensing under
54 | this license.
55 |
56 | The precise terms and conditions for copying, distribution and
57 | modification follow.
58 |
59 | TERMS AND CONDITIONS
60 |
61 | 0. Definitions.
62 |
63 | "This License" refers to version 3 of the GNU Affero General Public License.
64 |
65 | "Copyright" also means copyright-like laws that apply to other kinds of
66 | works, such as semiconductor masks.
67 |
68 | "The Program" refers to any copyrightable work licensed under this
69 | License. Each licensee is addressed as "you". "Licensees" and
70 | "recipients" may be individuals or organizations.
71 |
72 | To "modify" a work means to copy from or adapt all or part of the work
73 | in a fashion requiring copyright permission, other than the making of an
74 | exact copy. The resulting work is called a "modified version" of the
75 | earlier work or a work "based on" the earlier work.
76 |
77 | A "covered work" means either the unmodified Program or a work based
78 | on the Program.
79 |
80 | To "propagate" a work means to do anything with it that, without
81 | permission, would make you directly or secondarily liable for
82 | infringement under applicable copyright law, except executing it on a
83 | computer or modifying a private copy. Propagation includes copying,
84 | distribution (with or without modification), making available to the
85 | public, and in some countries other activities as well.
86 |
87 | To "convey" a work means any kind of propagation that enables other
88 | parties to make or receive copies. Mere interaction with a user through
89 | a computer network, with no transfer of a copy, is not conveying.
90 |
91 | An interactive user interface displays "Appropriate Legal Notices"
92 | to the extent that it includes a convenient and prominently visible
93 | feature that (1) displays an appropriate copyright notice, and (2)
94 | tells the user that there is no warranty for the work (except to the
95 | extent that warranties are provided), that licensees may convey the
96 | work under this License, and how to view a copy of this License. If
97 | the interface presents a list of user commands or options, such as a
98 | menu, a prominent item in the list meets this criterion.
99 |
100 | 1. Source Code.
101 |
102 | The "source code" for a work means the preferred form of the work
103 | for making modifications to it. "Object code" means any non-source
104 | form of a work.
105 |
106 | A "Standard Interface" means an interface that either is an official
107 | standard defined by a recognized standards body, or, in the case of
108 | interfaces specified for a particular programming language, one that
109 | is widely used among developers working in that language.
110 |
111 | The "System Libraries" of an executable work include anything, other
112 | than the work as a whole, that (a) is included in the normal form of
113 | packaging a Major Component, but which is not part of that Major
114 | Component, and (b) serves only to enable use of the work with that
115 | Major Component, or to implement a Standard Interface for which an
116 | implementation is available to the public in source code form. A
117 | "Major Component", in this context, means a major essential component
118 | (kernel, window system, and so on) of the specific operating system
119 | (if any) on which the executable work runs, or a compiler used to
120 | produce the work, or an object code interpreter used to run it.
121 |
122 | The "Corresponding Source" for a work in object code form means all
123 | the source code needed to generate, install, and (for an executable
124 | work) run the object code and to modify the work, including scripts to
125 | control those activities. However, it does not include the work's
126 | System Libraries, or general-purpose tools or generally available free
127 | programs which are used unmodified in performing those activities but
128 | which are not part of the work. For example, Corresponding Source
129 | includes interface definition files associated with source files for
130 | the work, and the source code for shared libraries and dynamically
131 | linked subprograms that the work is specifically designed to require,
132 | such as by intimate data communication or control flow between those
133 | subprograms and other parts of the work.
134 |
135 | The Corresponding Source need not include anything that users
136 | can regenerate automatically from other parts of the Corresponding
137 | Source.
138 |
139 | The Corresponding Source for a work in source code form is that
140 | same work.
141 |
142 | 2. Basic Permissions.
143 |
144 | All rights granted under this License are granted for the term of
145 | copyright on the Program, and are irrevocable provided the stated
146 | conditions are met. This License explicitly affirms your unlimited
147 | permission to run the unmodified Program. The output from running a
148 | covered work is covered by this License only if the output, given its
149 | content, constitutes a covered work. This License acknowledges your
150 | rights of fair use or other equivalent, as provided by copyright law.
151 |
152 | You may make, run and propagate covered works that you do not
153 | convey, without conditions so long as your license otherwise remains
154 | in force. You may convey covered works to others for the sole purpose
155 | of having them make modifications exclusively for you, or provide you
156 | with facilities for running those works, provided that you comply with
157 | the terms of this License in conveying all material for which you do
158 | not control copyright. Those thus making or running the covered works
159 | for you must do so exclusively on your behalf, under your direction
160 | and control, on terms that prohibit them from making any copies of
161 | your copyrighted material outside their relationship with you.
162 |
163 | Conveying under any other circumstances is permitted solely under
164 | the conditions stated below. Sublicensing is not allowed; section 10
165 | makes it unnecessary.
166 |
167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
168 |
169 | No covered work shall be deemed part of an effective technological
170 | measure under any applicable law fulfilling obligations under article
171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
172 | similar laws prohibiting or restricting circumvention of such
173 | measures.
174 |
175 | When you convey a covered work, you waive any legal power to forbid
176 | circumvention of technological measures to the extent such circumvention
177 | is effected by exercising rights under this License with respect to
178 | the covered work, and you disclaim any intention to limit operation or
179 | modification of the work as a means of enforcing, against the work's
180 | users, your or third parties' legal rights to forbid circumvention of
181 | technological measures.
182 |
183 | 4. Conveying Verbatim Copies.
184 |
185 | You may convey verbatim copies of the Program's source code as you
186 | receive it, in any medium, provided that you conspicuously and
187 | appropriately publish on each copy an appropriate copyright notice;
188 | keep intact all notices stating that this License and any
189 | non-permissive terms added in accord with section 7 apply to the code;
190 | keep intact all notices of the absence of any warranty; and give all
191 | recipients a copy of this License along with the Program.
192 |
193 | You may charge any price or no price for each copy that you convey,
194 | and you may offer support or warranty protection for a fee.
195 |
196 | 5. Conveying Modified Source Versions.
197 |
198 | You may convey a work based on the Program, or the modifications to
199 | produce it from the Program, in the form of source code under the
200 | terms of section 4, provided that you also meet all of these conditions:
201 |
202 | a) The work must carry prominent notices stating that you modified
203 | it, and giving a relevant date.
204 |
205 | b) The work must carry prominent notices stating that it is
206 | released under this License and any conditions added under section
207 | 7. This requirement modifies the requirement in section 4 to
208 | "keep intact all notices".
209 |
210 | c) You must license the entire work, as a whole, under this
211 | License to anyone who comes into possession of a copy. This
212 | License will therefore apply, along with any applicable section 7
213 | additional terms, to the whole of the work, and all its parts,
214 | regardless of how they are packaged. This License gives no
215 | permission to license the work in any other way, but it does not
216 | invalidate such permission if you have separately received it.
217 |
218 | d) If the work has interactive user interfaces, each must display
219 | Appropriate Legal Notices; however, if the Program has interactive
220 | interfaces that do not display Appropriate Legal Notices, your
221 | work need not make them do so.
222 |
223 | A compilation of a covered work with other separate and independent
224 | works, which are not by their nature extensions of the covered work,
225 | and which are not combined with it such as to form a larger program,
226 | in or on a volume of a storage or distribution medium, is called an
227 | "aggregate" if the compilation and its resulting copyright are not
228 | used to limit the access or legal rights of the compilation's users
229 | beyond what the individual works permit. Inclusion of a covered work
230 | in an aggregate does not cause this License to apply to the other
231 | parts of the aggregate.
232 |
233 | 6. Conveying Non-Source Forms.
234 |
235 | You may convey a covered work in object code form under the terms
236 | of sections 4 and 5, provided that you also convey the
237 | machine-readable Corresponding Source under the terms of this License,
238 | in one of these ways:
239 |
240 | a) Convey the object code in, or embodied in, a physical product
241 | (including a physical distribution medium), accompanied by the
242 | Corresponding Source fixed on a durable physical medium
243 | customarily used for software interchange.
244 |
245 | b) Convey the object code in, or embodied in, a physical product
246 | (including a physical distribution medium), accompanied by a
247 | written offer, valid for at least three years and valid for as
248 | long as you offer spare parts or customer support for that product
249 | model, to give anyone who possesses the object code either (1) a
250 | copy of the Corresponding Source for all the software in the
251 | product that is covered by this License, on a durable physical
252 | medium customarily used for software interchange, for a price no
253 | more than your reasonable cost of physically performing this
254 | conveying of source, or (2) access to copy the
255 | Corresponding Source from a network server at no charge.
256 |
257 | c) Convey individual copies of the object code with a copy of the
258 | written offer to provide the Corresponding Source. This
259 | alternative is allowed only occasionally and noncommercially, and
260 | only if you received the object code with such an offer, in accord
261 | with subsection 6b.
262 |
263 | d) Convey the object code by offering access from a designated
264 | place (gratis or for a charge), and offer equivalent access to the
265 | Corresponding Source in the same way through the same place at no
266 | further charge. You need not require recipients to copy the
267 | Corresponding Source along with the object code. If the place to
268 | copy the object code is a network server, the Corresponding Source
269 | may be on a different server (operated by you or a third party)
270 | that supports equivalent copying facilities, provided you maintain
271 | clear directions next to the object code saying where to find the
272 | Corresponding Source. Regardless of what server hosts the
273 | Corresponding Source, you remain obligated to ensure that it is
274 | available for as long as needed to satisfy these requirements.
275 |
276 | e) Convey the object code using peer-to-peer transmission, provided
277 | you inform other peers where the object code and Corresponding
278 | Source of the work are being offered to the general public at no
279 | charge under subsection 6d.
280 |
281 | A separable portion of the object code, whose source code is excluded
282 | from the Corresponding Source as a System Library, need not be
283 | included in conveying the object code work.
284 |
285 | A "User Product" is either (1) a "consumer product", which means any
286 | tangible personal property which is normally used for personal, family,
287 | or household purposes, or (2) anything designed or sold for incorporation
288 | into a dwelling. In determining whether a product is a consumer product,
289 | doubtful cases shall be resolved in favor of coverage. For a particular
290 | product received by a particular user, "normally used" refers to a
291 | typical or common use of that class of product, regardless of the status
292 | of the particular user or of the way in which the particular user
293 | actually uses, or expects or is expected to use, the product. A product
294 | is a consumer product regardless of whether the product has substantial
295 | commercial, industrial or non-consumer uses, unless such uses represent
296 | the only significant mode of use of the product.
297 |
298 | "Installation Information" for a User Product means any methods,
299 | procedures, authorization keys, or other information required to install
300 | and execute modified versions of a covered work in that User Product from
301 | a modified version of its Corresponding Source. The information must
302 | suffice to ensure that the continued functioning of the modified object
303 | code is in no case prevented or interfered with solely because
304 | modification has been made.
305 |
306 | If you convey an object code work under this section in, or with, or
307 | specifically for use in, a User Product, and the conveying occurs as
308 | part of a transaction in which the right of possession and use of the
309 | User Product is transferred to the recipient in perpetuity or for a
310 | fixed term (regardless of how the transaction is characterized), the
311 | Corresponding Source conveyed under this section must be accompanied
312 | by the Installation Information. But this requirement does not apply
313 | if neither you nor any third party retains the ability to install
314 | modified object code on the User Product (for example, the work has
315 | been installed in ROM).
316 |
317 | The requirement to provide Installation Information does not include a
318 | requirement to continue to provide support service, warranty, or updates
319 | for a work that has been modified or installed by the recipient, or for
320 | the User Product in which it has been modified or installed. Access to a
321 | network may be denied when the modification itself materially and
322 | adversely affects the operation of the network or violates the rules and
323 | protocols for communication across the network.
324 |
325 | Corresponding Source conveyed, and Installation Information provided,
326 | in accord with this section must be in a format that is publicly
327 | documented (and with an implementation available to the public in
328 | source code form), and must require no special password or key for
329 | unpacking, reading or copying.
330 |
331 | 7. Additional Terms.
332 |
333 | "Additional permissions" are terms that supplement the terms of this
334 | License by making exceptions from one or more of its conditions.
335 | Additional permissions that are applicable to the entire Program shall
336 | be treated as though they were included in this License, to the extent
337 | that they are valid under applicable law. If additional permissions
338 | apply only to part of the Program, that part may be used separately
339 | under those permissions, but the entire Program remains governed by
340 | this License without regard to the additional permissions.
341 |
342 | When you convey a copy of a covered work, you may at your option
343 | remove any additional permissions from that copy, or from any part of
344 | it. (Additional permissions may be written to require their own
345 | removal in certain cases when you modify the work.) You may place
346 | additional permissions on material, added by you to a covered work,
347 | for which you have or can give appropriate copyright permission.
348 |
349 | Notwithstanding any other provision of this License, for material you
350 | add to a covered work, you may (if authorized by the copyright holders of
351 | that material) supplement the terms of this License with terms:
352 |
353 | a) Disclaiming warranty or limiting liability differently from the
354 | terms of sections 15 and 16 of this License; or
355 |
356 | b) Requiring preservation of specified reasonable legal notices or
357 | author attributions in that material or in the Appropriate Legal
358 | Notices displayed by works containing it; or
359 |
360 | c) Prohibiting misrepresentation of the origin of that material, or
361 | requiring that modified versions of such material be marked in
362 | reasonable ways as different from the original version; or
363 |
364 | d) Limiting the use for publicity purposes of names of licensors or
365 | authors of the material; or
366 |
367 | e) Declining to grant rights under trademark law for use of some
368 | trade names, trademarks, or service marks; or
369 |
370 | f) Requiring indemnification of licensors and authors of that
371 | material by anyone who conveys the material (or modified versions of
372 | it) with contractual assumptions of liability to the recipient, for
373 | any liability that these contractual assumptions directly impose on
374 | those licensors and authors.
375 |
376 | All other non-permissive additional terms are considered "further
377 | restrictions" within the meaning of section 10. If the Program as you
378 | received it, or any part of it, contains a notice stating that it is
379 | governed by this License along with a term that is a further
380 | restriction, you may remove that term. If a license document contains
381 | a further restriction but permits relicensing or conveying under this
382 | License, you may add to a covered work material governed by the terms
383 | of that license document, provided that the further restriction does
384 | not survive such relicensing or conveying.
385 |
386 | If you add terms to a covered work in accord with this section, you
387 | must place, in the relevant source files, a statement of the
388 | additional terms that apply to those files, or a notice indicating
389 | where to find the applicable terms.
390 |
391 | Additional terms, permissive or non-permissive, may be stated in the
392 | form of a separately written license, or stated as exceptions;
393 | the above requirements apply either way.
394 |
395 | 8. Termination.
396 |
397 | You may not propagate or modify a covered work except as expressly
398 | provided under this License. Any attempt otherwise to propagate or
399 | modify it is void, and will automatically terminate your rights under
400 | this License (including any patent licenses granted under the third
401 | paragraph of section 11).
402 |
403 | However, if you cease all violation of this License, then your
404 | license from a particular copyright holder is reinstated (a)
405 | provisionally, unless and until the copyright holder explicitly and
406 | finally terminates your license, and (b) permanently, if the copyright
407 | holder fails to notify you of the violation by some reasonable means
408 | prior to 60 days after the cessation.
409 |
410 | Moreover, your license from a particular copyright holder is
411 | reinstated permanently if the copyright holder notifies you of the
412 | violation by some reasonable means, this is the first time you have
413 | received notice of violation of this License (for any work) from that
414 | copyright holder, and you cure the violation prior to 30 days after
415 | your receipt of the notice.
416 |
417 | Termination of your rights under this section does not terminate the
418 | licenses of parties who have received copies or rights from you under
419 | this License. If your rights have been terminated and not permanently
420 | reinstated, you do not qualify to receive new licenses for the same
421 | material under section 10.
422 |
423 | 9. Acceptance Not Required for Having Copies.
424 |
425 | You are not required to accept this License in order to receive or
426 | run a copy of the Program. Ancillary propagation of a covered work
427 | occurring solely as a consequence of using peer-to-peer transmission
428 | to receive a copy likewise does not require acceptance. However,
429 | nothing other than this License grants you permission to propagate or
430 | modify any covered work. These actions infringe copyright if you do
431 | not accept this License. Therefore, by modifying or propagating a
432 | covered work, you indicate your acceptance of this License to do so.
433 |
434 | 10. Automatic Licensing of Downstream Recipients.
435 |
436 | Each time you convey a covered work, the recipient automatically
437 | receives a license from the original licensors, to run, modify and
438 | propagate that work, subject to this License. You are not responsible
439 | for enforcing compliance by third parties with this License.
440 |
441 | An "entity transaction" is a transaction transferring control of an
442 | organization, or substantially all assets of one, or subdividing an
443 | organization, or merging organizations. If propagation of a covered
444 | work results from an entity transaction, each party to that
445 | transaction who receives a copy of the work also receives whatever
446 | licenses to the work the party's predecessor in interest had or could
447 | give under the previous paragraph, plus a right to possession of the
448 | Corresponding Source of the work from the predecessor in interest, if
449 | the predecessor has it or can get it with reasonable efforts.
450 |
451 | You may not impose any further restrictions on the exercise of the
452 | rights granted or affirmed under this License. For example, you may
453 | not impose a license fee, royalty, or other charge for exercise of
454 | rights granted under this License, and you may not initiate litigation
455 | (including a cross-claim or counterclaim in a lawsuit) alleging that
456 | any patent claim is infringed by making, using, selling, offering for
457 | sale, or importing the Program or any portion of it.
458 |
459 | 11. Patents.
460 |
461 | A "contributor" is a copyright holder who authorizes use under this
462 | License of the Program or a work on which the Program is based. The
463 | work thus licensed is called the contributor's "contributor version".
464 |
465 | A contributor's "essential patent claims" are all patent claims
466 | owned or controlled by the contributor, whether already acquired or
467 | hereafter acquired, that would be infringed by some manner, permitted
468 | by this License, of making, using, or selling its contributor version,
469 | but do not include claims that would be infringed only as a
470 | consequence of further modification of the contributor version. For
471 | purposes of this definition, "control" includes the right to grant
472 | patent sublicenses in a manner consistent with the requirements of
473 | this License.
474 |
475 | Each contributor grants you a non-exclusive, worldwide, royalty-free
476 | patent license under the contributor's essential patent claims, to
477 | make, use, sell, offer for sale, import and otherwise run, modify and
478 | propagate the contents of its contributor version.
479 |
480 | In the following three paragraphs, a "patent license" is any express
481 | agreement or commitment, however denominated, not to enforce a patent
482 | (such as an express permission to practice a patent or covenant not to
483 | sue for patent infringement). To "grant" such a patent license to a
484 | party means to make such an agreement or commitment not to enforce a
485 | patent against the party.
486 |
487 | If you convey a covered work, knowingly relying on a patent license,
488 | and the Corresponding Source of the work is not available for anyone
489 | to copy, free of charge and under the terms of this License, through a
490 | publicly available network server or other readily accessible means,
491 | then you must either (1) cause the Corresponding Source to be so
492 | available, or (2) arrange to deprive yourself of the benefit of the
493 | patent license for this particular work, or (3) arrange, in a manner
494 | consistent with the requirements of this License, to extend the patent
495 | license to downstream recipients. "Knowingly relying" means you have
496 | actual knowledge that, but for the patent license, your conveying the
497 | covered work in a country, or your recipient's use of the covered work
498 | in a country, would infringe one or more identifiable patents in that
499 | country that you have reason to believe are valid.
500 |
501 | If, pursuant to or in connection with a single transaction or
502 | arrangement, you convey, or propagate by procuring conveyance of, a
503 | covered work, and grant a patent license to some of the parties
504 | receiving the covered work authorizing them to use, propagate, modify
505 | or convey a specific copy of the covered work, then the patent license
506 | you grant is automatically extended to all recipients of the covered
507 | work and works based on it.
508 |
509 | A patent license is "discriminatory" if it does not include within
510 | the scope of its coverage, prohibits the exercise of, or is
511 | conditioned on the non-exercise of one or more of the rights that are
512 | specifically granted under this License. You may not convey a covered
513 | work if you are a party to an arrangement with a third party that is
514 | in the business of distributing software, under which you make payment
515 | to the third party based on the extent of your activity of conveying
516 | the work, and under which the third party grants, to any of the
517 | parties who would receive the covered work from you, a discriminatory
518 | patent license (a) in connection with copies of the covered work
519 | conveyed by you (or copies made from those copies), or (b) primarily
520 | for and in connection with specific products or compilations that
521 | contain the covered work, unless you entered into that arrangement,
522 | or that patent license was granted, prior to 28 March 2007.
523 |
524 | Nothing in this License shall be construed as excluding or limiting
525 | any implied license or other defenses to infringement that may
526 | otherwise be available to you under applicable patent law.
527 |
528 | 12. No Surrender of Others' Freedom.
529 |
530 | If conditions are imposed on you (whether by court order, agreement or
531 | otherwise) that contradict the conditions of this License, they do not
532 | excuse you from the conditions of this License. If you cannot convey a
533 | covered work so as to satisfy simultaneously your obligations under this
534 | License and any other pertinent obligations, then as a consequence you may
535 | not convey it at all. For example, if you agree to terms that obligate you
536 | to collect a royalty for further conveying from those to whom you convey
537 | the Program, the only way you could satisfy both those terms and this
538 | License would be to refrain entirely from conveying the Program.
539 |
540 | 13. Remote Network Interaction; Use with the GNU General Public License.
541 |
542 | Notwithstanding any other provision of this License, if you modify the
543 | Program, your modified version must prominently offer all users
544 | interacting with it remotely through a computer network (if your version
545 | supports such interaction) an opportunity to receive the Corresponding
546 | Source of your version by providing access to the Corresponding Source
547 | from a network server at no charge, through some standard or customary
548 | means of facilitating copying of software. This Corresponding Source
549 | shall include the Corresponding Source for any work covered by version 3
550 | of the GNU General Public License that is incorporated pursuant to the
551 | following paragraph.
552 |
553 | Notwithstanding any other provision of this License, you have
554 | permission to link or combine any covered work with a work licensed
555 | under version 3 of the GNU General Public License into a single
556 | combined work, and to convey the resulting work. The terms of this
557 | License will continue to apply to the part which is the covered work,
558 | but the work with which it is combined will remain governed by version
559 | 3 of the GNU General Public License.
560 |
561 | 14. Revised Versions of this License.
562 |
563 | The Free Software Foundation may publish revised and/or new versions of
564 | the GNU Affero General Public License from time to time. Such new versions
565 | will be similar in spirit to the present version, but may differ in detail to
566 | address new problems or concerns.
567 |
568 | Each version is given a distinguishing version number. If the
569 | Program specifies that a certain numbered version of the GNU Affero General
570 | Public License "or any later version" applies to it, you have the
571 | option of following the terms and conditions either of that numbered
572 | version or of any later version published by the Free Software
573 | Foundation. If the Program does not specify a version number of the
574 | GNU Affero General Public License, you may choose any version ever published
575 | by the Free Software Foundation.
576 |
577 | If the Program specifies that a proxy can decide which future
578 | versions of the GNU Affero General Public License can be used, that proxy's
579 | public statement of acceptance of a version permanently authorizes you
580 | to choose that version for the Program.
581 |
582 | Later license versions may give you additional or different
583 | permissions. However, no additional obligations are imposed on any
584 | author or copyright holder as a result of your choosing to follow a
585 | later version.
586 |
587 | 15. Disclaimer of Warranty.
588 |
589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
597 |
598 | 16. Limitation of Liability.
599 |
600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
608 | SUCH DAMAGES.
609 |
610 | 17. Interpretation of Sections 15 and 16.
611 |
612 | If the disclaimer of warranty and limitation of liability provided
613 | above cannot be given local legal effect according to their terms,
614 | reviewing courts shall apply local law that most closely approximates
615 | an absolute waiver of all civil liability in connection with the
616 | Program, unless a warranty or assumption of liability accompanies a
617 | copy of the Program in return for a fee.
618 |
619 | END OF TERMS AND CONDITIONS
620 |
621 | How to Apply These Terms to Your New Programs
622 |
623 | If you develop a new program, and you want it to be of the greatest
624 | possible use to the public, the best way to achieve this is to make it
625 | free software which everyone can redistribute and change under these terms.
626 |
627 | To do so, attach the following notices to the program. It is safest
628 | to attach them to the start of each source file to most effectively
629 | state the exclusion of warranty; and each file should have at least
630 | the "copyright" line and a pointer to where the full notice is found.
631 |
632 |
633 | Copyright (C)
634 |
635 | This program is free software: you can redistribute it and/or modify
636 | it under the terms of the GNU Affero General Public License as published
637 | by the Free Software Foundation, either version 3 of the License, or
638 | (at your option) any later version.
639 |
640 | This program is distributed in the hope that it will be useful,
641 | but WITHOUT ANY WARRANTY; without even the implied warranty of
642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
643 | GNU Affero General Public License for more details.
644 |
645 | You should have received a copy of the GNU Affero General Public License
646 | along with this program. If not, see .
647 |
648 | Also add information on how to contact you by electronic and paper mail.
649 |
650 | If your software can interact with users remotely through a computer
651 | network, you should also make sure that it provides a way for users to
652 | get its source. For example, if your program is a web application, its
653 | interface could display a "Source" link that leads users to an archive
654 | of the code. There are many ways you could offer source, and different
655 | solutions will be better for different programs; see section 13 for the
656 | specific requirements.
657 |
658 | You should also get your employer (if you work as a programmer) or school,
659 | if any, to sign a "copyright disclaimer" for the program, if necessary.
660 | For more information on this, and how to apply and follow the GNU AGPL, see
661 | .
662 |
--------------------------------------------------------------------------------