##// END OF EJS Templates
dependencies: bumped few libraries....
dependencies: bumped few libraries. - atomicwrites==1.2.1 - attrs==18.2.0 - dogpile.cache==0.6.7 - psutil==5.4.7 - pathlib2==2.3.2 - subprocess32==3.5.2 - gevent==1.3.6 - greenlet==0.4.15 - pytest==3.8.1 - py==1.6.0 - pytest-cov==2.6.0 - pytest-timeout==1.3.2 - coverage==4.5.1 - psycopg2==2.7.5

File last commit:

r2487:fcee5614 default
r3096:5e20ef75 default
Show More
inmemory.py
81 lines | 2.8 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
# Copyright (C) 2014-2018 RhodeCode GmbH
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# 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 Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
"""
SVN inmemory module
"""
from rhodecode.lib.datelib import date_astimestamp
from rhodecode.lib.utils import safe_str
from rhodecode.lib.vcs.backends import base
class SubversionInMemoryCommit(base.BaseInMemoryCommit):
def commit(self, message, author, parents=None, branch=None, date=None,
**kwargs):
if branch not in (None, self.repository.DEFAULT_BRANCH_NAME):
raise NotImplementedError("Branches are not yet supported")
self.check_integrity(parents)
message = safe_str(message)
author = safe_str(author)
updated = []
for node in self.added:
node_data = {
'path': node.path,
'content': safe_str(node.content),
'mode': node.mode,
}
if node.is_binary:
node_data['properties'] = {
'svn:mime-type': 'application/octet-stream'
}
updated.append(node_data)
for node in self.changed:
updated.append({
'path': node.path,
'content': safe_str(node.content),
'mode': node.mode,
})
removed = []
for node in self.removed:
removed.append({
'path': node.path,
})
timestamp = date_astimestamp(date) if date else None
svn_rev = self.repository._remote.commit(
message=message, author=author, timestamp=timestamp,
updated=updated, removed=removed)
# TODO: Find a nicer way. If commit_ids is not yet evaluated, then
# we should not add the commit_id, if it is already evaluated, it
# will not be evaluated again.
commit_id = str(svn_rev)
if commit_id not in self.repository.commit_ids:
self.repository.commit_ids.append(commit_id)
tip = self.repository.get_commit()
self.reset()
return tip