vcs_base.py
46 lines
| 1.9 KiB
| text/x-python
|
PythonLexer
/ vcsserver / vcs_base.py
r749 | # RhodeCode VCSServer provides access to different vcs backends via network. | |||
r1126 | # Copyright (C) 2014-2023 RhodeCode GmbH | |||
r749 | # | |||
# This program is free software; you can redistribute it and/or modify | ||||
# it under the terms of the GNU General Public License as published by | ||||
# the Free Software Foundation; either version 3 of the License, or | ||||
# (at your option) any later version. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU General Public License | ||||
# along with this program; if not, write to the Free Software Foundation, | ||||
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||||
r961 | from vcsserver.lib import rc_cache | |||
r749 | ||||
r1048 | ||||
r1152 | class RemoteBase: | |||
r749 | EMPTY_COMMIT = '0' * 40 | |||
r964 | def _region(self, wire): | |||
r996 | cache_repo_id = wire.get('cache_repo_id', '') | |||
r1135 | cache_namespace_uid = f'cache_repo.{rc_cache.CACHE_OBJ_CACHE_VER}.{cache_repo_id}' | |||
r961 | return rc_cache.get_or_create_region('repo_object', cache_namespace_uid) | |||
r752 | ||||
r749 | def _cache_on(self, wire): | |||
context = wire.get('context', '') | ||||
r1114 | context_uid = f'{context}' | |||
r749 | repo_id = wire.get('repo_id', '') | |||
cache = wire.get('cache', True) | ||||
cache_on = context and cache | ||||
return cache_on, context_uid, repo_id | ||||
r961 | ||||
def vcsserver_invalidate_cache(self, wire, delete): | ||||
r996 | cache_repo_id = wire.get('cache_repo_id', '') | |||
r1135 | cache_namespace_uid = f'cache_repo.{rc_cache.CACHE_OBJ_CACHE_VER}.{cache_repo_id}' | |||
r961 | ||||
if delete: | ||||
rc_cache.clear_cache_namespace( | ||||
r1118 | 'repo_object', cache_namespace_uid, method=rc_cache.CLEAR_DELETE) | |||
r961 | ||||
r1135 | repo_id = wire.get('repo_id', '') | |||
r961 | return {'invalidated': {'repo_id': repo_id, 'delete': delete}} | |||