package SVK::Editor::Combine; use strict; use SVK::Version; our $VERSION = $SVK::VERSION; require SVN::Delta; our @ISA = qw(SVN::Delta::Editor); use autouse 'SVK::Util' => qw( tmpfile ); =head1 NAME SVK::Editor::Combine - An editor combining several editor calls to one =head1 SYNOPSIS $editor = SVK::Editor::Combine->new ( base_root => $fs->revision_root ($rev), ); # feed several sets of editor calls to $editor # drive $other_editor with the combined editor calls $editor->replay ($other_editor); =cut sub replay { my ($self, $editor, $base_rev) = @_; my $edit = SVN::Simple::Edit->new (_editor => [$editor], pool => SVN::Pool->new ($self->{pool}), missing_handler => sub { my ($self, $path) = @_; $self->{added}{$path} ? $self->add_directory ($path) : $self->open_directory($path); }); $edit->open_root ($base_rev); for (sort keys %{$self->{files}}) { my $fname = $self->{files}{$_}->filename; my $fh; $edit->add_file ($_) if $self->{added}{$_}; open $fh, '<:raw', $fname or die $!; $edit->modify_file ($_, $fh, $self->{md5}{$_}); } $edit->close_edit; } sub callbacks { my $self = shift; ( cb_exist => sub { $self->cb_exist (@_) }, cb_localmod => sub { $self->cb_localmod (@_) }, cb_localprop => sub { $self->cb_localprop (@_) }, ); } sub cb_exist { my ($self, $path) = @_; return $SVN::Node::file if exists $self->{files}{$path}; $path = $self->{tgt_anchor}.'/'.$path;; return $self->{base_root}->check_path ($path); } sub cb_localmod { my ($self, $path, $checksum, $pool) = @_; if (exists $self->{files}{$path}) { return if $self->{md5}{$path} eq $checksum; my $fname = $self->{files}{$path}->filename; open my ($fh), '<:raw', $fname or die $!; return [$fh, $fname, $self->{md5}{$path}]; } $path = $self->{tgt_anchor}.'/'.$path;; my $md5 = $self->{base_root}->file_md5_checksum ($path, $pool); return if $md5 eq $checksum; return [$self->{base_root}->file_contents ($path, $self->{pool}), undef, $md5]; } sub cb_localprop { my ($self, $path, $propname, $pool) = @_; $path = $self->{tgt_anchor}.'/'.$path; return $self->{base_root}->node_prop ($path, $propname, $pool); } sub add_file { my ($self, $path, $pdir, @arg) = @_; $self->{added}{$path} = 1; return $path; } sub open_file { my ($self, $path, $pdir, @arg) = @_; return $path; } sub apply_textdelta { my ($self, $path, $checksum) = @_; # my $pool = $self->{pool}; # $pool->default if $pool && $pool->can ('default'); my $base; if (exists $self->{files}{$path}) { $base = $self->{files}{$path}; my $fname = ${*$base}; open $base, '<:raw', $fname or die $!; } else { $base = $self->{base_root}->file_contents ("$self->{tgt_anchor}/$path") unless $self->{added}{$path}; } $self->{files}{$path} = tmpfile ('combine'); $self->{base}{$path} = $base; $base ||= SVN::Core::stream_empty(); return [SVN::TxDelta::apply ($base, $self->{files}{$path}, undef, undef)]; } sub close_file { my ($self, $path, $md5) = @_; delete $self->{base}{$path}; $self->{md5}{$path} = $md5; } =head1 AUTHORS Chia-liang Kao Eclkao@clkao.orgE =head1 COPYRIGHT Copyright 2003-2005 by Chia-liang Kao Eclkao@clkao.orgE. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L =cut 1;