summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-06 21:42:07 +0200
committerxengineering <me@xengineering.eu>2024-05-06 21:42:07 +0200
commit5f5626314a40a47f53773f386e90e3bb6adfa96a (patch)
tree144786e46027dfc9e78fec5dae615aa21dd15629
parent250fc80c3c15cd38a518af5c256e2ba619295f5f (diff)
downloadceres-5f5626314a40a47f53773f386e90e3bb6adfa96a.tar
ceres-5f5626314a40a47f53773f386e90e3bb6adfa96a.tar.zst
ceres-5f5626314a40a47f53773f386e90e3bb6adfa96a.zip
model: Do not write version.txt inside storage
The intention of this file was that a Ceres executable could compare its version with the version of the storage folder. If the versions match the storage folder could be directly used. If the storage version is lower the executable can apply migrations to the storage folder until the versions match. The problem is that executing migrations inside the database and updating the version.txt cannot be atomic. In contrast the version string could be saved inside the database itself in a metadata table. In that case the migration together with the update of the version string can be executed inside one database transaction which guarantees atomicity. The problem could still be that migrations should be applied also to the files and folders inside the storage folder. This problem can only be avoided by not using files to store data and instead use the BLOB datatype if necessary. Even in case of a future filesystem use it is still better to have the guarantee that the database with file paths and metadata and the there included version string are in sync.
-rw-r--r--main.go1
-rw-r--r--model/storage.go11
2 files changed, 0 insertions, 12 deletions
diff --git a/main.go b/main.go
index 07e1c90..34d2425 100644
--- a/main.go
+++ b/main.go
@@ -38,7 +38,6 @@ func main() {
storage.Create()
}
log.Printf("Storage directory: %s\n", storage.Path)
- storage.Init(gitDescribe)
model.InitDatabase(config.StorageFilePath)
defer model.CloseDatabase()
diff --git a/model/storage.go b/model/storage.go
index 231cbb6..59cd39e 100644
--- a/model/storage.go
+++ b/model/storage.go
@@ -3,7 +3,6 @@ package model
import (
"log"
"os"
- "path/filepath"
)
type Storage struct {
@@ -25,13 +24,3 @@ func (s Storage) Create() {
log.Fatal(err)
}
}
-
-func (s *Storage) Init(version string) {
- if version != "" {
- vp := filepath.Join(s.Path, "version.txt")
- err := os.WriteFile(vp, []byte(version+"\n"), 0644)
- if err != nil {
- log.Fatal(err)
- }
- }
-}