SQLCatalog.py 93.4 KB
Newer Older
1
# -*- coding: utf-8 -*-
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2 3
##############################################################################
#
4
# Copyright (c) 2002-2009 Nexedi SARL. All Rights Reserved.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
5 6 7 8 9 10 11 12 13 14 15
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################

16
from __future__ import absolute_import
17 18 19
import six
from six import string_types as basestring
from six.moves import xrange
20
from Persistence import Persistent, PersistentMapping
Jean-Paul Smets's avatar
Jean-Paul Smets committed
21 22
import Acquisition
import ExtensionClass
23
import OFS.History
24 25
from App.class_init import default__class_init__ as InitializeClass
from App.special_dtml import DTMLFile
26
from _thread import allocate_lock, get_ident
27
from OFS.Folder import Folder
28
from AccessControl import ClassSecurityInfo
29 30 31 32 33
from AccessControl.Permissions import (
  access_contents_information,
  import_export_objects,
  manage_zcatalog_entries,
)
34
from AccessControl.SimpleObjectPolicies import ContainerAssertions
35
from BTrees.OIBTree import OIBTree
36 37
from App.config import getConfiguration
from BTrees.Length import Length
38
from Shared.DC.ZRDB.DA import DatabaseError
39
from Shared.DC.ZRDB.TM import TM
Jean-Paul Smets's avatar
Jean-Paul Smets committed
40

41
from Acquisition import aq_parent, aq_inner, aq_base
42
from zLOG import LOG, WARNING, INFO, TRACE, ERROR
43
from ZODB.POSException import ConflictError
44
from Products.CMFCore import permissions
45
from Products.PythonScripts.Utility import allow_class
46
from Products.ERP5Type.Utils import ensure_list
Jean-Paul Smets's avatar
Jean-Paul Smets committed
47

48
from inspect import CO_VARKEYWORDS
49
from functools import wraps
Jean-Paul Smets's avatar
Jean-Paul Smets committed
50
import time
51
from six.moves import urllib
52
import pprint
53 54
import re
import warnings
55
from contextlib import contextmanager
56
from xml.dom.minidom import parse
57
from xml.sax.saxutils import escape, quoteattr
58
import os
59
from hashlib import md5
60

61
from .interfaces.query_catalog import ISearchKeyCatalog
62
from zope.interface.verify import verifyClass
63
from zope.interface import implementer
64

65
from .SearchText import isAdvancedSearchText, dequote
66

67 68 69
if six.PY3:
  long = int

70 71 72 73
# Try to import ActiveObject in order to make SQLCatalog active
try:
  from Products.CMFActivity.ActiveObject import ActiveObject
except ImportError:
74
  ActiveObject = ExtensionClass.Base
75

76 77 78 79
try:
  from Products.CMFCore.Expression import Expression
  from Products.PageTemplates.Expressions import getEngine
  from Products.CMFCore.utils import getToolByName
80
  new_context_search = re.compile(r'\bcontext\b').search
81 82 83 84
  withCMF = 1
except ImportError:
  withCMF = 0

85 86 87
@contextmanager
def noReadOnlyTransactionCache():
  yield
88
try:
89
  from Products.ERP5Type.Cache import readOnlyTransactionCache
90
except ImportError:
Arnaud Fontaine's avatar
Arnaud Fontaine committed
91
  LOG('SQLCatalog', WARNING, 'Count not import readOnlyTransactionCache, expect slowness.')
92
  readOnlyTransactionCache = noReadOnlyTransactionCache
93 94 95 96

try:
  from Products.ERP5Type.TransactionalVariable import getTransactionalVariable
except ImportError:
97
  LOG('SQLCatalog', WARNING, 'Count not import getTransactionalVariable, expect slowness.')
98
  def getTransactionalVariable():
99
    return {}
100 101 102 103 104
  def transactional_cache_decorator(method):
    return method
else:
  def transactional_cache_decorator(method):
    """
105 106
    Implements singleton-style caching.
    Wrapped method must have no parameters (besides "self").
107 108 109 110 111 112 113 114 115 116 117 118
    """
    cache_id = id(method)
    @wraps(method)
    def wrapper(self):
      # XXX: getPhysicalPath is overkill for a unique cache identifier.
      # What I would like to use instead of it is:
      #   (self._p_jar.db().database_name, self._p_oid)
      # but database_name is not unique in at least ZODB 3.4 (Zope 2.8.8).
      try:
        instance_id = self._v_physical_path
      except AttributeError:
        self._v_physical_path = instance_id = self.getPhysicalPath()
119
      try:
120 121 122 123 124
        return getTransactionalVariable()[(
          cache_id,
          self._cache_sequence_number,
          instance_id,
        )]
125
      except KeyError:
126 127 128 129 130 131
        getTransactionalVariable()[(
          cache_id,
          self._cache_sequence_number,
          instance_id,
        )] = result = method(self)
        return result
132 133
    return wrapper

134
list_type_list = list, tuple, set, frozenset
135 136 137 138
try:
  from ZPublisher.HTTPRequest import record
except ImportError:
  dict_type_list = (dict, )
139 140
else:
  dict_type_list = (dict, record)
141 142


143
UID_BUFFER_SIZE = 300
144
OBJECT_LIST_SIZE = 300 # XXX 300 is arbitrary value of catalog object list
145
MAX_PATH_LEN = 255
146 147 148 149
DOMAIN_STRICT_MEMBERSHIP_DICT = {
  'selection_domain': False,
  'selection_report': True,
}
150

151
manage_addSQLCatalogForm = DTMLFile('dtml/addSQLCatalog',globals())
152

153 154 155 156 157
# Here go uid buffers
# Structure:
#  global_uid_buffer_dict[catalog_path][thread_id] = UidBuffer
global_uid_buffer_dict = {}

158
# These are global variables on memory, so shared only by threads in the same Zope instance.
159 160 161
# This is used for exclusive access to the list of reserved uids.
global_reserved_uid_lock = allocate_lock()

162 163 164
# This is set to the time when reserved uids are cleared in this Zope instance.
global_clear_reserved_time = None

165
def manage_addSQLCatalog(self, id, title,
166
             vocab_id='create_default_catalog_', # vocab_id is a strange name - not abbreviation
167 168 169
             REQUEST=None):
  """Add a Catalog object
  """
170 171 172
  id = str(id)
  title = str(title)
  vocab_id = str(vocab_id)
173 174 175
  if vocab_id == 'create_default_catalog_':
    vocab_id = None

176
  c = Catalog(id, title, self)
177 178 179 180
  self._setObject(id, c)
  if REQUEST is not None:
    return self.manage_main(self, REQUEST,update_menu=1)

181 182
class UidBuffer(TM):
  """Uid Buffer class caches a list of reserved uids in a transaction-safe way."""
183

Yoshinori Okuji's avatar
Yoshinori Okuji committed
184
  def __init__(self):
185
    """Initialize some variables.
186

187
      temporary_buffer is used to hold reserved uids created by non-committed transactions.
188

189
      finished_buffer is used to hold reserved uids created by committed-transactions.
190

191
      This distinction is important, because uids by non-committed transactions might become
Yoshinori Okuji's avatar
Yoshinori Okuji committed
192
      invalid afterwards, so they may not be used by other transactions."""
193 194
    self.temporary_buffer = {}
    self.finished_buffer = []
195

196 197 198 199 200 201 202 203
  def _finish(self):
    """Move the uids in the temporary buffer to the finished buffer."""
    tid = get_ident()
    try:
      self.finished_buffer.extend(self.temporary_buffer[tid])
      del self.temporary_buffer[tid]
    except KeyError:
      pass
204

205 206 207 208 209 210 211
  def _abort(self):
    """Erase the uids in the temporary buffer."""
    tid = get_ident()
    try:
      del self.temporary_buffer[tid]
    except KeyError:
      pass
212

213 214 215 216 217 218 219 220
  def __len__(self):
    tid = get_ident()
    l = len(self.finished_buffer)
    try:
      l += len(self.temporary_buffer[tid])
    except KeyError:
      pass
    return l
221

222 223 224 225 226 227 228 229 230 231 232
  def remove(self, value):
    self._register()
    for uid_list in self.temporary_buffer.values():
      try:
        uid_list.remove(value)
      except ValueError:
        pass
    try:
      self.finished_buffer.remove(value)
    except ValueError:
      pass
233

234 235 236 237
  def pop(self):
    self._register()
    tid = get_ident()
    try:
238
      uid = self.temporary_buffer[tid].pop()
239
    except (KeyError, IndexError):
240 241
      uid = self.finished_buffer.pop()
    return uid
242

243 244 245
  def extend(self, iterable):
    self._register()
    tid = get_ident()
Yoshinori Okuji's avatar
Yoshinori Okuji committed
246
    self.temporary_buffer.setdefault(tid, []).extend(iterable)
247

248 249 250 251
class DummyDict(dict):
  def __setitem__(self, key, value):
    pass

252 253 254 255 256 257 258 259 260 261 262 263
class LazyIndexationParameterList(tuple):
  def __new__(cls, document_list, attribute, global_cache):
    self = super(LazyIndexationParameterList, cls).__new__(cls)
    self._document_list = document_list
    self._attribute = attribute
    self._global_cache = global_cache
    return self

  def __getitem__(self, index):
    document = self._document_list[index]
    attribute = self._attribute
    global_cache_key = (document.uid, attribute)
264 265 266
    try:
      value = self._global_cache[global_cache_key]
    except KeyError:
267 268 269 270 271 272 273 274 275 276 277 278
      value = getattr(document, attribute, None)
      if callable(value):
        try:
          value = value()
        except ConflictError:
          raise
        except Exception:
          LOG('SQLCatalog', WARNING,
            'Failed to call method %s on %r' % (attribute, document),
            error=True,
          )
          value = None
279
      self._global_cache[global_cache_key] = value
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
    return value

  def __iter__(self):
    for index in xrange(len(self)):
      yield self[index]

  def __len__(self):
    return len(self._document_list)

  def __repr__(self):
    return '<%s(%i documents, %r) at %x>' % (self.__class__.__name__,
      len(self), self._attribute, id(self))

ContainerAssertions[LazyIndexationParameterList] = 1

295
related_key_warned_column_set = set()
296

297
@implementer(ISearchKeyCatalog)
298 299 300
class Catalog(Folder,
              Persistent,
              Acquisition.Implicit,
301
              ActiveObject,
302
              OFS.History.Historical):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
303 304 305 306
  """ An Object Catalog

  An Object Catalog maintains a table of object metadata, and a
  series of manageable indexes to quickly search for objects
307
  (references in the metadata) that satisfy search conditions.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
308 309 310 311 312 313 314 315

  This class is not Zope specific, and can be used in any python
  program to build catalogs of objects.  Note that it does require
  the objects to be Persistent, and thus must be used with ZODB3.

  uid -> the (local) universal ID of objects
  path -> the (local) path of objects

316 317
  If you pass it a keyword argument which is present in sql_catalog_full_text_search_keys
  (in catalog properties), it does a MySQL full-text search.
318 319 320
  Additionally you can pass it a search_mode argument ('natural', 'in_boolean_mode'
  or 'with_query_expansion') to use an advanced search mode ('natural'
  is the default).
321 322 323
  search_mode arg can be given for all full_text keys, or for a specific key by naming
  the argument search_mode_KeyName, or even more specifically, search_mode_Table.Key
  or search_mode_Table_Key
324

325
 """
326 327


328
  meta_type = "SQLCatalog"
329
  icon = 'misc_/ZCatalog/ZCatalog.gif' # FIXME: use a different icon
330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
  security = ClassSecurityInfo()

  manage_options = (
    {'label': 'Contents',       # TAB: Contents
     'action': 'manage_main',
     'help': ('OFSP','ObjectManager_Contents.stx')},
    {'label': 'Catalog',      # TAB: Catalogged Objects
     'action': 'manage_catalogView',
     'help':('ZCatalog','ZCatalog_Cataloged-Objects.stx')},
    {'label': 'Properties',     # TAB: Properties
     'action': 'manage_propertiesForm',
     'help': ('OFSP','Properties.stx')},
    {'label': 'Filter',     # TAB: Filter
     'action': 'manage_catalogFilter',},
    {'label': 'Find Objects',     # TAB: Find Objects
     'action': 'manage_catalogFind',
     'help':('ZCatalog','ZCatalog_Find-Items-to-ZCatalog.stx')},
    {'label': 'Advanced',       # TAB: Advanced
     'action': 'manage_catalogAdvanced',
     'help':('ZCatalog','ZCatalog_Advanced.stx')},
    {'label': 'Undo',         # TAB: Undo
     'action': 'manage_UndoForm',
     'help': ('OFSP','Undo.stx')},
    {'label': 'Security',       # TAB: Security
     'action': 'manage_access',
     'help': ('OFSP','Security.stx')},
    {'label': 'Ownership',      # TAB: Ownership
     'action': 'manage_owner',
     'help': ('OFSP','Ownership.stx'),}
359
    ) + OFS.History.Historical.manage_options
