]> git.phdru.name Git - m_librarian.git/blobdiff - m_librarian/db.py
Pass keywords parameters to insert_name
[m_librarian.git] / m_librarian / db.py
index 9eb50d57321d01060d032fcb83d4bc7c484834a0..c77e32fc554a092f18dfddaf6d782ce2efa0560b 100755 (executable)
@@ -1,12 +1,13 @@
 #! /usr/bin/env python
 
 __all__ = ['Author', 'Book', 'Extension', 'Genre', 'Language',
-           'init_db',
+           'init_db', 'insert_name',
            ]
 
 import os
 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
-    ForeignKey, DateCol, connectionForURI, sqlhub, dberrors
+    ForeignKey, DateCol, RelatedJoin, \
+    connectionForURI, sqlhub, SQLObjectNotFound, dberrors
 from .config import ml_conf
 
 try:
@@ -39,25 +40,35 @@ if not db_uri:
 
     db_uri = 'sqlite://%s' % db_file.replace(os.sep, '/')
 
-sqlhub.processConnection = connectionForURI(db_uri)
+
+sqlhub.processConnection = connection = connectionForURI(db_uri)
+
+if connection.dbName == 'sqlite':
+    # Speedup SQLite connection
+    connection.query("PRAGMA synchronous=OFF")
+    connection.query("PRAGMA count_changes=OFF")
+    connection.query("PRAGMA journal_mode=MEMORY")
+    connection.query("PRAGMA temp_store=MEMORY")
 
 
 class Author(SQLObject):
     name = UnicodeCol(unique=True)
     count = IntCol()
+    books = RelatedJoin('Book', otherColumn='book_id')
 
 
 class Book(SQLObject):
-    author = ForeignKey('Author')
-    genre = ForeignKey('Genre')
+    authors = RelatedJoin('Author')
+    genres = RelatedJoin('Genre')
     title = UnicodeCol()
     series = UnicodeCol()
     ser_no = IntCol()
+    archive = StringCol()
     file = StringCol()
     size = IntCol()
     lib_id = StringCol()
     deleted = BoolCol()
-    ext = ForeignKey('Extension')
+    extension = ForeignKey('Extension')
     date = DateCol()
     language = ForeignKey('Language')
 
@@ -71,6 +82,7 @@ class Genre(SQLObject):
     name = StringCol(unique=True)
     title = UnicodeCol()
     count = IntCol()
+    books = RelatedJoin('Book', otherColumn='book_id')
 
 
 class Language(SQLObject):
@@ -90,6 +102,13 @@ def init_db():
         return
 
 
+def insert_name(table, name, **kw):
+    try:
+        return table.byName(name)
+    except SQLObjectNotFound:
+        return table(name=name, count=0, **kw)
+
+
 def test():
     print "DB dirs:", db_dirs
     if db_uri: