/**
 * The persister-pglite module of the TinyBase project lets you save and load
 * Store data to and from a PGlite database (in an appropriate environment).
 * @see Database Persistence guide
 * @packageDocumentation
 * @module persister-pglite
 * @since 5.2.0
 */
import type {MergeableStore} from '../../mergeable-store/index.d.cts';
import type {Store} from '../../store/index.d.cts';
import type {DatabasePersisterConfig, Persister, Persists} from '../index.d.cts';
import type {PGlite} from '@electric-sql/pglite';

/**
 * The PglitePersister interface represents a Persister that lets you save and
 * load Store data to and from a local PGlite database.
 *
 * You should use the createPglitePersister function to create a PglitePersister
 * object.
 *
 * It is a minor extension to the Persister interface and simply provides an
 * extra getPglite method for accessing a reference to the database connection
 * the Store is being persisted to.
 * @category Persister
 * @since 5.2.0
 */
export interface PglitePersister
  extends Persister<Persists.StoreOrMergeableStore> {
  /**
   * The getPglite method returns a reference to the database connection the
   * Store is being persisted to.
   * @returns A reference to the database connection.
   * @example
   * This example creates a Persister object against a newly-created Store and
   * then gets the database connection back out again.
   *
   * ```js
   * import {PGlite} from '@electric-sql/pglite';
   * import {createStore} from 'tinybase';
   * import {createPglitePersister} from 'tinybase/persisters/persister-pglite';
   *
   * const pglite = await PGlite.create();
   * const store = createStore().setTables({pets: {fido: {species: 'dog'}}});
   * const persister = await createPglitePersister(
   *   store,
   *   pglite,
   *   'my_tinybase',
   * );
   *
   * console.log(persister.getPglite() == pglite);
   * // -> true
   *
   * persister.destroy();
   * await pglite.close();
   * ```
   * @category Getter
   * @since 5.2.0
   */
  getPglite(): PGlite;
}

/**
 * The createPglitePersister function creates a PglitePersister object that can
 * persist the Store to a local PGlite database.
 *
 * A PglitePersister supports regular Store objects, and can also be used to
 * persist the metadata of a MergeableStore when using the JSON serialization
 * mode, as described below.
 *
 * As well as providing a reference to the Store to persist, you must provide a
 * `pglite` parameter which identifies the database connection.
 *
 * A database Persister uses one of two modes: either a JSON serialization of
 * the whole Store stored in a single row of a table (the default), or a tabular
 * mapping of Table Ids to database table names and vice-versa).
 *
 * The third argument is a DatabasePersisterConfig object that configures which
 * of those modes to use, and settings for each. If the third argument is simply
 * a string, it is used as the `storeTableName` property of the JSON
 * serialization.
 *
 * See the documentation for the DpcJson and DpcTabular types for more
 * information on how both of those modes can be configured.
 *
 * This method is asynchronous because it will await the creation of dedicated
 * new connections to the database. You will need to `await` a call to this
 * function or handle the return type natively as a Promise.
 * @param store The Store or MergeableStore to persist.
 * @param pglite The database connection that was returned from
 * `PGlite.create(...)`.
 * @param configOrStoreTableName A DatabasePersisterConfig to configure the
 * persistence mode (or a string to set the `storeTableName` property of the
 * JSON serialization).
 * @param onSqlCommand An optional handler called every time the Persister
 * executes a SQL command or query. This is suitable for logging persistence
 * behavior in a development environment.
 * @param onIgnoredError An optional handler for the errors that the Persister
 * would otherwise ignore when trying to save or load data. This is suitable for
 * debugging persistence issues in a development environment.
 * @returns A reference to the new PglitePersister object.
 * @example
 * This example creates a PglitePersister object and persists the Store to a
 * local PGlite database as a JSON serialization into the `my_tinybase`
 * table. It makes a change to the database directly and then reloads it back
 * into the Store.
 *
 * ```js
 * import {PGlite} from '@electric-sql/pglite';
 * import {createStore} from 'tinybase';
 * import {createPglitePersister} from 'tinybase/persisters/persister-pglite';
 *
 * const pglite = await PGlite.create();
 * const store = createStore().setTables({pets: {fido: {species: 'dog'}}});
 * const persister = await createPglitePersister(
 *   store,
 *   pglite,
 *   'my_tinybase',
 * );
 * await persister.save();
 * // Store will be saved to the database.
 *
 * console.log((await pglite.query('SELECT * FROM my_tinybase;')).rows);
 * // -> [{_id: '_', store: '[{"pets":{"fido":{"species":"dog"}}},{}]'}]
 *
 * await pglite.query(`UPDATE my_tinybase SET store = $1 WHERE _id = '_';`, [
 *   '[{"pets":{"felix":{"species":"cat"}}},{}]',
 * ]);
 *
 * await persister.load();
 * console.log(store.getTables());
 * // -> {pets: {felix: {species: 'cat'}}}
 *
 * persister.destroy();
 * await pglite.close();
 * ```
 * @example
 * This example creates a PglitePersister object and persists the Store to a
 * local PGlite database with tabular mapping.
 *
 * ```js
 * import {PGlite} from '@electric-sql/pglite';
 * import {createStore} from 'tinybase';
 * import {createPglitePersister} from 'tinybase/persisters/persister-pglite';
 *
 * const pglite = await PGlite.create();
 * const store = createStore().setTables({pets: {fido: {species: 'dog'}}});
 * const persister = await createPglitePersister(store, pglite, {
 *   mode: 'tabular',
 *   tables: {load: {pets: 'pets'}, save: {pets: 'pets'}},
 * });
 *
 * await persister.save();
 * console.log((await pglite.query('SELECT * FROM pets;')).rows);
 * // -> [{_id: 'fido', species: '"dog"'}]
 * // Note that Cells and Values are JSON-encoded in PostgreSQL databases.
 *
 * await pglite.query(
 *   `INSERT INTO pets (_id, species) VALUES ('felix', '"cat"')`,
 * );
 * await persister.load();
 * console.log(store.getTables());
 * // -> {pets: {fido: {species: 'dog'}, felix: {species: 'cat'}}}
 *
 * persister.destroy();
 * await pglite.query('DROP TABLE IF EXISTS pets');
 * await pglite.close();
 * ```
 * @category Creation
 * @since 5.2.0
 */
export function createPglitePersister(
  store: Store | MergeableStore,
  pglite: PGlite,
  configOrStoreTableName?: DatabasePersisterConfig | string,
  onSqlCommand?: (sql: string, params?: any[]) => void,
  onIgnoredError?: (error: any) => void,
): Promise<PglitePersister>;
