# -*- coding: iso8859-1 -*- # # Copyright (C) 2003, 2004 Edgewall Software # Copyright (C) 2003, 2004 Jonas Borgström # # Trac 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 2 of the # License, or (at your option) any later version. # # Trac 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., 675 Mass Ave, Cambridge, MA 02139, USA. # # Author: Jonas Borgström from svn import fs, util, delta, repos, core def sync(db, repos, fs_ptr, pool): """ updates the revision and node_change tables to be in sync with the repository. """ if util.SVN_VER_MAJOR < 1: raise EnvironmentError, \ "Subversion >= 1.0 required: Found %d.%d.%d" % \ (util.SVN_VER_MAJOR, util.SVN_VER_MINOR, util.SVN_VER_MICRO) cursor = db.cursor() cursor.execute('SELECT ifnull(max(rev), 0) FROM revision') youngest_stored = int(cursor.fetchone()[0]) max_rev = fs.youngest_rev(fs_ptr, pool) num = max_rev - youngest_stored offset = youngest_stored + 1 subpool = core.svn_pool_create(pool) for rev in range(num): message = fs.revision_prop(fs_ptr, rev + offset, util.SVN_PROP_REVISION_LOG, subpool) author = fs.revision_prop(fs_ptr, rev + offset, util.SVN_PROP_REVISION_AUTHOR, subpool) date = fs.revision_prop(fs_ptr, rev + offset, util.SVN_PROP_REVISION_DATE, subpool) date = util.svn_time_from_cstring(date, subpool) / 1000000 cursor.execute ('INSERT INTO revision (rev, time, author, message) ' 'VALUES (%s, %s, %s, %s)', rev + offset, date, author, message) insert_change (subpool, fs_ptr, rev + offset, cursor) core.svn_pool_clear(subpool) core.svn_pool_destroy(subpool) db.commit() def insert_change (pool, fs_ptr, rev, cursor): class ChangeEditor(delta.Editor): def __init__(self, rev, old_root, new_root, cursor): self.rev = rev self.cursor = cursor self.old_root = old_root self.new_root = new_root def delete_entry(self, path, revision, parent_baton, pool): self.cursor.execute('INSERT INTO node_change (rev, name, change) ' 'VALUES (%s, %s, \'D\')', self.rev, path) def add_directory(self, path, parent_baton, copyfrom_path, copyfrom_revision, dir_pool): self.cursor.execute('INSERT INTO node_change (rev, name, change) ' 'VALUES (%s, %s, \'A\')', self.rev, path) def add_file(self, path, parent_baton, copyfrom_path, copyfrom_revision, file_pool): self.cursor.execute('INSERT INTO node_change (rev, name, change) ' 'VALUES (%s, %s, \'A\')',self.rev, path) def open_file(self, path, parent_baton, base_revision, file_pool): self.cursor.execute('INSERT INTO node_change (rev, name, change) ' 'VALUES (%s, %s, \'M\')',self.rev, path) old_root = fs.revision_root(fs_ptr, rev - 1, pool) new_root = fs.revision_root(fs_ptr, rev, pool) editor = ChangeEditor(rev, old_root, new_root, cursor) e_ptr, e_baton = delta.make_editor(editor, pool) def authz_cb(root, path, pool): return 1 repos.svn_repos_dir_delta(old_root, '', '', new_root, '', e_ptr, e_baton, authz_cb, 0, 1, 0, 1, pool)