[translation] : placeholders are missed out for Translation (Case:585261)
[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         try:
189             return cls.registries[db_name]
190         except KeyError:
191             return cls.new(db_name, force_demo, status,
192                            update_module)
193
194     @classmethod
195     def new(cls, db_name, force_demo=False, status=None,
196             update_module=False):
197         """ Create and return a new registry for a given database name.
198
199         The (possibly) previous registry for that database name is discarded.
200
201         """
202         import openerp.modules
203         with cls.registries_lock:
204             registry = Registry(db_name)
205
206             # Initializing a registry will call general code which will in turn
207             # call registries.get (this object) to obtain the registry being
208             # initialized. Make it available in the registries dictionary then
209             # remove it if an exception is raised.
210             cls.delete(db_name)
211             cls.registries[db_name] = registry
212             try:
213                 # This should be a method on Registry
214                 openerp.modules.load_modules(registry.db, force_demo, status, update_module)
215             except Exception:
216                 del cls.registries[db_name]
217                 raise
218
219             # load_modules() above can replace the registry by calling
220             # indirectly new() again (when modules have to be uninstalled).
221             # Yeah, crazy.
222             registry = cls.registries[db_name]
223
224             cr = registry.db.cursor()
225             try:
226                 Registry.setup_multi_process_signaling(cr)
227                 registry.do_parent_store(cr)
228                 registry.get('ir.actions.report.xml').register_all(cr)
229                 cr.commit()
230             finally:
231                 cr.close()
232
233         registry.ready = True
234
235         return registry
236
237     @classmethod
238     def delete(cls, db_name):
239         """Delete the registry linked to a given database.  """
240         with cls.registries_lock:
241             if db_name in cls.registries:
242                 cls.registries[db_name].clear_caches()
243                 del cls.registries[db_name]
244
245     @classmethod
246     def delete_all(cls):
247         """Delete all the registries. """
248         with cls.registries_lock:
249             for db_name in cls.registries.keys():
250                 cls.delete(db_name)
251
252     @classmethod
253     def clear_caches(cls, db_name):
254         """Clear caches
255
256         This clears the caches associated to methods decorated with
257         ``tools.ormcache`` or ``tools.ormcache_multi`` for all the models
258         of the given database name.
259
260         This method is given to spare you a ``RegistryManager.get(db_name)``
261         that would loads the given database if it was not already loaded.
262         """
263         with cls.registries_lock:
264             if db_name in cls.registries:
265                 cls.registries[db_name].clear_caches()
266
267     @classmethod
268     def check_registry_signaling(cls, db_name):
269         if openerp.multi_process and db_name in cls.registries:
270             registry = cls.get(db_name)
271             cr = registry.db.cursor()
272             try:
273                 cr.execute("""
274                     SELECT base_registry_signaling.last_value,
275                            base_cache_signaling.last_value
276                     FROM base_registry_signaling, base_cache_signaling""")
277                 r, c = cr.fetchone()
278                 # Check if the model registry must be reloaded (e.g. after the
279                 # database has been updated by another process).
280                 if registry.base_registry_signaling_sequence != r:
281                     _logger.info("Reloading the model registry after database signaling.")
282                     registry = cls.new(db_name)
283                     registry.base_registry_signaling_sequence = r
284                 # Check if the model caches must be invalidated (e.g. after a write
285                 # occured on another process). Don't clear right after a registry
286                 # has been reload.
287                 elif registry.base_cache_signaling_sequence != c:
288                     _logger.info("Invalidating all model caches after database signaling.")
289                     registry.base_cache_signaling_sequence = c
290                     registry.clear_caches()
291                     registry.reset_any_cache_cleared()
292                     # One possible reason caches have been invalidated is the
293                     # use of decimal_precision.write(), in which case we need
294                     # to refresh fields.float columns.
295                     for model in registry.models.values():
296                         for column in model._columns.values():
297                             if hasattr(column, 'digits_change'):
298                                 column.digits_change(cr)
299             finally:
300                 cr.close()
301
302     @classmethod
303     def signal_caches_change(cls, db_name):
304         if openerp.multi_process and db_name in cls.registries:
305             # Check the registries if any cache has been cleared and signal it
306             # through the database to other processes.
307             registry = cls.get(db_name)
308             if registry.any_cache_cleared():
309                 _logger.info("At least one model cache has been cleared, signaling through the database.")
310                 cr = registry.db.cursor()
311                 r = 1
312                 try:
313                     cr.execute("select nextval('base_cache_signaling')")
314                     r = cr.fetchone()[0]
315                 finally:
316                     cr.close()
317                 registry.base_cache_signaling_sequence = r
318                 registry.reset_any_cache_cleared()
319
320     @classmethod
321     def signal_registry_change(cls, db_name):
322         if openerp.multi_process and db_name in cls.registries:
323             registry = cls.get(db_name)
324             cr = registry.db.cursor()
325             r = 1
326             try:
327                 cr.execute("select nextval('base_registry_signaling')")
328                 r = cr.fetchone()[0]
329             finally:
330                 cr.close()
331             registry.base_registry_signaling_sequence = r
332
333 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: