line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Git::Raw::Odb::Backend; |
2
|
|
|
|
|
|
|
$Git::Raw::Odb::Backend::VERSION = '0.86'; |
3
|
35
|
|
|
35
|
|
225
|
use strict; |
|
35
|
|
|
|
|
70
|
|
|
35
|
|
|
|
|
994
|
|
4
|
35
|
|
|
35
|
|
170
|
use warnings; |
|
35
|
|
|
|
|
67
|
|
|
35
|
|
|
|
|
863
|
|
5
|
|
|
|
|
|
|
|
6
|
35
|
|
|
35
|
|
172
|
use Git::Raw; |
|
35
|
|
|
|
|
56
|
|
|
35
|
|
|
|
|
788
|
|
7
|
35
|
|
|
35
|
|
15761
|
use Git::Raw::Odb::Backend::Loose; |
|
35
|
|
|
|
|
83
|
|
|
35
|
|
|
|
|
950
|
|
8
|
35
|
|
|
35
|
|
14985
|
use Git::Raw::Odb::Backend::OnePack; |
|
35
|
|
|
|
|
86
|
|
|
35
|
|
|
|
|
973
|
|
9
|
35
|
|
|
35
|
|
15019
|
use Git::Raw::Odb::Backend::Pack; |
|
35
|
|
|
|
|
81
|
|
|
35
|
|
|
|
|
1162
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Git::Raw::Odb::Backend - Git object database backend class |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 VERSION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
version 0.86 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 DESCRIPTION |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
A L represents a git object database backend. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
B: The API of this module is unstable and may change without warning |
24
|
|
|
|
|
|
|
(any change will be appropriately documented in the changelog). |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 AUTHOR |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Jacques Germishuys |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Copyright 2016 Jacques Germishuys. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it |
35
|
|
|
|
|
|
|
under the terms of either: the GNU General Public License as published |
36
|
|
|
|
|
|
|
by the Free Software Foundation; or the Artistic License. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
See http://dev.perl.org/licenses/ for more information. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
1; # End of Git::Raw::Odb::Backend |