Skip to content

Commit 17970e2

Browse files
author
Luca
committed
Merge branch 'release/0.0.1'
2 parents d58f85f + aeb5b4b commit 17970e2

13 files changed

+618
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
test/testRepo

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
test:
2+
@unzip test/testRepo.zip -d test/
3+
@./node_modules/.bin/mocha --ignore-leaks
4+
5+
.PHONY: test

README.md

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# GitReader
2+
3+
Read and format git object from a git Repo
4+
5+
## How to use
6+
7+
var gitReader = require('gitReader')
8+
, repo = gitReader.init('.');
9+
10+
repo.getBranches(function (err, branches) { });
11+
repo.getObject(sha1, function (err, result) { });
12+
13+
## How to test
14+
15+
npm test
16+
17+
## License
18+
19+
(The MIT License)
20+
21+
Copyright (c) 2011 Luca Lanziani <[email protected]>
22+
23+
Permission is hereby granted, free of charge, to any person obtaining
24+
a copy of this software and associated documentation files (the
25+
'Software'), to deal in the Software without restriction, including
26+
without limitation the rights to use, copy, modify, merge, publish,
27+
distribute, sublicense, and/or sell copies of the Software, and to
28+
permit persons to whom the Software is furnished to do so, subject to
29+
the following conditions:
30+
31+
The above copyright notice and this permission notice shall be
32+
included in all copies or substantial portions of the Software.
33+
34+
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
35+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
36+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
37+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
38+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
39+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE

index.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
var repo = require('./lib/repo.js');
2+
3+
module.exports.init = repo.init;

lib/object_factory.js

+92
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
'use strict';
2+
/*jslint node: true, white: true, maxerr: 50, indent: 2 */
3+
var fs = require('fs')
4+
, path = require('path')
5+
, parser = require('./object_parser.js')
6+
, zlib = require('zlib')
7+
;
8+
9+
var noop = function() {};
10+
11+
var objectFactory = function() {
12+
var that, sha1ToFile, getData, getObject;
13+
that = {};
14+
15+
sha1ToFile = function (sha1, dir) {
16+
return path.join(dir, 'objects', sha1.slice(0, 2), sha1.slice(2, sha1.length));
17+
};
18+
19+
getData = function (sha1, dir, cb) {
20+
var callback, filename;
21+
22+
if (typeof sha1 === "function") {
23+
cb = sha1;
24+
sha1 = undefined;
25+
}
26+
27+
if (typeof dir === "function") {
28+
cb = dir;
29+
dir = undefined;
30+
}
31+
32+
callback = cb || noop;
33+
filename = sha1ToFile(sha1, dir);
34+
35+
fs.readFile(filename, function (err, data) {
36+
if (err) {
37+
return cb(err, null);
38+
}
39+
40+
zlib.inflate(data, function (err, data) {
41+
if (err) {
42+
return cb(err, null);
43+
}
44+
cb(null, data);
45+
});
46+
});
47+
};
48+
49+
getObject = function (sha1, dir, cb) {
50+
var callback;
51+
52+
callback = cb || noop;
53+
54+
getData(sha1, dir, function(err, data) {
55+
if (err) {
56+
return callback(err, null);
57+
}
58+
return callback(null, parser.parse(data));
59+
});
60+
};
61+
62+
that.getObject = getObject;
63+
return that;
64+
};
65+
66+
67+
68+
module.exports = objectFactory();
69+
70+
//var objects = objectFactory()
71+
// , blob = "303ff981c488b812b6215f7db7920dedb3b59d9a"
72+
// , tree = "324e16519b70c18a9c92db30aa800912ec7f41be"
73+
// , commit = "e42d12f3d9f9c47bdd79a0bb837cfdf50d4a58af"
74+
// , dir= "../../test/TestGitRepo/.git"
75+
// ;
76+
77+
// objects.getData(tree, dir, function(err, data){
78+
// console.log(data.toString());
79+
// })
80+
81+
82+
// objects.getObject(commit,dir,function(err, data) {
83+
// console.log(data);
84+
// })
85+
86+
// objects.getObject(tree,dir,function(err, data) {
87+
// console.log(data);
88+
// })
89+
90+
// objects.getObject(blob,dir,function(err, data) {
91+
// console.log(data);
92+
// })

