mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 10:47:57 +08:00
121 lines
3.6 KiB
Go
121 lines
3.6 KiB
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
import (
|
|
. "github.com/energye/energy/commons"
|
|
. "github.com/energye/energy/consts"
|
|
"github.com/energye/golcl/lcl/api"
|
|
"unsafe"
|
|
)
|
|
|
|
type ICefRequest struct {
|
|
instance uintptr
|
|
ptr unsafe.Pointer
|
|
Url string
|
|
Method string
|
|
ReferrerUrl string
|
|
ReferrerPolicy TCefReferrerPolicy
|
|
Flags TCefUrlRequestFlags
|
|
FirstPartyForCookies string
|
|
ResourceType TCefResourceType
|
|
TransitionType TCefTransitionType
|
|
Identifier uint64
|
|
}
|
|
|
|
type rICefRequest struct {
|
|
Instance uintptr
|
|
Url uintptr //string
|
|
Method uintptr //string
|
|
ReferrerUrl uintptr //string
|
|
ReferrerPolicy uintptr //int32
|
|
Flags uintptr //int32
|
|
FirstPartyForCookies uintptr //string
|
|
ResourceType uintptr //int32
|
|
TransitionType uintptr //int32
|
|
Identifier uintptr //uint64
|
|
}
|
|
|
|
//request
|
|
func (m *ICefRequest) IsReadOnly() bool {
|
|
return api.DBoolToGoBool(cefRequest_IsReadOnly(m.instance))
|
|
}
|
|
|
|
func (m *ICefRequest) SetUrl(url string) {
|
|
cefRequest_SetUrl(m.instance, url)
|
|
}
|
|
|
|
func (m *ICefRequest) SetMethod(method string) {
|
|
cefRequest_SetMethod(m.instance, method)
|
|
}
|
|
|
|
func (m *ICefRequest) SetReferrer(referrerUrl string, policy TCefReferrerPolicy) {
|
|
cefRequest_SetReferrer(m.instance, referrerUrl, policy)
|
|
}
|
|
|
|
func (m *ICefRequest) SetFlags(flags TCefUrlRequestFlags) {
|
|
cefRequest_SetFlags(m.instance, flags)
|
|
}
|
|
|
|
func (m *ICefRequest) SetFirstPartyForCookies(url string) {
|
|
cefRequest_SetFirstPartyForCookies(m.instance, url)
|
|
}
|
|
func (m *ICefRequest) GetHeaderByName(name string) string {
|
|
return api.DStrToGoStr(cefRequest_GetHeaderByName(m.instance, name))
|
|
}
|
|
func (m *ICefRequest) SetHeaderByName(name, value string, overwrite bool) {
|
|
cefRequest_SetHeaderByName(m.instance, name, value, overwrite)
|
|
}
|
|
func (m *ICefRequest) GetHeaderMap() *ICefStringMultiMap {
|
|
headerMap := &ICefStringMultiMap{}
|
|
headerMap.instance = cefRequest_GetHeaderMap(m.instance)
|
|
headerMap.ptr = unsafe.Pointer(headerMap.instance)
|
|
return headerMap
|
|
}
|
|
|
|
//request
|
|
func cefRequest_IsReadOnly(instance uintptr) uintptr {
|
|
r1, _, _ := Proc("cefRequest_IsReadOnly").Call(instance)
|
|
return r1
|
|
}
|
|
|
|
func cefRequest_SetUrl(instance uintptr, url string) {
|
|
Proc("cefRequest_SetUrl").Call(instance, api.GoStrToDStr(url))
|
|
}
|
|
|
|
func cefRequest_SetMethod(instance uintptr, method string) {
|
|
Proc("cefRequest_SetMethod").Call(instance, api.GoStrToDStr(method))
|
|
}
|
|
|
|
func cefRequest_SetReferrer(instance uintptr, referrerUrl string, policy TCefReferrerPolicy) {
|
|
Proc("cefRequest_SetReferrer").Call(instance, api.GoStrToDStr(referrerUrl), uintptr(policy))
|
|
}
|
|
|
|
func cefRequest_SetFlags(instance uintptr, flags TCefUrlRequestFlags) {
|
|
Proc("cefRequest_SetFlags").Call(instance, uintptr(flags))
|
|
}
|
|
|
|
func cefRequest_SetFirstPartyForCookies(instance uintptr, url string) {
|
|
Proc("cefRequest_SetFirstPartyForCookies").Call(instance, api.GoStrToDStr(url))
|
|
}
|
|
|
|
func cefRequest_GetHeaderByName(instance uintptr, name string) uintptr {
|
|
r1, _, _ := Proc("cefRequest_GetHeaderByName").Call(instance, api.GoStrToDStr(name))
|
|
return r1
|
|
}
|
|
|
|
func cefRequest_SetHeaderByName(instance uintptr, url, value string, overwrite bool) {
|
|
Proc("cefRequest_SetHeaderByName").Call(instance, api.GoStrToDStr(url), api.GoStrToDStr(value), api.GoBoolToDBool(overwrite))
|
|
}
|
|
|
|
func cefRequest_GetHeaderMap(instance uintptr) uintptr {
|
|
r1, _, _ := Proc("cefRequest_GetHeaderMap").Call(instance)
|
|
return r1
|
|
}
|