Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
Git - Perl interface to the Git version control system
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
|
|
package Git;
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
|
|
|
|
our ($VERSION, @ISA, @EXPORT, @EXPORT_OK);
|
|
|
|
|
|
|
|
# Totally unstable API.
|
|
|
|
$VERSION = '0.01';
|
|
|
|
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
use Git;
|
|
|
|
|
|
|
|
my $version = Git::command_oneline('version');
|
|
|
|
|
2006-06-24 04:34:44 +02:00
|
|
|
git_cmd_try { Git::command_noisy('update-server-info') }
|
|
|
|
'%s failed w/ code %d';
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
my $repo = Git->repository (Directory => '/srv/git/cogito.git');
|
|
|
|
|
|
|
|
|
|
|
|
my @revs = $repo->command('rev-list', '--since=last monday', '--all');
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
my ($fh, $c) = $repo->command_output_pipe('rev-list', '--since=last monday', '--all');
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
my $lastrev = <$fh>; chomp $lastrev;
|
2006-06-24 04:34:44 +02:00
|
|
|
$repo->command_close_pipe($fh, $c);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
my $lastrev = $repo->command_oneline( [ 'rev-list', '--all' ],
|
|
|
|
STDERR => 0 );
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2008-05-23 16:19:40 +02:00
|
|
|
my $sha1 = $repo->hash_and_insert_object('file.txt');
|
|
|
|
my $tempfile = tempfile();
|
|
|
|
my $size = $repo->cat_blob($sha1, $tempfile);
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
|
|
require Exporter;
|
|
|
|
|
|
|
|
@ISA = qw(Exporter);
|
|
|
|
|
2006-06-24 04:34:44 +02:00
|
|
|
@EXPORT = qw(git_cmd_try);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
# Methods which can be called as standalone functions as well:
|
2006-06-24 04:34:47 +02:00
|
|
|
@EXPORT_OK = qw(command command_oneline command_noisy
|
|
|
|
command_output_pipe command_input_pipe command_close_pipe
|
2008-05-23 16:19:39 +02:00
|
|
|
command_bidi_pipe command_close_bidi_pipe
|
2006-06-24 04:34:44 +02:00
|
|
|
version exec_path hash_object git_cmd_try);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
This module provides Perl scripts easy way to interface the Git version control
|
|
|
|
system. The modules have an easy and well-tested way to call arbitrary Git
|
|
|
|
commands; in the future, the interface will also provide specialized methods
|
|
|
|
for doing easily operations which are not totally trivial to do over
|
|
|
|
the generic command interface.
|
|
|
|
|
|
|
|
While some commands can be executed outside of any context (e.g. 'version'
|
2007-01-12 22:01:46 +01:00
|
|
|
or 'init'), most operations require a repository context, which in practice
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
means getting an instance of the Git object using the repository() constructor.
|
|
|
|
(In the future, we will also get a new_repository() constructor.) All commands
|
|
|
|
called as methods of the object are then executed in the context of the
|
|
|
|
repository.
|
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
Part of the "repository state" is also information about path to the attached
|
|
|
|
working copy (unless you work with a bare repository). You can also navigate
|
|
|
|
inside of the working copy using the C<wc_chdir()> method. (Note that
|
|
|
|
the repository object is self-contained and will not change working directory
|
|
|
|
of your process.)
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
TODO: In the future, we might also do
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
my $remoterepo = $repo->remote_repository (Name => 'cogito', Branch => 'master');
|
|
|
|
$remoterepo ||= Git->remote_repository ('http://git.or.cz/cogito.git/');
|
|
|
|
my @refs = $remoterepo->refs();
|
|
|
|
|
|
|
|
Currently, the module merely wraps calls to external Git tools. In the future,
|
|
|
|
it will provide a much faster way to interact with Git by linking directly
|
|
|
|
to libgit. This should be completely opaque to the user, though (performance
|
|
|
|
increate nonwithstanding).
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
2006-06-24 04:34:44 +02:00
|
|
|
use Carp qw(carp croak); # but croak is bad - throw instead
|
2006-06-24 04:34:42 +02:00
|
|
|
use Error qw(:try);
|
2006-06-24 04:34:51 +02:00
|
|
|
use Cwd qw(abs_path);
|
2008-05-23 16:19:39 +02:00
|
|
|
use IPC::Open2 qw(open2);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
=head1 CONSTRUCTORS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item repository ( OPTIONS )
|
|
|
|
|
|
|
|
=item repository ( DIRECTORY )
|
|
|
|
|
|
|
|
=item repository ()
|
|
|
|
|
|
|
|
Construct a new repository object.
|
|
|
|
C<OPTIONS> are passed in a hash like fashion, using key and value pairs.
|
|
|
|
Possible options are:
|
|
|
|
|
|
|
|
B<Repository> - Path to the Git repository.
|
|
|
|
|
|
|
|
B<WorkingCopy> - Path to the associated working copy; not strictly required
|
|
|
|
as many commands will happily crunch on a bare repository.
|
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
B<WorkingSubdir> - Subdirectory in the working copy to work inside.
|
|
|
|
Just left undefined if you do not want to limit the scope of operations.
|
|
|
|
|
|
|
|
B<Directory> - Path to the Git working directory in its usual setup.
|
|
|
|
The C<.git> directory is searched in the directory and all the parent
|
|
|
|
directories; if found, C<WorkingCopy> is set to the directory containing
|
|
|
|
it and C<Repository> to the C<.git> directory itself. If no C<.git>
|
|
|
|
directory was found, the C<Directory> is assumed to be a bare repository,
|
|
|
|
C<Repository> is set to point at it and C<WorkingCopy> is left undefined.
|
|
|
|
If the C<$GIT_DIR> environment variable is set, things behave as expected
|
|
|
|
as well.
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
You should not use both C<Directory> and either of C<Repository> and
|
|
|
|
C<WorkingCopy> - the results of that are undefined.
|
|
|
|
|
|
|
|
Alternatively, a directory path may be passed as a single scalar argument
|
|
|
|
to the constructor; it is equivalent to setting only the C<Directory> option
|
|
|
|
field.
|
|
|
|
|
|
|
|
Calling the constructor with no options whatsoever is equivalent to
|
2006-06-24 04:34:51 +02:00
|
|
|
calling it with C<< Directory => '.' >>. In general, if you are building
|
|
|
|
a standard porcelain command, simply doing C<< Git->repository() >> should
|
|
|
|
do the right thing and setup the object to reflect exactly where the user
|
|
|
|
is right now.
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub repository {
|
|
|
|
my $class = shift;
|
|
|
|
my @args = @_;
|
|
|
|
my %opts = ();
|
|
|
|
my $self;
|
|
|
|
|
|
|
|
if (defined $args[0]) {
|
|
|
|
if ($#args % 2 != 1) {
|
|
|
|
# Not a hash.
|
2006-06-24 04:34:42 +02:00
|
|
|
$#args == 0 or throw Error::Simple("bad usage");
|
|
|
|
%opts = ( Directory => $args[0] );
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
} else {
|
|
|
|
%opts = @args;
|
|
|
|
}
|
2006-06-24 04:34:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (not defined $opts{Repository} and not defined $opts{WorkingCopy}) {
|
|
|
|
$opts{Directory} ||= '.';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($opts{Directory}) {
|
|
|
|
-d $opts{Directory} or throw Error::Simple("Directory not found: $!");
|
|
|
|
|
|
|
|
my $search = Git->repository(WorkingCopy => $opts{Directory});
|
|
|
|
my $dir;
|
|
|
|
try {
|
|
|
|
$dir = $search->command_oneline(['rev-parse', '--git-dir'],
|
|
|
|
STDERR => 0);
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
$dir = undef;
|
|
|
|
};
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
if ($dir) {
|
2006-06-25 03:54:28 +02:00
|
|
|
$dir =~ m#^/# or $dir = $opts{Directory} . '/' . $dir;
|
|
|
|
$opts{Repository} = $dir;
|
2006-06-24 04:34:51 +02:00
|
|
|
|
|
|
|
# If --git-dir went ok, this shouldn't die either.
|
|
|
|
my $prefix = $search->command_oneline('rev-parse', '--show-prefix');
|
|
|
|
$dir = abs_path($opts{Directory}) . '/';
|
|
|
|
if ($prefix) {
|
|
|
|
if (substr($dir, -length($prefix)) ne $prefix) {
|
|
|
|
throw Error::Simple("rev-parse confused me - $dir does not have trailing $prefix");
|
|
|
|
}
|
|
|
|
substr($dir, -length($prefix)) = '';
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
2006-06-24 04:34:51 +02:00
|
|
|
$opts{WorkingCopy} = $dir;
|
|
|
|
$opts{WorkingSubdir} = $prefix;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
# A bare repository? Let's see...
|
|
|
|
$dir = $opts{Directory};
|
|
|
|
|
|
|
|
unless (-d "$dir/refs" and -d "$dir/objects" and -e "$dir/HEAD") {
|
|
|
|
# Mimick git-rev-parse --git-dir error message:
|
|
|
|
throw Error::Simple('fatal: Not a git repository');
|
|
|
|
}
|
|
|
|
my $search = Git->repository(Repository => $dir);
|
|
|
|
try {
|
|
|
|
$search->command('symbolic-ref', 'HEAD');
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
# Mimick git-rev-parse --git-dir error message:
|
|
|
|
throw Error::Simple('fatal: Not a git repository');
|
|
|
|
}
|
|
|
|
|
|
|
|
$opts{Repository} = abs_path($dir);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
2006-06-24 04:34:51 +02:00
|
|
|
|
|
|
|
delete $opts{Directory};
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
|
|
|
|
2006-09-03 07:58:48 +02:00
|
|
|
$self = { opts => \%opts };
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
bless $self, $class;
|
|
|
|
}
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item command ( COMMAND [, ARGUMENTS... ] )
|
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
=item command ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
Execute the given Git C<COMMAND> (specify it without the 'git-'
|
|
|
|
prefix), optionally with the specified extra C<ARGUMENTS>.
|
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
The second more elaborate form can be used if you want to further adjust
|
|
|
|
the command execution. Currently, only one option is supported:
|
|
|
|
|
|
|
|
B<STDERR> - How to deal with the command's error output. By default (C<undef>)
|
|
|
|
it is delivered to the caller's C<STDERR>. A false value (0 or '') will cause
|
|
|
|
it to be thrown away. If you want to process it, you can get it in a filehandle
|
|
|
|
you specify, but you must be extremely careful; if the error output is not
|
|
|
|
very short and you want to read it in the same process as where you called
|
|
|
|
C<command()>, you are set up for a nice deadlock!
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
The method can be called without any instance or on a specified Git repository
|
|
|
|
(in that case the command will be run in the repository context).
|
|
|
|
|
|
|
|
In scalar context, it returns all the command output in a single string
|
|
|
|
(verbatim).
|
|
|
|
|
|
|
|
In array context, it returns an array containing lines printed to the
|
|
|
|
command's stdout (without trailing newlines).
|
|
|
|
|
|
|
|
In both cases, the command's stdin and stderr are the same as the caller's.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command {
|
2006-06-24 04:34:47 +02:00
|
|
|
my ($fh, $ctx) = command_output_pipe(@_);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
if (not defined wantarray) {
|
2006-06-24 04:34:44 +02:00
|
|
|
# Nothing to pepper the possible exception with.
|
|
|
|
_cmd_close($fh, $ctx);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
} elsif (not wantarray) {
|
|
|
|
local $/;
|
|
|
|
my $text = <$fh>;
|
2006-06-24 04:34:44 +02:00
|
|
|
try {
|
|
|
|
_cmd_close($fh, $ctx);
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
# Pepper with the output:
|
|
|
|
my $E = shift;
|
|
|
|
$E->{'-outputref'} = \$text;
|
|
|
|
throw $E;
|
|
|
|
};
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
return $text;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
my @lines = <$fh>;
|
2007-01-22 15:58:03 +01:00
|
|
|
defined and chomp for @lines;
|
2006-06-24 04:34:44 +02:00
|
|
|
try {
|
|
|
|
_cmd_close($fh, $ctx);
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
my $E = shift;
|
|
|
|
$E->{'-outputref'} = \@lines;
|
|
|
|
throw $E;
|
|
|
|
};
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
return @lines;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
=item command_oneline ( COMMAND [, ARGUMENTS... ] )
|
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
=item command_oneline ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
Execute the given C<COMMAND> in the same way as command()
|
|
|
|
does but always return a scalar string containing the first line
|
|
|
|
of the command's standard output.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_oneline {
|
2006-06-24 04:34:47 +02:00
|
|
|
my ($fh, $ctx) = command_output_pipe(@_);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
my $line = <$fh>;
|
2006-06-24 04:34:51 +02:00
|
|
|
defined $line and chomp $line;
|
2006-06-24 04:34:44 +02:00
|
|
|
try {
|
|
|
|
_cmd_close($fh, $ctx);
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
# Pepper with the output:
|
|
|
|
my $E = shift;
|
|
|
|
$E->{'-outputref'} = \$line;
|
|
|
|
throw $E;
|
|
|
|
};
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
return $line;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
=item command_output_pipe ( COMMAND [, ARGUMENTS... ] )
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
=item command_output_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
Execute the given C<COMMAND> in the same way as command()
|
|
|
|
does but return a pipe filehandle from which the command output can be
|
|
|
|
read.
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
The function can return C<($pipe, $ctx)> in array context.
|
|
|
|
See C<command_close_pipe()> for details.
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
=cut
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
sub command_output_pipe {
|
|
|
|
_command_common_pipe('-|', @_);
|
|
|
|
}
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
=item command_input_pipe ( COMMAND [, ARGUMENTS... ] )
|
|
|
|
|
2006-06-24 04:34:49 +02:00
|
|
|
=item command_input_pipe ( [ COMMAND, ARGUMENTS... ], { Opt => Val ... } )
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
Execute the given C<COMMAND> in the same way as command_output_pipe()
|
|
|
|
does but return an input pipe filehandle instead; the command output
|
|
|
|
is not captured.
|
|
|
|
|
|
|
|
The function can return C<($pipe, $ctx)> in array context.
|
|
|
|
See C<command_close_pipe()> for details.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_input_pipe {
|
|
|
|
_command_common_pipe('|-', @_);
|
2006-06-24 04:34:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
=item command_close_pipe ( PIPE [, CTX ] )
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
Close the C<PIPE> as returned from C<command_*_pipe()>, checking
|
2007-02-04 05:49:16 +01:00
|
|
|
whether the command finished successfully. The optional C<CTX> argument
|
2006-06-24 04:34:44 +02:00
|
|
|
is required if you want to see the command name in the error message,
|
2006-06-24 04:34:47 +02:00
|
|
|
and it is the second value returned by C<command_*_pipe()> when
|
2006-06-24 04:34:44 +02:00
|
|
|
called in array context. The call idiom is:
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
my ($fh, $ctx) = $r->command_output_pipe('status');
|
|
|
|
while (<$fh>) { ... }
|
|
|
|
$r->command_close_pipe($fh, $ctx);
|
2006-06-24 04:34:44 +02:00
|
|
|
|
|
|
|
Note that you should not rely on whatever actually is in C<CTX>;
|
|
|
|
currently it is simply the command name but in future the context might
|
|
|
|
have more complicated structure.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_close_pipe {
|
|
|
|
my ($self, $fh, $ctx) = _maybe_self(@_);
|
|
|
|
$ctx ||= '<unknown>';
|
|
|
|
_cmd_close($fh, $ctx);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
|
|
|
|
2008-05-23 16:19:39 +02:00
|
|
|
=item command_bidi_pipe ( COMMAND [, ARGUMENTS... ] )
|
|
|
|
|
|
|
|
Execute the given C<COMMAND> in the same way as command_output_pipe()
|
|
|
|
does but return both an input pipe filehandle and an output pipe filehandle.
|
|
|
|
|
|
|
|
The function will return return C<($pid, $pipe_in, $pipe_out, $ctx)>.
|
|
|
|
See C<command_close_bidi_pipe()> for details.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_bidi_pipe {
|
|
|
|
my ($pid, $in, $out);
|
|
|
|
$pid = open2($in, $out, 'git', @_);
|
|
|
|
return ($pid, $in, $out, join(' ', @_));
|
|
|
|
}
|
|
|
|
|
|
|
|
=item command_close_bidi_pipe ( PID, PIPE_IN, PIPE_OUT [, CTX] )
|
|
|
|
|
|
|
|
Close the C<PIPE_IN> and C<PIPE_OUT> as returned from C<command_bidi_pipe()>,
|
|
|
|
checking whether the command finished successfully. The optional C<CTX>
|
|
|
|
argument is required if you want to see the command name in the error message,
|
|
|
|
and it is the fourth value returned by C<command_bidi_pipe()>. The call idiom
|
|
|
|
is:
|
|
|
|
|
|
|
|
my ($pid, $in, $out, $ctx) = $r->command_bidi_pipe('cat-file --batch-check');
|
|
|
|
print "000000000\n" $out;
|
|
|
|
while (<$in>) { ... }
|
|
|
|
$r->command_close_bidi_pipe($pid, $in, $out, $ctx);
|
|
|
|
|
|
|
|
Note that you should not rely on whatever actually is in C<CTX>;
|
|
|
|
currently it is simply the command name but in future the context might
|
|
|
|
have more complicated structure.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_close_bidi_pipe {
|
|
|
|
my ($pid, $in, $out, $ctx) = @_;
|
|
|
|
foreach my $fh ($in, $out) {
|
|
|
|
unless (close $fh) {
|
|
|
|
if ($!) {
|
|
|
|
carp "error closing pipe: $!";
|
|
|
|
} elsif ($? >> 8) {
|
|
|
|
throw Git::Error::Command($ctx, $? >>8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
waitpid $pid, 0;
|
|
|
|
|
|
|
|
if ($? >> 8) {
|
|
|
|
throw Git::Error::Command($ctx, $? >>8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
=item command_noisy ( COMMAND [, ARGUMENTS... ] )
|
|
|
|
|
|
|
|
Execute the given C<COMMAND> in the same way as command() does but do not
|
|
|
|
capture the command output - the standard output is not redirected and goes
|
|
|
|
to the standard output of the caller application.
|
|
|
|
|
|
|
|
While the method is called command_noisy(), you might want to as well use
|
|
|
|
it for the most silent Git commands which you know will never pollute your
|
|
|
|
stdout but you want to avoid the overhead of the pipe setup when calling them.
|
|
|
|
|
|
|
|
The function returns only after the command has finished running.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub command_noisy {
|
|
|
|
my ($self, $cmd, @args) = _maybe_self(@_);
|
2006-06-24 04:34:47 +02:00
|
|
|
_check_valid_cmd($cmd);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
my $pid = fork;
|
|
|
|
if (not defined $pid) {
|
2006-06-24 04:34:42 +02:00
|
|
|
throw Error::Simple("fork failed: $!");
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
} elsif ($pid == 0) {
|
|
|
|
_cmd_exec($self, $cmd, @args);
|
|
|
|
}
|
2006-06-24 04:34:44 +02:00
|
|
|
if (waitpid($pid, 0) > 0 and $?>>8 != 0) {
|
|
|
|
throw Git::Error::Command(join(' ', $cmd, @args), $? >> 8);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-24 04:34:36 +02:00
|
|
|
=item version ()
|
|
|
|
|
|
|
|
Return the Git version in use.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2006-09-23 20:20:47 +02:00
|
|
|
sub version {
|
|
|
|
my $verstr = command_oneline('--version');
|
|
|
|
$verstr =~ s/^git version //;
|
|
|
|
$verstr;
|
|
|
|
}
|
2006-06-24 04:34:36 +02:00
|
|
|
|
|
|
|
|
2006-06-24 04:34:31 +02:00
|
|
|
=item exec_path ()
|
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
Return path to the Git sub-command executables (the same as
|
2006-06-24 04:34:31 +02:00
|
|
|
C<git --exec-path>). Useful mostly only internally.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2006-09-23 20:20:47 +02:00
|
|
|
sub exec_path { command_oneline('--exec-path') }
|
2006-06-24 04:34:31 +02:00
|
|
|
|
|
|
|
|
2006-06-24 04:34:51 +02:00
|
|
|
=item repo_path ()
|
|
|
|
|
|
|
|
Return path to the git repository. Must be called on a repository instance.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub repo_path { $_[0]->{opts}->{Repository} }
|
|
|
|
|
|
|
|
|
|
|
|
=item wc_path ()
|
|
|
|
|
|
|
|
Return path to the working copy. Must be called on a repository instance.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub wc_path { $_[0]->{opts}->{WorkingCopy} }
|
|
|
|
|
|
|
|
|
|
|
|
=item wc_subdir ()
|
|
|
|
|
|
|
|
Return path to the subdirectory inside of a working copy. Must be called
|
|
|
|
on a repository instance.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub wc_subdir { $_[0]->{opts}->{WorkingSubdir} ||= '' }
|
|
|
|
|
|
|
|
|
|
|
|
=item wc_chdir ( SUBDIR )
|
|
|
|
|
|
|
|
Change the working copy subdirectory to work within. The C<SUBDIR> is
|
|
|
|
relative to the working copy root directory (not the current subdirectory).
|
|
|
|
Must be called on a repository instance attached to a working copy
|
|
|
|
and the directory must exist.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub wc_chdir {
|
|
|
|
my ($self, $subdir) = @_;
|
|
|
|
$self->wc_path()
|
|
|
|
or throw Error::Simple("bare repository");
|
|
|
|
|
|
|
|
-d $self->wc_path().'/'.$subdir
|
|
|
|
or throw Error::Simple("subdir not found: $!");
|
|
|
|
# Of course we will not "hold" the subdirectory so anyone
|
|
|
|
# can delete it now and we will never know. But at least we tried.
|
|
|
|
|
|
|
|
$self->{opts}->{WorkingSubdir} = $subdir;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-07-03 22:47:55 +02:00
|
|
|
=item config ( VARIABLE )
|
|
|
|
|
2007-01-29 01:16:53 +01:00
|
|
|
Retrieve the configuration C<VARIABLE> in the same manner as C<config>
|
2006-07-03 22:47:55 +02:00
|
|
|
does. In scalar context requires the variable to be set only one time
|
|
|
|
(exception is thrown otherwise), in array context returns allows the
|
|
|
|
variable to be set multiple times and returns all the values.
|
|
|
|
|
2007-01-29 01:16:53 +01:00
|
|
|
This currently wraps command('config') so it is not so fast.
|
2006-07-03 22:47:55 +02:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub config {
|
2008-03-14 18:29:28 +01:00
|
|
|
my ($self, $var) = _maybe_self(@_);
|
2006-07-03 22:47:55 +02:00
|
|
|
|
|
|
|
try {
|
2008-03-14 18:29:28 +01:00
|
|
|
my @cmd = ('config');
|
|
|
|
unshift @cmd, $self if $self;
|
2006-07-03 22:47:55 +02:00
|
|
|
if (wantarray) {
|
2008-03-14 18:29:28 +01:00
|
|
|
return command(@cmd, '--get-all', $var);
|
2006-07-03 22:47:55 +02:00
|
|
|
} else {
|
2008-03-14 18:29:28 +01:00
|
|
|
return command_oneline(@cmd, '--get', $var);
|
2006-07-03 22:47:55 +02:00
|
|
|
}
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
my $E = shift;
|
|
|
|
if ($E->value() == 1) {
|
|
|
|
# Key not found.
|
2008-06-01 22:34:47 +02:00
|
|
|
return;
|
2006-07-03 22:47:55 +02:00
|
|
|
} else {
|
|
|
|
throw $E;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-05-09 12:49:41 +02:00
|
|
|
=item config_bool ( VARIABLE )
|
2007-02-20 21:13:42 +01:00
|
|
|
|
2007-05-09 12:49:41 +02:00
|
|
|
Retrieve the bool configuration C<VARIABLE>. The return value
|
|
|
|
is usable as a boolean in perl (and C<undef> if it's not defined,
|
|
|
|
of course).
|
2007-02-20 21:13:42 +01:00
|
|
|
|
|
|
|
This currently wraps command('config') so it is not so fast.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2007-05-09 12:49:41 +02:00
|
|
|
sub config_bool {
|
2008-03-14 18:29:28 +01:00
|
|
|
my ($self, $var) = _maybe_self(@_);
|
2007-02-20 21:13:42 +01:00
|
|
|
|
|
|
|
try {
|
2008-03-14 18:29:28 +01:00
|
|
|
my @cmd = ('config', '--bool', '--get', $var);
|
|
|
|
unshift @cmd, $self if $self;
|
|
|
|
my $val = command_oneline(@cmd);
|
2007-05-09 12:49:41 +02:00
|
|
|
return undef unless defined $val;
|
|
|
|
return $val eq 'true';
|
2007-02-20 21:13:42 +01:00
|
|
|
} catch Git::Error::Command with {
|
|
|
|
my $E = shift;
|
|
|
|
if ($E->value() == 1) {
|
|
|
|
# Key not found.
|
|
|
|
return undef;
|
|
|
|
} else {
|
|
|
|
throw $E;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2007-11-23 19:04:52 +01:00
|
|
|
=item config_int ( VARIABLE )
|
|
|
|
|
|
|
|
Retrieve the integer configuration C<VARIABLE>. The return value
|
|
|
|
is simple decimal number. An optional value suffix of 'k', 'm',
|
|
|
|
or 'g' in the config file will cause the value to be multiplied
|
|
|
|
by 1024, 1048576 (1024^2), or 1073741824 (1024^3) prior to output.
|
|
|
|
It would return C<undef> if configuration variable is not defined,
|
|
|
|
|
|
|
|
This currently wraps command('config') so it is not so fast.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub config_int {
|
2008-03-14 18:29:28 +01:00
|
|
|
my ($self, $var) = _maybe_self(@_);
|
2007-11-23 19:04:52 +01:00
|
|
|
|
|
|
|
try {
|
2008-03-14 18:29:28 +01:00
|
|
|
my @cmd = ('config', '--int', '--get', $var);
|
|
|
|
unshift @cmd, $self if $self;
|
|
|
|
return command_oneline(@cmd);
|
2007-11-23 19:04:52 +01:00
|
|
|
} catch Git::Error::Command with {
|
|
|
|
my $E = shift;
|
|
|
|
if ($E->value() == 1) {
|
|
|
|
# Key not found.
|
|
|
|
return undef;
|
|
|
|
} else {
|
|
|
|
throw $E;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2007-02-20 21:13:42 +01:00
|
|
|
|
2007-12-05 09:50:23 +01:00
|
|
|
=item get_colorbool ( NAME )
|
|
|
|
|
|
|
|
Finds if color should be used for NAMEd operation from the configuration,
|
|
|
|
and returns boolean (true for "use color", false for "do not use color").
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_colorbool {
|
|
|
|
my ($self, $var) = @_;
|
|
|
|
my $stdout_to_tty = (-t STDOUT) ? "true" : "false";
|
|
|
|
my $use_color = $self->command_oneline('config', '--get-colorbool',
|
|
|
|
$var, $stdout_to_tty);
|
|
|
|
return ($use_color eq 'true');
|
|
|
|
}
|
|
|
|
|
|
|
|
=item get_color ( SLOT, COLOR )
|
|
|
|
|
|
|
|
Finds color for SLOT from the configuration, while defaulting to COLOR,
|
|
|
|
and returns the ANSI color escape sequence:
|
|
|
|
|
|
|
|
print $repo->get_color("color.interactive.prompt", "underline blue white");
|
|
|
|
print "some text";
|
|
|
|
print $repo->get_color("", "normal");
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub get_color {
|
|
|
|
my ($self, $slot, $default) = @_;
|
|
|
|
my $color = $self->command_oneline('config', '--get-color', $slot, $default);
|
|
|
|
if (!defined $color) {
|
|
|
|
$color = "";
|
|
|
|
}
|
|
|
|
return $color;
|
|
|
|
}
|
|
|
|
|
2006-07-03 22:48:01 +02:00
|
|
|
=item ident ( TYPE | IDENTSTR )
|
|
|
|
|
|
|
|
=item ident_person ( TYPE | IDENTSTR | IDENTARRAY )
|
|
|
|
|
|
|
|
This suite of functions retrieves and parses ident information, as stored
|
|
|
|
in the commit and tag objects or produced by C<var GIT_type_IDENT> (thus
|
|
|
|
C<TYPE> can be either I<author> or I<committer>; case is insignificant).
|
|
|
|
|
|
|
|
The C<ident> method retrieves the ident information from C<git-var>
|
|
|
|
and either returns it as a scalar string or as an array with the fields parsed.
|
|
|
|
Alternatively, it can take a prepared ident string (e.g. from the commit
|
|
|
|
object) and just parse it.
|
|
|
|
|
|
|
|
C<ident_person> returns the person part of the ident - name and email;
|
|
|
|
it can take the same arguments as C<ident> or the array returned by C<ident>.
|
|
|
|
|
|
|
|
The synopsis is like:
|
|
|
|
|
|
|
|
my ($name, $email, $time_tz) = ident('author');
|
|
|
|
"$name <$email>" eq ident_person('author');
|
|
|
|
"$name <$email>" eq ident_person($name);
|
|
|
|
$time_tz =~ /^\d+ [+-]\d{4}$/;
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub ident {
|
2008-03-14 18:29:29 +01:00
|
|
|
my ($self, $type) = _maybe_self(@_);
|
2006-07-03 22:48:01 +02:00
|
|
|
my $identstr;
|
|
|
|
if (lc $type eq lc 'committer' or lc $type eq lc 'author') {
|
2008-03-14 18:29:29 +01:00
|
|
|
my @cmd = ('var', 'GIT_'.uc($type).'_IDENT');
|
|
|
|
unshift @cmd, $self if $self;
|
|
|
|
$identstr = command_oneline(@cmd);
|
2006-07-03 22:48:01 +02:00
|
|
|
} else {
|
|
|
|
$identstr = $type;
|
|
|
|
}
|
|
|
|
if (wantarray) {
|
|
|
|
return $identstr =~ /^(.*) <(.*)> (\d+ [+-]\d{4})$/;
|
|
|
|
} else {
|
|
|
|
return $identstr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub ident_person {
|
2008-03-14 18:29:29 +01:00
|
|
|
my ($self, @ident) = _maybe_self(@_);
|
|
|
|
$#ident == 0 and @ident = $self ? $self->ident($ident[0]) : ident($ident[0]);
|
2006-07-03 22:48:01 +02:00
|
|
|
return "$ident[0] <$ident[1]>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-06-25 03:54:26 +02:00
|
|
|
=item hash_object ( TYPE, FILENAME )
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2008-06-01 22:26:25 +02:00
|
|
|
Compute the SHA1 object id of the given C<FILENAME> considering it is
|
|
|
|
of the C<TYPE> object type (C<blob>, C<commit>, C<tree>).
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
The method can be called without any instance or on a specified Git repository,
|
|
|
|
it makes zero difference.
|
|
|
|
|
|
|
|
The function returns the SHA1 hash.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2006-09-23 20:20:47 +02:00
|
|
|
# TODO: Support for passing FILEHANDLE instead of FILENAME
|
2006-07-02 01:38:56 +02:00
|
|
|
sub hash_object {
|
|
|
|
my ($self, $type, $file) = _maybe_self(@_);
|
2006-09-23 20:20:47 +02:00
|
|
|
command_oneline('hash-object', '-t', $type, $file);
|
2006-07-02 01:38:56 +02:00
|
|
|
}
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
|
2008-05-23 16:19:40 +02:00
|
|
|
=item hash_and_insert_object ( FILENAME )
|
|
|
|
|
|
|
|
Compute the SHA1 object id of the given C<FILENAME> and add the object to the
|
|
|
|
object database.
|
|
|
|
|
|
|
|
The function returns the SHA1 hash.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
# TODO: Support for passing FILEHANDLE instead of FILENAME
|
|
|
|
sub hash_and_insert_object {
|
|
|
|
my ($self, $filename) = @_;
|
|
|
|
|
|
|
|
carp "Bad filename \"$filename\"" if $filename =~ /[\r\n]/;
|
|
|
|
|
|
|
|
$self->_open_hash_and_insert_object_if_needed();
|
|
|
|
my ($in, $out) = ($self->{hash_object_in}, $self->{hash_object_out});
|
|
|
|
|
|
|
|
unless (print $out $filename, "\n") {
|
|
|
|
$self->_close_hash_and_insert_object();
|
|
|
|
throw Error::Simple("out pipe went bad");
|
|
|
|
}
|
|
|
|
|
|
|
|
chomp(my $hash = <$in>);
|
|
|
|
unless (defined($hash)) {
|
|
|
|
$self->_close_hash_and_insert_object();
|
|
|
|
throw Error::Simple("in pipe went bad");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _open_hash_and_insert_object_if_needed {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
return if defined($self->{hash_object_pid});
|
|
|
|
|
|
|
|
($self->{hash_object_pid}, $self->{hash_object_in},
|
|
|
|
$self->{hash_object_out}, $self->{hash_object_ctx}) =
|
|
|
|
command_bidi_pipe(qw(hash-object -w --stdin-paths));
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _close_hash_and_insert_object {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
return unless defined($self->{hash_object_pid});
|
|
|
|
|
|
|
|
my @vars = map { 'hash_object_' . $_ } qw(pid in out ctx);
|
|
|
|
|
|
|
|
command_close_bidi_pipe($self->{@vars});
|
|
|
|
delete $self->{@vars};
|
|
|
|
}
|
|
|
|
|
|
|
|
=item cat_blob ( SHA1, FILEHANDLE )
|
|
|
|
|
|
|
|
Prints the contents of the blob identified by C<SHA1> to C<FILEHANDLE> and
|
|
|
|
returns the number of bytes printed.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub cat_blob {
|
|
|
|
my ($self, $sha1, $fh) = @_;
|
|
|
|
|
|
|
|
$self->_open_cat_blob_if_needed();
|
|
|
|
my ($in, $out) = ($self->{cat_blob_in}, $self->{cat_blob_out});
|
|
|
|
|
|
|
|
unless (print $out $sha1, "\n") {
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
throw Error::Simple("out pipe went bad");
|
|
|
|
}
|
|
|
|
|
|
|
|
my $description = <$in>;
|
|
|
|
if ($description =~ / missing$/) {
|
|
|
|
carp "$sha1 doesn't exist in the repository";
|
2008-05-28 08:33:22 +02:00
|
|
|
return -1;
|
2008-05-23 16:19:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($description !~ /^[0-9a-fA-F]{40} \S+ (\d+)$/) {
|
|
|
|
carp "Unexpected result returned from git cat-file";
|
2008-05-28 08:33:22 +02:00
|
|
|
return -1;
|
2008-05-23 16:19:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
my $size = $1;
|
|
|
|
|
|
|
|
my $blob;
|
|
|
|
my $bytesRead = 0;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
my $bytesLeft = $size - $bytesRead;
|
|
|
|
last unless $bytesLeft;
|
|
|
|
|
|
|
|
my $bytesToRead = $bytesLeft < 1024 ? $bytesLeft : 1024;
|
|
|
|
my $read = read($in, $blob, $bytesToRead, $bytesRead);
|
|
|
|
unless (defined($read)) {
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
throw Error::Simple("in pipe went bad");
|
|
|
|
}
|
|
|
|
|
|
|
|
$bytesRead += $read;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Skip past the trailing newline.
|
|
|
|
my $newline;
|
|
|
|
my $read = read($in, $newline, 1);
|
|
|
|
unless (defined($read)) {
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
throw Error::Simple("in pipe went bad");
|
|
|
|
}
|
|
|
|
unless ($read == 1 && $newline eq "\n") {
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
throw Error::Simple("didn't find newline after blob");
|
|
|
|
}
|
|
|
|
|
|
|
|
unless (print $fh $blob) {
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
throw Error::Simple("couldn't write to passed in filehandle");
|
|
|
|
}
|
|
|
|
|
|
|
|
return $size;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _open_cat_blob_if_needed {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
return if defined($self->{cat_blob_pid});
|
|
|
|
|
|
|
|
($self->{cat_blob_pid}, $self->{cat_blob_in},
|
|
|
|
$self->{cat_blob_out}, $self->{cat_blob_ctx}) =
|
|
|
|
command_bidi_pipe(qw(cat-file --batch));
|
|
|
|
}
|
|
|
|
|
|
|
|
sub _close_cat_blob {
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
return unless defined($self->{cat_blob_pid});
|
|
|
|
|
|
|
|
my @vars = map { 'cat_blob_' . $_ } qw(pid in out ctx);
|
|
|
|
|
|
|
|
command_close_bidi_pipe($self->{@vars});
|
|
|
|
delete $self->{@vars};
|
|
|
|
}
|
2006-06-24 04:34:44 +02:00
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
=back
|
|
|
|
|
2006-06-24 04:34:42 +02:00
|
|
|
=head1 ERROR HANDLING
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
2006-06-24 04:34:42 +02:00
|
|
|
All functions are supposed to throw Perl exceptions in case of errors.
|
2006-06-24 04:34:44 +02:00
|
|
|
See the L<Error> module on how to catch those. Most exceptions are mere
|
|
|
|
L<Error::Simple> instances.
|
|
|
|
|
|
|
|
However, the C<command()>, C<command_oneline()> and C<command_noisy()>
|
|
|
|
functions suite can throw C<Git::Error::Command> exceptions as well: those are
|
|
|
|
thrown when the external command returns an error code and contain the error
|
|
|
|
code as well as access to the captured command's output. The exception class
|
|
|
|
provides the usual C<stringify> and C<value> (command's exit code) methods and
|
|
|
|
in addition also a C<cmd_output> method that returns either an array or a
|
|
|
|
string with the captured command output (depending on the original function
|
|
|
|
call context; C<command_noisy()> returns C<undef>) and $<cmdline> which
|
|
|
|
returns the command and its arguments (but without proper quoting).
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
Note that the C<command_*_pipe()> functions cannot throw this exception since
|
2006-06-24 04:34:44 +02:00
|
|
|
it has no idea whether the command failed or not. You will only find out
|
|
|
|
at the time you C<close> the pipe; if you want to have that automated,
|
|
|
|
use C<command_close_pipe()>, which can throw the exception.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
{
|
|
|
|
package Git::Error::Command;
|
|
|
|
|
|
|
|
@Git::Error::Command::ISA = qw(Error);
|
|
|
|
|
|
|
|
sub new {
|
|
|
|
my $self = shift;
|
|
|
|
my $cmdline = '' . shift;
|
|
|
|
my $value = 0 + shift;
|
|
|
|
my $outputref = shift;
|
|
|
|
my(@args) = ();
|
|
|
|
|
|
|
|
local $Error::Depth = $Error::Depth + 1;
|
|
|
|
|
|
|
|
push(@args, '-cmdline', $cmdline);
|
|
|
|
push(@args, '-value', $value);
|
|
|
|
push(@args, '-outputref', $outputref);
|
|
|
|
|
|
|
|
$self->SUPER::new(-text => 'command returned error', @args);
|
|
|
|
}
|
|
|
|
|
|
|
|
sub stringify {
|
|
|
|
my $self = shift;
|
|
|
|
my $text = $self->SUPER::stringify;
|
|
|
|
$self->cmdline() . ': ' . $text . ': ' . $self->value() . "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sub cmdline {
|
|
|
|
my $self = shift;
|
|
|
|
$self->{'-cmdline'};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub cmd_output {
|
|
|
|
my $self = shift;
|
|
|
|
my $ref = $self->{'-outputref'};
|
|
|
|
defined $ref or undef;
|
|
|
|
if (ref $ref eq 'ARRAY') {
|
|
|
|
return @$ref;
|
|
|
|
} else { # SCALAR
|
|
|
|
return $$ref;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item git_cmd_try { CODE } ERRMSG
|
|
|
|
|
|
|
|
This magical statement will automatically catch any C<Git::Error::Command>
|
|
|
|
exceptions thrown by C<CODE> and make your program die with C<ERRMSG>
|
|
|
|
on its lips; the message will have %s substituted for the command line
|
|
|
|
and %d for the exit status. This statement is useful mostly for producing
|
|
|
|
more user-friendly error messages.
|
|
|
|
|
|
|
|
In case of no exception caught the statement returns C<CODE>'s return value.
|
|
|
|
|
|
|
|
Note that this is the only auto-exported function.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub git_cmd_try(&$) {
|
|
|
|
my ($code, $errmsg) = @_;
|
|
|
|
my @result;
|
|
|
|
my $err;
|
|
|
|
my $array = wantarray;
|
|
|
|
try {
|
|
|
|
if ($array) {
|
|
|
|
@result = &$code;
|
|
|
|
} else {
|
|
|
|
$result[0] = &$code;
|
|
|
|
}
|
|
|
|
} catch Git::Error::Command with {
|
|
|
|
my $E = shift;
|
|
|
|
$err = $errmsg;
|
|
|
|
$err =~ s/\%s/$E->cmdline()/ge;
|
|
|
|
$err =~ s/\%d/$E->value()/ge;
|
|
|
|
# We can't croak here since Error.pm would mangle
|
|
|
|
# that to Error::Simple.
|
|
|
|
};
|
|
|
|
$err and croak $err;
|
|
|
|
return $array ? @result : $result[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
=back
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
Copyright 2006 by Petr Baudis E<lt>pasky@suse.czE<gt>.
|
|
|
|
|
|
|
|
This module is free software; it may be used, copied, modified
|
|
|
|
and distributed under the terms of the GNU General Public Licence,
|
|
|
|
either version 2, or (at your option) any later version.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
|
|
# Take raw method argument list and return ($obj, @args) in case
|
|
|
|
# the method was called upon an instance and (undef, @args) if
|
|
|
|
# it was called directly.
|
|
|
|
sub _maybe_self {
|
|
|
|
# This breaks inheritance. Oh well.
|
|
|
|
ref $_[0] eq 'Git' ? @_ : (undef, @_);
|
|
|
|
}
|
|
|
|
|
2006-06-24 04:34:47 +02:00
|
|
|
# Check if the command id is something reasonable.
|
|
|
|
sub _check_valid_cmd {
|
|
|
|
my ($cmd) = @_;
|
|
|
|
$cmd =~ /^[a-z0-9A-Z_-]+$/ or throw Error::Simple("bad command: $cmd");
|
|
|
|
}
|
|
|
|
|
|
|
|
# Common backend for the pipe creators.
|
|
|
|
sub _command_common_pipe {
|
|
|
|
my $direction = shift;
|
2006-06-24 04:34:49 +02:00
|
|
|
my ($self, @p) = _maybe_self(@_);
|
|
|
|
my (%opts, $cmd, @args);
|
|
|
|
if (ref $p[0]) {
|
|
|
|
($cmd, @args) = @{shift @p};
|
|
|
|
%opts = ref $p[0] ? %{$p[0]} : @p;
|
|
|
|
} else {
|
|
|
|
($cmd, @args) = @p;
|
|
|
|
}
|
2006-06-24 04:34:47 +02:00
|
|
|
_check_valid_cmd($cmd);
|
|
|
|
|
2006-06-25 03:54:23 +02:00
|
|
|
my $fh;
|
2007-01-22 17:14:56 +01:00
|
|
|
if ($^O eq 'MSWin32') {
|
2006-06-25 03:54:23 +02:00
|
|
|
# ActiveState Perl
|
|
|
|
#defined $opts{STDERR} and
|
|
|
|
# warn 'ignoring STDERR option - running w/ ActiveState';
|
|
|
|
$direction eq '-|' or
|
|
|
|
die 'input pipe for ActiveState not implemented';
|
2007-01-22 17:16:05 +01:00
|
|
|
# the strange construction with *ACPIPE is just to
|
|
|
|
# explain the tie below that we want to bind to
|
|
|
|
# a handle class, not scalar. It is not known if
|
|
|
|
# it is something specific to ActiveState Perl or
|
|
|
|
# just a Perl quirk.
|
|
|
|
tie (*ACPIPE, 'Git::activestate_pipe', $cmd, @args);
|
|
|
|
$fh = *ACPIPE;
|
2006-06-25 03:54:23 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
my $pid = open($fh, $direction);
|
|
|
|
if (not defined $pid) {
|
|
|
|
throw Error::Simple("open failed: $!");
|
|
|
|
} elsif ($pid == 0) {
|
|
|
|
if (defined $opts{STDERR}) {
|
|
|
|
close STDERR;
|
|
|
|
}
|
|
|
|
if ($opts{STDERR}) {
|
|
|
|
open (STDERR, '>&', $opts{STDERR})
|
|
|
|
or die "dup failed: $!";
|
|
|
|
}
|
|
|
|
_cmd_exec($self, $cmd, @args);
|
2006-06-24 04:34:49 +02:00
|
|
|
}
|
2006-06-24 04:34:47 +02:00
|
|
|
}
|
|
|
|
return wantarray ? ($fh, join(' ', $cmd, @args)) : $fh;
|
|
|
|
}
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
# When already in the subprocess, set up the appropriate state
|
|
|
|
# for the given repository and execute the git command.
|
|
|
|
sub _cmd_exec {
|
|
|
|
my ($self, @args) = @_;
|
|
|
|
if ($self) {
|
2006-06-24 04:34:51 +02:00
|
|
|
$self->repo_path() and $ENV{'GIT_DIR'} = $self->repo_path();
|
|
|
|
$self->wc_path() and chdir($self->wc_path());
|
|
|
|
$self->wc_subdir() and chdir($self->wc_subdir());
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
2006-06-24 04:34:42 +02:00
|
|
|
_execv_git_cmd(@args);
|
2007-11-06 11:54:01 +01:00
|
|
|
die qq[exec "@args" failed: $!];
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
|
|
|
|
2006-06-24 04:34:34 +02:00
|
|
|
# Execute the given Git command ($_[0]) with arguments ($_[1..])
|
|
|
|
# by searching for it at proper places.
|
2006-09-23 20:20:47 +02:00
|
|
|
sub _execv_git_cmd { exec('git', @_); }
|
2006-06-24 04:34:34 +02:00
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
# Close pipe to a subprocess.
|
|
|
|
sub _cmd_close {
|
2006-06-24 04:34:44 +02:00
|
|
|
my ($fh, $ctx) = @_;
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
if (not close $fh) {
|
|
|
|
if ($!) {
|
|
|
|
# It's just close, no point in fatalities
|
|
|
|
carp "error closing pipe: $!";
|
|
|
|
} elsif ($? >> 8) {
|
2006-06-24 04:34:44 +02:00
|
|
|
# The caller should pepper this.
|
|
|
|
throw Git::Error::Command($ctx, $? >> 8);
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
}
|
|
|
|
# else we might e.g. closed a live stream; the command
|
|
|
|
# dying of SIGPIPE would drive us here.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-05-23 16:19:40 +02:00
|
|
|
sub DESTROY {
|
|
|
|
my ($self) = @_;
|
|
|
|
$self->_close_hash_and_insert_object();
|
|
|
|
$self->_close_cat_blob();
|
|
|
|
}
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
|
|
|
|
|
2006-06-25 03:54:23 +02:00
|
|
|
# Pipe implementation for ActiveState Perl.
|
|
|
|
|
|
|
|
package Git::activestate_pipe;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
sub TIEHANDLE {
|
|
|
|
my ($class, @params) = @_;
|
|
|
|
# FIXME: This is probably horrible idea and the thing will explode
|
|
|
|
# at the moment you give it arguments that require some quoting,
|
|
|
|
# but I have no ActiveState clue... --pasky
|
2007-01-22 17:14:56 +01:00
|
|
|
# Let's just hope ActiveState Perl does at least the quoting
|
|
|
|
# correctly.
|
|
|
|
my @data = qx{git @params};
|
2006-06-25 03:54:23 +02:00
|
|
|
bless { i => 0, data => \@data }, $class;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub READLINE {
|
|
|
|
my $self = shift;
|
|
|
|
if ($self->{i} >= scalar @{$self->{data}}) {
|
|
|
|
return undef;
|
|
|
|
}
|
2007-08-22 18:13:07 +02:00
|
|
|
my $i = $self->{i};
|
|
|
|
if (wantarray) {
|
|
|
|
$self->{i} = $#{$self->{'data'}} + 1;
|
|
|
|
return splice(@{$self->{'data'}}, $i);
|
|
|
|
}
|
|
|
|
$self->{i} = $i + 1;
|
|
|
|
return $self->{'data'}->[ $i ];
|
2006-06-25 03:54:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub CLOSE {
|
|
|
|
my $self = shift;
|
|
|
|
delete $self->{data};
|
|
|
|
delete $self->{i};
|
|
|
|
}
|
|
|
|
|
|
|
|
sub EOF {
|
|
|
|
my $self = shift;
|
|
|
|
return ($self->{i} >= scalar @{$self->{data}});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Introduce Git.pm (v4)
This patch introduces a very basic and barebone Git.pm module
with a sketch of how the generic interface would look like;
most functions are missing, but this should give some good base.
I will continue expanding it.
Most desirable now is more careful error reporting, generic_in() for feeding
input to Git commands and the repository() constructor doing some poking
with git-rev-parse to get the git directory and subdirectory prefix.
Those three are basically the prerequisities for converting git-mv.
I will send them as follow-ups to this patch.
Currently Git.pm just wraps up exec()s of Git commands, but even that
is not trivial to get right and various Git perl scripts do it in
various inconsistent ways. In addition to Git.pm, there is now also
Git.xs which provides barebone Git.xs for directly interfacing with
libgit.a, and as an example providing the hash_object() function using
libgit.
This adds the Git module, integrates it to the build system and as
an example converts the git-fmt-merge-msg.perl script to it (the result
is not very impressive since its advantage is not quite apparent in this
one, but I just picked up the simplest Git user around).
Compared to v3, only very minor things were fixed in this patch (some
whitespaces, a missing export, tiny bug in git-fmt-merge-msg.perl);
at first I wanted to post them as a separate patch but since this
is still only in pu, I decided that it will be cleaner to just resend
the patch.
My current working state is available all the time at
http://pasky.or.cz/~xpasky/git-perl/Git.pm
and an irregularily updated API documentation is at
http://pasky.or.cz/~xpasky/git-perl/Git.html
Many thanks to Jakub Narebski, Junio and others for their feedback.
Signed-off-by: Petr Baudis <pasky@suse.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-06-24 04:34:29 +02:00
|
|
|
1; # Famous last words
|