123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- // Package indexeddb provides the Chrome DevTools Protocol
- // commands, types, and events for the IndexedDB domain.
- //
- // Generated by the cdproto-gen command.
- package indexeddb
- // Code generated by cdproto-gen. DO NOT EDIT.
- import (
- "context"
- "github.com/chromedp/cdproto/cdp"
- "github.com/chromedp/cdproto/storage"
- )
- // ClearObjectStoreParams clears all entries from an object store.
- type ClearObjectStoreParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- DatabaseName string `json:"databaseName"` // Database name.
- ObjectStoreName string `json:"objectStoreName"` // Object store name.
- }
- // ClearObjectStore clears all entries from an object store.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-clearObjectStore
- //
- // parameters:
- //
- // databaseName - Database name.
- // objectStoreName - Object store name.
- func ClearObjectStore(databaseName string, objectStoreName string) *ClearObjectStoreParams {
- return &ClearObjectStoreParams{
- DatabaseName: databaseName,
- ObjectStoreName: objectStoreName,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p ClearObjectStoreParams) WithSecurityOrigin(securityOrigin string) *ClearObjectStoreParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p ClearObjectStoreParams) WithStorageKey(storageKey string) *ClearObjectStoreParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p ClearObjectStoreParams) WithStorageBucket(storageBucket *storage.Bucket) *ClearObjectStoreParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // Do executes IndexedDB.clearObjectStore against the provided context.
- func (p *ClearObjectStoreParams) Do(ctx context.Context) (err error) {
- return cdp.Execute(ctx, CommandClearObjectStore, p, nil)
- }
- // DeleteDatabaseParams deletes a database.
- type DeleteDatabaseParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- DatabaseName string `json:"databaseName"` // Database name.
- }
- // DeleteDatabase deletes a database.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-deleteDatabase
- //
- // parameters:
- //
- // databaseName - Database name.
- func DeleteDatabase(databaseName string) *DeleteDatabaseParams {
- return &DeleteDatabaseParams{
- DatabaseName: databaseName,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p DeleteDatabaseParams) WithSecurityOrigin(securityOrigin string) *DeleteDatabaseParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p DeleteDatabaseParams) WithStorageKey(storageKey string) *DeleteDatabaseParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p DeleteDatabaseParams) WithStorageBucket(storageBucket *storage.Bucket) *DeleteDatabaseParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // Do executes IndexedDB.deleteDatabase against the provided context.
- func (p *DeleteDatabaseParams) Do(ctx context.Context) (err error) {
- return cdp.Execute(ctx, CommandDeleteDatabase, p, nil)
- }
- // DeleteObjectStoreEntriesParams delete a range of entries from an object
- // store.
- type DeleteObjectStoreEntriesParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- DatabaseName string `json:"databaseName"`
- ObjectStoreName string `json:"objectStoreName"`
- KeyRange *KeyRange `json:"keyRange"` // Range of entry keys to delete
- }
- // DeleteObjectStoreEntries delete a range of entries from an object store.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-deleteObjectStoreEntries
- //
- // parameters:
- //
- // databaseName
- // objectStoreName
- // keyRange - Range of entry keys to delete
- func DeleteObjectStoreEntries(databaseName string, objectStoreName string, keyRange *KeyRange) *DeleteObjectStoreEntriesParams {
- return &DeleteObjectStoreEntriesParams{
- DatabaseName: databaseName,
- ObjectStoreName: objectStoreName,
- KeyRange: keyRange,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p DeleteObjectStoreEntriesParams) WithSecurityOrigin(securityOrigin string) *DeleteObjectStoreEntriesParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p DeleteObjectStoreEntriesParams) WithStorageKey(storageKey string) *DeleteObjectStoreEntriesParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p DeleteObjectStoreEntriesParams) WithStorageBucket(storageBucket *storage.Bucket) *DeleteObjectStoreEntriesParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // Do executes IndexedDB.deleteObjectStoreEntries against the provided context.
- func (p *DeleteObjectStoreEntriesParams) Do(ctx context.Context) (err error) {
- return cdp.Execute(ctx, CommandDeleteObjectStoreEntries, p, nil)
- }
- // DisableParams disables events from backend.
- type DisableParams struct{}
- // Disable disables events from backend.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-disable
- func Disable() *DisableParams {
- return &DisableParams{}
- }
- // Do executes IndexedDB.disable against the provided context.
- func (p *DisableParams) Do(ctx context.Context) (err error) {
- return cdp.Execute(ctx, CommandDisable, nil, nil)
- }
- // EnableParams enables events from backend.
- type EnableParams struct{}
- // Enable enables events from backend.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-enable
- func Enable() *EnableParams {
- return &EnableParams{}
- }
- // Do executes IndexedDB.enable against the provided context.
- func (p *EnableParams) Do(ctx context.Context) (err error) {
- return cdp.Execute(ctx, CommandEnable, nil, nil)
- }
- // RequestDataParams requests data from object store or index.
- type RequestDataParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- 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.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-requestData
- //
- // parameters:
- //
- // 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(databaseName string, objectStoreName string, indexName string, skipCount int64, pageSize int64) *RequestDataParams {
- return &RequestDataParams{
- DatabaseName: databaseName,
- ObjectStoreName: objectStoreName,
- IndexName: indexName,
- SkipCount: skipCount,
- PageSize: pageSize,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p RequestDataParams) WithSecurityOrigin(securityOrigin string) *RequestDataParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p RequestDataParams) WithStorageKey(storageKey string) *RequestDataParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p RequestDataParams) WithStorageBucket(storageBucket *storage.Bucket) *RequestDataParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // 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 against the provided context.
- //
- // 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(ctx context.Context) (objectStoreDataEntries []*DataEntry, hasMore bool, err error) {
- // execute
- var res RequestDataReturns
- err = cdp.Execute(ctx, CommandRequestData, p, &res)
- if err != nil {
- return nil, false, err
- }
- return res.ObjectStoreDataEntries, res.HasMore, nil
- }
- // GetMetadataParams gets metadata of an object store.
- type GetMetadataParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- DatabaseName string `json:"databaseName"` // Database name.
- ObjectStoreName string `json:"objectStoreName"` // Object store name.
- }
- // GetMetadata gets metadata of an object store.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-getMetadata
- //
- // parameters:
- //
- // databaseName - Database name.
- // objectStoreName - Object store name.
- func GetMetadata(databaseName string, objectStoreName string) *GetMetadataParams {
- return &GetMetadataParams{
- DatabaseName: databaseName,
- ObjectStoreName: objectStoreName,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p GetMetadataParams) WithSecurityOrigin(securityOrigin string) *GetMetadataParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p GetMetadataParams) WithStorageKey(storageKey string) *GetMetadataParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p GetMetadataParams) WithStorageBucket(storageBucket *storage.Bucket) *GetMetadataParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // GetMetadataReturns return values.
- type GetMetadataReturns struct {
- EntriesCount float64 `json:"entriesCount,omitempty"` // the entries count
- KeyGeneratorValue float64 `json:"keyGeneratorValue,omitempty"` // the current value of key generator, to become the next inserted key into the object store. Valid if objectStore.autoIncrement is true.
- }
- // Do executes IndexedDB.getMetadata against the provided context.
- //
- // returns:
- //
- // entriesCount - the entries count
- // keyGeneratorValue - the current value of key generator, to become the next inserted key into the object store. Valid if objectStore.autoIncrement is true.
- func (p *GetMetadataParams) Do(ctx context.Context) (entriesCount float64, keyGeneratorValue float64, err error) {
- // execute
- var res GetMetadataReturns
- err = cdp.Execute(ctx, CommandGetMetadata, p, &res)
- if err != nil {
- return 0, 0, err
- }
- return res.EntriesCount, res.KeyGeneratorValue, nil
- }
- // RequestDatabaseParams requests database with given name in given frame.
- type RequestDatabaseParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- DatabaseName string `json:"databaseName"` // Database name.
- }
- // RequestDatabase requests database with given name in given frame.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-requestDatabase
- //
- // parameters:
- //
- // databaseName - Database name.
- func RequestDatabase(databaseName string) *RequestDatabaseParams {
- return &RequestDatabaseParams{
- DatabaseName: databaseName,
- }
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p RequestDatabaseParams) WithSecurityOrigin(securityOrigin string) *RequestDatabaseParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p RequestDatabaseParams) WithStorageKey(storageKey string) *RequestDatabaseParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p RequestDatabaseParams) WithStorageBucket(storageBucket *storage.Bucket) *RequestDatabaseParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // RequestDatabaseReturns return values.
- type RequestDatabaseReturns struct {
- DatabaseWithObjectStores *DatabaseWithObjectStores `json:"databaseWithObjectStores,omitempty"` // Database with an array of object stores.
- }
- // Do executes IndexedDB.requestDatabase against the provided context.
- //
- // returns:
- //
- // databaseWithObjectStores - Database with an array of object stores.
- func (p *RequestDatabaseParams) Do(ctx context.Context) (databaseWithObjectStores *DatabaseWithObjectStores, err error) {
- // execute
- var res RequestDatabaseReturns
- err = cdp.Execute(ctx, CommandRequestDatabase, p, &res)
- if err != nil {
- return nil, err
- }
- return res.DatabaseWithObjectStores, nil
- }
- // RequestDatabaseNamesParams requests database names for given security
- // origin.
- type RequestDatabaseNamesParams struct {
- SecurityOrigin string `json:"securityOrigin,omitempty"` // At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
- StorageKey string `json:"storageKey,omitempty"` // Storage key.
- StorageBucket *storage.Bucket `json:"storageBucket,omitempty"` // Storage bucket. If not specified, it uses the default bucket.
- }
- // RequestDatabaseNames requests database names for given security origin.
- //
- // See: https://chromedevtools.github.io/devtools-protocol/tot/IndexedDB#method-requestDatabaseNames
- //
- // parameters:
- func RequestDatabaseNames() *RequestDatabaseNamesParams {
- return &RequestDatabaseNamesParams{}
- }
- // WithSecurityOrigin at least and at most one of securityOrigin, storageKey,
- // or storageBucket must be specified. Security origin.
- func (p RequestDatabaseNamesParams) WithSecurityOrigin(securityOrigin string) *RequestDatabaseNamesParams {
- p.SecurityOrigin = securityOrigin
- return &p
- }
- // WithStorageKey storage key.
- func (p RequestDatabaseNamesParams) WithStorageKey(storageKey string) *RequestDatabaseNamesParams {
- p.StorageKey = storageKey
- return &p
- }
- // WithStorageBucket storage bucket. If not specified, it uses the default
- // bucket.
- func (p RequestDatabaseNamesParams) WithStorageBucket(storageBucket *storage.Bucket) *RequestDatabaseNamesParams {
- p.StorageBucket = storageBucket
- return &p
- }
- // RequestDatabaseNamesReturns return values.
- type RequestDatabaseNamesReturns struct {
- DatabaseNames []string `json:"databaseNames,omitempty"` // Database names for origin.
- }
- // Do executes IndexedDB.requestDatabaseNames against the provided context.
- //
- // returns:
- //
- // databaseNames - Database names for origin.
- func (p *RequestDatabaseNamesParams) Do(ctx context.Context) (databaseNames []string, err error) {
- // execute
- var res RequestDatabaseNamesReturns
- err = cdp.Execute(ctx, CommandRequestDatabaseNames, p, &res)
- if err != nil {
- return nil, err
- }
- return res.DatabaseNames, nil
- }
- // Command names.
- const (
- CommandClearObjectStore = "IndexedDB.clearObjectStore"
- CommandDeleteDatabase = "IndexedDB.deleteDatabase"
- CommandDeleteObjectStoreEntries = "IndexedDB.deleteObjectStoreEntries"
- CommandDisable = "IndexedDB.disable"
- CommandEnable = "IndexedDB.enable"
- CommandRequestData = "IndexedDB.requestData"
- CommandGetMetadata = "IndexedDB.getMetadata"
- CommandRequestDatabase = "IndexedDB.requestDatabase"
- CommandRequestDatabaseNames = "IndexedDB.requestDatabaseNames"
- )
|