2023-02-24 19:28:56 +08:00
|
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"embed"
|
|
|
|
|
"fmt"
|
|
|
|
|
"github.com/energye/energy/cef"
|
|
|
|
|
"github.com/energye/energy/common/assetserve"
|
|
|
|
|
"github.com/energye/energy/consts"
|
2023-02-26 21:17:28 +08:00
|
|
|
|
"github.com/energye/golcl/lcl"
|
2023-03-01 14:18:39 +08:00
|
|
|
|
"time"
|
2023-02-24 19:28:56 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
//go:embed resources
|
|
|
|
|
var resources embed.FS
|
|
|
|
|
var cefApp *cef.TCEFApplication
|
|
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
//logger.SetEnable(true)
|
|
|
|
|
//logger.SetLevel(logger.CefLog_Debug)
|
|
|
|
|
//全局初始化 每个应用都必须调用的
|
|
|
|
|
cef.GlobalInit(nil, &resources)
|
|
|
|
|
//创建应用
|
2023-02-28 18:41:12 +08:00
|
|
|
|
cefApp = cef.NewApplication()
|
2023-02-24 19:28:56 +08:00
|
|
|
|
//指定一个URL地址,或本地html文件目录
|
|
|
|
|
cef.BrowserWindow.Config.Url = "http://localhost:22022/process-message.html"
|
|
|
|
|
cef.BrowserWindow.Config.Title = "Energy - execute-javascript"
|
|
|
|
|
cef.BrowserWindow.Config.IconFS = "resources/icon.ico"
|
|
|
|
|
//内置http服务链接安全配置
|
|
|
|
|
cef.SetBrowserProcessStartAfterCallback(func(b bool) {
|
|
|
|
|
fmt.Println("主进程启动 创建一个内置http服务")
|
|
|
|
|
//通过内置http服务加载资源
|
|
|
|
|
server := assetserve.NewAssetsHttpServer()
|
|
|
|
|
server.PORT = 22022
|
|
|
|
|
server.AssetsFSName = "resources" //必须设置目录名
|
|
|
|
|
server.Assets = &resources
|
|
|
|
|
go server.StartHttpServer()
|
2023-03-01 14:18:39 +08:00
|
|
|
|
go func() {
|
|
|
|
|
for {
|
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
|
fmt.Println("GetWindowInfos:", len(cef.BrowserWindow.GetWindowInfos()), cefApp.ProcessTypeValue())
|
|
|
|
|
browser := cef.BrowserWindow.GetWindowInfo(1).Browser()
|
|
|
|
|
frame := browser.MainFrame()
|
|
|
|
|
fmt.Println("browser", browser.Identifier(), frame.Instance())
|
|
|
|
|
sendBrowserProcessMsg := cef.ProcessMessageRef.New("testName")
|
|
|
|
|
sendBrowserProcessMsg.ArgumentList().SetString(0, fmt.Sprintf("发送给渲染进程, 测试值 %d", time.Now().Second()))
|
|
|
|
|
frame.SendProcessMessage(consts.PID_RENDER, sendBrowserProcessMsg)
|
|
|
|
|
}
|
|
|
|
|
}()
|
2023-02-24 19:28:56 +08:00
|
|
|
|
})
|
2023-03-01 15:56:40 +08:00
|
|
|
|
cefApp.SetOnWebKitInitialized(func() {
|
|
|
|
|
fmt.Println("SetOnWebKitInitialized")
|
|
|
|
|
v8Handler := cef.V8HandlerRef.New()
|
|
|
|
|
v8Handler.Execute(func(name string, object *cef.ICefV8Value, arguments *cef.TCefV8ValueArray, retVal *cef.ResultV8Value, exception *cef.Exception) bool {
|
|
|
|
|
fmt.Println("v8Handler.Execute", name)
|
|
|
|
|
return true
|
|
|
|
|
})
|
|
|
|
|
//注册js
|
|
|
|
|
var jsCode = `
|
|
|
|
|
let codeobj = {};
|
|
|
|
|
codeobj.test = function(){
|
|
|
|
|
document.getElementById("test").style.color="red";
|
|
|
|
|
}
|
|
|
|
|
`
|
|
|
|
|
cef.RegisterExtension("v8/codeobj", jsCode, v8Handler)
|
|
|
|
|
})
|
2023-02-24 19:28:56 +08:00
|
|
|
|
cefApp.SetOnContextCreated(func(browser *cef.ICefBrowser, frame *cef.ICefFrame, context *cef.ICefV8Context) bool {
|
2023-02-25 12:01:31 +08:00
|
|
|
|
handler := cef.V8HandlerRef.New()
|
2023-02-24 19:28:56 +08:00
|
|
|
|
fmt.Println("handler:", handler)
|
|
|
|
|
handler.Execute(func(name string, object *cef.ICefV8Value, arguments *cef.TCefV8ValueArray, retVal *cef.ResultV8Value, exception *cef.Exception) bool {
|
|
|
|
|
fmt.Println("handler.Execute", name)
|
|
|
|
|
retVal.SetResult(cef.V8ValueRef.NewString("函数返回值?"))
|
2023-02-26 21:17:28 +08:00
|
|
|
|
message := cef.ProcessMessageRef.New("testname")
|
2023-02-24 21:44:32 +08:00
|
|
|
|
fmt.Println("ProcessMessageRef IsValid", message.IsValid(), message.Name())
|
2023-02-24 22:00:28 +08:00
|
|
|
|
list := message.ArgumentList()
|
2023-02-25 17:09:39 +08:00
|
|
|
|
list.SetString(0, "值?")
|
|
|
|
|
fmt.Println("list IsValid", list.IsValid(), list.GetSize(), list.GetString(0))
|
|
|
|
|
listCopy := list.Copy()
|
|
|
|
|
fmt.Println("listCopy GetString", listCopy.IsValid(), list.GetSize(), list.GetString(0), list.GetValue(0).GetType())
|
|
|
|
|
listCopy.SetDouble(1, 112211.22)
|
|
|
|
|
fmt.Println("listCopy GetDouble", listCopy.GetDouble(1), listCopy.GetType(1))
|
|
|
|
|
data := make([]byte, 1024, 1024)
|
|
|
|
|
for i := 0; i < len(data); i++ {
|
|
|
|
|
data[i] = byte(i % 255)
|
|
|
|
|
}
|
|
|
|
|
value := cef.BinaryValueRef.New(data)
|
|
|
|
|
fmt.Println("BinaryValueNew IsValid", value.IsValid())
|
|
|
|
|
fmt.Println("BinaryValueNew size", value.GetSize())
|
|
|
|
|
buf := make([]byte, 300)
|
|
|
|
|
fmt.Println("BinaryValueNew GetData", value.GetData(buf, 0))
|
|
|
|
|
fmt.Println("BinaryValueNew GetData buf", buf)
|
2023-02-25 19:13:07 +08:00
|
|
|
|
dictionaryValue := cef.DictionaryValueRef.New()
|
|
|
|
|
dictionaryValue.SetString("strdicttest", "字符串?")
|
|
|
|
|
dictionaryValue.SetDouble("doubledicttest", 9999.666)
|
|
|
|
|
fmt.Println("DictionaryValueRef IsValid", dictionaryValue.IsValid(), dictionaryValue.GetSize(), dictionaryValue.GetString("strdicttest"), dictionaryValue.GetDouble("doubledicttest"))
|
|
|
|
|
listCopy.SetDictionary(2, dictionaryValue)
|
|
|
|
|
dictionaryValue = listCopy.GetDictionary(2)
|
|
|
|
|
fmt.Println("DictionaryValueRef IsValid", dictionaryValue.IsValid(), dictionaryValue.GetSize(), dictionaryValue.GetDouble("doubledicttest"))
|
|
|
|
|
//list.SetDictionary()
|
2023-02-26 21:17:28 +08:00
|
|
|
|
//测试 - 给 browser 程发送消息
|
|
|
|
|
sendBrowserProcessMsg := cef.ProcessMessageRef.New("testName")
|
|
|
|
|
sendBrowserProcessMsg.ArgumentList().SetString(0, "发送给主进程, 测试值")
|
|
|
|
|
frame.SendProcessMessage(consts.PID_BROWSER, sendBrowserProcessMsg)
|
2023-02-25 20:09:57 +08:00
|
|
|
|
return true
|
2023-02-24 19:28:56 +08:00
|
|
|
|
})
|
2023-02-25 20:09:57 +08:00
|
|
|
|
object := cef.V8ValueRef.NewObject(nil)
|
2023-02-24 19:28:56 +08:00
|
|
|
|
function := cef.V8ValueRef.NewFunction("testfn", handler)
|
|
|
|
|
object.SetValueByKey("testfn", function, consts.V8_PROPERTY_ATTRIBUTE_NONE)
|
2023-02-25 22:23:57 +08:00
|
|
|
|
context.Global().SetValueByKey("testset", object, consts.V8_PROPERTY_ATTRIBUTE_READONLY)
|
2023-02-24 19:28:56 +08:00
|
|
|
|
return false
|
|
|
|
|
})
|
2023-02-26 21:17:28 +08:00
|
|
|
|
cef.BrowserWindow.SetBrowserInit(func(event *cef.BrowserEvent, window cef.IBrowserWindow) {
|
|
|
|
|
event.SetOnBrowseProcessMessageReceived(func(sender lcl.IObject, browser *cef.ICefBrowser, frame *cef.ICefFrame, sourceProcess consts.CefProcessId, message *cef.ICefProcessMessage) bool {
|
2023-03-01 14:18:39 +08:00
|
|
|
|
fmt.Println("browser 进程接收消息", message.Name(), message.ArgumentList().GetString(0), frame.Instance())
|
2023-02-26 21:17:28 +08:00
|
|
|
|
//测试 - 给 render 进程发送消息
|
|
|
|
|
sendBrowserProcessMsg := cef.ProcessMessageRef.New("testName")
|
|
|
|
|
sendBrowserProcessMsg.ArgumentList().SetString(0, "发送给渲染进程, 测试值")
|
|
|
|
|
frame.SendProcessMessage(consts.PID_RENDER, sendBrowserProcessMsg)
|
|
|
|
|
return false
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
cefApp.SetOnProcessMessageReceived(func(browser *cef.ICefBrowser, frame *cef.ICefFrame, sourceProcess consts.CefProcessId, message *cef.ICefProcessMessage) bool {
|
2023-03-01 14:18:39 +08:00
|
|
|
|
fmt.Println("render 进程接收消息", message.Name(), message.ArgumentList().GetString(0), frame.Instance())
|
2023-02-26 21:17:28 +08:00
|
|
|
|
return false
|
|
|
|
|
})
|
2023-02-24 19:28:56 +08:00
|
|
|
|
//运行应用
|
|
|
|
|
cef.Run(cefApp)
|
|
|
|
|
}
|