From 5f5626314a40a47f53773f386e90e3bb6adfa96a Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 6 May 2024 21:42:07 +0200 Subject: 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. --- model/storage.go | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'model') 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) - } - } -} -- cgit v1.2.3-70-g09d2