memos/store/store.go

81 lines
1.6 KiB
Go
Raw Normal View History

2022-05-16 07:37:23 +08:00
package store
2022-05-22 00:59:22 +08:00
import (
2022-11-06 12:21:58 +08:00
"context"
2022-05-22 00:59:22 +08:00
"database/sql"
"sync"
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/server/profile"
2022-05-22 00:59:22 +08:00
)
2022-08-24 21:53:12 +08:00
// Store provides database access to all raw objects.
2022-05-16 07:37:23 +08:00
type Store struct {
2022-05-22 00:59:22 +08:00
db *sql.DB
2022-05-22 09:29:34 +08:00
profile *profile.Profile
userCache sync.Map // map[int]*userRaw
userSettingCache sync.Map // map[string]*userSettingRaw
memoCache sync.Map // map[int]*memoRaw
shortcutCache sync.Map // map[int]*shortcutRaw
idpCache sync.Map // map[int]*identityProviderMessage
2022-05-16 07:37:23 +08:00
}
2022-08-24 21:53:12 +08:00
// New creates a new instance of Store.
2022-05-22 09:29:34 +08:00
func New(db *sql.DB, profile *profile.Profile) *Store {
2022-05-16 07:37:23 +08:00
return &Store{
2022-05-22 00:59:22 +08:00
db: db,
profile: profile,
2022-05-16 07:37:23 +08:00
}
}
2022-11-06 12:21:58 +08:00
func (s *Store) Vacuum(ctx context.Context) error {
tx, err := s.db.BeginTx(ctx, nil)
if err != nil {
return FormatError(err)
}
defer tx.Rollback()
if err := vacuum(ctx, tx); err != nil {
return err
}
if err := tx.Commit(); err != nil {
return FormatError(err)
}
// Vacuum sqlite database file size after deleting resource.
if _, err := s.db.Exec("VACUUM"); err != nil {
return err
}
return nil
}
2022-11-26 14:23:29 +08:00
// Exec vacuum records in a transaction.
2022-11-06 12:21:58 +08:00
func vacuum(ctx context.Context, tx *sql.Tx) error {
if err := vacuumMemo(ctx, tx); err != nil {
return err
}
if err := vacuumResource(ctx, tx); err != nil {
return err
}
if err := vacuumShortcut(ctx, tx); err != nil {
return err
}
if err := vacuumUserSetting(ctx, tx); err != nil {
return err
}
if err := vacuumMemoOrganizer(ctx, tx); err != nil {
return err
}
if err := vacuumMemoResource(ctx, tx); err != nil {
return err
}
if err := vacuumTag(ctx, tx); err != nil {
2022-11-06 12:21:58 +08:00
// Prevent revive warning.
return err
}
return nil
}