|
| | Writable_Database (joedb::Abstract_File &file) |
| |
| | Writable_Database (joedb::Abstract_File &file, joedb::Recovery recovery) |
| |
| const joedb::Readonly_Journal & | get_journal () const |
| |
| std::string | read_blob (joedb::Blob blob) const |
| |
| joedb::Blob | write_blob (const std::string &data) override |
| |
| int64_t | ahead_of_checkpoint () const |
| |
| void | soft_checkpoint () override |
| |
| void | hard_checkpoint () override |
| |
| void | write_comment (const std::string &comment) |
| |
| void | write_timestamp () |
| |
| void | write_timestamp (int64_t timestamp) |
| |
| void | write_valid_data () |
| |
| void | flush () override |
| |
| void | set_name (id_of_city record, const std::string &field_value_of_name) |
| |
| void | set_name (const std::string &field_value_of_name) |
| |
| | Database_Writable () |
| |
| void | set_max_record_id (joedb::index_t record_id) |
| |
| int64_t | get_schema_checkpoint () const |
| |
| void | initialize_with_readonly_journal (joedb::Readonly_Journal &journal) |
| |
| bool | is_valid (id_of_city id) const |
| |
| container_of_city | get_city_table () const |
| |
| id_of_city | next (id_of_city id) const |
| |
| id_of_city | previous (id_of_city id) const |
| |
| const std::string & | get_name (id_of_city record=id_of_city{0}) const |
| |
| virtual int64_t | get_position () const |
| |
| virtual void | start_writing (int64_t position) |
| |
| virtual void | end_writing (int64_t position) |
| |
| virtual void | drop_table (Table_Id table_id) |
| |
| virtual void | rename_table (Table_Id table_id, const std::string &name) |
| |
| virtual void | add_field (Table_Id table_id, const std::string &name, Type type) |
| |
| virtual void | drop_field (Table_Id table_id, Field_Id field_id) |
| |
| virtual void | rename_field (Table_Id table_id, Field_Id field_id, const std::string &name) |
| |
| virtual void | insert_into (Table_Id table_id, Record_Id record_id) |
| |
| virtual void | delete_from (Table_Id table_id, Record_Id record_id) |
| |
| virtual void | insert_vector (Table_Id table_id, Record_Id record_id, size_t size)=0 |
| |
| virtual void | delete_vector (Table_Id table_id, Record_Id record_id, size_t size)=0 |
| |
| virtual void | on_blob (Blob blob) |
| |
| virtual bool | wants_blob_data () const |
| |
| virtual | ~Writable ()=default |
| |
|
| template<typename E = joedb::Exception> |
| static void | throw_exception (const std::string &message) |
| |
| static id_of_city | null_city () |
| |
| static constexpr id_of_city | the_city () |
| |
| void | delete_from (Table_Id table_id, Record_Id record_id) override |
| |
| void | insert_into (Table_Id table_id, Record_Id record_id) override |
| |
| void | delete_vector (Table_Id table_id, Record_Id record_id, size_t size) override |
| |
| void | insert_vector (Table_Id table_id, Record_Id record_id, size_t size) override |
| |
| void | update_string (Table_Id table_id, Record_Id record_id, Field_Id field_id, const std::string &value) override |
| |
| void | update_vector_string (Table_Id table_id, Record_Id record_id, Field_Id field_id, size_t size, const std::string *value) override |
| |
| std::string * | get_own_string_storage (Table_Id table_id, Record_Id record_id, Field_Id field_id, size_t &capacity) override |
| |
| void | comment (const std::string &comment) override |
| |
| void | timestamp (int64_t timestamp) override |
| |
| void | valid_data () override |
| |
| bool | requires_schema_upgrade () const |
| |
| void | check_schema () |
| |
| void | drop_table (Table_Id table_id) override |
| |
| void | rename_table (Table_Id table_id, const std::string &name) override |
| |
| void | add_field (Table_Id table_id, const std::string &name, joedb::Type type) override |
| |
| void | drop_field (Table_Id table_id, Field_Id field_id) override |
| |
| void | rename_field (Table_Id table_id, Field_Id field_id, const std::string &name) override |
| |
| void | custom (const std::string &name) override |
| |
| bool | is_valid_record_id_for_city (Record_Id record_id) const |
| |
| void | internal_delete_city (Record_Id record_id) |
| |
| void | internal_insert_city (Record_Id record_id) |
| |
| void | internal_vector_insert_city (Record_Id record_id, size_t size) |
| |
| void | internal_update_city__name (Record_Id record_id, const std::string &field_value_of_name) |
| |
| void | internal_update_vector_city__name (Record_Id record_id, size_t size, const std::string *value) |
| |
| joedb::index_t | max_record_id |
| |
| Table_Id | current_table_id = Table_Id{0} |
| |
| bool | upgrading_schema = false |
| |
| joedb::Memory_File | schema_file |
| |
| joedb::Writable_Journal | schema_journal |
| |
| detail::data_of_city | storage_of_city |
| |
Definition at line 29 of file Writable_Database.h.