Skip to content

egse.persistence

cgse-common

This code is part of the cgse-common package.

egse.persistence

Classes:

Name Description
PersistenceLayer

The Persistence Layer implements the CRUD paradigm for storing data.

PersistenceLayer

Bases: ABC

The Persistence Layer implements the CRUD paradigm for storing data.

Methods:

Name Description
close

Closes the resource.

create

Creates an entry in the persistence store.

delete

Deletes the entry for index idx from the persistence store.

exists

Returns True if the resource exists, False otherwise.

get_filepath

If this persistence class is file based, return its file path, otherwise return None.

open

Opens the resource.

read

Returns a list of all entries in the persistence store.

update

Updates the entry for index idx in the persistence store.

Attributes:

Name Type Description
extension

The file extension to use for this persistence type.

extension class-attribute instance-attribute

extension = 'no_ext'

The file extension to use for this persistence type.

close abstractmethod

close()

Closes the resource.

create abstractmethod

create(data)

Creates an entry in the persistence store.

delete abstractmethod

delete(idx)

Deletes the entry for index idx from the persistence store.

exists abstractmethod

exists()

Returns True if the resource exists, False otherwise.

get_filepath abstractmethod

get_filepath()

If this persistence class is file based, return its file path, otherwise return None.

open abstractmethod

open(mode=None)

Opens the resource.

read abstractmethod

read(select=None)

Returns a list of all entries in the persistence store.

The list can be filtered based on a selection from the select argument which should be a Callable object.

Parameters:

Name Type Description Default
select Callable

a filter function to narrow down the list of all entries.

None

update abstractmethod

update(idx, data)

Updates the entry for index idx in the persistence store.