1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
|
package Git::Raw::Index;
$Git::Raw::Index::VERSION = '0.87';
use strict;
use warnings;
use Git::Raw;
=head1 NAME
Git::Raw::Index - Git index class
=head1 VERSION
version 0.87
=head1 DESCRIPTION
A L<Git::Raw::Index> represents an index in a Git repository.
B<WARNING>: The API of this module is unstable and may change without warning
(any change will be appropriately documented in the changelog).
=head1 METHODS
=head2 new( )
Create a new in memory index. This is currently of little use.
=head2 owner( )
Retrieve the L<Git::Raw::Repository> owning the index.
=head2 add( $entry )
Add C<$entry> to the index. C<$entry> should either be the path of a file
or alternatively a L<Git::Raw::Index::Entry>.
=head2 add_frombuffer( $path, $buffer, [$mode] )
Add or update an entry from an in memory file. The entry will be placed at C<$path>
with the contents of C<$buffer>. C<$buffer> may either be string or a reference
to a string. C<$mode> is the file mode; it defaults to C<0100644>. Returns a
L<Git::Raw::Index::Entry> object.
=head2 add_all( \%opts )
Add or update all index entries to match the working directory. Valid fields for
the C<%opts> hash are:
=over 4
=item * "paths"
List of path patterns to add.
=item * "flags"
Valid fields for the C<%flags> member:
=over 8
=item * "force"
Forced addition of files (even if they are ignored).
=item * "disable_pathspec_match"
Disable pathspec pattern matching against entries in C<$paths>.
=item * "check_pathspec"
Enable pathspec pattern matching against entries in C<$paths> (default).
=back
=item * "notification"
The callback to be called for each added or updated item. Receives the C<$path>
and matching C<$pathspec>. This callback should return C<0> if the file should
be added to the index, C<E<gt>0> if it should be skipped or C<E<lt>0> to abort.
=back
=head2 find( $path )
Find the first L<Git::Raw::Index::Entry> which point to given C<$path>. If an
entry cannot be found, this function will return C<undef>.
=head2 remove( $path )
Remove C<$path> from the index.
=head2 remove_all( \%opts )
Remove all matching index entries. See C<Git::Raw::Index-E<gt>update_all()> for
valid C<%opts> values.
=head2 path( )
Retrieve the full path to the index file on disk.
=head2 checksum( )
Retrieve the SHA-1 checksum over the index file, except for the last 20 bytes which is the checksum content itself.
In the index does not exist on-disk an empty OID will be returned.
=head2 clear( )
Clear the index.
=head2 read( [$force] )
Update the index reading it from disk.
=head2 write( )
Write the index to disk.
=head2 read_tree( $tree )
Replace the index contente with C<$tree>.
=head2 write_tree( [$repo] )
Create a new tree from the index and write it to disk. C<$repo> optionally
indicates which L<Git::Raw::Repository> the tree should be written to. Returns
a L<Git::Raw::Tree> object.
=head2 checkout( [\%checkout_opts] )
Update files in the working tree to match the contents of the index.
See C<Git::Raw::Repository-E<gt>checkout()> for valid
C<%checkout_opts> values.
=head2 entry_count( )
Retrieve the number of entries in the index.
=head2 entries( )
Retrieve index entries. Returns a list of L<Git::Raw::Index::Entry> objects.
=head2 add_conflict( $ancestor, $theirs, $ours)
Add a new conflict entry. C<$ancestor>, C<$theirs> and C<$ours> should be
L<Git::Raw::Index::Entry> objects.
=head2 get_conflict( $path )
Get the conflict entry for C<$path>. If C<$path> has no conflict entry,
this function will return C<undef>.
=head2 remove_conflict( $path )
Remove C<$path> from the index.
=head2 has_conflicts( )
Determine if the index contains entries representing file conflicts.
=head2 conflict_cleanup( )
Remove all conflicts in the index (entries with a stage greater than 0).
=head2 conflicts( )
Retrieve index entries that represent a conflict. Returns a list of
L<Git::Raw::Index::Conflict> objects.
=head2 merge( $ancestor, $theirs, $ours, [\%merge_opts] )
Merge two files as they exist in the index. C<$ancestor>, C<$theirs> and
C<$ours> should be L<Git::Raw::Index::Entry> objects. Returns a
L<Git::Raw::Merge::File::Result> object. Valid fields for the C<%merge_opts>
hash are:
=over 4
=item * "our_label"
The name of the "our" side of conflicts.
=item * "their_label"
The name of the "their" side of conflicts.
=item * "ancestor_label"
The name of the common ancestor side of conflicts.
=item * "favor"
Specify content automerging behaviour. Valid values are C<"ours">, C<"theirs">,
and C<"union">.
=item * "marker_size"
The size of conflict markers.
=item * "flags"
Merge file flags. Valid values include:
=over 8
=item * "merge"
Create standard conflicted merge file.
=item * "diff3"
Create diff3-style files.
=item * "simplify_alnum"
Condense non-alphanumeric regions for simplified diff file.
=item * "ignore_whitespace"
Ignore all whitespace.
=item * "ignore_whitespace_change"
Ignore changes in amount of whitespace.
=item * "ignore_whitespace_eol"
Ignore whitespace at end of line.
=item * "patience"
Use the C<"patience diff"> algorithm.
=item * "minimal"
Take extra time to find minimal diff.
=back
=back
=head2 update_all( \%opts )
Update all index entries to match the working directory. Valid fields for the
C<%opts> hash are:
=over 4
=item * "paths"
List of path patterns to add.
=item * "notification"
The callback to be called for each updated item. Receives the C<$path> and
matching C<$pathspec>. This callback should return C<0> if the file should be
added to the index, C<E<gt>0> if it should be skipped or C<E<lt>0> to abort.
=back
=head2 capabilities( )
Retrieve the index's capabilities. Returns a hash with members C<"ignore_case">,
C<"no_filemode"> and C<"no_symlinks">, each indicating if the L<Git::Raw::Index>
supports the capability.
=head2 version( [$version] )
Retrieve or set the index version.
=head1 AUTHOR
Alessandro Ghedini <alexbio@cpan.org>
Jacques Germishuys <jacquesg@striata.com>
=head1 LICENSE AND COPYRIGHT
Copyright 2012 Alessandro Ghedini.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1; # End of Git::Raw::Index
|