GnuCash  5.6-150-g038405b370+
Public Member Functions
GncSqlSlotsBackend Class Reference

Slots are neither loadable nor committable. More...

#include <gnc-slots-sql.h>

Inheritance diagram for GncSqlSlotsBackend:
GncSqlObjectBackend

Public Member Functions

void load_all (GncSqlBackend *) override
 Load all objects of m_type in the database into memory. More...
 
void create_tables (GncSqlBackend *) override
 Conditionally create or update a database table from m_col_table. More...
 
bool commit (GncSqlBackend *, QofInstance *) override
 UPDATE/INSERT a single instance of m_type_name into the database. More...
 
- Public Member Functions inherited from GncSqlObjectBackend
 GncSqlObjectBackend (int version, const std::string &type, const std::string &table, const EntryVec &vec)
 
virtual bool write (GncSqlBackend *sql_be)
 Write all objects of m_type_name to the database. More...
 
const char * type () const noexcept
 Return the m_type_name for the class. More...
 
const bool is_version (int version) const noexcept
 Compare a version with the compiled version (m_version). More...
 
bool instance_in_db (const GncSqlBackend *sql_be, QofInstance *inst) const noexcept
 Check the presence of an object in the backend's database. More...
 

Additional Inherited Members

- Protected Attributes inherited from GncSqlObjectBackend
const std::string m_table_name
 
const int m_version
 
const std::string m_type_name
 
const EntryVec & m_col_table
 The front-end QofIdType.
 

Detailed Description

Slots are neither loadable nor committable.

Note that the default write() implementation is also a no-op.

Definition at line 41 of file gnc-slots-sql.h.

Member Function Documentation

◆ commit()

bool GncSqlSlotsBackend::commit ( GncSqlBackend sql_be,
QofInstance inst 
)
inlineoverridevirtual

UPDATE/INSERT a single instance of m_type_name into the database.

Parameters
sql_beThe GncSqlBackend containing the database.
instThe QofInstance to be written out.

Reimplemented from GncSqlObjectBackend.

Definition at line 47 of file gnc-slots-sql.h.

47 { return false; }

◆ create_tables()

void GncSqlSlotsBackend::create_tables ( GncSqlBackend sql_be)
overridevirtual

Conditionally create or update a database table from m_col_table.

The condition is the version returned by querying the database's version table: If it's 0 then the table wasn't found and will be created; All tables areat least version 1. If the database's version is less than the compiled version then the table schema is upgraded but the data isn't, that's the engine's responsibility when the object is loaded. If the version is greater than the compiled version then nothing is touched.

Parameters
sql_beThe GncSqlBackend containing the database connection.

Reimplemented from GncSqlObjectBackend.

Definition at line 835 of file gnc-slots-sql.cpp.

836 {
837  gint version;
838  gboolean ok;
839 
840  g_return_if_fail (sql_be != NULL);
841 
842  version = sql_be->get_table_version( TABLE_NAME);
843  if (version == 0)
844  {
845  (void)sql_be->create_table(TABLE_NAME, TABLE_VERSION, col_table);
846 
847  ok = sql_be->create_index ("slots_guid_index", TABLE_NAME,
848  obj_guid_col_table);
849  if (!ok)
850  {
851  PERR ("Unable to create index\n");
852  }
853  }
854  else if (version < m_version)
855  {
856  /* Upgrade:
857  1->2: 64-bit int values to proper definition, add index
858  2->3: Add gdate field
859  3->4: Use DATETIME instead of TIMESTAMP in MySQL
860  */
861  if (version == 1)
862  {
863  sql_be->upgrade_table(TABLE_NAME, col_table);
864  ok = sql_be->create_index ("slots_guid_index", TABLE_NAME,
865  obj_guid_col_table);
866  if (!ok)
867  {
868  PERR ("Unable to create index\n");
869  }
870  }
871  else if (version == 2)
872  {
873  ok = sql_be->add_columns_to_table(TABLE_NAME, gdate_col_table);
874  if (!ok)
875  {
876  PERR ("Unable to add gdate column\n");
877  }
878  }
879  else
880  {
881  sql_be->upgrade_table(TABLE_NAME, col_table);
882  }
883  sql_be->set_table_version (TABLE_NAME, TABLE_VERSION);
884  PINFO ("Slots table upgraded from version %d to version %d\n", version,
885  TABLE_VERSION);
886  }
887 }
bool add_columns_to_table(const std::string &table_name, const EntryVec &col_table) const noexcept
Adds one or more columns to an existing table.
bool create_table(const std::string &table_name, const EntryVec &col_table) const noexcept
Creates a table in the database.
bool set_table_version(const std::string &table_name, uint_t version) noexcept
Registers the version for a table.
#define PINFO(format, args...)
Print an informational note.
Definition: qoflog.h:256
#define PERR(format, args...)
Log a serious error.
Definition: qoflog.h:244
void upgrade_table(const std::string &table_name, const EntryVec &col_table) noexcept
Upgrades a table to a new structure.
bool create_index(const std::string &index_name, const std::string &table_name, const EntryVec &col_table) const noexcept
Creates an index in the database.
uint_t get_table_version(const std::string &table_name) const noexcept
Returns the version number for a DB table.

◆ load_all()

void GncSqlSlotsBackend::load_all ( GncSqlBackend sql_be)
inlineoverridevirtual

Load all objects of m_type in the database into memory.

Parameters
sql_beThe GncSqlBackend containing the database connection.

Implements GncSqlObjectBackend.

Definition at line 45 of file gnc-slots-sql.h.

45 { return; }

The documentation for this class was generated from the following files: