English | 简体ä¸ć–‡
Yock is a solution of cross platform to compose distributed build stream. It's able to act as software package tool, like Homebrew, rpm, winget and so on. It also is used for dependency manager (pip, npm, maven, etc.) of programming languages. On top of this, yock also implements distributed build tasks based on grpc and goroutines (and can even build cluster for this). You can think of it as the lua version of the nodejs framework, except that it focuses on composition and is more lightweight.
- Yctl: it's used for scheduling yock's commands.
- Yockp: it's mainly used for preprocessing lua file, such as schema decomposition, decomposing a lua source file into multiple lua files according to a given modes for distributed system.
- Yocks: the scheduler is responsible for running the lua code, and launchs goroutines to execute in tasks.
- YPM: yock package manager, used for completion and loading dependencies.
- Yockd: yock's daemon responsible for cross-process and cross-end communication, building P2P or centralized cluster.
- Yockr: yock's runtime.
- Yockw: yock's monitoring, used for log search and metric monitoring.
- Ycho: yock's logger module, is used for show information in running.
You can download the binary version here, or try the following methods.
NOTE
: After downloading, you must mount yock to the local environment. Enter directory of executable file to run yock run install.lua
command to make it after uncompress.
npm: npm install @ansurfen/yock -g
pip: pip install yock
Yock implements something like "bootstrap", meaning it's able to build itself. Of course, the prerequisite for all this also requires go compiler.
git clone https://github.com/Ansurfen/yock.git
cd ctl
./build.bat/sh // normal build
./build.bat/sh ffi //build with libffi (gcc or mingw required)
./build.bat/sh dev //build developer version
./build.bat/sh oslinux //cross compile to linux
// automatically build with libffi version when the last step was finished
yock run install.lua
yock run ../auto/build-ffi.lua
Install yock library (yock supports >= Go1.20)
go get "github.com/ansurfen/yock"
yockr: A lua interpreter based on the gopher-lua
package, which is easier to get started.
import (
"fmt"
yockr "github.com/ansurfen/yock/runtime"
)
type user struct {
Name string
Pwd string
}
func main() {
u := user{}
r := yockr.New()
if err := r.Eval(`return {name = "root", pwd = "123456"}`); err != nil {
panic(err)
}
if err := r.State().CheckTable(1).Bind(&u); err != nil {
panic(err)
}
fmt.Println(u)
}
yockc: Provides yock with a series of simple GNU commands such as iptabls, curl, crontab, etc. You can call them directly, and the specific Opt field can be found in docs/yockc
import yockc "github.com/ansurfen/yock/cmd"
func main() {
yockc.Curl(yockc.CurlOpt{
Method: "GET",
Save: true,
Debug: true,
Dir: ".",
FilenameHandle: func(s string) string {
return s
},
}, []string{"https://www.github.com"})
}
yocks: A scheduler based on the yockr, which is the core of yock. Yocks not only includes interpreters and standard libraries, but also simple goroutine pools to facilitate the scheduling of asynchronous tasks. In addition, yocks is also equipped with protobuf based on the yocki protocol to implement cross-language calling services.
import (
"fmt"
"log"
"sync"
"github.com/ansurfen/yock/scheduler"
)
func main() {
var wg sync.WaitGroup
ys := yocks.New()
lib := ys.CreateLib("log")
lib.SetField(map[string]any{
"Info": func(msg string) {
log.Println(msg)
},
"Infof": func(msg string, a ...any) {
log.Printf(msg, a...)
},
})
if err := ys.Eval(`log.Info("Hello World!")`); err != nil {
panic(err)
}
go ys.EventLoop()
wg.Add(10)
for i := 0; i < 10; i++ {
go func(i int) {
ys.Do(func() {
ys.Eval(fmt.Sprintf(`log.Info("%d")`, i))
wg.Done()
})
}(i)
}
wg.Wait()
}
yocku: Provides basic functions such as crypto, ssh, random and so on for yock. The following is an example of a weight-based load balancer implemented by the util package.
import (
"fmt"
"github.com/ansurfen/yock/util"
)
func main() {
testset := map[string]int{
"apple": 0,
"banana": 0,
"coconut": 0,
}
elements := []string{}
for k := range testset {
elements = append(elements, k)
}
lb := util.NewWeightedRandom(elements)
for i := 0; i < 100; i++ {
e, idx := lb.Next()
testset[e]++
lb.Up(idx)
}
fmt.Println(testset, lb.Weights())
}
yocke: Out-of-the-box configuration file module that creates environment in directories with quick. In addition, yocke also provides manipulation of environment variables and abstractions of registry(windows) and plist(darwin). You can see the details under docs/yocke
.
import (
"fmt"
yocke "github.com/ansurfen/yock/env"
)
type YockeTestConf struct {
Author string `yaml:"author"`
Version string `yaml:"version"`
}
func main() {
// defer yocke.FreeEnv[YockeTestConf]()
yocke.InitEnv(&yocke.EnvOpt[YockeTestConf]{
Workdir: ".yocke",
Subdirs: []string{"tmp", "log", "mnt", "unmnt"},
Conf: YockeTestConf{},
})
env := yocke.GetEnv[YockeTestConf]()
defer env.Save()
env.SetValue("author", "a")
fmt.Println(env.Viper())
}
ycho: yock's log module implements zlog (supports log splitting) based on zap
and tlog (tui log) based on bubbletea
and so on.
import "github.com/ansurfen/yock/ycho"
func init() {
zlog, err := ycho.NewZLog(ycho.YchoOpt{
Stdout: true,
})
if err != nil {
panic(err)
}
ycho.SetYcho(zlog)
}
func main() {
ycho.Info("Hello World!")
ycho.Fatalf("1 == 2 -> %v", 1 == 2)
}
yockf: Based on the libffi encapsulated foreign function interface, you can easily call dynamic libraries in Go.
import (
"fmt"
"github.com/ansurfen/yock/ffi"
)
func main() {
mylib, err := ffi.NewLibray("libmylib.dll")
if err != nil {
panic(err)
}
hello := mylib.Func("hello", "void", []string{})
hello()
hello2 := mylib.Func("hello2", "str", []string{"str", "int"})
fmt.Println(hello2("ansurfen", int32(60)))
}
Here are some simple examples, and you can also check out the test content in lib/test
to see how the function is used.
GNU command: yock's primary goal is to implement a cross-platform build solution instead of bat and bash script. Therefore, you can use the gnu command as a function in your script. In addition to this example, you can also refer to auto/build.lua
(yock's build file) and lib/test/gnu_test.lua
above.
mkdir("a")
cd("a")
write("test.txt", "Hello World!")
local data = cat("test.txt")
print(data)
cd("..")
rm({safe = false}, "/a")
Task scheduling: Yock can concurrently execute asynchronous commands, which you can call using yock run test.lua echo echo2
or yock run test.lua all
.
-- test.lua
job_option({
strict = true,
debug = true,
})
job("echo", function(ctx)
print("echo")
end)
job("echo2", function(ctx)
print("echo2")
end)
jobs("all", "echo", "echo2")
Coroutines and semaphores: Thanks to the fetures of the Go language, yock also inherits the ability of Go to be asynchronous, which means that Lua is no longer a single-threaded language, it can implement truly asynchronous tasks. At the same time, Yock also provides notify and wait functions to cope with the need for asynchronous to synchronous.
go(function()
local i = 0
while true do
time.Sleep(1 * time.Second)
if i > 3 then
notify("x")
end
print("do task1")
i = i + 1
end
end)
go(function()
local i = 0
while true do
if i == 5 then
wait("x")
end
print("do task2")
i = i + 1
end
end)
time.Sleep(8 * time.Second)
HTTP server: Yock inherits most of the Go standard library, so you can get started quickly with Go-like syntax.
http.HandleFunc("/", function(w, req)
fmt.Fprintf(w, "Hello World!\n")
end)
http.ListenAndServe(":8080", nil)
YPM: When yock run install.lua
is executed, the package management tool is registered globally. You can use it to install yock's modules.
<!-- present all command -->
ypm
<!-- install module globally -->
ypm install ark -g
You can find information about module development and yock development here.
If you want to register a module to yock so that it can use an identifier index instead of URL, see here.
- implement mock service and compose middlewares (YockCloud)
- implement preprocess and DSL to enhance lua syntax
This software is licensed under the MIT license, see LICENSE for more information.