[FIX] base_calendar: when searching on events, avoid getting an error if virtual_id...
[odoo/odoo.git] / openerp / modules / registry.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (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 Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 """ Models registries.
23
24 """
25 from contextlib import contextmanager
26 import logging
27 import threading
28
29 import openerp.sql_db
30 import openerp.osv.orm
31 import openerp.tools
32 import openerp.modules.db
33 import openerp.tools.config
34 from openerp.tools import assertion_report
35
36 _logger = logging.getLogger(__name__)
37
38 class Registry(object):
39     """ Model registry for a particular database.
40
41     The registry is essentially a mapping between model names and model
42     instances. There is one registry instance per database.
43
44     """
45
46     def __init__(self, db_name):
47         self.models = {}    # model name/model instance mapping
48         self._sql_error = {}
49         self._store_function = {}
50         self._init = True
51         self._init_parent = {}
52         self._assertion_report = assertion_report.assertion_report()
53         self.fields_by_model = None
54
55         # modules fully loaded (maintained during init phase by `loading` module)
56         self._init_modules = set()
57
58         self.db_name = db_name
59         self.db = openerp.sql_db.db_connect(db_name)
60
61         # Indicates that the registry is 
62         self.ready = False
63
64         # Inter-process signaling (used only when openerp.multi_process is True):
65         # The `base_registry_signaling` sequence indicates the whole registry
66         # must be reloaded.
67         # The `base_cache_signaling sequence` indicates all caches must be
68         # invalidated (i.e. cleared).
69         self.base_registry_signaling_sequence = 1
70         self.base_cache_signaling_sequence = 1
71
72         # Flag indicating if at least one model cache has been cleared.
73         # Useful only in a multi-process context.
74         self._any_cache_cleared = False
75
76         cr = self.db.cursor()
77         has_unaccent = openerp.modules.db.has_unaccent(cr)
78         if openerp.tools.config['unaccent'] and not has_unaccent:
79             _logger.warning("The option --unaccent was given but no unaccent() function was found in database.")
80         self.has_unaccent = openerp.tools.config['unaccent'] and has_unaccent
81         cr.close()
82
83     def do_parent_store(self, cr):
84         for o in self._init_parent:
85             self.get(o)._parent_store_compute(cr)
86         self._init = False
87
88     def obj_list(self):
89         """ Return the list of model names in this registry."""
90         return self.models.keys()
91
92     def add(self, model_name, model):
93         """ Add or replace a model in the registry."""
94         self.models[model_name] = model
95
96     def get(self, model_name):
97         """ Return a model for a given name or None if it doesn't exist."""
98         return self.models.get(model_name)
99
100     def __getitem__(self, model_name):
101         """ Return a model for a given name or raise KeyError if it doesn't exist."""
102         return self.models[model_name]
103
104     def load(self, cr, module):
105         """ Load a given module in the registry.
106
107         At the Python level, the modules are already loaded, but not yet on a
108         per-registry level. This method populates a registry with the given
109         modules, i.e. it instanciates all the classes of a the given module
110         and registers them in the registry.
111
112         """
113         models_to_load = [] # need to preserve loading order
114         # Instantiate registered classes (via the MetaModel automatic discovery
115         # or via explicit constructor call), and add them to the pool.
116         for cls in openerp.osv.orm.MetaModel.module_to_models.get(module.name, []):
117             # models register themselves in self.models
118             model = cls.create_instance(self, cr)
119             if model._name not in models_to_load:
120                 # avoid double-loading models whose declaration is split
121                 models_to_load.append(model._name)
122         return [self.models[m] for m in models_to_load]
123
124     def clear_caches(self):
125         """ Clear the caches
126         This clears the caches associated to methods decorated with
127         ``tools.ormcache`` or ``tools.ormcache_multi`` for all the models.
128         """
129         for model in self.models.itervalues():
130             model.clear_caches()
131         # Special case for ir_ui_menu which does not use openerp.tools.ormcache.
132         ir_ui_menu = self.models.get('ir.ui.menu')
133         if ir_ui_menu:
134             ir_ui_menu.clear_cache()
135
136
137     # Useful only in a multi-process context.
138     def reset_any_cache_cleared(self):
139         self._any_cache_cleared = False
140
141     # Useful only in a multi-process context.
142     def any_cache_cleared(self):
143         return self._any_cache_cleared
144
145     @classmethod
146     def setup_multi_process_signaling(cls, cr):
147         if not openerp.multi_process:
148             return
149
150         # Inter-process signaling:
151         # The `base_registry_signaling` sequence indicates the whole registry
152         # must be reloaded.
153         # The `base_cache_signaling sequence` indicates all caches must be
154         # invalidated (i.e. cleared).
155         cr.execute("""SELECT sequence_name FROM information_schema.sequences WHERE sequence_name='base_registry_signaling'""")
156         if not cr.fetchall():
157             cr.execute("""CREATE SEQUENCE base_registry_signaling INCREMENT BY 1 START WITH 1""")
158             cr.execute("""SELECT nextval('base_registry_signaling')""")
159             cr.execute("""CREATE SEQUENCE base_cache_signaling INCREMENT BY 1 START WITH 1""")
160             cr.execute("""SELECT nextval('base_cache_signaling')""")
161
162     @contextmanager
163     def cursor(self, auto_commit=True):
164         cr = self.db.cursor()
165         try:
166             yield cr
167             if auto_commit:
168                 cr.commit()
169         finally:
170             cr.close()
171
172
173 class RegistryManager(object):
174     """ Model registries manager.
175
176         The manager is responsible for creation and deletion of model
177         registries (essentially database connection/model registry pairs).
178
179     """
180     # Mapping between db name and model registry.
181     # Accessed through the methods below.
182     registries = {}
183     registries_lock = threading.RLock()
184
185     @classmethod
186     def get(cls, db_name, force_demo=False, status=None, update_module=False):
187         """ Return a registry for a given database name."""
188         with cls.registries_lock:
189             try:
190                 return cls.registries[db_name]
191             except KeyError:
192                 return cls.new(db_name, force_demo, status,
193                                update_module)
194             finally:
195                 # set db tracker - cleaned up at the WSGI
196                 # dispatching phase in openerp.service.wsgi_server.application
197                 threading.current_thread().dbname = db_name
198
199     @classmethod
200     def new(cls, db_name, force_demo=False, status=None,
201             update_module=False):
202         """ Create and return a new registry for a given database name.
203
204         The (possibly) previous registry for that database name is discarded.
205
206         """
207         import openerp.modules
208         with cls.registries_lock:
209             registry = Registry(db_name)
210
211             # Initializing a registry will call general code which will in turn
212             # call registries.get (this object) to obtain the registry being
213             # initialized. Make it available in the registries dictionary then
214             # remove it if an exception is raised.
215             cls.delete(db_name)
216             cls.registries[db_name] = registry
217             try:
218                 # This should be a method on Registry
219                 openerp.modules.load_modules(registry.db, force_demo, status, update_module)
220             except Exception:
221                 del cls.registries[db_name]
222                 raise
223
224             # load_modules() above can replace the registry by calling
225             # indirectly new() again (when modules have to be uninstalled).
226             # Yeah, crazy.
227             registry = cls.registries[db_name]
228
229             cr = registry.db.cursor()
230             try:
231                 Registry.setup_multi_process_signaling(cr)
232                 registry.do_parent_store(cr)
233                 registry.get('ir.actions.report.xml').register_all(cr)
234                 cr.commit()
235             finally:
236                 cr.close()
237
238         registry.ready = True
239
240         if update_module:
241             # only in case of update, otherwise we'll have an infinite reload loop!
242             cls.signal_registry_change(db_name)
243         return registry
244
245     @classmethod
246     def delete(cls, db_name):
247         """Delete the registry linked to a given database.  """
248         with cls.registries_lock:
249             if db_name in cls.registries:
250                 cls.registries[db_name].clear_caches()
251                 del cls.registries[db_name]
252
253     @classmethod
254     def delete_all(cls):
255         """Delete all the registries. """
256         with cls.registries_lock:
257             for db_name in cls.registries.keys():
258                 cls.delete(db_name)
259
260     @classmethod
261     def clear_caches(cls, db_name):
262         """Clear caches
263
264         This clears the caches associated to methods decorated with
265         ``tools.ormcache`` or ``tools.ormcache_multi`` for all the models
266         of the given database name.
267
268         This method is given to spare you a ``RegistryManager.get(db_name)``
269         that would loads the given database if it was not already loaded.
270         """
271         with cls.registries_lock:
272             if db_name in cls.registries:
273                 cls.registries[db_name].clear_caches()
274
275     @classmethod
276     def check_registry_signaling(cls, db_name):
277         if openerp.multi_process and db_name in cls.registries:
278             registry = cls.get(db_name)
279             cr = registry.db.cursor()
280             try:
281                 cr.execute("""
282                     SELECT base_registry_signaling.last_value,
283                            base_cache_signaling.last_value
284                     FROM base_registry_signaling, base_cache_signaling""")
285                 r, c = cr.fetchone()
286                 # Check if the model registry must be reloaded (e.g. after the
287                 # database has been updated by another process).
288                 if registry.base_registry_signaling_sequence > 1 and registry.base_registry_signaling_sequence != r:
289                     _logger.info("Reloading the model registry after database signaling.")
290                     registry = cls.new(db_name)
291                 # Check if the model caches must be invalidated (e.g. after a write
292                 # occured on another process). Don't clear right after a registry
293                 # has been reload.
294                 elif registry.base_cache_signaling_sequence > 1 and registry.base_cache_signaling_sequence != c:
295                     _logger.info("Invalidating all model caches after database signaling.")
296                     registry.clear_caches()
297                     registry.reset_any_cache_cleared()
298                     # One possible reason caches have been invalidated is the
299                     # use of decimal_precision.write(), in which case we need
300                     # to refresh fields.float columns.
301                     for model in registry.models.values():
302                         for column in model._columns.values():
303                             if hasattr(column, 'digits_change'):
304                                 column.digits_change(cr)
305                 registry.base_registry_signaling_sequence = r
306                 registry.base_cache_signaling_sequence = c
307             finally:
308                 cr.close()
309
310     @classmethod
311     def signal_caches_change(cls, db_name):
312         if openerp.multi_process and db_name in cls.registries:
313             # Check the registries if any cache has been cleared and signal it
314             # through the database to other processes.
315             registry = cls.get(db_name)
316             if registry.any_cache_cleared():
317                 _logger.info("At least one model cache has been cleared, signaling through the database.")
318                 cr = registry.db.cursor()
319                 r = 1
320                 try:
321                     cr.execute("select nextval('base_cache_signaling')")
322                     r = cr.fetchone()[0]
323                 finally:
324                     cr.close()
325                 registry.base_cache_signaling_sequence = r
326                 registry.reset_any_cache_cleared()
327
328     @classmethod
329     def signal_registry_change(cls, db_name):
330         if openerp.multi_process and db_name in cls.registries:
331             registry = cls.get(db_name)
332             cr = registry.db.cursor()
333             r = 1
334             try:
335                 cr.execute("select nextval('base_registry_signaling')")
336                 r = cr.fetchone()[0]
337             finally:
338                 cr.close()
339             registry.base_registry_signaling_sequence = r
340
341 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: