]> git.jsancho.org Git - mojodb.git/blob - collection.py
Field _id in documents is treated as one more field: can be string, list, dictionary...
[mojodb.git] / collection.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    mojo, a Python library for implementing document based databases
5 #    Copyright (C) 2013-2014 by Javier Sancho Fernandez <jsf at jsancho dot org>
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation, either version 3 of the License, or
10 #    (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16 #
17 #    You should have received a copy of the GNU General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import msgpack
23 from cursor import Cursor
24 import uuid
25
26 class Collection(object):
27     def __init__(self, database, table_name):
28         self.database = database
29         self.table_name = str(table_name)
30
31     def __repr__(self):
32         return "Collection(%r, %r)" % (self.database, self.table_name)
33
34     def exists(self):
35         return (self.database.exists() and self.table_name in self.database.collection_names())
36
37     def _create_field(self, field_name):
38         fields = [
39             {'name': 'id', 'type': 'char', 'size': 512, 'primary': True},
40             {'name': 'value', 'type': 'text', 'null': False},
41             {'name': 'number', 'type': 'float'},
42             ]
43         return self.database.connection._create_table(self.database.db_name, '%s$%s' % (self.table_name, field_name), fields)
44
45     def _get_fields(self):
46         tables = self.database.connection._get_tables(self.database.db_name)
47         return [str(x[x.find('$')+1:]) for x in filter(lambda x: x.startswith('%s$' % self.table_name), tables)]
48
49     def count(self):
50         return self.database.connection._count(self.database.db_name, self.table_name)
51
52     def find(self, *args, **kwargs):
53         return Cursor(self, *args, **kwargs)
54
55     def insert(self, doc_or_docs):
56         if not self.database.db_name in self.database.connection.database_names():
57             self.database._create_database()
58         if not self.table_name in self.database.collection_names():
59             self._create_field('_id')
60
61         if not type(doc_or_docs) in (list, tuple):
62             docs = [doc_or_docs]
63         else:
64             docs = doc_or_docs
65         for doc in docs:
66             doc_id = uuid.uuid4().hex
67             if not '_id' in doc:
68                 doc['_id'] = doc_id
69             self._insert_document(doc_id, doc)
70
71         if type(doc_or_docs) in (list, tuple):
72             return [d['_id'] for d in docs]
73         else:
74             return docs[0]['_id']
75
76     def _insert_document(self, doc_id, doc):
77         fields = self._get_fields()
78         for f in doc:
79             if not f in fields:
80                 self._create_field(f)
81             values = {
82                 'id': doc_id,
83                 'value': msgpack.dumps(doc[f]),
84                 }
85             if type(doc[f]) in (int, float):
86                 values['number'] = doc[f]
87             table_f = '%s$%s' % (self.table_name, f)
88             self.database.connection._insert(self.database.db_name, table_f, values)