summaryrefslogtreecommitdiffstats
path: root/3rdparty/granite/git/commit.php
blob: 51077e89f3c19e00d0b8f248f8afeb74168026ca (plain)
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
<?php
/**
 * Commit - provides a 'commit' object
 *
 * PHP version 5.3
 *
 * @category Git
 * @package  Granite
 * @author   Craig Roberts <craig0990@googlemail.com>
 * @license  http://www.opensource.org/licenses/mit-license.php MIT Expat License
 * @link     http://craig0990.github.com/Granite/
 */

namespace Granite\Git;
use \Granite\Git\Object\Raw as Raw;
use \InvalidArgumentException as InvalidArgumentException;

/**
 * Commit represents a full commit object
 *
 * @category Git
 * @package  Granite
 * @author   Craig Roberts <craig0990@googlemail.com>
 * @license  http://www.opensource.org/licenses/mit-license.php MIT Expat License
 * @link     http://craig0990.github.com/Granite/
 */
class Commit
{

    /**
     * The path to the repository root
     */
    private $path;
    /**
     * The SHA-1 id of the requested commit
     */
    private $sha;
    /**
     * The size of the commit in bytes
     */
    private $size;
    /**
     * The commit message
     */
    private $message;
    /**
     * The full committer string
     */
    private $committer;
    /**
     * The full author string
     */
    private $author;
    /**
     * The SHA-1 ids of the parent commits
     */
    private $parents = array();

    /**
     * Fetches a raw Git object and parses the result. Throws an
     * InvalidArgumentException if the object is not of the correct type,
     * or cannot be found.
     *
     * @param string $path The path to the repository root
     * @param string $sha  The SHA-1 id of the requested object
     *
     * @throws InvalidArgumentException
     */
    public function __construct($path, $sha = NULL)
    {
        $this->path = $path;
        if ($sha !== NULL) {
            $this->sha = $sha;
            $object = Raw::factory($path, $sha);
            $this->size = $object->size();

            if ($object->type() !== Raw::OBJ_COMMIT) {
                throw new InvalidArgumentException(
                    "The object $sha is not a commit, type is " . $object->type()
                );
            }

            // Parse headers and commit message (delimited with "\n\n")
            list($headers, $this->message) = explode("\n\n", $object->content(), 2);
            $headers = explode("\n", $headers);

            foreach ($headers as $header) {
                list($header, $value) = explode(' ', $header, 2);
                if ($header == 'parent') {
                    $this->parents[] = $value;
                } else {
                    $this->$header = $value;
                }
            }

            $this->tree = new Tree($this->path, $this->tree);
        }
    }

    /**
     * Returns the message stored in the commit
     *
     * @return string The commit message
     */
    public function message($message = NULL)
    {
        if ($message !== NULL) {
            $this->message = $message;
            return $this;
        }
        return $this->message;
    }

    /**
     * Returns the commiter string
     *
     * @return string The committer string
     */
    public function committer($committer = NULL)
    {
        if ($committer !== NULL) {
            $this->committer = $committer;
            return $this;
        }
        return $this->committer;
    }

    /**
     * Returns the author string
     *
     * @return string The author string
     */
    public function author($author = NULL)
    {
        if ($author !== NULL) {
            $this->author = $author;
            return $this;
        }
        return $this->author;
    }

    /**
     * Returns the parents of the commit, or an empty array if none
     *
     * @return array The parents of the commit
     */
    public function parents($parents = NULL)
    {
        if ($parents !== NULL) {
            $this->parents = $parents;
            return $this;
        }
        return $this->parents;
    }

    /**
     * Returns a tree object associated with the commit
     *
     * @return Tree
     */
    public function tree(Tree $tree = NULL)
    {
        if ($tree !== NULL) {
            $this->tree = $tree;
            return $this;
        }
        return $this->tree;
    }

    /**
     * Returns the size of the commit in bytes (Git header + data)
     *
     * @return int
     */
    public function size()
    {
        return $this->size;
    }

    /**
     * Returns the size of the commit in bytes (Git header + data)
     *
     * @return int
     */
    public function sha()
    {
        $this->sha = hash('sha1', $this->_raw());
        return $this->sha;
    }

    public function write()
    {
        $sha = $this->sha();
        $path = $this->path
            . 'objects'
            . DIRECTORY_SEPARATOR
            . substr($sha, 0, 2)
            . DIRECTORY_SEPARATOR
            . substr($sha, 2);
        // FIXME: currently writes loose objects only
        if (file_exists($path)) {
            return FALSE;
        }

        if (!is_dir(dirname($path))) {
            mkdir(dirname($path), 0777, TRUE);
        }

        $loose = fopen($path, 'wb');
        $data = $this->_raw();
        $write = fwrite($loose, gzcompress($data));
        fclose($loose);

        return ($write !== FALSE);
    }

    public function _raw()
    {
        $data = 'tree ' . $this->tree->sha() . "\n";
        foreach ($this->parents as $parent)
        {
            $data .= "parent $parent\n";
        }
        $data .= 'author ' . $this->author . "\n";
        $data .= 'committer ' . $this->committer . "\n\n";
        $data .= $this->message;

        $data = 'commit ' . strlen($data) . "\0" . $data;
        return $data;
    }

}