360

361
  __ac_permissions__= (
362 363

    ('Manage ZCatalog Entries',
364
     ['manage_catalogView', 'manage_catalogFind',
Yoshinori Okuji's avatar
Yoshinori Okuji committed
365 366
      'manage_catalogFilter',
      'manage_catalogAdvanced',
367
      'manage_main',],
368 369 370 371
     ['Manager']),

    ('Search ZCatalog',
     ['searchResults', '__call__', 'uniqueValuesFor',
Yoshinori Okuji's avatar
Yoshinori Okuji committed
372 373
      'all_meta_types', 'valid_roles',
      'getCatalogSearchTableIds',
374
      'getFilterableMethodList',],
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
     ['Anonymous', 'Manager']),

    )

  _properties = (
    { 'id'      : 'title',
      'description' : 'The title of this catalog',
      'type'    : 'string',
      'mode'    : 'w' },

    # Z SQL Methods
    { 'id'      : 'sql_catalog_clear_reserved',
      'description' : 'A method to clear reserved uid values',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
391 392 393 394 395
    { 'id'      : 'sql_catalog_delete_uid',
      'description' : 'A method to delete a uid value',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
396 397
    { 'id'      : 'sql_catalog_object_list',
      'description' : 'Methods to be called to catalog the list of objects',
398 399 400 401 402 403 404 405
      'type'    : 'multiple selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_uncatalog_object',
      'description' : 'Methods to be called to uncatalog an object',
      'type'    : 'multiple selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
406 407 408
    { 'id'      : 'sql_catalog_translation_list',
      'description' : 'Methods to be called to catalog the list of translation objects',
      'type'    : 'selection',
409 410
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
411 412 413
    { 'id'      : 'sql_delete_translation_list',
      'description' : 'Methods to be called to delete translations',
      'type'    : 'selection',
414 415
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
416 417
    { 'id'      : 'sql_clear_catalog',
      'description' : 'The methods which should be called to clear the catalog',
418 419 420
      'type'    : 'multiple selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
421
    { 'id'      : 'sql_record_object_list',
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
      'description' : 'Method to record catalog information',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_read_recorded_object_list',
      'description' : 'Method to get recorded information',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_delete_recorded_object_list',
      'description' : 'Method to delete recorded information',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_search_results',
      'description' : 'Main method to search the catalog',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
Aurel's avatar
Aurel committed
441 442 443 444 445
    { 'id'      : 'sql_search_security',
      'description' : 'Main method to search security',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
    { 'id'      : 'sql_search_tables',
      'description' : 'Tables to join in the result',
      'type'    : 'multiple selection',
      'select_variable' : 'getTableIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_search_result_keys',
      'description' : 'Keys to display in the result',
      'type'    : 'multiple selection',
      'select_variable' : 'getResultColumnIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_count_results',
      'description' : 'Main method to search the catalog',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_getitem_by_path',
      'description' : 'Get a catalog brain by path',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_getitem_by_uid',
      'description' : 'Get a catalog brain by uid',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
471 472 473 474 475
    { 'id'      : 'sql_optimizer_switch',
      'description': 'Method to get optimizer_switch value',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
476 477
    { 'id'      : 'sql_catalog_schema',
      'description' : 'Method to get the main catalog schema',
478 479 480
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
481
    { 'id'      : 'sql_catalog_multi_schema',
482 483 484 485
      'description' : 'Method to get the main catalog schema',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
486 487 488 489 490
    { 'id'      : 'sql_catalog_index',
      'description' : 'Method to get the main catalog index',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
491 492 493 494 495 496 497 498 499 500
    { 'id'      : 'sql_unique_values',
      'description' : 'Find unique disctinct values in a column',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_catalog_paths',
      'description' : 'List all object paths in catalog',
      'type'    : 'selection',
      'select_variable' : 'getCatalogMethodIds',
      'mode'    : 'w' },
501 502 503 504 505
    { 'id': 'sql_catalog_search_keys',
      'title': 'Search Key Mappings',
      'description': 'A list of Search Key mappings',
      'type': 'lines',
      'mode': 'w' },
506
    { 'id'      : 'sql_catalog_keyword_search_keys',
507
      'description' : 'Columns which should be considered as keyword search',
508 509 510
      'type'    : 'multiple selection',
      'select_variable' : 'getColumnIds',
      'mode'    : 'w' },
511
    { 'id'      : 'sql_catalog_datetime_search_keys',
512
      'description' : 'Columns which should be considered as datetime search',
513 514 515
      'type'    : 'multiple selection',
      'select_variable' : 'getColumnIds',
      'mode'    : 'w' },
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
    { 'id'      : 'sql_catalog_full_text_search_keys',
      'description' : 'Columns which should be considered as full text search',
      'type'    : 'multiple selection',
      'select_variable' : 'getColumnIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_catalog_request_keys',
      'description' : 'Columns which should be ignore in the REQUEST in order to accelerate caching',
      'type'    : 'multiple selection',
      'select_variable' : 'getColumnIds',
      'mode'    : 'w' },
    { 'id'      : 'sql_catalog_multivalue_keys',
      'description' : 'Keys which hold multiple values',
      'type'    : 'multiple selection',
      'select_variable' : 'getColumnIds',
      'mode'    : 'w' },
531 532 533 534 535
    { 'id'      : 'sql_catalog_index_on_order_keys',
      'description' : 'Columns which should be used by specifying an index when sorting on them',
      'type'    : 'multiple selection',
      'select_variable' : 'getSortColumnIds',
      'mode'    : 'w' },
536 537 538 539 540 541 542 543 544
    { 'id'      : 'sql_catalog_topic_search_keys',
      'description' : 'Columns which should be considered as topic index',
      'type'    : 'lines',
      'mode'    : 'w' },
    { 'id'      : 'sql_catalog_related_keys',
      'title'   : 'Related keys',
      'description' : 'Additional columns obtained through joins',
      'type'    : 'lines',
      'mode'    : 'w' },
545 546 547 548 549
    { 'id'      : 'sql_catalog_scriptable_keys',
      'title'   : 'Related keys',
      'description' : 'Virtual columns to generate scriptable scriptable queries',
      'type'    : 'lines',
      'mode'    : 'w' },
550 551 552 553 554 555 556
    { 'id': 'sql_catalog_role_keys',
      'title': 'Role keys',
      'description': 'Columns which should be used to map a monovalued role',
      'type': 'lines',
      'mode': 'w' },
    { 'id': 'sql_catalog_local_role_keys',
      'title': 'Local Role keys',
557
      'description': 'Columns which should be used to map a monovalued local role',
558 559
      'type': 'lines',
      'mode': 'w' },
560 561 562 563 564 565 566 567
    { 'id': 'sql_catalog_security_uid_columns',
      'title': 'Security Uid Columns',
      'description': 'A list of mappings "local_roles_group_id | security_uid_column"'
                     ' local_roles_group_id will be the name of a local roles'
                     ' group, and security_uid_column is the corresponding'
                     ' column in catalog table',
      'type': 'lines',
      'mode': 'w' },
568 569 570 571 572 573
    { 'id': 'sql_catalog_table_vote_scripts',
      'title': 'Table vote scripts',
      'description': 'Scripts helping column mapping resolution',
      'type': 'multiple selection',
      'select_variable' : 'getPythonMethodIds',
      'mode': 'w' },
574 575 576 577 578 579
    { 'id': 'sql_catalog_raise_error_on_uid_check',
      'title': 'Raise error on UID check',
      'description': 'Boolean used to tell if we raise error when uid check fail',
      'type': 'boolean',
      'default' : True,
      'mode': 'w' },
580

581 582
  )

583
  sql_catalog_delete_uid = ''
584 585 586 587 588 589 590 591 592 593
  sql_catalog_clear_reserved = ''
  sql_catalog_object_list = ()
  sql_uncatalog_object = ()
  sql_clear_catalog = ()
  sql_catalog_translation_list = ''
  sql_delete_translation_list = ''
  sql_record_object_list = ''
  sql_read_recorded_object_list = ''
  sql_delete_recorded_object_list = ''
  sql_search_results = ''
Aurel's avatar
Aurel committed
594
  sql_search_security = ''
595 596 597
  sql_count_results = ''
  sql_getitem_by_path = ''
  sql_getitem_by_uid = ''
598
  sql_optimizer_switch = ''
599 600
  sql_search_tables = ()
  sql_catalog_schema = ''
601
  sql_catalog_multi_schema = ''
602
  sql_catalog_index = ''
603 604
  sql_unique_values = ''
  sql_catalog_paths = ''
605
  sql_catalog_search_keys = ()
606
  sql_catalog_keyword_search_keys =  ()
607
  sql_catalog_datetime_search_keys = ()
608 609 610 611 612
  sql_catalog_full_text_search_keys = ()
  sql_catalog_request_keys = ()
  sql_search_result_keys = ()
  sql_catalog_topic_search_keys = ()
  sql_catalog_multivalue_keys = ()
613
  sql_catalog_index_on_order_keys = ()
614
  sql_catalog_related_keys = ()
615
  sql_catalog_scriptable_keys = ()
616 617
  sql_catalog_role_keys = ()
  sql_catalog_local_role_keys = ()
618
  sql_catalog_security_uid_columns = (' | security_uid',)
619
  sql_catalog_table_vote_scripts = ()
620
  sql_catalog_raise_error_on_uid_check = True
621

622 623 624
  # These are ZODB variables, so shared by multiple Zope instances.
  # This is set to the last logical time when clearReserved is called.
  _last_clear_reserved_time = 0
625

626 627
  # This is an instance id which specifies who owns which reserved uids.
  _instance_id = getattr(getConfiguration(), 'instance_id', None)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
628

629 630 631 632 633
  manage_catalogView = DTMLFile('dtml/catalogView',globals())
  manage_catalogFilter = DTMLFile('dtml/catalogFilter',globals())
  manage_catalogFind = DTMLFile('dtml/catalogFind',globals())
  manage_catalogAdvanced = DTMLFile('dtml/catalogAdvanced', globals())

634
  _cache_sequence_number = 0
635 636 637 638 639 640 641
  HAS_ARGUMENT_SRC_METATYPE_SET = (
    "Z SQL Method",
    "LDIF Method",
  )
  HAS_FUNC_CODE_METATYPE_SET = (
    "Script (Python)",
  )
642

643 644 645 646 647
  def __init__(self, id, title='', container=None):
    if container is not None:
      self=self.__of__(container)
    self.id=id
    self.title=title
Jean-Paul Smets's avatar
Jean-Paul Smets committed
648 649 650
    self.schema = {}  # mapping from attribute name to column
    self.names = {}   # mapping from column to attribute name
    self.indexes = {}   # empty mapping
651
    self.filter_dict = PersistentMapping()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
652

653 654 655 656 657 658 659
  def manage_afterClone(self, item):
    try:
      del self._v_physical_path
    except AttributeError:
      pass
    super(Catalog, self).manage_afterClone(item)

660
  security.declarePrivate('getCacheSequenceNumber')
661 662 663 664 665 666
  def getCacheSequenceNumber(self):
    return self._cache_sequence_number

  def _clearCaches(self):
    self._cache_sequence_number += 1

667 668 669
  def _getFilterDict(self):
    return self.filter_dict

670
  security.declarePrivate('getSQLCatalogRoleKeysList')
671 672 673 674
  def getSQLCatalogRoleKeysList(self):
    """
    Return the list of role keys.
    """
675 676 677 678
    role_key_dict = {}
    for role_key in self.sql_catalog_role_keys:
      role, column = role_key.split('|')
      role_key_dict[role.strip()] = column.strip()
679
    return ensure_list(role_key_dict.items())
680

681
  security.declareProtected(permissions.ManagePortal, 'getSQLCatalogSecurityUidGroupsColumnsDict')
682 683 684 685 686 687 688 689 690 691 692 693
  def getSQLCatalogSecurityUidGroupsColumnsDict(self):
    """
    Return a mapping of local_roles_group_id name to the name of the column
    storing corresponding security_uid.
    The default mappiny is {'': 'security_uid'}
    """
    local_roles_group_id_dict = {}
    for local_roles_group_id_key in self.sql_catalog_security_uid_columns:
      local_roles_group_id, column = local_roles_group_id_key.split('|')
      local_roles_group_id_dict[local_roles_group_id.strip()] = column.strip()
    return local_roles_group_id_dict

694
  security.declarePrivate('getSQLCatalogLocalRoleKeysList')
695 696 697 698
  def getSQLCatalogLocalRoleKeysList(self):
    """
    Return the list of local role keys.
    """
699 700 701 702
    local_role_key_dict = {}
    for role_key in self.sql_catalog_local_role_keys:
      role, column = role_key.split('|')
      local_role_key_dict[role.strip()] = column.strip()
703
    return ensure_list(local_role_key_dict.items())
704

705
  security.declareProtected(manage_zcatalog_entries, 'manage_historyCompare')
706 707 708 709 710 711 712
  def manage_historyCompare(self, rev1, rev2, REQUEST,
                            historyComparisonResults=''):
    return Catalog.inheritedAttribute('manage_historyCompare')(
          self, rev1, rev2, REQUEST,
          historyComparisonResults=OFS.History.html_diff(
              pprint.pformat(rev1.__dict__),
              pprint.pformat(rev2.__dict__)))
713 714 715

  def _clearSecurityCache(self):
    self.security_uid_dict = OIBTree()
716
    self.security_uid_index = None
717

718 719 720 721
  def _clearSubjectCache(self):
    self.subject_set_uid_dict = OIBTree()
    self.subject_set_uid_index = None

722 723
  security.declarePrivate('getSecurityUidDict')
  def getSecurityUidDict(self, wrapped_object):
724
    """
725 726
    returns a tuple with a dict of security uid by local group id, and a tuple
    containing optimised_roles_and_users that might have been created.
727
    """
728
    if getattr(aq_base(self), 'security_uid_dict', None) is None:
729
      self._clearSecurityCache()
730 731

    optimised_roles_and_users = []
732
    local_roles_group_id_to_security_uid_mapping = {}
733 734

    # Get security information
735
    security_uid = None
736
    for key in six.iteritems(wrapped_object.getLocalRolesGroupIdDict()):
737
      local_roles_group_id, allowed_roles_and_users = key
738
      if key in self.security_uid_dict:
739 740
        local_roles_group_id_to_security_uid_mapping[local_roles_group_id] = self.security_uid_dict[key]
      elif allowed_roles_and_users in self.security_uid_dict and not local_roles_group_id:
741 742 743
        # This key is present in security_uid_dict without
        # local_roles_group_id, it has been inserted before
        # local_roles_group_id were introduced.
744
        local_roles_group_id_to_security_uid_mapping[local_roles_group_id] = self.security_uid_dict[allowed_roles_and_users]
745
      else:
746 747 748 749 750 751 752 753 754 755
        if not security_uid:
          getTransactionalVariable().pop('getSecurityUidDictAndRoleColumnDict',
                                         None)
          # We must keep compatibility with existing sites
          security_uid = getattr(self, 'security_uid_index', None)
          if security_uid is None:
            security_uid = 0
          # At some point, it was a Length
          elif isinstance(security_uid, Length):
            security_uid = security_uid()
756 757 758 759 760 761 762
        security_uid = int(
          self.getPortalObject().portal_ids.generateNewId(
            id_generator='uid',
            id_group='security_uid_index',
            default=security_uid,
          ),
        )
763 764

        self.security_uid_dict[key] = security_uid
765
        local_roles_group_id_to_security_uid_mapping[local_roles_group_id] = security_uid
766 767 768 769 770 771 772

        # If some optimised_roles_and_users are returned by this method it
        # means that new entries will have to be added to roles_and_users table.
        for user in allowed_roles_and_users:
          optimised_roles_and_users.append((security_uid, local_roles_group_id, user))

    return (local_roles_group_id_to_security_uid_mapping, optimised_roles_and_users)
773

774
  security.declarePrivate('getRoleAndSecurityUidList')
775 776
  def getRoleAndSecurityUidList(self):
    """
777
      Return a list of 3-tuples, suitable for direct use in a zsqlmethod.
778 779 780
      Goal: make it possible to regenerate a table containing this data.
    """
    result = []
781 782
    for role_list, security_uid in six.iteritems(getattr(
            aq_base(self), 'security_uid_dict', {})):
783 784 785 786 787 788 789
      if role_list:
        if isinstance(role_list[-1], tuple):
          local_role_group_id, role_list = role_list
        else:
          local_role_group_id = ''
        result += [(local_role_group_id, role, security_uid)
                  for role in role_list]
790 791
    return result

792 793 794 795 796 797 798 799 800 801 802 803 804
  security.declarePrivate('getSubjectSetUid')
  def getSubjectSetUid(self, wrapped_object):
    """
    Cache a uid for each unique subject tuple.
    Return a tuple with a subject uid (string) and a new subject tuple
    if not exist already.
    """
    getSubjectList = getattr(wrapped_object, 'getSubjectList', None)
    if getSubjectList is None:
      return (None, None)
    # Get subject information
    # XXX if more collation is available, we can have smaller number of
    # unique subject sets.
805
    subject_list = tuple(sorted({(x or '').lower() for x in getSubjectList()}))
806 807 808 809 810
    if not subject_list:
      return (None, None)
    # Make sure no duplicates
    if getattr(aq_base(self), 'subject_set_uid_dict', None) is None:
      self._clearSubjectCache()
811
    elif subject_list in self.subject_set_uid_dict:
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
      return (self.subject_set_uid_dict[subject_list], None)
    # If the id_tool is there, it is better to use it, it allows
    # to create many new subject uids by the same time
    # because with this tool we are sure that we will have 2 different
    # uids if two instances are doing this code in the same time
    id_tool = getattr(self.getPortalObject(), 'portal_ids', None)
    if id_tool is not None:
      default = 1
      # We must keep compatibility with existing sites
      previous_subject_set_uid = getattr(self, 'subject_set_uid_index', None)
      if previous_subject_set_uid is not None:
        default = previous_subject_set_uid
      subject_set_uid = int(id_tool.generateNewId(id_generator='uid',
          id_group='subject_set_uid_index', default=default))
    else:
      previous_subject_set_uid = getattr(self, 'subject_set_uid_index', None)
      if previous_subject_set_uid is None:
        previous_subject_set_uid = 0
      subject_set_uid = previous_subject_set_uid + 1
      self.subject_set_uid_index = subject_set_uid
    self.subject_set_uid_dict[subject_list] = subject_set_uid
    return (subject_set_uid, subject_list)

835 836 837
  def getSqlClearCatalogList(self):
    return self.sql_clear_catalog

838
  def _clear(self):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
839 840 841
    """
    Clears the catalog by calling a list of methods
    """
842
    for method_name in self.getSqlClearCatalogList():
843
      method = self._getOb(method_name)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
844 845
      try:
        method()
846 847
      except ConflictError:
        raise
Jean-Paul Smets's avatar
Jean-Paul Smets committed
848
      except:
849
        LOG('SQLCatalog', WARNING,
850
            'could not clear catalog with %s' % method_name, error=True)
851
        raise
852
    # Reserved uids have been removed.
853
    self._clearReserved()
854
    self._clearSecurityCache()
855
    self._clearSubjectCache()
856
    self._clearCaches()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
857

858
  def _clearReserved(self):
859 860 861
    """
    Clears reserved uids
    """
862
    method_id = self.getSqlCatalogClearReserved()
863
    method = self._getOb(method_id)
Romain Courteaud's avatar
Romain Courteaud committed
864 865 866 867 868
    try:
      method()
    except ConflictError:
      raise
    except:
869 870 871 872 873 874
      LOG(
        'SQLCatalog',
        WARNING,
        'could not clear reserved catalog with %s' % method_id,
        error=True,
      )
Romain Courteaud's avatar
Romain Courteaud committed
875
      raise
876
    self._last_clear_reserved_time += 1
877

878 879 880
  def getSqlGetitemByUid(self):
    return self.sql_getitem_by_uid

881
  security.declarePrivate('getRecordForUid')
882
  def getRecordForUid(self, uid):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
883 884 885 886
    """
    Get an object by UID
    Note: brain is defined in Z SQL Method object
    """
887
    # this method used to be __getitem__(self, uid) but was found to hurt more
888
    # than it helped: It would be inadvertently called by
889 890 891 892 893 894
    # (un)restrictedTraverse and if there was any error in rendering the SQL
    # expression or contacting the database, an error different from KeyError
    # would be raised, causing confusion.
    # It could also have a performance impact for traversals to objects in
    # the acquisition context on Zope 2.12 even when it didn't raise a weird
    # error.
895 896 897 898 899
    search_result = self._getOb(self.getSqlGetitemByUid())(uid_list=[uid])
    if search_result:
      result, = search_result
      return result
    raise KeyError(uid)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
900

901
  security.declarePrivate('editSchema')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920
  def editSchema(self, names_list):
    """
    Builds a schema from a list of strings
    Splits each string to build a list of attribute names
    Columns on the database should not change during this operations
    """
    i = 0
    schema = {}
    names = {}
    for cid in self.getColumnIds():
      name_list = []
      for name in names_list[i].split():
        schema[name] = cid
        name_list += [name,]
      names[cid] = tuple(name_list)
      i += 1
    self.schema = schema
    self.names = names

921 922 923
  def getSqlSearchTablesList(self):
    return list(self.sql_search_tables)

924
  security.declarePrivate('getCatalogSearchTableIds')
925 926 927 928
  def getCatalogSearchTableIds(self):
    """Return selected tables of catalog which are used in JOIN.
       catalaog is always first
    """
929
    search_tables = self.getSqlSearchTablesList() or ['catalog']
930 931 932 933 934
    if search_tables[0] != 'catalog':
      search_tables = ['catalog'] + [x for x in search_tables if x != 'catalog']
      # XXX: cast to tuple to avoid a mutable persistent property ?
      self.sql_search_tables = search_tables
    return search_tables
935

936 937 938
  def getSqlSearchResultKeysList(self):
    return self.sql_search_result_keys

939
  security.declarePublic('getCatalogSearchResultKeys')
940 941 942
  def getCatalogSearchResultKeys(self):
    """Return search result keys.
    """
943 944 945 946 947 948 949
    return self.getSqlSearchResultKeysList()

  def getSqlCatalogMultiSchema(self):
    return self.sql_catalog_multi_schema

  def getSqlCatalogSchema(self):
    return self.sql_catalog_schema
950

951
  @transactional_cache_decorator
952 953
  def _getCatalogSchema(self):
    method = getattr(self, self.sql_catalog_multi_schema, None)
954
    result = {}
955 956
    if method is None:
      # BBB: deprecated
957 958 959 960
      warnings.warn("The usage of sql_catalog_schema is much slower. "
              "than sql_catalog_multi_schema. It makes many SQL queries "
              "instead of one",
              DeprecationWarning)
961
      method_name = self.getSqlCatalogSchema()
962
      try:
963 964 965
        method = getattr(self, method_name)
      except AttributeError:
        return {}
966
      for table in self.getCatalogSearchTableIds():
967 968 969 970 971
        try:
          result[table] = [c.Field for c in method(table=table)]
        except (ConflictError, DatabaseError):
          raise
        except Exception:
972 973 974 975 976 977
          LOG(
            'SQLCatalog',
            WARNING,
            '_getCatalogSchema failed with the method %s' % method_name,
            error=True,
          )
978 979 980 981
      return result
    for row in method():
      result.setdefault(row.TABLE_NAME, []).append(row.COLUMN_NAME)
    return result
982

983 984 985 986 987 988
  security.declarePrivate('getTableColumnList')
  def getTableColumnList(self, table):
    """
    Returns the list of columns in given table.
    Raises KeyError on unknown table.
    """
989
    return ensure_list(self._getCatalogSchema()[table])
990

991
  security.declarePublic('getColumnIds')
992
  @transactional_cache_decorator
993 994 995 996 997
  def getColumnIds(self):
    """
    Calls the show column method and returns dictionnary of
    Field Ids
    """
998 999
    keys = set()
    add_key = keys.add
1000
    table_dict = self._getCatalogSchema()
1001
    for table in self.getCatalogSearchTableIds():
1002
      for field in table_dict.get(table, ()):
1003 1004
        add_key(field)
        add_key('%s.%s' % (table, field))  # Is this inconsistent ?
1005 1006
    for related in self.getSQLCatalogRelatedKeyList():
      related_tuple = related.split('|')
1007
      add_key(related_tuple[0].strip())
1008 1009
    for scriptable in self.getSQLCatalogScriptableKeyList():
      scriptable_tuple = scriptable.split('|')
1010 1011
      add_key(scriptable_tuple[0].strip())
    return sorted(keys)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1012

1013
  security.declarePrivate('getColumnMap')
1014
  @transactional_cache_decorator
1015 1016 1017 1018 1019
  def getColumnMap(self):
    """
    Calls the show column method and returns dictionnary of
    Field Ids
    """
1020
    result = {}
1021
    table_dict = self._getCatalogSchema()
1022
    for table in self.getCatalogSearchTableIds():
1023
      for field in table_dict.get(table, ()):
1024 1025 1026
        result.setdefault(field, []).append(table)
        result.setdefault('%s.%s' % (table, field), []).append(table) # Is this inconsistent ?
    return result
1027

1028
  security.declarePublic('getResultColumnIds')
1029
  @transactional_cache_decorator
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1030 1031 1032 1033 1034
  def getResultColumnIds(self):
    """
    Calls the show column method and returns dictionnary of
    Field Ids
    """
1035
    keys = set()
1036
    table_dict = self._getCatalogSchema()
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1037
    for table in self.getCatalogSearchTableIds():
1038
      for field in table_dict.get(table, ()):
1039 1040
        keys.add('%s.%s' % (table, field))
    return sorted(keys)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1041

1042
  security.declarePublic('getSortColumnIds')
1043
  @transactional_cache_decorator
1044 1045 1046 1047 1048
  def getSortColumnIds(self):
    """
    Calls the show column method and returns dictionnary of
    Field Ids that can be used for a sort
    """
1049
    keys = set()
1050
    table_dict = self._getCatalogSchema()
1051
    for table in self.getTableIds():
1052
      for field in table_dict[table]:
1053 1054
        keys.add('%s.%s' % (table, field))
    return sorted(keys)
1055

1056
  security.declarePublic('getTableIds')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1057 1058 1059
  def getTableIds(self):
    """
    Calls the show table method and returns dictionnary of
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1060 1061
    Field Ids
    """
1062
    return ensure_list(self._getCatalogSchema().keys())
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1063

1064
  security.declarePrivate('getUIDBuffer')
1065
  def getUIDBuffer(self, force_new_buffer=False):
1066
    assert global_reserved_uid_lock.locked()
1067 1068 1069 1070 1071 1072 1073 1074 1075
    assert getattr(self, 'aq_base', None) is not None
    instance_key = self.getPhysicalPath()
    if instance_key not in global_uid_buffer_dict:
      global_uid_buffer_dict[instance_key] = {}
    uid_buffer_dict = global_uid_buffer_dict[instance_key]
    thread_key = get_ident()
    if force_new_buffer or thread_key not in uid_buffer_dict:
      uid_buffer_dict[thread_key] = UidBuffer()
    return uid_buffer_dict[thread_key]
1076

Jean-Paul Smets's avatar
Jean-Paul Smets committed
1077
  # the cataloging API
1078
  security.declarePrivate('isIndexable')
1079 1080 1081 1082 1083 1084
  def isIndexable(self):
    """
    This is required to check in many methods that
    the site root and zope root are indexable
    """
    zope_root = self.getZopeRoot()
1085
    site_root = self.getSiteRoot() # XXX-JPS - Why don't we use getPortalObject here ?
1086 1087 1088 1089 1090 1091

    root_indexable = int(getattr(zope_root, 'isIndexable', 1))
    site_indexable = int(getattr(site_root, 'isIndexable', 1))
    if not (root_indexable and site_indexable):
      return False
    return True
Aurel's avatar
Aurel committed
1092

1093
  security.declarePrivate('getSiteRoot')
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
  def getSiteRoot(self):
    """
    Returns the root of the site
    """
    if withCMF:
      site_root = getToolByName(self, 'portal_url').getPortalObject()
    else:
      site_root = self.aq_parent
    return site_root

1104
  security.declarePrivate('getZopeRoot')
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114
  def getZopeRoot(self):
    """
    Returns the root of the zope
    """
    if withCMF:
      zope_root = getToolByName(self, 'portal_url').getPortalObject().aq_parent
    else:
      zope_root = self.getPhysicalRoot()
    return zope_root

1115
  security.declarePrivate('newUid')
1116 1117 1118
  def newUid(self):
    """
      This is where uid generation takes place. We should consider a multi-threaded environment
1119 1120
      with multiple ZEO clients on a single ZEO server.

1121
      The main risk is the following:
1122

1123
      - objects a/b/c/d/e/f are created (a is parent of b which is parent of ... of f)
1124

1125
      - one reindexing node N1 starts reindexing f
1126

1127
      - another reindexing node N2 starts reindexing e
1128

1129 1130 1131
      - there is a strong risk that N1 and N2 start reindexing at the same time
        and provide different uid values for a/b/c/d/e

1132
      Similar problems may happen with relations and acquisition of uid values (ex. order_uid)
1133
      with the risk of graph loops
1134
    """
1135 1136
    global global_clear_reserved_time

1137
    if not self.getPortalObject().isIndexable():
1138 1139
      return None

1140
    with global_reserved_uid_lock:
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159
      uid_buffer = self.getUIDBuffer(
        force_new_buffer=global_clear_reserved_time != self._last_clear_reserved_time,
      )
      global_clear_reserved_time = self._last_clear_reserved_time
      try:
        return long(uid_buffer.pop())
      except IndexError:
        uid_buffer.extend(
          self.getPortalObject().portal_ids.generateNewIdList(
            id_generator='uid',
            id_group='catalog_uid',
            id_count=UID_BUFFER_SIZE,
            default=getattr(self, '_max_uid', lambda: 1)(),
          ),
        )
        try:
          return long(uid_buffer.pop())
        except IndexError:
          raise CatalogError("Could not retrieve new uid")
1160

1161
  security.declareProtected(manage_zcatalog_entries, 'manage_catalogObject')
1162 1163 1164
  def manage_catalogObject(self, REQUEST, RESPONSE, URL1, urls=None):
    """ index Zope object(s) that 'urls' point to """
    if urls:
1165
      if isinstance(urls, str):
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
        urls=(urls,)

      for url in urls:
        obj = self.resolve_path(url)
        if not obj:
          obj = self.resolve_url(url, REQUEST)
        if obj is not None:
          self.aq_parent.catalog_object(obj, url, sql_catalog_id=self.id)

    RESPONSE.redirect(URL1 + '/manage_catalogView?manage_tabs_message=Object%20Cataloged')

1177
  security.declareProtected(manage_zcatalog_entries, 'manage_uncatalogObject')
1178 1179 1180 1181
  def manage_uncatalogObject(self, REQUEST, RESPONSE, URL1, urls=None):
    """ removes Zope object(s) 'urls' from catalog """

    if urls:
1182
      if isinstance(urls, str):
1183 1184 1185 1186 1187 1188 1189
        urls=(urls,)

      for url in urls:
        self.aq_parent.uncatalog_object(url, sql_catalog_id=self.id)

    RESPONSE.redirect(URL1 + '/manage_catalogView?manage_tabs_message=Object%20Uncataloged')

1190
  security.declareProtected(manage_zcatalog_entries, 'manage_catalogClear')
1191
  def manage_catalogClear(self, REQUEST=None, RESPONSE=None,
Romain Courteaud's avatar
Romain Courteaud committed
1192
                          URL1=None, sql_catalog_id=None):
1193
    """ clears the whole enchilada """
1194 1195
    self.beforeCatalogClear()

1196
    self._clear()
1197 1198

    if RESPONSE and URL1:
1199 1200 1201
      RESPONSE.redirect(
        '%s/manage_catalogAdvanced?manage_tabs_message=Catalog%%20Cleared' % URL1,
      )
1202 1203


1204
  security.declareProtected(manage_zcatalog_entries, 'manage_catalogFoundItems')
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
  def manage_catalogFoundItems(self, REQUEST, RESPONSE, URL2, URL1,
                 obj_metatypes=None,
                 obj_ids=None, obj_searchterm=None,
                 obj_expr=None, obj_mtime=None,
                 obj_mspec=None, obj_roles=None,
                 obj_permission=None):
    """ Find object according to search criteria and Catalog them
    """
    elapse = time.time()
    c_elapse = time.clock()

    words = 0
    obj = REQUEST.PARENTS[1]
1218
    path = '/'.join(obj.getPhysicalPath())
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238

    results = self.aq_parent.ZopeFindAndApply(obj,
                    obj_metatypes=obj_metatypes,
                    obj_ids=obj_ids,
                    obj_searchterm=obj_searchterm,
                    obj_expr=obj_expr,
                    obj_mtime=obj_mtime,
                    obj_mspec=obj_mspec,
                    obj_permission=obj_permission,
                    obj_roles=obj_roles,
                    search_sub=1,
                    REQUEST=REQUEST,
                    apply_func=self.aq_parent.catalog_object,
                    apply_path=path,
                    sql_catalog_id=self.id)

    elapse = time.time() - elapse
    c_elapse = time.clock() - c_elapse

    RESPONSE.redirect(URL1 + '/manage_catalogView?manage_tabs_message=' +
1239
              urllib.parse.quote('Catalog Updated<br>Total time: %s<br>Total CPU time: %s' % (repr(elapse), repr(c_elapse))))
1240

1241
  security.declarePrivate('catalogObject')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1242
  def catalogObject(self, object, path, is_object_moved=0):
1243 1244
    """Add an object to the Catalog by calling all SQL methods and
    providing needed arguments.
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1245

1246 1247
    'object' is the object to be catalogged."""
    self._catalogObjectList([object])
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1248

1249
  security.declarePrivate('catalogObjectList')
1250
  def catalogObjectList(self, object_list, method_id_list=None,
1251 1252 1253
                        disable_cache=0, check_uid=1, idxs=None):
    """Add objects to the Catalog by calling all SQL methods and
    providing needed arguments.
1254

1255 1256
      method_id_list : specify which methods should be used. If not
                       set, it will take the default value of portal_catalog.
1257 1258

      disable_cache : do not use cache, so values will be computed each time,
1259 1260 1261 1262 1263 1264
                      only useful in some particular cases, most of the time
                      you don't need to use it.

    Each element of 'object_list' is an object to be catalogged.

    'uid' is the unique Catalog identifier for this object.
1265

1266 1267 1268 1269
    Note that this method calls _catalogObjectList with fragments of
    the object list, because calling _catalogObjectList with too many
    objects at a time bloats the process's memory consumption, due to
    caching."""
1270 1271
    for i in xrange(0, len(object_list), OBJECT_LIST_SIZE):
      self._catalogObjectList(object_list[i:i + OBJECT_LIST_SIZE],
1272 1273 1274 1275
                              method_id_list=method_id_list,
                              disable_cache=disable_cache,
                              check_uid=check_uid,
                              idxs=idxs)
1276

1277 1278 1279
  def getSqlCatalogObjectListList(self):
    return self.sql_catalog_object_list

1280
  def _catalogObjectList(self, object_list, method_id_list=None,
1281
                         disable_cache=0, check_uid=1, idxs=None):
1282
    """This is the real method to catalog objects."""
1283
    if idxs not in (None, []):
1284
      LOG('ZSLQCatalog.SQLCatalog:catalogObjectList', WARNING,
1285
          'idxs is ignored in this function and is only provided to be compatible with CMFCatalogAware.reindexObject.')
1286
    if not self.getPortalObject().isIndexable():
1287
      return
1288

1289 1290 1291
    object_path_dict = {}
    uid_list = []
    uid_list_append = uid_list.append
1292
    for object in object_list:
1293 1294 1295 1296 1297 1298
      if object in object_path_dict:
        continue
      path = object.getPath()
      if len(path) > MAX_PATH_LEN:
        raise  ValueError('path too long (%i): %r' % (len(path), path))
      object_path_dict[object] = path
1299 1300 1301 1302
      try:
        uid = aq_base(object).uid
      except AttributeError:
        uid = None
1303
      if uid is None or uid == 0:
1304 1305 1306 1307
        object.uid = uid = self.newUid()
      uid_list_append(uid)
    LOG('SQLCatalog', TRACE, 'catalogging %d objects' % len(object_path_dict))
    if check_uid:
1308
      path_uid_dict = self.getUidDictForPathList(path_list=ensure_list(object_path_dict.values()))
1309
      uid_path_dict = self.getPathDictForUidList(uid_list=uid_list)
1310
      for object, path in six.iteritems(object_path_dict):
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
        uid = object.uid
        if path_uid_dict.setdefault(path, uid) != uid:
          error_message = 'path %r has uids %r (catalog) and %r (being indexed) ! This can break relations' % (
            path,
            path_uid_dict[path],
            uid,
          )
          if self.sql_catalog_raise_error_on_uid_check:
            raise ValueError(error_message)
          LOG("SQLCatalog._catalogObjectList", ERROR, error_message)
        catalog_path = uid_path_dict.setdefault(uid, path)
        if catalog_path != path and catalog_path != 'deleted':
          # Two possible cases if catalog_path == 'deleted':
          # - Reindexed object's path changed (ie, it or at least one of its
          #   parents was renamed) but unindexObject was not called yet.
          #   Reindexing is harmelss: unindexObject and then an
          #   immediateReindexObject will be called.
          # - Reindexed object was deleted by a concurrent transaction, which
          #   committed after we got our ZODB snapshot of this object.
          #   Reindexing is harmless: unindexObject will be called, and
          #   cannot be executed in parallel thanks to activity's
          #   serialisation_tag (so we cannot end up with a fantom object in
          #   catalog).
          # So we index object.
          # We could also not index it to save the time needed to index, but
          # this would slow down all regular case to slightly improve an
          # exceptional case.
          error_message = 'uid %r is shared between %r (catalog) and %r (being indexed) ! This can break relations' % (
            uid,
1340
            catalog_path,
1341 1342 1343 1344 1345
            path,
          )
          if self.sql_catalog_raise_error_on_uid_check:
            raise ValueError(error_message)
          LOG('SQLCatalog._catalogObjectList', ERROR, error_message)
1346

1347
    if method_id_list is None:
1348
      method_id_list = self.getSqlCatalogObjectListList()
1349
    econtext = getEngine().getContext()
1350 1351 1352 1353
    if disable_cache:
      argument_cache = DummyDict()
    else:
      argument_cache = {}
1354

1355 1356
    with (noReadOnlyTransactionCache if disable_cache else
          readOnlyTransactionCache)():
1357
      filter_dict = self._getFilterDict()
1358
      catalogged_object_list_cache = {}
1359
      for method_name in method_id_list:
1360 1361 1362 1363 1364
        # We will check if there is an filter on this
        # method, if so we may not call this zsqlMethod
        # for this object
        expression = None
        try:
1365
          filter = filter_dict[method_name]
1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
          if filter['filtered']:
            if filter.get('type'):
              expression = Expression('python: context.getPortalType() in '
                                      + repr(tuple(filter['type'])))
              LOG('SQLCatalog', WARNING,
                  "Convert deprecated type filter for %r into %r expression"
                  % (method_name, expression.text))
              filter['type'] = ()
              filter['expression'] = expression.text
              filter['expression_instance'] = expression
            else:
              expression = filter['expression_instance']
        except KeyError:
          pass
        if expression is None:
1381
          catalogged_object_list = ensure_list(object_path_dict.keys())
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
        else:
          text = expression.text
          catalogged_object_list = catalogged_object_list_cache.get(text)
          if catalogged_object_list is None:
            catalogged_object_list_cache[text] = catalogged_object_list = []
            append = catalogged_object_list.append
            old_context = new_context_search(text) is None
            if old_context:
              warnings.warn("Filter expression for %r (%r): using variables"
                            " other than 'context' is deprecated and slower."
                            % (method_name, text), DeprecationWarning)
            expression_cache_key_list = filter.get('expression_cache_key', ())
            expression_result_cache = {}
1395
            for object in object_path_dict:
1396
              if expression_cache_key_list:
1397 1398 1399 1400
                # Expressions are slow to evaluate because they are executed
                # in restricted environment. So we try to save results of
                # expressions by portal_type or any other key.
                # This cache is built each time we reindex
1401 1402
                # objects but we could also use over multiple transactions
                # if this can improve performance significantly
1403
                # ZZZ - we could find a way to compute this once only
1404
                cache_key = tuple(object._getProperty(key) for key
1405
                                  in expression_cache_key_list)
1406
                try:
1407 1408 1409
                  if expression_result_cache[cache_key]:
                    append(object)
                  continue
1410
                except KeyError:
1411 1412 1413
                  pass
              if old_context:
                result = expression(self.getExpressionContext(object))
1414
              else:
1415
                econtext.setLocal('context', object)
1416
                result = expression(econtext)
1417
              if expression_cache_key_list:
1418
                expression_result_cache[cache_key] = result
1419 1420
              if result:
                append(object)
1421

1422
        if not catalogged_object_list:
1423
          continue
1424
        method = self._getCatalogMethod(method_name)
1425 1426 1427 1428 1429 1430 1431 1432
        kw = {
          x: LazyIndexationParameterList(
            catalogged_object_list,
            x,
            argument_cache,
          )
          for x in self._getCatalogMethodArgumentList(method)
        }
1433 1434 1435 1436 1437
        try:
          method(**kw)
        except ConflictError:
          raise
        except:
1438 1439 1440 1441 1442 1443 1444
          LOG(
            'SQLCatalog._catalogObjectList',
            ERROR,
            'could not catalog objects %s with method %s' % (
              object_list,
              method_name,
            ),
1445
            error=True,
1446
          )
1447
          raise
1448

1449
  def _getCatalogMethodArgumentList(self, method):
1450 1451
    meta_type = method.meta_type
    if meta_type in self.HAS_ARGUMENT_SRC_METATYPE_SET:
1452
      return method.arguments_src.split()
1453
    elif meta_type in self.HAS_FUNC_CODE_METATYPE_SET:
1454
      return method.__code__.co_varnames[:method.__code__.co_argcount]
1455 1456 1457
    # Note: Raising here would completely prevent indexation from working.
    # Instead, let the method actually fail when called, so _catalogObjectList
    # can log the error and carry on.
1458 1459 1460 1461 1462
    return ()

  def _getCatalogMethod(self, method_name):
    return getattr(self, method_name)

1463 1464 1465
  def getSqlCatalogDeleteUid(self):
     return self.sql_catalog_delete_uid

1466
  security.declarePrivate('beforeUncatalogObject')
1467 1468 1469 1470
  def beforeUncatalogObject(self, path=None,uid=None):
    """
    Set the path as deleted
    """
1471
    if not self.getPortalObject().isIndexable():
1472 1473 1474 1475
      return None

    if uid is None and path is not None:
      uid = self.getUidForPath(path)
1476
    method_name = self.getSqlCatalogDeleteUid()
1477 1478
    if uid is None:
      return None
1479 1480
    if method_name in (None,''):
      # This should exist only if the site is not up to date.
1481
      LOG('ZSQLCatalog.beforeUncatalogObject', INFO, 'The sql_catalog_delete_uid method is not defined')
Sebastien Robin's avatar
Sebastien Robin committed
1482
      return self.uncatalogObject(path=path,uid=uid)
1483
    method = self._getOb(method_name)
1484 1485
    method(uid = uid)

1486 1487 1488
  def getSqlUncatalogObjectList(self):
    return self.sql_uncatalog_object

1489
  security.declarePrivate('uncatalogObject')
1490
  def uncatalogObject(self, path=None, uid=None):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
    """
    Uncatalog and object from the Catalog.

    Note, the uid must be the same as when the object was
    catalogued, otherwise it will not get removed from the catalog

    This method should not raise an exception if the uid cannot
    be found in the catalog.

    XXX Add filter of methods

    """
1503
    if not self.getPortalObject().isIndexable():
1504 1505
      return None

1506 1507
    if uid is None and path is not None:
      uid = self.getUidForPath(path)
1508
    method_id_list = self.getSqlUncatalogObjectList()
1509
    if uid is None:
1510
      return None
1511
    for method_name in method_id_list:
1512 1513
      # Do not put try/except here, it is required to raise error
      # if uncatalog does not work.
1514
      method = self._getOb(method_name)
1515
      method(uid = uid)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1516

1517 1518 1519
  def getSqlCatalogTranslationList(self):
    return self.sql_catalog_translation_list

1520
  security.declarePrivate('catalogTranslationList')
1521 1522 1523
  def catalogTranslationList(self, object_list):
    """Catalog translations.
    """
1524
    method_name = self.getSqlCatalogTranslationList()
1525 1526
    return self.catalogObjectList(object_list, method_id_list = (method_name,),
                                  check_uid=0)
1527

1528 1529 1530
  def getSqlDeleteTranslationList(self):
    return self.sql_delete_translation_list

1531
  security.declarePrivate('deleteTranslationList')
1532 1533 1534
  def deleteTranslationList(self):
    """Delete translations.
    """
1535
    method_name = self.getSqlDeleteTranslationList()
1536
    method = self._getOb(method_name)
1537 1538 1539 1540 1541
    try:
      method()
    except ConflictError:
      raise
    except:
1542
      LOG('SQLCatalog', WARNING, 'could not delete translations', error=True)
1543

1544 1545 1546
  def getSqlUniqueValues(self):
    return self.sql_unique_values

1547
  security.declarePrivate('uniqueValuesFor')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1548 1549
  def uniqueValuesFor(self, name):
    """ return unique values for FieldIndex name """
1550
    method = self._getOb(self.getSqlUniqueValues())
1551
    return method(column=name)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1552

1553 1554 1555
  def getSqlCatalogPaths(self):
    return self.sql_catalog_paths

1556
  security.declarePrivate('getPaths')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1557 1558
  def getPaths(self):
    """ Returns all object paths stored inside catalog """
1559
    method = self._getOb(self.getSqlCatalogPaths())
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1560 1561
    return method()

1562 1563 1564
  def getSqlGetitemByPath(self):
    return self.sql_getitem_by_path

1565
  security.declarePrivate('getUidForPath')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1566 1567
  def getUidForPath(self, path):
    """ Looks up into catalog table to convert path into uid """
1568
    return self.getUidDictForPathList([path]).get(path)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1569

1570
  security.declarePrivate('getUidDictForPathList')
1571 1572
  def getUidDictForPathList(self, path_list):
    """ Looks up into catalog table to convert path into uid """
1573
    return {
1574
      x.path: x.uid
1575
      for x in self._getOb(
1576
        self.getSqlGetitemByPath()
1577
      )(
1578
        path=None, # BBB
1579
        path_list=path_list,
1580
        uid_only=False, # BBB
1581 1582
      )
    }
1583

1584
  security.declarePrivate('getPathDictForUidList')
1585 1586
  def getPathDictForUidList(self, uid_list):
    """ Looks up into catalog table to convert uid into path """
1587
    return {
1588
      x.uid: x.path
1589
      for x in self._getOb(
1590
        self.getSqlGetitemByUid()
1591
      )(
1592
        uid=None, # BBB
1593
        uid_list=uid_list,
1594
        path_only=False, # BBB
1595 1596
      )
    }
1597

1598
  security.declarePrivate('hasPath')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1599 1600 1601 1602
  def hasPath(self, path):
    """ Checks if path is catalogued """
    return self.getUidForPath(path) is not None

1603
  security.declarePrivate('getPathForUid')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1604 1605
  def getPathForUid(self, uid):
    """ Looks up into catalog table to convert uid into path """
1606
    return self.getPathDictForUidList([uid]).get(uid)
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1607

1608
  security.declarePrivate('getMetadataForUid')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1609 1610 1611
  def getMetadataForUid(self, uid):
    """ Accesses a single record for a given uid """
    result = {}
1612 1613 1614 1615
    path = self.getPathForUid(uid)
    if uid is not None:
      result['path'] = path
      result['uid'] = uid
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1616 1617
    return result

1618
  security.declarePrivate('getIndexDataForUid')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1619 1620 1621 1622
  def getIndexDataForUid(self, uid):
    """ Accesses a single record for a given uid """
    return self.getMetadataForUid(uid)

1623
  security.declarePrivate('getMetadataForPath')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1624 1625
  def getMetadataForPath(self, path):
    """ Accesses a single record for a given path """
1626 1627 1628 1629 1630 1631
    result = {}
    uid = self.getUidForPath(path)
    if uid is not None:
      result['path'] = path
      result['uid'] = uid
    return result
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1632

1633
  security.declarePrivate('getIndexDataForPath')
Jean-Paul Smets's avatar
Jean-Paul Smets committed
1634 1635 1636 1637
  def getIndexDataForPath(self, path):
    """ Accesses a single record for a given path """
    return self.getMetadataForPath(path)

1638
  security.declarePrivate('getCatalogMethodIds')
1639
  def getCatalogMethodIds(self,
1640 1641 1642 1643
                          valid_method_meta_type_list=('Z SQL Method',
                                                       'LDIF Method',
                                                       'Script (Python)')
                          ):
1644 1645 1646 1647
    """Find Z SQL methods in the current folder and above
    This function return a list of ids.
    """
    ids={}
1648
    have_id=ids.__contains__
1649 1650 1651 1652 1653 1654

    while self is not None:
      if hasattr(self, 'objectValues'):
        for o in self.objectValues(valid_method_meta_type_list):
          if hasattr(o,'id'):
            id=o.id
1655 1656
            if not isinstance(id, str):
              id=id()
1657 1658 1659 1660 1661 1662 1663
            if not have_id(id):
              if hasattr(o,'title_and_id'): o=o.title_and_id()
              else: o=id
              ids[id]=id
      if hasattr(self, 'aq_parent'): self=self.aq_parent
      else: self=None

1664
    ids=[(item[1], item[0]) for item in six.iteritems(ids)]
1665 1666 1667
    ids.sort()
    return ids

1668
  security.declarePublic('getPythonMethodIds')
1669 1670 1671 1672 1673 1674 1675
  def getPythonMethodIds(self):
    """
      Returns a list of all python scripts available in
      current sql catalog.
    """
    return self.getCatalogMethodIds(valid_method_meta_type_list=('Script (Python)', ))

1676
  @transactional_cache_decorator
1677 1678 1679 1680
  def _getSQLCatalogRelatedKeySet(self):
    column_map = self.getColumnMap()
    column_set = set(column_map)
    for related_key in self.sql_catalog_related_keys:
1681 1682
      split_entire_definition = related_key.split('|')
      if len(split_entire_definition) != 2:
1683
        LOG('SQLCatalog', WARNING, 'Malformed related key definition: %r. Ignored.' % (related_key, ))
1684 1685
        continue
      related_key_id = split_entire_definition[0].strip()
1686
      if related_key_id in column_set and related_key_id not in related_key_warned_column_set:
1687
        related_key_warned_column_set.add(related_key_id)
1688
        if related_key_id in column_map:
1689
          LOG('SQLCatalog', WARNING, 'Related key %r has the same name as an existing column on tables %r' % (related_key_id, column_map[related_key_id]))
1690
        else:
1691
          LOG('SQLCatalog', WARNING, 'Related key %r is declared more than once.' % (related_key_id, ))
1692 1693 1694
      column_set.add(related_key_id)
    return column_set

1695
  security.declarePrivate('getSQLCatalogRelatedKeyList')
1696
  def getSQLCatalogRelatedKeyList(self, key_list=None):
1697 1698
    """
    Return the list of related keys.
1699
    This method can be overidden in order to implement
1700 1701
    dynamic generation of some related keys.
    """
1702 1703
    if key_list is None:
      key_list = []
1704
    column_map = self._getSQLCatalogRelatedKeySet()
1705 1706 1707 1708
    return self.getDynamicRelatedKeyList(
      [k for k in key_list if k not in column_map],
      sql_catalog_id=self.id,
    ) + list(self.sql_catalog_related_keys)
1709

1710
  # Compatibililty SQL Sql
1711
  security.declarePrivate('getSqlCatalogRelatedKeyList')
1712 1713
  getSqlCatalogRelatedKeyList = getSQLCatalogRelatedKeyList

1714
  security.declarePrivate('getSQLCatalogScriptableKeyList')
1715 1716 1717 1718 1719
  def getSQLCatalogScriptableKeyList(self):
    """
    Return the list of scriptable keys.
    """
    return self.sql_catalog_scriptable_keys
1720

1721
  @transactional_cache_decorator
1722
  def _getTableIndex(self, table):
1723 1724 1725 1726 1727 1728
    table_index = {}
    method = getattr(self, self.sql_catalog_index, '')
    if method in ('', None):
      return {}
    index = list(method(table=table))
    for line in index:
1729
      if line.KEY_NAME in table_index:
1730 1731 1732
        table_index[line.KEY_NAME].append(line.COLUMN_NAME)
      else:
        table_index[line.KEY_NAME] = [line.COLUMN_NAME,]
1733 1734
    return table_index

1735
  security.declarePrivate('getTableIndex')
1736 1737 1738 1739 1740
  def getTableIndex(self, table):
    """
    Return a map between index and column for a given table
    """
    return self._getTableIndex(table).copy()
1741

1742
  security.declareProtected(access_contents_information, 'isValidColumn')
1743 1744 1745 1746
  def isValidColumn(self, column_id):
    """
      Tells wether given name is or not an existing column.

1747 1748
      Warning: This includes "virtual" columns, such as related keys and
      scriptable keys.
1749
    """
1750
    result = self.getScriptableKeyScript(column_id) is not None
1751
    if not result:
1752 1753 1754
      result = column_id in self.getColumnMap()
      if not result:
        result = self.getRelatedKeyDefinition(column_id) is not None
1755 1756
    return result

1757
  security.declarePrivate('getRelatedKeyDefinition')
1758 1759 1760 1761 1762
  def getRelatedKeyDefinition(self, key):
    """
      Returns the definition of given related key name if found, None
      otherwise.
    """
1763 1764
    related_key_definition_cache = getTransactionalVariable().setdefault(
      'SQLCatalog.getRelatedKeyDefinition', {})
1765 1766 1767 1768
    try:
      result = related_key_definition_cache[key]
    except KeyError:
      for entire_definition in self.getSQLCatalogRelatedKeyList([key]):
1769 1770
        split_entire_definition = entire_definition.split('|')
        if len(split_entire_definition) != 2:
1771
          LOG('SQLCatalog', WARNING, 'Malformed related key definition: %r. Ignored.' % (entire_definition, ))
1772
          continue
1773 1774
        if split_entire_definition[0].strip() == key:
          result = split_entire_definition[1].strip()
1775
          break
1776 1777 1778
      else:
        result = None
      related_key_definition_cache[key] = result
1779
    return result
1780

1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
  def getSqlCatalogKeywordSearchKeysList(self):
    return self.sql_catalog_keyword_search_keys

  def getSqlCatalogFullTextSearchKeysList(self):
    return self.sql_catalog_full_text_search_keys

  def getSqlCatalogDatetimeSearchKeysList(self):
    return self.sql_catalog_datetime_search_keys

  def getSqlCatalogScriptableKeysList(self):
    return self.sql_catalog_scriptable_keys

1793
  @transactional_cache_decorator
1794 1795
  def _getgetScriptableKeyDict(self):
    result = {}
1796
    for scriptable_key_definition in self.getSqlCatalogScriptableKeysList():
1797 1798
      split_scriptable_key_definition = scriptable_key_definition.split('|')
      if len(split_scriptable_key_definition) != 2:
1799
        LOG('SQLCatalog', WARNING, 'Malformed scriptable key definition: %r. Ignored.' % (scriptable_key_definition, ))
1800 1801 1802 1803
        continue
      key, script_id = [x.strip() for x in split_scriptable_key_definition]
      script = getattr(self, script_id, None)
      if script is None:
1804
        LOG('SQLCatalog', WARNING, 'Scriptable key %r script %r is missing. Skipped.' % (key, script_id))
1805 1806 1807 1808
      else:
        result[key] = script
    return result

1809
  security.declarePrivate('getScriptableKeyScript')
1810 1811 1812
  def getScriptableKeyScript(self, key):
    return self._getgetScriptableKeyDict().get(key)

1813
  security.declarePrivate('getColumnSearchKey')
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
  def getColumnSearchKey(self, key, search_key_name=None):
    """
      Return a SearchKey instance for given key, using search_key_name
      as a SearchKey name if given, otherwise guessing from catalog
      configuration. If there is no search_key_name given and no
      SearchKey can be found, return None.

      Also return a related key definition string with following rules:
       - If returned SearchKey is a RelatedKey, value is its definition
       - Otherwise, value is None
1824 1825 1826

      If both a related key and a real column are found, the related key
      is used.
1827
    """
1828 1829 1830 1831 1832 1833 1834 1835 1836
    # Is key a scriptable key, a related key or a "real" column ?
    script = self.getScriptableKeyScript(key)
    if script is None:
      related_key_definition = self.getRelatedKeyDefinition(key)
      if related_key_definition is None:
        if key in self.getColumnMap():
          search_key = self.getSearchKey(key, search_key_name)
        else:
          search_key = None
1837
      else:
1838
        search_key = self.getSearchKey(key, 'RelatedKey')
1839
    else:
1840
      func_code = script.__code__
1841 1842 1843 1844 1845 1846 1847 1848 1849
      search_key = (
        AdvancedSearchKeyWrapperForScriptableKey if (
          # 5: search_value (under any name), "search_key", "group",
          # "logical_operator", "comparison_operator". The last 4 are possible
          # in any order.
          func_code.co_argcount == 5 or
          getattr(func_code, 'co_flags', 0) & CO_VARKEYWORDS
        ) else SearchKeyWrapperForScriptableKey
      )(key, script)
1850
      related_key_definition = None
1851 1852
    return search_key, related_key_definition

1853
  security.declarePrivate('hasColumn')
1854 1855 1856
  def hasColumn(self, column):
    return self.getColumnSearchKey(column)[0] is not None

1857
  security.declarePrivate('getColumnDefaultSearchKey')
1858
  def getColumnDefaultSearchKey(self, key, search_key_name=None):
1859 1860 1861 1862
    """
      Return a SearchKey instance which would ultimately receive the value
      associated with given key.
    """
1863 1864
    search_key, related_key_definition = self.getColumnSearchKey(key,
      search_key_name=search_key_name)
1865 1866 1867 1868
    if search_key is None:
      result = None
    else:
      if related_key_definition is not None:
1869 1870
        search_key = search_key.getSearchKey(sql_catalog=self,
          related_key_definition=related_key_definition)
1871 1872
    return search_key

1873
  security.declareProtected(access_contents_information, 'buildSingleQuery')
1874 1875 1876 1877 1878 1879 1880 1881 1882
  def buildSingleQuery(
    self,
    key,
    value,
    search_key_name=None,
    logical_operator=None,
    comparison_operator=None,
    ignore_unknown_columns=False,
  ):
1883 1884 1885 1886
    """
      From key and value, determine the SearchKey to use and generate a Query
      from it.
    """
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896
    return self._buildQuery(
      buildQueryFromSearchKey=lambda search_key: search_key.buildQuery(
        value,
        logical_operator=logical_operator,
        comparison_operator=comparison_operator,
      ),
      key=key,
      search_key_name=search_key_name,
      ignore_unknown_columns=ignore_unknown_columns,
    )
1897

1898
  def _buildQueryFromAbstractSyntaxTreeNode(self, node, search_key, wrap, ignore_unknown_columns):
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
    """
    node
      Abstract syntax tree node (see SearchText/AdvancedSearchTextParser.py,
      classes inheriting from Node).
    search_key
      Search key to generate queries from values found during syntax tree walk.
    wrap
      Callback transforming a value just before it is passed to
      search_key.buildQuery .
    """
1909 1910 1911 1912
    if search_key.dequoteParsedText():
      _dequote = dequote
    else:
      _dequote = lambda x: x
1913
    if node.isLeaf():
1914
      result = search_key.buildQuery(wrap(_dequote(node.getValue())),
1915
        comparison_operator=node.getComparisonOperator())
1916
    elif node.isColumn():
1917 1918 1919 1920 1921
      result = self.buildQueryFromAbstractSyntaxTreeNode(
        node.getSubNode(),
        node.getColumnName(),
        ignore_unknown_columns=ignore_unknown_columns,
      )
1922 1923 1924 1925 1926 1927
    else:
      query_list = []
      value_dict = {}
      append = query_list.append
      for subnode in node.getNodeList():
        if subnode.isLeaf():
1928
          value_dict.setdefault(subnode.getComparisonOperator(),
1929
            []).append(wrap(_dequote(subnode.getValue())))
1930
        else:
1931 1932 1933 1934 1935 1936
          subquery = self._buildQueryFromAbstractSyntaxTreeNode(
            subnode,
            search_key,
            wrap,
            ignore_unknown_columns,
          )
1937 1938
          if subquery is not None:
            append(subquery)
1939
      logical_operator = node.getLogicalOperator()
1940 1941 1942 1943
      if logical_operator == 'not':
        query_logical_operator = None
      else:
        query_logical_operator = logical_operator
1944
      for comparison_operator, value_list in six.iteritems(value_dict):
1945
        append(search_key.buildQuery(value_list, comparison_operator=comparison_operator, logical_operator=query_logical_operator))
1946 1947
      if logical_operator == 'not' or len(query_list) > 1:
        result = ComplexQuery(query_list, logical_operator=logical_operator)
1948 1949
      elif len(query_list) == 1:
        result = query_list[0]
1950
      else:
1951 1952 1953
        result = None
    return result

1954
  security.declareProtected(access_contents_information, 'buildQueryFromAbstractSyntaxTreeNode')
1955
  def buildQueryFromAbstractSyntaxTreeNode(self, node, key, wrap=lambda x: x, ignore_unknown_columns=False):
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
    """
      Build a query from given Abstract Syntax Tree (AST) node by recursing in
      its childs.
      This method calls itself recursively when walking the tree.

      node
        AST node being treated.
      key
        Default column (used when there is no explicit column in an AST leaf).

1966
      Expected node API is described in interfaces/abstract_syntax_node.py .
1967
    """
1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
    return self._buildQuery(
      buildQueryFromSearchKey=lambda search_key: self._buildQueryFromAbstractSyntaxTreeNode(
        node,
        search_key,
        wrap,
        ignore_unknown_columns,
      ),
      key=key,
      ignore_unknown_columns=ignore_unknown_columns,
    )

  def _buildQuery(self, buildQueryFromSearchKey, key, search_key_name=None, ignore_unknown_columns=False):
    """
      Determine the SearchKey to use to generate a Query, and call buildQueryFromSearchKey with it.
    """
1983
    search_key, related_key_definition = self.getColumnSearchKey(key, search_key_name)
1984
    if search_key is None:
1985 1986 1987
      message = 'Unknown column ' + repr(key)
      if not ignore_unknown_columns:
        raise ValueError(message)
1988
      # Unknown, skip loudly
1989
      LOG('SQLCatalog', WARNING, message)
1990
      result = None
1991 1992 1993 1994
    else:
      if related_key_definition is None:
        build_key = search_key
      else:
1995
        build_key = search_key.getSearchKey(sql_catalog=self,
1996 1997 1998 1999
          related_key_definition=related_key_definition,
          search_key_name=search_key_name,
        )
      result = buildQueryFromSearchKey(search_key=build_key)
2000
      if related_key_definition is not None:
2001 2002 2003
        result = search_key.buildQuery(sql_catalog=self,
          related_key_definition=related_key_definition,
          search_value=result)
2004 2005
    return result

2006 2007 2008 2009 2010
  def _parseSearchText(self, search_key, search_text, is_valid=None):
    if is_valid is None:
      is_valid = self.isValidColumn
    return search_key.parseSearchText(search_text, is_valid)

2011
  security.declareProtected(access_contents_information, 'parseSearchText')
2012 2013 2014
  def parseSearchText(self, search_text, column=None, search_key=None,
                      is_valid=None):
    if column is None and search_key is None:
2015
      raise ValueError('One of column and search_key must be different from None')
2016 2017 2018
    return self._parseSearchText(self.getSearchKey(
      column, search_key=search_key), search_text, is_valid=is_valid)

2019
  security.declareProtected(access_contents_information, 'buildQuery')
2020
  def buildQuery(self, kw, ignore_empty_string=True, operator='and', ignore_unknown_columns=False):
2021 2022 2023
    query_list = []
    append = query_list.append
    # unknown_column_dict: contains all (key, value) pairs which could not be
2024
    # changed into queries.
2025
    unknown_column_dict = {}
2026 2027 2028
    # empty_value_dict: contains all keys whose value causes them to be
    # discarded.
    empty_value_dict = {}
2029
    for key, value in six.iteritems(kw):
2030
      result = None
2031 2032 2033 2034 2035 2036 2037
      if key in DOMAIN_STRICT_MEMBERSHIP_DICT:
        if value is None:
          continue
        value = self.getPortalObject().portal_selections.asDomainQuery(
          value,
          strict_membership=DOMAIN_STRICT_MEMBERSHIP_DICT[key],
        )
2038 2039 2040 2041 2042
      if isinstance(value, dict_type_list):
        # Cast dict-ish types into plain dicts.
        value = dict(value)
      if ignore_empty_string and (
          value == ''
2043
          or (isinstance(value, list_type_list) and not value)
2044 2045 2046
          or (isinstance(value, dict) and (
            'query' not in value
            or value['query'] == ''
2047 2048
            or (isinstance(value['query'], list_type_list)
              and not value['query'])))):
2049
        # We have an empty value, do not create a query from it
2050
        empty_value_dict[key] = value
2051
      else:
2052
        if isinstance(value, dict):
2053 2054 2055 2056 2057 2058
          # Dictionnary: might contain the search key to use.
          search_key_name = value.get('key')
          # Backward compatibility: former "Keyword" key is now named
          # "KeywordKey".
          if search_key_name == 'Keyword':
            search_key_name = value['key'] = 'KeywordKey'
2059 2060 2061 2062
          # Backward compatibility: former "ExactMatch" is now only available
          # as "RawKey"
          elif search_key_name == 'ExactMatch':
            search_key_name = value['key'] = 'RawKey'
2063
        if isinstance(value, BaseQuery):
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087
          # Query instance: use as such, ignore key.
          result = value
        elif isinstance(value, (basestring, dict)):
          # String: parse using key's default search key.
          raw_value = value
          if isinstance(value, dict):
            # De-wrap value for parsing, and re-wrap when building queries.
            def wrap(x):
              result = raw_value.copy()
              result['query'] = x
              return result
            value = value['query']
          else:
            wrap = lambda x: x
            search_key_name = None
          search_key = self.getColumnDefaultSearchKey(key,
            search_key_name=search_key_name)
          if search_key is not None:
            if isinstance(value, basestring):
              abstract_syntax_tree = self._parseSearchText(search_key, value)
            else:
              abstract_syntax_tree = None
            if abstract_syntax_tree is None:
              # Parsing failed, create a query from the bare string.
2088 2089 2090 2091 2092 2093
              result = self.buildSingleQuery(
                key=key,
                value=raw_value,
                search_key_name=search_key_name,
                ignore_unknown_columns=ignore_unknown_columns,
              )
2094 2095
            else:
              result = self.buildQueryFromAbstractSyntaxTreeNode(
2096 2097 2098
                abstract_syntax_tree, key, wrap,
                ignore_unknown_columns=ignore_unknown_columns,
              )
2099 2100
        else:
          # Any other type, just create a query. (can be a DateTime, ...)
2101 2102 2103 2104 2105
          result = self.buildSingleQuery(
            key=key,
            value=value,
            ignore_unknown_columns=ignore_unknown_columns,
          )
2106 2107 2108 2109 2110
        if result is None:
          # No query could be created, emit a log, add to unknown column dict.
          unknown_column_dict[key] = value
        else:
          append(result)
2111 2112
    if len(empty_value_dict):
      LOG('SQLCatalog', WARNING, 'Discarding columns with empty values: %r' % (empty_value_dict, ))
2113
    if len(unknown_column_dict):
2114 2115 2116 2117 2118
      message = 'Unknown columns ' + repr(unknown_column_dict.keys())
      if ignore_unknown_columns:
        LOG('SQLCatalog', WARNING, message)
      else:
        raise TypeError(message)
2119
    return ComplexQuery(query_list, logical_operator=operator)
2120

2121
  security.declarePrivate('buildOrderByList')
2122
  def buildOrderByList(self, sort_on=None, sort_order=None):
2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143
    """
      Internal method. Should not be used by code outside buildSQLQuery.

      It is in a separate method because this code is here to keep backward
      compatibility with an ambiguous API, and as such is ugly. So it's better
      to conceal it to its own method.

      It does not preserve backward compatibility for:
        'sort-on' parameter
        'sort-on' property
        'sort-order' parameter
        'sort-order' property
    """
    order_by_list = []
    append = order_by_list.append
    if sort_on is not None:
      if not isinstance(sort_on, (tuple, list)):
        sort_on = [[sort_on]]
      for item in sort_on:
        if isinstance(item, (tuple, list)):
          item = list(item)
2144
        else:
2145 2146 2147 2148
          item = [item]
        if sort_order is not None and len(item) == 1:
          item.append(sort_order)
        if len(item) > 1:
2149
          if item[1] in ('descending', 'reverse', 'desc', 'DESC'):
2150 2151 2152 2153 2154 2155
            item[1] = 'DESC'
          else:
            item[1] = 'ASC'
          if len(item) > 2:
            if item[2] == 'int':
              item[2] = 'SIGNED'
2156 2157
            elif item[2] == 'float':
              item[2] = 'DECIMAL'
2158 2159 2160
        append(item)
    return order_by_list

2161
  security.declarePrivate('buildEntireQuery')
2162 2163 2164 2165
  def buildEntireQuery(self, kw,
                       query_table='catalog',
                       query_table_alias=None,
                       ignore_empty_string=1,
2166
                       limit=None, extra_column_list=(),
2167
                       ignore_unknown_columns=False):
2168 2169 2170
    kw = self.getCannonicalArgumentDict(kw)
    group_by_list = kw.pop('group_by_list', [])
    select_dict = kw.pop('select_dict', {})
2171 2172
    # Handle left_join_list
    left_join_list = kw.pop('left_join_list', ())
2173
    inner_join_list = kw.pop('inner_join_list', ())
2174 2175 2176 2177 2178
    # Handle implicit_join. It's True by default, as there's a lot of code
    # in BT5s and elsewhere that calls buildSQLQuery() expecting implicit
    # join. self._queryResults() defaults it to False for those using
    # catalog.searchResults(...) or catalog(...) directly.
    implicit_join = kw.pop('implicit_join', True)
2179
    # Handle order_by_list
2180
    order_by_list = kw.pop('order_by_list', [])
2181
    return EntireQuery(
2182
      query=self.buildQuery(kw, ignore_empty_string=ignore_empty_string, ignore_unknown_columns=ignore_unknown_columns),
2183 2184 2185
      order_by_list=order_by_list,
      group_by_list=group_by_list,
      select_dict=select_dict,
2186
      left_join_list=left_join_list,
2187
      inner_join_list=inner_join_list,
2188
      implicit_join=implicit_join,
2189 2190
      limit=limit,
      catalog_table_name=query_table,
2191
      catalog_table_alias=query_table_alias,
2192
      extra_column_list=extra_column_list,
2193
    )
2194

2195
  security.declarePublic('buildSQLQuery')
2196 2197 2198
  def buildSQLQuery(self, query_table='catalog',
                          query_table_alias=None,
                          REQUEST=None,
2199
                          ignore_empty_string=1, only_group_columns=False,
2200
                          limit=None, extra_column_list=(),
2201
                          ignore_unknown_columns=False,
2202
                          **kw):
2203 2204 2205
    return self.buildEntireQuery(
      kw,
      query_table=query_table,
2206
      query_table_alias=query_table_alias,
2207 2208 2209
      ignore_empty_string=ignore_empty_string,
      limit=limit,
      extra_column_list=extra_column_list,
2210
      ignore_unknown_columns=ignore_unknown_columns,
2211 2212 2213 2214
    ).asSQLExpression(
      self,
      only_group_columns,
    ).asSQLExpressionDict()
2215

2216
  # Compatibililty SQL Sql
2217
  security.declarePrivate('buildSqlQuery')
2218 2219
  buildSqlQuery = buildSQLQuery

2220
  security.declareProtected(access_contents_information, 'getCannonicalArgumentDict')
2221 2222 2223 2224
  def getCannonicalArgumentDict(self, kw):
    """
    Convert some catalog arguments to generic arguments.

2225 2226 2227
    group_by -> group_by_list
    select_list -> select_dict
    sort_on, sort_on_order -> order_list
2228 2229
    """
    kw = kw.copy()
2230 2231 2232 2233

    kw['group_by_list'] = kw.pop('group_by_list', None) or kw.pop('group_by', [])

    select_dict = kw.pop('select_dict', None) or kw.pop('select_list', {})
2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253
    if isinstance(select_dict, (list, tuple)):
      select_dict = dict.fromkeys(select_dict)
    kw['select_dict'] = select_dict

    order_by_list = kw.pop('order_by_list', None)
    sort_on = kw.pop('sort_on', None)
    sort_order = kw.pop('sort_order', None)
    if order_by_list is None:
      order_by_list = self.buildOrderByList(
        sort_on=sort_on,
        sort_order=sort_order,
      )
    else:
      if sort_on is not None:
        LOG('SQLCatalog', WARNING, 'order_by_list and sort_on were given, ignoring sort_on.')
      if sort_order is not None:
        LOG('SQLCatalog', WARNING, 'order_by_list and sort_order were given, ignoring sort_order.')
    kw['order_by_list'] = order_by_list or []
    return kw

2254 2255 2256
  def getSqlCatalogSearchKeysList(self):
    return self.sql_catalog_search_keys

2257
  @transactional_cache_decorator
2258 2259 2260
  def _getSearchKeyDict(self):
    result = {}
    search_key_column_dict = {
2261 2262 2263
      'KeywordKey': self.getSqlCatalogKeywordSearchKeysList(),
      'FullTextKey': self.getSqlCatalogFullTextSearchKeysList(),
      'DateTimeKey': self.getSqlCatalogDatetimeSearchKeysList(),
2264
    }
2265
    for key, column_list in six.iteritems(search_key_column_dict):
2266 2267
      for column in column_list:
        if column in result:
2268
          LOG('SQLCatalog', WARNING, 'Ambiguous configuration: column %r is set to use %r key, but also to use %r key. Former takes precedence.' % (column, result[column], key))
2269 2270
        else:
          result[column] = key
2271
    for line in self.getSqlCatalogSearchKeysList():
2272 2273 2274 2275 2276
      try:
        column, key = [x.strip() for x in line.split('|', 2)]
        result[column] = key
      except ValueError:
        LOG('SQLCatalog', WARNING, 'Wrong configuration for sql_catalog_search_keys: %r' % line)
2277 2278
    return result

2279
  security.declarePrivate('getSearchKey')
2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294
  def getSearchKey(self, column, search_key=None):
    """
      Return an instance of a SearchKey class.

      column (string)
        The column for which the search key will be returned.
      search_key (string)
        If given, must be the name of a SearchKey class to be returned.
        Returned value will be an instance of that class, even if column has
        been configured to use a different one.
    """
    if search_key is None:
      search_key = self._getSearchKeyDict().get(column, 'DefaultKey')
    return getSearchKeyInstance(search_key, column)

2295
  security.declarePrivate('getComparisonOperator')
2296 2297 2298 2299 2300 2301 2302 2303 2304 2305
  def getComparisonOperator(self, operator):
    """
      Return an instance of an Operator class.

      operator (string)
        String defining the expected operator class.
        See Operator module to have a list of available operators.
    """
    return getComparisonOperatorInstance(operator)

2306

2307
  security.declarePrivate('queryResults')
2308 2309 2310 2311 2312 2313 2314 2315 2316
  def queryResults(
        self,
        sql_method,
        REQUEST=None,
        src__=0,
        build_sql_query_method=None,
        # XXX should get zsql_brain from ZSQLMethod class itself
        zsql_brain=None,
        implicit_join=False,
2317
        query_timeout=None,
2318 2319
        **kw
      ):
2320 2321
    if build_sql_query_method is None:
      build_sql_query_method = self.buildSQLQuery
2322 2323 2324 2325 2326 2327 2328 2329
    query = build_sql_query_method(
      REQUEST=REQUEST,
      implicit_join=implicit_join,
      **kw
    )
    return sql_method(
      src__=src__,
      zsql_brain=zsql_brain,
2330 2331
      selection_domain=None, # BBB
      selection_report=None, # BBB
2332 2333 2334 2335 2336 2337 2338
      where_expression=query['where_expression'],
      select_expression=query['select_expression'],
      group_by_expression=query['group_by_expression'],
      from_table_list=query['from_table_list'],
      from_expression=query['from_expression'],
      sort_on=query['order_by_expression'],
      limit_expression=query['limit_expression'],
2339
      query_timeout=query_timeout,
2340
    )
2341

2342 2343 2344
  def getSqlSearchResults(self):
    return self.sql_search_results

2345
  security.declarePrivate('getSearchResultsMethod')
2346
  def getSearchResultsMethod(self):
2347
    return self._getOb(self.getSqlSearchResults())
2348

2349
  security.declarePrivate('searchResults')
2350
  def searchResults(self, REQUEST=None, **kw):
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2351
    """ Returns a list of brains from a set of constraints on variables """
2352 2353
    if 'only_group_columns' in kw:
      # searchResults must be consistent in API with countResults
2354 2355 2356
      raise ValueError(
        'only_group_columns does not belong to this API level, use queryResults directly',
      )
2357 2358 2359 2360 2361 2362
    return self.queryResults(
      self.getSearchResultsMethod(),
      REQUEST=REQUEST,
      extra_column_list=self.getCatalogSearchResultKeys(),
      **kw
    )
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2363 2364 2365

  __call__ = searchResults

2366 2367 2368
  def getSqlCountResults(self):
    return self.sql_count_results

2369
  security.declarePrivate('getCountResultsMethod')
2370
  def getCountResultsMethod(self):
2371
    return self._getOb(self.getSqlCountResults())
2372

2373
  security.declarePrivate('countResults')
2374
  def countResults(self, REQUEST=None, **kw):
2375
    """ Returns the number of items which satisfy the conditions """
2376 2377 2378 2379 2380 2381 2382
    return self.queryResults(
      self.getCountResultsMethod(),
      REQUEST=REQUEST,
      extra_column_list=self.getCatalogSearchResultKeys(),
      only_group_columns=True,
      **kw
    )
Jean-Paul Smets's avatar
Jean-Paul Smets committed
2383

2384
  security.declarePrivate('isAdvancedSearchText')
2385 2386 2387
  def isAdvancedSearchText(self, search_text):
    return isAdvancedSearchText(search_text, self.isValidColumn)

2388 2389 2390
  def getSqlRecordObjectList(self):
    return self.sql_record_object_list

2391
  security.declarePrivate('recordObjectList')
2392
  def recordObjectList(self, path_list, catalog=1):
2393
    """
2394
      Record the path of an object being catalogged or uncatalogged.
2395
    """
2396
    method = self._getOb(self.getSqlRecordObjectList())
2397
    method(path_list=path_list, catalog=catalog)
2398

2399 2400 2401
  def getSqlDeleteRecordedObjectList(self):
    return self.sql_delete_recorded_object_list

2402
  security.declarePrivate('deleteRecordedObjectList')
2403
  def deleteRecordedObjectList(self, uid_list=()):
2404 2405 2406
    """
      Delete all objects which contain any path.
    """
2407
    method = self._getOb(self.getSqlDeleteRecordedObjectList())
2408
    method(uid_list=uid_list)
2409

2410 2411 2412
  def getSqlReadRecordedObjectList(self):
    return self.sql_read_recorded_object_list

2413
  security.declarePrivate('readRecordedObjectList')
2414
  def readRecordedObjectList(self, catalog=1):
2415 2416 2417
    """
      Read objects. Note that this might not return all objects since ZMySQLDA limits the max rows.
    """
2418
    method = self._getOb(self.getSqlReadRecordedObjectList())
2419
    return method(catalog=catalog)
2420

2421 2422 2423 2424 2425 2426 2427 2428
  security.declarePublic('getConnectionId')
  def getConnectionId(self, deferred=False):
    """
    Returns the 'normal' connection being used by the SQL Method(s) in this
    catalog.
    If 'deferred' is True, then returns the deferred connection
    """
    for method in self.objectValues():
2429 2430
      if method.meta_type in ('Z SQL Method', 'ERP5 SQL Method') and ('deferred' in method.connection_id) == deferred:
        return method.connection_id
2431

2432 2433
  def getSqlCatalogObjectList(self):
    try:
2434
      return self.sql_catalog_object
2435
    except AttributeError:
2436
      return ()
2437 2438 2439

  def getSqlUncatalogObjectList(self):
    try:
2440
      return self.sql_uncatalog_object
2441
    except AttributeError:
2442
      return ()
2443 2444 2445

  def getSqlUpdateObjectList(self):
    try:
2446
      return self.sql_update_object
2447
    except AttributeError:
2448
      return ()
2449 2450 2451

  def getSqlCatalogObjectListList(self):
    try:
2452
      return self.sql_catalog_object_list
2453
    except AttributeError:
2454
      return ()
2455

2456
  security.declarePrivate('getFilterableMethodList')
2457 2458 2459 2460
  def getFilterableMethodList(self):
    """
    Returns only zsql methods wich catalog or uncatalog objets
    """
2461
    method_id_set = set()
2462
    if withCMF:
2463
      method_id_set.update(
2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
        self.getSqlCatalogObjectList() +
        self.getSqlUncatalogObjectList() +
        self.getSqlUpdateObjectList() +
        self.getSqlCatalogObjectListList()
      )
    return [
      method
      for method in (
        getattr(self, method_id, None)
        for method_id in method_id_set
      )
      if method is not None
    ]
2477

2478
  security.declarePrivate('getExpressionContext')
2479 2480 2481
  def getExpressionContext(self, ob):
      '''
      An expression context provides names for TALES expressions.
2482
      XXX deprecated
2483 2484 2485 2486 2487
      '''
      if withCMF:
        data = {
            'here':         ob,
            'container':    aq_parent(aq_inner(ob)),
2488 2489 2490
            #'root':         ob.getPhysicalRoot(),
            #'request':      getattr( ob, 'REQUEST', None ),
            #'modules':      SecureModuleImporter,
2491
            #'user':         getSecurityManager().getUser().getIdOrUserName(),
2492 2493 2494 2495 2496 2497 2498 2499 2500
            # XXX these below are defined, because there is no
            # accessor for some attributes, and restricted environment
            # may not access them directly.
            'isDelivery':   ob.isDelivery,
            'isMovement':   ob.isMovement,
            'isPredicate':  ob.isPredicate,
            'isDocument':   ob.isDocument,
            'isInventory':  ob.isInventory,
            'isInventoryMovement': ob.isInventoryMovement,
2501 2502 2503
            }
        return getEngine().getContext(data)

2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516
  def _getOptimizerSwitch(self):
    method_name = self.sql_optimizer_switch
    try:
      method = getattr(self, method_name)
    except AttributeError:
      pass
    else:
      try:
        return method()[0][0]
      except (ConflictError, DatabaseError):
        raise
      except Exception:
        pass
2517 2518 2519 2520 2521 2522
    LOG(
      'SQLCatalog',
      WARNING,
      'getTableIds failed with the method %s' % method_name,
      error=True,
    )
2523 2524 2525
    return ''

  security.declarePublic('getOptimizerSwitchKeyList')
2526
  @transactional_cache_decorator
2527
  def getOptimizerSwitchKeyList(self):
2528 2529 2530 2531
    return [
      pair.split('=', 1)[0]
      for pair in self._getOptimizerSwitch().split(',')
    ]
2532

2533
InitializeClass(Catalog)
2534

Jean-Paul Smets's avatar
Jean-Paul Smets committed
2535
class CatalogError(Exception): pass
Ivan Tyagov's avatar
Ivan Tyagov committed
2536

2537 2538 2539 2540
from .Query.Query import Query as BaseQuery
from .Query.SimpleQuery import SimpleQuery
from .Query.ComplexQuery import ComplexQuery
from .Query.AutoQuery import AutoQuery
2541
Query = AutoQuery
2542 2543

def NegatedQuery(query):
2544
  return ComplexQuery(query, logical_operator='not')
2545

2546 2547 2548 2549 2550 2551
def AndQuery(*args):
  return ComplexQuery(logical_operator='and', *args)

def OrQuery(*args):
  return ComplexQuery(logical_operator='or', *args)

2552 2553 2554
allow_class(SimpleQuery)
allow_class(ComplexQuery)

2555
from . import SearchKey
2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
SEARCH_KEY_INSTANCE_POOL = {}
SEARCH_KEY_CLASS_CACHE = {}

def getSearchKeyInstance(search_key_class_name, column):
  assert isinstance(search_key_class_name, basestring)
  try:
    search_key_class = SEARCH_KEY_CLASS_CACHE[search_key_class_name]
  except KeyError:
    search_key_class = getattr(getattr(SearchKey, search_key_class_name),
                               search_key_class_name)
    SEARCH_KEY_CLASS_CACHE[search_key_class_name] = search_key_class
  try:
    instance_dict = SEARCH_KEY_INSTANCE_POOL[search_key_class]
  except KeyError:
    instance_dict = SEARCH_KEY_INSTANCE_POOL[search_key_class] = {}
  try:
    result = instance_dict[column]
  except KeyError:
    result = instance_dict[column] = search_key_class(column)
  return result

2577 2578 2579 2580 2581 2582 2583 2584 2585
class SearchKeyWrapperForScriptableKey(SearchKey.SearchKey.SearchKey):
  """
    This SearchKey is a simple wrapper around a ScriptableKey, so such script
    can be used in place of a regular SearchKey.
  """
  def __init__(self, column, script):
    self.script = script
    super(SearchKeyWrapperForScriptableKey, self).__init__(column)

2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614
  def buildQuery(self, search_value, group=None,
                 logical_operator=None, comparison_operator=None):
    """
    Becomes buildQuery if self.script does not support extra parameters.
    """
    if group is not None:
      raise ValueError(
        'ScriptableKey cannot be used inside a group (%r given).' % (group, ),
      )
    if logical_operator is not None:
      raise ValueError(
        'ScriptableKey ignores logical operators (%r given).' % (logical_operator, ),
      )
    if comparison_operator:
      raise ValueError(
        'ScriptableKey ignores comparison operators (%r given).' % (comparison_operator, ),
      )
    return self.script(search_value)

class AdvancedSearchKeyWrapperForScriptableKey(SearchKey.DefaultKey.DefaultKey):
  """
    Similar to SearchKeyWrapperForScriptableKey, but exposes more of the SearchKey API.
  """
  security = ClassSecurityInfo()

  def __init__(self, column, script):
    self.script = script
    super(AdvancedSearchKeyWrapperForScriptableKey, self).__init__(column)

2615
  security.declarePublic('processSearchValue')
2616 2617 2618 2619 2620 2621 2622
  def processSearchValue(
    self,
    default_comparison_operator='=',
    detect_like=False,
    *args,
    **kw
  ):
2623 2624 2625 2626 2627
    """
    Expose _processSearchValue to self.script.
    Only callable from full-API scripts, as others do not get access to our
    instance.
    """
2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643
    # Note about patching self: this method is not reentrant, so (un)patching
    # is fine.
    if not detect_like:
      self._guessComparisonOperator = super(
        # Note: not AdvancedSearchKeyWrapperForScriptableKey, trying to get
        # above it.
        SearchKey.DefaultKey.DefaultKey,
        self,
      )._guessComparisonOperator
    # Note: No need to clean this up, it will be overwritten on next call.
    self.default_comparison_operator = default_comparison_operator
    try:
      return self._processSearchValue(*args, **kw)
    finally:
      if not detect_like:
        del self._guessComparisonOperator
2644

2645 2646 2647 2648 2649 2650 2651
  def buildQuery(
    self,
    search_value,
    group=None,
    logical_operator=None,
    comparison_operator=None,
  ):
2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662
    """
    Becomes buildQuery if self.script supports extra parameters.
    """
    assert logical_operator in (None, 'and', 'or'), repr(logical_operator)
    return self.script(
      search_value,
      search_key=self,
      group=group,
      logical_operator=logical_operator,
      comparison_operator=comparison_operator,
    )
2663
InitializeClass(AdvancedSearchKeyWrapperForScriptableKey)
2664

2665
from .Operator import operator_dict
2666 2667 2668
def getComparisonOperatorInstance(operator):
  return operator_dict[operator]

2669
from .Query.EntireQuery import EntireQuery
2670 2671

verifyClass(ISearchKeyCatalog, Catalog)