-
Notifications
You must be signed in to change notification settings - Fork 6
Wasm integration #47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wasm integration #47
Conversation
@@ -16,11 +16,11 @@ jobs: | |||
- name: Install dependencies | |||
run: go mod tidy | |||
- name: Build | |||
run: go build -v ./... | |||
run: go build -tags=cli -v ./... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this done only for ones with tag cli, are there any other tags
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes there is wasm
tag also currently build is failing , checking that now
cmdgen/cmdgen.go
Outdated
keyValuePair := fmt.Sprintf("%s=%s", key, val.Data().(string)) | ||
command = append(command, keyValuePair) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these changes tested?
controller/controller.wasm.go
Outdated
// TODO - replace stuff in headers, and varjson and json as well | ||
cmd, stdinBody := cmdgen.ConstructCommand(block) | ||
resp, e1 := cmdexec.ExecCommand(cmd, stdinBody) | ||
printFields(resp) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this do
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added it for debugging purpose, printing the response
l2.wasm.go
Outdated
js.Global().Set("lama2Wasm", js.FuncOf(lama2Wasm)) | ||
js.Global().Set("goWebRequestFunc", wasmLamaPromise()) | ||
select {} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can add a comment on what these lines do
l2.wasm.go
Outdated
|
||
func lama2Wasm(this js.Value, i []js.Value) interface{} { | ||
go func() { | ||
controller.ProcessWasmInput("GET\nhttps://httpbin.org/get") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this for processing the Default request?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That function was for testing purpose , removed
@@ -6,7 +6,7 @@ import ( | |||
|
|||
"github.com/HexmosTech/lama2/l2lsp/request" | |||
"github.com/HexmosTech/lama2/l2lsp/response" | |||
"github.com/rs/zerolog/log" | |||
// "github.com/rs/zerolog/log" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This can be removed right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is for logging purpose
preprocess/preprocess.wasm.go
Outdated
|
||
func ExpandHeaders(block *gabs.Container) { | ||
headerMap := block.S("details", "headers") | ||
// log.Info().Str("HeaderMap", headerMap.String()).Msg("") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can remove commented code
preprocess/preprocess.wasm.go
Outdated
@@ -0,0 +1,220 @@ | |||
//go:build wasm |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the basic difference in the code between preprocess.wasm.go and preprocess.go
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there is a lot of code repetition there converted it into 3 separate file to remove duplication
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The difference is in function calls , wasm has 1 parameter , cli has 2 params , each of them calls different functions
What type of MR is this? (check all applicable)
Web assembly integration for Lama2.
Modifying Golang to add support for building web assembly binary.
Important files to start review from in the order
controller.cli.go
Controller.wasm.go
controller.go
other major changes :