##// END OF EJS Templates
chore(deps): bumped pytest related deps
chore(deps): bumped pytest related deps

File last commit:

r1152:a0c49580 default
r1218:5a5e18ae tip default
Show More
vcs_base.py
46 lines | 1.9 KiB | text/x-python | PythonLexer
vcs: use single base for shared functions of Remote objects
r749 # RhodeCode VCSServer provides access to different vcs backends via network.
source-code: updated copyrights to 2023
r1126 # Copyright (C) 2014-2023 RhodeCode GmbH
vcs: use single base for shared functions of Remote objects
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
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961 from vcsserver.lib import rc_cache
vcs: use single base for shared functions of Remote objects
r749
python3: code change for py3 support...
r1048
lint: auto-fixes
r1152 class RemoteBase:
vcs: use single base for shared functions of Remote objects
r749 EMPTY_COMMIT = '0' * 40
caches: small naming refactor to fix tests.
r964 def _region(self, wire):
caches: fixed filename backend crash by using sanitazed cache_repo_id instead of one with '/' in the name.
r996 cache_repo_id = wire.get('cache_repo_id', '')
caches: use of global cache prefixes so we can keep compatability when switching from OLD rc to new python3 based
r1135 cache_namespace_uid = f'cache_repo.{rc_cache.CACHE_OBJ_CACHE_VER}.{cache_repo_id}'
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961 return rc_cache.get_or_create_region('repo_object', cache_namespace_uid)
caches: use region conf from base class
r752
vcs: use single base for shared functions of Remote objects
r749 def _cache_on(self, wire):
context = wire.get('context', '')
python3: fixes and code optimization for python3.11
r1114 context_uid = f'{context}'
vcs: use single base for shared functions of Remote objects
r749 repo_id = wire.get('repo_id', '')
cache = wire.get('cache', True)
cache_on = context and cache
return cache_on, context_uid, repo_id
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961
def vcsserver_invalidate_cache(self, wire, delete):
caches: fixed filename backend crash by using sanitazed cache_repo_id instead of one with '/' in the name.
r996 cache_repo_id = wire.get('cache_repo_id', '')
caches: use of global cache prefixes so we can keep compatability when switching from OLD rc to new python3 based
r1135 cache_namespace_uid = f'cache_repo.{rc_cache.CACHE_OBJ_CACHE_VER}.{cache_repo_id}'
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961
if delete:
rc_cache.clear_cache_namespace(
core: various cleanups and fixes
r1118 'repo_object', cache_namespace_uid, method=rc_cache.CLEAR_DELETE)
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961
caches: use of global cache prefixes so we can keep compatability when switching from OLD rc to new python3 based
r1135 repo_id = wire.get('repo_id', '')
caches: allow regional per repo caches, and invalidate caches via a remote call.
r961 return {'invalidated': {'repo_id': repo_id, 'delete': delete}}