##// END OF EJS Templates
fixed binary file issues
fixed binary file issues

File last commit:

r1042:ab0a2b69 beta
r1043:6ec53c16 beta
Show More
scm.py
385 lines | 12.9 KiB | text/x-python | PythonLexer
rolled back to make transient since got some exceptions on expunge...
r757 # -*- coding: utf-8 -*-
"""
docs updates
r811 rhodecode.model.scm
~~~~~~~~~~~~~~~~~~~
rolled back to make transient since got some exceptions on expunge...
r757
docs updates
r811 Scm model for RhodeCode
rolled back to make transient since got some exceptions on expunge...
r757 :created_on: Apr 9, 2010
:author: marcink
fixed copyright year to 2011
r902 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
rolled back to make transient since got some exceptions on expunge...
r757 :license: GPLv3, see COPYING for more details.
"""
Refactor codes for scm model...
r691 # 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; version 2
# of the License or (at your opinion) any later version of the license.
#
# 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.
rolled back to make transient since got some exceptions on expunge...
r757 import os
import time
import traceback
import logging
Code refactor number 2
r1022 from mercurial import ui
from sqlalchemy.exc import DatabaseError
from beaker.cache import cache_region, region_invalidate
rolled back to make transient since got some exceptions on expunge...
r757 from vcs import get_backend
from vcs.utils.helpers import get_scm
from vcs.exceptions import RepositoryError, VCSError
from vcs.utils.lazy import LazyProperty
Disable git support due to large problems with dulwich....
r710 from rhodecode import BACKENDS
Refactor codes for scm model...
r691 from rhodecode.lib import helpers as h
from rhodecode.lib.auth import HasRepoPermissionAny
another major code rafactor, reimplemented (almost from scratch)...
r1038 from rhodecode.lib.utils import get_repos as get_filesystem_repos, make_ui, \
action_logger
fixed Example celery config to ampq,...
r752 from rhodecode.model import BaseModel
code cleanups
r758 from rhodecode.model.user import UserModel
another major code rafactor, reimplemented (almost from scratch)...
r1038 from rhodecode.model.repo import RepoModel
code cleanups
r758 from rhodecode.model.db import Repository, RhodeCodeUi, CacheInvalidation, \
Implemented fancier top menu for logged and anonymous users...
r784 UserFollowing, UserLog
#50 on point cache invalidation changes....
r692 from rhodecode.model.caching_query import FromCache
rolled back to make transient since got some exceptions on expunge...
r757
Refactor codes for scm model...
r691 log = logging.getLogger(__name__)
rolled back to make transient since got some exceptions on expunge...
r757
added action loggers to following repositories,...
r735 class UserTemp(object):
def __init__(self, user_id):
self.user_id = user_id
Fixed repo of Temp user and repo for better logging
r901
def __repr__(self):
return "<%s('id:%s')>" % (self.__class__.__name__, self.user_id)
added action loggers to following repositories,...
r735 class RepoTemp(object):
def __init__(self, repo_id):
self.repo_id = repo_id
Added icons with numbers of followers and number of forks
r747
Fixed repo of Temp user and repo for better logging
r901 def __repr__(self):
return "<%s('id:%s')>" % (self.__class__.__name__, self.repo_id)
fixed Example celery config to ampq,...
r752 class ScmModel(BaseModel):
docs updates
r811 """Generic Scm Model
Refactor codes for scm model...
r691 """
@LazyProperty
def repos_path(self):
docs updates
r811 """Get's the repositories root path from database
Refactor codes for scm model...
r691 """
docs updates
r811
Refactor codes for scm model...
r691 q = self.sa.query(RhodeCodeUi).filter(RhodeCodeUi.ui_key == '/').one()
return q.ui_value
another major code rafactor, reimplemented (almost from scratch)...
r1038 def repo_scan(self, repos_path=None):
docs updates
r811 """Listing of repositories in given path. This path should not be a
Refactor codes for scm model...
r691 repository itself. Return a dictionary of repository objects
:param repos_path: path to directory containing repositories
"""
docs updates
r811
Refactor codes for scm model...
r691 log.info('scanning for repositories in %s', repos_path)
another major code rafactor, reimplemented (almost from scratch)...
r1038 if repos_path is None:
repos_path = self.repos_path
baseui = make_ui('db')
Refactor codes for scm model...
r691 repos_list = {}
Added recursive scanning for repositories in directory
r877 for name, path in get_filesystem_repos(repos_path, recursive=True):
Refactor codes for scm model...
r691 try:
if repos_list.has_key(name):
raise RepositoryError('Duplicate repository name %s '
'found in %s' % (name, path))
else:
klass = get_backend(path[0])
Disable git support due to large problems with dulwich....
r710 if path[0] == 'hg' and path[0] in BACKENDS.keys():
Refactor codes for scm model...
r691 repos_list[name] = klass(path[1], baseui=baseui)
Disable git support due to large problems with dulwich....
r710 if path[0] == 'git' and path[0] in BACKENDS.keys():
Refactor codes for scm model...
r691 repos_list[name] = klass(path[1])
except OSError:
continue
return repos_list
def get_repos(self, all_repos=None):
docs updates
r811 """Get all repos from db and for each repo create it's backend instance.
Refactor codes for scm model...
r691 and fill that backed with information from database
:param all_repos: give specific repositories list, good for filtering
"""
docs updates
r811
bugfix, when user had no repos he would see all repos in my account, (correct commit)
r767 if all_repos is None:
fixed sorting for repo switcher, fixed length for code stats
r693 all_repos = self.sa.query(Repository)\
.order_by(Repository.repo_name).all()
Refactor codes for scm model...
r691
fixed bug when invalidation was making to many queries when there was no list of invalidation
r791 #get the repositories that should be invalidated
cache list speed improvement
r726 invalidation_list = [str(x.cache_key) for x in \
self.sa.query(CacheInvalidation.cache_key)\
.filter(CacheInvalidation.cache_active == False)\
.all()]
Refactor codes for scm model...
r691 for r in all_repos:
bugfix for getting proper values from cache
r1042 r_dbr = self.get(r.repo_name, invalidation_list)
Refactor codes for scm model...
r691
bugfix for getting proper values from cache
r1042 if r_dbr is not None:
repo, dbrepo = r_dbr
Refactor codes for scm model...
r691 last_change = repo.last_change
tip = h.get_changeset_safe(repo, 'tip')
tmp_d = {}
Extended repo2db mapper with group creation via directory structures...
r878 tmp_d['name'] = r.repo_name
Refactor codes for scm model...
r691 tmp_d['name_sort'] = tmp_d['name'].lower()
another major code rafactor, reimplemented (almost from scratch)...
r1038 tmp_d['description'] = dbrepo.description
Refactor codes for scm model...
r691 tmp_d['description_sort'] = tmp_d['description']
tmp_d['last_change'] = last_change
tmp_d['last_change_sort'] = time.mktime(last_change.timetuple())
tmp_d['tip'] = tip.raw_id
tmp_d['tip_sort'] = tip.revision
tmp_d['rev'] = tip.revision
another major code rafactor, reimplemented (almost from scratch)...
r1038 tmp_d['contact'] = dbrepo.user.full_contact
Refactor codes for scm model...
r691 tmp_d['contact_sort'] = tmp_d['contact']
fixed sorting in maing page by owners
r1005 tmp_d['owner_sort'] = tmp_d['contact']
Refactor codes for scm model...
r691 tmp_d['repo_archives'] = list(repo._get_archives())
tmp_d['last_msg'] = tip.message
tmp_d['repo'] = repo
another major code rafactor, reimplemented (almost from scratch)...
r1038 tmp_d['dbrepo'] = dbrepo
Refactor codes for scm model...
r691 yield tmp_d
another major code rafactor, reimplemented (almost from scratch)...
r1038 def get(self, repo_name, invalidation_list=None, retval='all'):
"""Returns a tuple of Repository,DbRepository,
Get's repository from given name, creates BackendInstance and
Refactor codes for scm model...
r691 propagates it's data from database with all additional information
fixed bug when invalidation was making to many queries when there was no list of invalidation
r791
Refactor codes for scm model...
r691 :param repo_name:
fixed bug when invalidation was making to many queries when there was no list of invalidation
r791 :param invalidation_list: if a invalidation list is given the get
method should not manually check if this repository needs
invalidation and just invalidate the repositories in list
another major code rafactor, reimplemented (almost from scratch)...
r1038 :param retval: string specifing what to return one of 'repo','dbrepo',
'all'if repo or dbrepo is given it'll just lazy load chosen type
and return None as the second
Refactor codes for scm model...
r691 """
if not HasRepoPermissionAny('repository.read', 'repository.write',
'repository.admin')(repo_name, 'get repo check'):
return
fixed bug when invalidation was making to many queries when there was no list of invalidation
r791 #======================================================================
# CACHE FUNCTION
#======================================================================
#50 on point cache invalidation changes....
r692 @cache_region('long_term')
Refactor codes for scm model...
r691 def _get_repo(repo_name):
repo_path = os.path.join(self.repos_path, repo_name)
rolled back to make transient since got some exceptions on expunge...
r757
try:
alias = get_scm(repo_path)[0]
log.debug('Creating instance of %s repository', alias)
backend = get_backend(alias)
except VCSError:
log.error(traceback.format_exc())
another major code rafactor, reimplemented (almost from scratch)...
r1038 log.error('Perhaps this repository is in db and not in '
'filesystem run rescan repositories with '
'"destroy old data " option from admin panel')
rolled back to make transient since got some exceptions on expunge...
r757 return
Refactor codes for scm model...
r691
if alias == 'hg':
another major code rafactor, reimplemented (almost from scratch)...
r1038 repo = backend(repo_path, create=False, baseui=make_ui('db'))
Refactor codes for scm model...
r691 #skip hidden web repository
if repo._get_hidden():
return
else:
repo = backend(repo_path, create=False)
return repo
fixed bug introduced in latest commit
r792 pre_invalidate = True
another major code rafactor, reimplemented (almost from scratch)...
r1038 dbinvalidate = False
fixed bug introduced in latest commit
r792 if invalidation_list is not None:
pre_invalidate = repo_name in invalidation_list
if pre_invalidate:
another major code rafactor, reimplemented (almost from scratch)...
r1038 #this returns object to invalidate
fixed bug introduced in latest commit
r792 invalidate = self._should_invalidate(repo_name)
if invalidate:
log.info('invalidating cache for repository %s', repo_name)
extended admin rescan to show what repositories was added and what removed...
r1039 region_invalidate(_get_repo, None, repo_name)
fixed bug introduced in latest commit
r792 self._mark_invalidated(invalidate)
another major code rafactor, reimplemented (almost from scratch)...
r1038 dbinvalidate = True
fixed bug introduced in latest commit
r792
another major code rafactor, reimplemented (almost from scratch)...
r1038 r, dbr = None, None
if retval == 'repo' or 'all':
r = _get_repo(repo_name)
if retval == 'dbrepo' or 'all':
dbr = RepoModel(self.sa).get_full(repo_name, cache=True,
invalidate=dbinvalidate)
return r, dbr
Refactor codes for scm model...
r691
#50 on point cache invalidation changes....
r692
def mark_for_invalidation(self, repo_name):
docs updates
r811 """Puts cache invalidation task into db for
#50 on point cache invalidation changes....
r692 further global cache invalidation
:param repo_name: this repo that should invalidation take place
"""
docs updates
r811
#50 on point cache invalidation changes....
r692 log.debug('marking %s for invalidation', repo_name)
cache = self.sa.query(CacheInvalidation)\
.filter(CacheInvalidation.cache_key == repo_name).scalar()
if cache:
#mark this cache as inactive
cache.cache_active = False
else:
log.debug('cache key not found in invalidation db -> creating one')
cache = CacheInvalidation(repo_name)
try:
self.sa.add(cache)
self.sa.commit()
code cleanups
r758 except (DatabaseError,):
#50 on point cache invalidation changes....
r692 log.error(traceback.format_exc())
self.sa.rollback()
implemented user dashboards, and following system.
r734 def toggle_following_repo(self, follow_repo_id, user_id):
#50 on point cache invalidation changes....
r692
implemented user dashboards, and following system.
r734 f = self.sa.query(UserFollowing)\
.filter(UserFollowing.follows_repo_id == follow_repo_id)\
.filter(UserFollowing.user_id == user_id).scalar()
if f is not None:
Added icons with numbers of followers and number of forks
r747
implemented user dashboards, and following system.
r734 try:
self.sa.delete(f)
self.sa.commit()
added action loggers to following repositories,...
r735 action_logger(UserTemp(user_id),
'stopped_following_repo',
Added icons with numbers of followers and number of forks
r747 RepoTemp(follow_repo_id))
implemented user dashboards, and following system.
r734 return
except:
log.error(traceback.format_exc())
self.sa.rollback()
raise
try:
f = UserFollowing()
f.user_id = user_id
f.follows_repo_id = follow_repo_id
self.sa.add(f)
self.sa.commit()
added action loggers to following repositories,...
r735 action_logger(UserTemp(user_id),
'started_following_repo',
Added icons with numbers of followers and number of forks
r747 RepoTemp(follow_repo_id))
implemented user dashboards, and following system.
r734 except:
log.error(traceback.format_exc())
self.sa.rollback()
raise
def toggle_following_user(self, follow_user_id , user_id):
f = self.sa.query(UserFollowing)\
.filter(UserFollowing.follows_user_id == follow_user_id)\
.filter(UserFollowing.user_id == user_id).scalar()
if f is not None:
try:
self.sa.delete(f)
self.sa.commit()
return
except:
log.error(traceback.format_exc())
self.sa.rollback()
raise
try:
f = UserFollowing()
f.user_id = user_id
f.follows_user_id = follow_user_id
self.sa.add(f)
self.sa.commit()
except:
log.error(traceback.format_exc())
self.sa.rollback()
raise
fixed following js snipet. It' can be called multiple times now next to each repository...
r999 def is_following_repo(self, repo_name, user_id, cache=False):
implemented user dashboards, and following system.
r734 r = self.sa.query(Repository)\
.filter(Repository.repo_name == repo_name).scalar()
f = self.sa.query(UserFollowing)\
.filter(UserFollowing.follows_repository == r)\
.filter(UserFollowing.user_id == user_id).scalar()
return f is not None
fixed following js snipet. It' can be called multiple times now next to each repository...
r999 def is_following_user(self, username, user_id, cache=False):
code cleanups
r758 u = UserModel(self.sa).get_by_username(username)
implemented user dashboards, and following system.
r734
f = self.sa.query(UserFollowing)\
.filter(UserFollowing.follows_user == u)\
.filter(UserFollowing.user_id == user_id).scalar()
return f is not None
#50 on point cache invalidation changes....
r692
Added icons with numbers of followers and number of forks
r747 def get_followers(self, repo_id):
return self.sa.query(UserFollowing)\
.filter(UserFollowing.follows_repo_id == repo_id).count()
def get_forks(self, repo_id):
return self.sa.query(Repository)\
.filter(Repository.fork_id == repo_id).count()
#50 on point cache invalidation changes....
r692
Implemented fancier top menu for logged and anonymous users...
r784
def get_unread_journal(self):
return self.sa.query(UserLog).count()
#50 on point cache invalidation changes....
r692 def _should_invalidate(self, repo_name):
docs updates
r811 """Looks up database for invalidation signals for this repo_name
#50 on point cache invalidation changes....
r692 :param repo_name:
"""
ret = self.sa.query(CacheInvalidation)\
.filter(CacheInvalidation.cache_key == repo_name)\
.filter(CacheInvalidation.cache_active == False)\
.scalar()
return ret
def _mark_invalidated(self, cache_key):
another major code rafactor, reimplemented (almost from scratch)...
r1038 """ Marks all occurrences of cache to invalidation as already
invalidated
docs updates
r811
:param cache_key:
#50 on point cache invalidation changes....
r692 """
docs updates
r811
#50 on point cache invalidation changes....
r692 if cache_key:
log.debug('marking %s as already invalidated', cache_key)
try:
cache_key.cache_active = True
self.sa.add(cache_key)
self.sa.commit()
code cleanups
r758 except (DatabaseError,):
#50 on point cache invalidation changes....
r692 log.error(traceback.format_exc())
self.sa.rollback()