energy/cef/types-response.go

206 lines
4.7 KiB
Go
Raw Normal View History

2022-10-04 13:21:05 +08:00
//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under Apache License Version 2.0, January 2004
//
// https://www.apache.org/licenses/LICENSE-2.0
2022-10-04 13:21:05 +08:00
//
//----------------------------------------
2023-02-20 14:42:17 +08:00
// CEF Response
2023-05-31 17:41:14 +08:00
2022-10-04 13:21:05 +08:00
package cef
import (
"github.com/energye/energy/v2/cef/internal/def"
2023-05-31 18:00:34 +08:00
"github.com/energye/energy/v2/common/imports"
. "github.com/energye/energy/v2/consts"
2022-10-04 13:21:05 +08:00
"github.com/energye/golcl/lcl/api"
2023-02-27 09:15:37 +08:00
"unsafe"
2022-10-04 13:21:05 +08:00
)
2023-03-04 11:58:35 +08:00
// ResponseRef -> ICefResponse
var ResponseRef response
// request
type response uintptr
2023-05-31 17:41:14 +08:00
func (*response) New() *ICefResponse {
var result uintptr
imports.Proc(def.CefResponseRef_New).Call(uintptr(unsafe.Pointer(&result)))
2023-05-31 17:41:14 +08:00
if result != 0 {
return &ICefResponse{instance: unsafe.Pointer(result)}
}
return nil
}
2023-03-04 11:58:35 +08:00
func (*response) UnWrap(data *ICefResponse) *ICefResponse {
var result uintptr
imports.Proc(def.CefResponseRef_UnWrap).Call(data.Instance(), uintptr(unsafe.Pointer(&result)))
2023-03-04 11:58:35 +08:00
data.instance = unsafe.Pointer(result)
return data
}
2023-02-27 09:15:37 +08:00
// Instance 实例
func (m *ICefResponse) Instance() uintptr {
if m == nil {
return 0
}
return uintptr(m.instance)
}
2023-02-27 11:33:00 +08:00
func (m *ICefResponse) IsValid() bool {
if m == nil || m.instance == nil {
return false
}
return true
}
2023-02-20 14:42:17 +08:00
// IsReadOnly 是否只读
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) IsReadOnly() bool {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return false
}
r1, _, _ := imports.Proc(def.CefResponse_IsReadOnly).Call(m.Instance())
2023-02-27 09:15:37 +08:00
return api.GoBool(r1)
2022-10-04 13:21:05 +08:00
}
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) URL() string {
if !m.IsValid() {
return ""
}
r1, _, _ := imports.Proc(def.CefResponse_GetURL).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return api.GoStr(r1)
}
2023-02-20 14:42:17 +08:00
// SetURL 设置URL
func (m *ICefResponse) SetURL(url string) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetURL).Call(m.Instance(), api.PascalStr(url))
2023-02-20 14:42:17 +08:00
}
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) Error() TCefErrorCode {
if !m.IsValid() {
return 0
}
r1, _, _ := imports.Proc(def.CefResponse_GetError).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return TCefErrorCode(r1)
}
2023-02-20 14:42:17 +08:00
// SetError 设置错误码
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetError(error TCefErrorCode) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetError).Call(m.Instance(), error.ToPtr())
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) Status() int32 {
if !m.IsValid() {
return 0
}
r1, _, _ := imports.Proc(def.CefResponse_GetStatus).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return int32(r1)
}
2023-02-20 14:42:17 +08:00
// SetStatus 设置状态码
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetStatus(status int32) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetStatus).Call(m.Instance(), uintptr(status))
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) StatusText() string {
if !m.IsValid() {
return ""
}
r1, _, _ := imports.Proc(def.CefResponse_GetStatusText).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return api.GoStr(r1)
}
2023-02-20 14:42:17 +08:00
// SetStatusText 设置状态文本
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetStatusText(statusText string) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetStatusText).Call(m.Instance(), api.PascalStr(statusText))
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) MimeType() string {
if !m.IsValid() {
return ""
}
r1, _, _ := imports.Proc(def.CefResponse_GetMimeType).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return api.GoStr(r1)
}
2023-02-20 14:42:17 +08:00
// SetMimeType mime类型
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetMimeType(mimetype string) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetMimeType).Call(m.Instance(), api.PascalStr(mimetype))
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
2023-05-31 17:41:14 +08:00
func (m *ICefResponse) Charset() string {
if !m.IsValid() {
return ""
}
r1, _, _ := imports.Proc(def.CefResponse_GetCharset).Call(m.Instance())
2023-05-31 17:41:14 +08:00
return api.GoStr(r1)
}
2023-02-20 14:42:17 +08:00
// SetCharset 设置编码
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetCharset(charset string) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetCharset).Call(m.Instance(), api.PascalStr(charset))
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
// GetHeaderByName
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) GetHeaderByName(name string) string {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return ""
}
r1, _, _ := imports.Proc(def.CefResponse_GetHeaderByName).Call(m.Instance(), api.PascalStr(name))
2023-02-27 09:15:37 +08:00
return api.GoStr(r1)
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
// SetHeaderByName
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) SetHeaderByName(name, value string, overwrite bool) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetHeaderByName).Call(m.Instance(), api.PascalStr(name), api.PascalStr(value), api.PascalBool(overwrite))
2022-10-04 13:21:05 +08:00
}
2023-02-20 14:42:17 +08:00
// GetHeaderMap
2022-10-04 13:21:05 +08:00
func (m *ICefResponse) GetHeaderMap() *ICefStringMultiMap {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return nil
}
2023-02-27 09:15:37 +08:00
var result uintptr
imports.Proc(def.CefResponse_GetHeaderMap).Call(m.Instance(), uintptr(unsafe.Pointer(&result)))
2023-02-27 09:15:37 +08:00
return &ICefStringMultiMap{instance: unsafe.Pointer(result)}
2022-10-04 13:21:05 +08:00
}
2023-02-27 09:15:37 +08:00
// GetHeaderMap
func (m *ICefResponse) SetHeaderMap(headerMap *ICefStringMultiMap) {
2023-02-27 11:33:00 +08:00
if !m.IsValid() {
return
}
imports.Proc(def.CefResponse_SetHeaderMap).Call(m.Instance(), headerMap.Instance())
2022-10-04 13:21:05 +08:00
}
2023-03-13 11:54:52 +08:00
func (m *ICefResponse) Free() {
if m.instance != nil {
m.base.Free(m.Instance())
m.instance = nil
}
}