drop support for the early 2.0 release media db format
This commit is contained in:
parent
78f20d05a9
commit
e5f2e0df92
@ -8,7 +8,6 @@ import json
|
|||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
import traceback
|
|
||||||
import unicodedata
|
import unicodedata
|
||||||
import urllib.error
|
import urllib.error
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
@ -70,7 +69,6 @@ class MediaManager:
|
|||||||
self.db = DB(path)
|
self.db = DB(path)
|
||||||
if create:
|
if create:
|
||||||
self._initDB()
|
self._initDB()
|
||||||
self.maybeUpgrade()
|
|
||||||
|
|
||||||
def _initDB(self) -> None:
|
def _initDB(self) -> None:
|
||||||
self.db.executescript(
|
self.db.executescript(
|
||||||
@ -88,37 +86,6 @@ create table meta (dirMod int, lastUsn int); insert into meta values (0, 0);
|
|||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
|
|
||||||
def maybeUpgrade(self) -> None:
|
|
||||||
oldpath = self.dir() + ".db"
|
|
||||||
if os.path.exists(oldpath):
|
|
||||||
self.db.execute('attach "../collection.media.db" as old')
|
|
||||||
try:
|
|
||||||
self.db.execute(
|
|
||||||
"""
|
|
||||||
insert into media
|
|
||||||
select m.fname, csum, mod, ifnull((select 1 from log l2 where l2.fname=m.fname), 0) as dirty
|
|
||||||
from old.media m
|
|
||||||
left outer join old.log l using (fname)
|
|
||||||
union
|
|
||||||
select fname, null, 0, 1 from old.log where type=1;"""
|
|
||||||
)
|
|
||||||
self.db.execute("delete from meta")
|
|
||||||
self.db.execute(
|
|
||||||
"""
|
|
||||||
insert into meta select dirMod, usn from old.meta
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
self.db.commit()
|
|
||||||
except Exception as e:
|
|
||||||
# if we couldn't import the old db for some reason, just start
|
|
||||||
# anew
|
|
||||||
self.col.log("failed to import old media db:" + traceback.format_exc())
|
|
||||||
self.db.execute("detach old")
|
|
||||||
npath = "../collection.media.db.old"
|
|
||||||
if os.path.exists(npath):
|
|
||||||
os.unlink(npath)
|
|
||||||
os.rename("../collection.media.db", npath)
|
|
||||||
|
|
||||||
def close(self) -> None:
|
def close(self) -> None:
|
||||||
if self.col.server:
|
if self.col.server:
|
||||||
return
|
return
|
||||||
|
Loading…
Reference in New Issue
Block a user