400 lines
9.4 KiB
Go
400 lines
9.4 KiB
Go
// Package indexeddb provides the Chrome Debugging Protocol
|
|
// commands, types, and events for the Chrome IndexedDB domain.
|
|
//
|
|
// Generated by the chromedp-gen command.
|
|
package indexeddb
|
|
|
|
// AUTOGENERATED. DO NOT EDIT.
|
|
|
|
import (
|
|
"context"
|
|
|
|
. "github.com/knq/chromedp/cdp"
|
|
"github.com/mailru/easyjson"
|
|
)
|
|
|
|
var (
|
|
_ BackendNode
|
|
_ BackendNodeID
|
|
_ ComputedProperty
|
|
_ ErrorType
|
|
_ Frame
|
|
_ FrameID
|
|
_ LoaderID
|
|
_ Message
|
|
_ MessageError
|
|
_ MethodType
|
|
_ Node
|
|
_ NodeID
|
|
_ NodeType
|
|
_ PseudoType
|
|
_ RGBA
|
|
_ ShadowRootType
|
|
_ Timestamp
|
|
)
|
|
|
|
// EnableParams enables events from backend.
|
|
type EnableParams struct{}
|
|
|
|
// Enable enables events from backend.
|
|
func Enable() *EnableParams {
|
|
return &EnableParams{}
|
|
}
|
|
|
|
// Do executes IndexedDB.enable.
|
|
func (p *EnableParams) Do(ctxt context.Context, h FrameHandler) (err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBEnable, Empty)
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
return nil
|
|
|
|
case error:
|
|
return v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return ErrContextDone
|
|
}
|
|
|
|
return ErrUnknownResult
|
|
}
|
|
|
|
// DisableParams disables events from backend.
|
|
type DisableParams struct{}
|
|
|
|
// Disable disables events from backend.
|
|
func Disable() *DisableParams {
|
|
return &DisableParams{}
|
|
}
|
|
|
|
// Do executes IndexedDB.disable.
|
|
func (p *DisableParams) Do(ctxt context.Context, h FrameHandler) (err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBDisable, Empty)
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
return nil
|
|
|
|
case error:
|
|
return v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return ErrContextDone
|
|
}
|
|
|
|
return ErrUnknownResult
|
|
}
|
|
|
|
// RequestDatabaseNamesParams requests database names for given security
|
|
// origin.
|
|
type RequestDatabaseNamesParams struct {
|
|
SecurityOrigin string `json:"securityOrigin"` // Security origin.
|
|
}
|
|
|
|
// RequestDatabaseNames requests database names for given security origin.
|
|
//
|
|
// parameters:
|
|
// securityOrigin - Security origin.
|
|
func RequestDatabaseNames(securityOrigin string) *RequestDatabaseNamesParams {
|
|
return &RequestDatabaseNamesParams{
|
|
SecurityOrigin: securityOrigin,
|
|
}
|
|
}
|
|
|
|
// RequestDatabaseNamesReturns return values.
|
|
type RequestDatabaseNamesReturns struct {
|
|
DatabaseNames []string `json:"databaseNames,omitempty"` // Database names for origin.
|
|
}
|
|
|
|
// Do executes IndexedDB.requestDatabaseNames.
|
|
//
|
|
// returns:
|
|
// databaseNames - Database names for origin.
|
|
func (p *RequestDatabaseNamesParams) Do(ctxt context.Context, h FrameHandler) (databaseNames []string, err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// marshal
|
|
buf, err := easyjson.Marshal(p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBRequestDatabaseNames, easyjson.RawMessage(buf))
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return nil, ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
// unmarshal
|
|
var r RequestDatabaseNamesReturns
|
|
err = easyjson.Unmarshal(v, &r)
|
|
if err != nil {
|
|
return nil, ErrInvalidResult
|
|
}
|
|
|
|
return r.DatabaseNames, nil
|
|
|
|
case error:
|
|
return nil, v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return nil, ErrContextDone
|
|
}
|
|
|
|
return nil, ErrUnknownResult
|
|
}
|
|
|
|
// RequestDatabaseParams requests database with given name in given frame.
|
|
type RequestDatabaseParams struct {
|
|
SecurityOrigin string `json:"securityOrigin"` // Security origin.
|
|
DatabaseName string `json:"databaseName"` // Database name.
|
|
}
|
|
|
|
// RequestDatabase requests database with given name in given frame.
|
|
//
|
|
// parameters:
|
|
// securityOrigin - Security origin.
|
|
// databaseName - Database name.
|
|
func RequestDatabase(securityOrigin string, databaseName string) *RequestDatabaseParams {
|
|
return &RequestDatabaseParams{
|
|
SecurityOrigin: securityOrigin,
|
|
DatabaseName: databaseName,
|
|
}
|
|
}
|
|
|
|
// RequestDatabaseReturns return values.
|
|
type RequestDatabaseReturns struct {
|
|
DatabaseWithObjectStores *DatabaseWithObjectStores `json:"databaseWithObjectStores,omitempty"` // Database with an array of object stores.
|
|
}
|
|
|
|
// Do executes IndexedDB.requestDatabase.
|
|
//
|
|
// returns:
|
|
// databaseWithObjectStores - Database with an array of object stores.
|
|
func (p *RequestDatabaseParams) Do(ctxt context.Context, h FrameHandler) (databaseWithObjectStores *DatabaseWithObjectStores, err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// marshal
|
|
buf, err := easyjson.Marshal(p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBRequestDatabase, easyjson.RawMessage(buf))
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return nil, ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
// unmarshal
|
|
var r RequestDatabaseReturns
|
|
err = easyjson.Unmarshal(v, &r)
|
|
if err != nil {
|
|
return nil, ErrInvalidResult
|
|
}
|
|
|
|
return r.DatabaseWithObjectStores, nil
|
|
|
|
case error:
|
|
return nil, v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return nil, ErrContextDone
|
|
}
|
|
|
|
return nil, ErrUnknownResult
|
|
}
|
|
|
|
// RequestDataParams requests data from object store or index.
|
|
type RequestDataParams struct {
|
|
SecurityOrigin string `json:"securityOrigin"` // Security origin.
|
|
DatabaseName string `json:"databaseName"` // Database name.
|
|
ObjectStoreName string `json:"objectStoreName"` // Object store name.
|
|
IndexName string `json:"indexName"` // Index name, empty string for object store data requests.
|
|
SkipCount int64 `json:"skipCount"` // Number of records to skip.
|
|
PageSize int64 `json:"pageSize"` // Number of records to fetch.
|
|
KeyRange *KeyRange `json:"keyRange,omitempty"` // Key range.
|
|
}
|
|
|
|
// RequestData requests data from object store or index.
|
|
//
|
|
// parameters:
|
|
// securityOrigin - Security origin.
|
|
// databaseName - Database name.
|
|
// objectStoreName - Object store name.
|
|
// indexName - Index name, empty string for object store data requests.
|
|
// skipCount - Number of records to skip.
|
|
// pageSize - Number of records to fetch.
|
|
func RequestData(securityOrigin string, databaseName string, objectStoreName string, indexName string, skipCount int64, pageSize int64) *RequestDataParams {
|
|
return &RequestDataParams{
|
|
SecurityOrigin: securityOrigin,
|
|
DatabaseName: databaseName,
|
|
ObjectStoreName: objectStoreName,
|
|
IndexName: indexName,
|
|
SkipCount: skipCount,
|
|
PageSize: pageSize,
|
|
}
|
|
}
|
|
|
|
// WithKeyRange key range.
|
|
func (p RequestDataParams) WithKeyRange(keyRange *KeyRange) *RequestDataParams {
|
|
p.KeyRange = keyRange
|
|
return &p
|
|
}
|
|
|
|
// RequestDataReturns return values.
|
|
type RequestDataReturns struct {
|
|
ObjectStoreDataEntries []*DataEntry `json:"objectStoreDataEntries,omitempty"` // Array of object store data entries.
|
|
HasMore bool `json:"hasMore,omitempty"` // If true, there are more entries to fetch in the given range.
|
|
}
|
|
|
|
// Do executes IndexedDB.requestData.
|
|
//
|
|
// returns:
|
|
// objectStoreDataEntries - Array of object store data entries.
|
|
// hasMore - If true, there are more entries to fetch in the given range.
|
|
func (p *RequestDataParams) Do(ctxt context.Context, h FrameHandler) (objectStoreDataEntries []*DataEntry, hasMore bool, err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// marshal
|
|
buf, err := easyjson.Marshal(p)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBRequestData, easyjson.RawMessage(buf))
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return nil, false, ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
// unmarshal
|
|
var r RequestDataReturns
|
|
err = easyjson.Unmarshal(v, &r)
|
|
if err != nil {
|
|
return nil, false, ErrInvalidResult
|
|
}
|
|
|
|
return r.ObjectStoreDataEntries, r.HasMore, nil
|
|
|
|
case error:
|
|
return nil, false, v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return nil, false, ErrContextDone
|
|
}
|
|
|
|
return nil, false, ErrUnknownResult
|
|
}
|
|
|
|
// ClearObjectStoreParams clears all entries from an object store.
|
|
type ClearObjectStoreParams struct {
|
|
SecurityOrigin string `json:"securityOrigin"` // Security origin.
|
|
DatabaseName string `json:"databaseName"` // Database name.
|
|
ObjectStoreName string `json:"objectStoreName"` // Object store name.
|
|
}
|
|
|
|
// ClearObjectStore clears all entries from an object store.
|
|
//
|
|
// parameters:
|
|
// securityOrigin - Security origin.
|
|
// databaseName - Database name.
|
|
// objectStoreName - Object store name.
|
|
func ClearObjectStore(securityOrigin string, databaseName string, objectStoreName string) *ClearObjectStoreParams {
|
|
return &ClearObjectStoreParams{
|
|
SecurityOrigin: securityOrigin,
|
|
DatabaseName: databaseName,
|
|
ObjectStoreName: objectStoreName,
|
|
}
|
|
}
|
|
|
|
// Do executes IndexedDB.clearObjectStore.
|
|
func (p *ClearObjectStoreParams) Do(ctxt context.Context, h FrameHandler) (err error) {
|
|
if ctxt == nil {
|
|
ctxt = context.Background()
|
|
}
|
|
|
|
// marshal
|
|
buf, err := easyjson.Marshal(p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// execute
|
|
ch := h.Execute(ctxt, CommandIndexedDBClearObjectStore, easyjson.RawMessage(buf))
|
|
|
|
// read response
|
|
select {
|
|
case res := <-ch:
|
|
if res == nil {
|
|
return ErrChannelClosed
|
|
}
|
|
|
|
switch v := res.(type) {
|
|
case easyjson.RawMessage:
|
|
return nil
|
|
|
|
case error:
|
|
return v
|
|
}
|
|
|
|
case <-ctxt.Done():
|
|
return ErrContextDone
|
|
}
|
|
|
|
return ErrUnknownResult
|
|
}
|