lib/object_parser.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
'use strict';
2+
/*jslint node: true, white: true, maxerr: 50, indent: 2 */
3+
4+
var commit_parser = require('./parser/commit.js')
5+
, blob_parser = require('./parser/blob.js')
6+
, tree_parser = require('./parser/tree.js')
7+
;
8+
9+
var objTypes = {
10+
"commit": commit_parser,
11+
"blob": blob_parser,
12+
"tree": tree_parser
13+
};
14+
15+
16+
var parse = function (data) {
17+
var obj, findNextChar, getChunck, getHeader, header,
18+
getData;
19+
obj = {};
20+
21+
findNextChar = function (char, start) {
22+
var from = (start === undefined) ? 0 : start;
23+
24+
if (from >= data.length) {
25+
return data.length;
26+
}
27+
28+
while ((data[from] !== char.charCodeAt(0)) && (from < data.length)) {
29+
from += 1;
30+
}
31+
return from;
32+
};
33+
34+
getChunck = function (start) {
35+
var from, to;
36+
from = (start === undefined) ? 0 : start;
37+
if (from >= data.length) {
38+
return null;
39+
}
40+
41+
to = findNextChar('\0', from);
42+
return data.slice(from, to);
43+
};
44+
45+
getHeader = function () {
46+
var header = getChunck(0),
47+
field = header.toString().split(" ");
48+
49+
header = {
50+
type: field[0],
51+
length: field[1]
52+
};
53+
54+
return header;
55+
};
56+
57+
getData = function (type) {
58+
var body, from;
59+
from = findNextChar('\0', 0);
60+
body = objTypes[type].parse(data.slice(from + 1));
61+
return body;
62+
};
63+
64+
header = getHeader();
65+
obj.type = header.type;
66+
obj.body = getData(header.type);
67+
return obj;
68+
};
69+
70+
module.exports = { parse: parse };

lib/parser/blob.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
'use strict';
2+
/*jslint node: true, white: true, maxerr: 50, indent: 2 */
3+
4+
var parse = function(data) {
5+
var getData;
6+
7+
getData = function() {
8+
return data.toString();
9+
};
10+
11+
return getData();
12+
};
13+
14+
15+
module.exports = {parse: parse};
16+
17+
//console.log(new Commit(1).getd());

lib/parser/commit.js

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
'use strict';
2+
/*jslint node: true, white: true, maxerr: 50, indent: 2 */
3+
var parse = function(data) {
4+
var arrData, obj, findNextSpace, getInfo, getMessage,
5+
getData;
6+
7+
arrData = data.toString().split('\n');
8+
9+
findNextSpace = function(start) {
10+
var from = (start === undefined) ? 0 : start;
11+
12+
if (from >= arrData.length) {
13+
return arrData.length;
14+
}
15+
16+
while ((arrData[from] !== '') && (from<arrData.length))
17+
{from += 1;}
18+
return from;
19+
};
20+
21+
22+
getInfo = function() {
23+
var spacePosition
24+
, arrHeader = arrData.slice(0,findNextSpace(0))
25+
, objHeader = {}
26+
;
27+
28+
arrHeader.forEach(function (x) {
29+
spacePosition = x.indexOf(' ');
30+
objHeader[x.slice(0,spacePosition)] = x.slice(spacePosition+1);
31+
});
32+
33+
return objHeader;
34+
};
35+
36+
getMessage = function() {
37+
var arrBody = arrData.slice(findNextSpace(0)+1);
38+
return arrBody.join('\n');
39+
};
40+
41+
getData = function() {
42+
return {"info": getInfo(), "message": getMessage()};
43+
};
44+
45+
return getData();
46+
};
47+
48+
49+
module.exports = {parse: parse};
50+
51+
//console.log(new Commit(1).getd());

lib/parser/tree.js

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
'use strict';
2+
/*jslint node: true, white: true, maxerr: 50, indent: 2 */
3+
var parse = function(data) {
4+
var arrData, obj, findNextChar, getSha, getChunck,
5+
getData, getMessage, findNextSpace;
6+
7+
arrData = data.toString().split('\n');
8+
9+
findNextChar = function(char, start) {
10+
var from = (start === undefined) ? 0 : start;
11+
if (from >= data.length) {
12+
return data.length;
13+
}
14+
15+
while ((data[from] !== char.charCodeAt(0)) && (from<data.length))
16+
{from += 1;}
17+
return from;
18+
};
19+
20+
getSha = function(start) {
21+
return data.slice(start, start+20);
22+
};
23+
24+
getChunck = function(start) {
25+
var from, to;
26+
from = (start === undefined) ? 0 : start;
27+
if (from >= data.length) {
28+
return null;
29+
}
30+
31+
to = findNextChar('\0', from);
32+
return data.slice(from, to);
33+
};
34+
35+
getData = function() {
36+
var arrData, chunck, length, data,
37+
sha, type;
38+
39+
arrData = [];
40+
41+
length = 0;
42+
while ( null !== (chunck = getChunck(length))) {
43+
length += chunck.length+1;
44+
sha = getSha(length);
45+
length += sha.length;
46+
data = chunck.toString().split(' ');
47+
type = data[0].slice(0, 3) === "100" ? "blob" : "tree";
48+
49+
arrData.push({mode: data[0],
50+
name:data[1],
51+
sha: sha.toString('hex'),
52+
type: type
53+
});
54+
}
55+
return arrData;
56+
};
57+
58+
getMessage = function() {
59+
var arrBody = arrData.slice(findNextSpace(0)+1);
60+
return arrBody.join('\n');
61+
};
62+
63+
return getData();
64+
65+
};
66+
67+
module.exports = {parse:parse};
68+
69+
//console.log(new Commit(1).getd());

0 commit comments

Comments
 (0)