]>
git.cameronkatri.com Git - cgit.git/blob - ui-tree.c
1 /* ui-tree.c: functions for tree output
3 * Copyright (C) 2006 Lars Hjemli
5 * Licensed under GNU General Public License v2
6 * (see COPYING for full license text)
11 #include "ui-shared.h"
17 static void print_object(const unsigned char *sha1
, char *path
)
19 enum object_type type
;
21 unsigned long size
, lineno
, start
, idx
;
22 const char *linefmt
= "<tr><td class='no'><a id='n%1$d' name='n%1$d' href='#n%1$d'>%1$d</a></td><td class='txt'>";
24 type
= sha1_object_info(sha1
, &size
);
25 if (type
== OBJ_BAD
) {
26 cgit_print_error(fmt("Bad object name: %s",
31 buf
= read_sha1_file(sha1
, &type
, &size
);
33 cgit_print_error(fmt("Error reading object %s",
38 html(" blob: <a href='");
39 html_attr(cgit_pageurl(ctx
.qry
.repo
, "blob", fmt("id=%s", sha1_to_hex(sha1
))));
40 htmlf("'>%s</a>",sha1_to_hex(sha1
));
42 html("<table summary='blob content' class='blob'>\n");
47 if (buf
[idx
] == '\n') {
49 htmlf(linefmt
, ++lineno
);
50 html_txt(buf
+ start
);
56 htmlf(linefmt
, ++lineno
);
57 html_txt(buf
+ start
);
63 static int ls_item(const unsigned char *sha1
, const char *base
, int baselen
,
64 const char *pathname
, unsigned int mode
, int stage
)
68 enum object_type type
;
69 unsigned long size
= 0;
71 name
= xstrdup(pathname
);
72 fullpath
= fmt("%s%s%s", ctx
.qry
.path
? ctx
.qry
.path
: "",
73 ctx
.qry
.path
? "/" : "", name
);
75 type
= sha1_object_info(sha1
, &size
);
76 if (type
== OBJ_BAD
&& !S_ISGITLINK(mode
)) {
77 htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
83 html("<tr><td class='ls-mode'>");
84 cgit_print_filemode(mode
);
86 if (S_ISGITLINK(mode
)) {
87 htmlf("<a class='ls-mod' href='");
88 html_attr(fmt(ctx
.repo
->module_link
,
94 } else if (S_ISDIR(mode
)) {
95 cgit_tree_link(name
, NULL
, "ls-dir", ctx
.qry
.head
,
98 cgit_tree_link(name
, NULL
, "ls-blob", ctx
.qry
.head
,
101 htmlf("</td><td class='ls-size'>%li</td>", size
);
104 cgit_log_link("log", NULL
, "button", ctx
.qry
.head
, curr_rev
,
105 fullpath
, 0, NULL
, NULL
);
106 html("</td></tr>\n");
111 static void ls_head()
113 html("<table summary='tree listing' class='list'>\n");
114 html("<tr class='nohover'>");
115 html("<th class='left'>Mode</th>");
116 html("<th class='left'>Name</th>");
117 html("<th class='right'>Size</th>");
123 static void ls_tail()
131 static void ls_tree(const unsigned char *sha1
, char *path
)
135 tree
= parse_tree_indirect(sha1
);
137 cgit_print_error(fmt("Not a tree object: %s",
143 read_tree_recursive(tree
, "", 0, 1, NULL
, ls_item
);
148 static int walk_tree(const unsigned char *sha1
, const char *base
, int baselen
,
149 const char *pathname
, unsigned mode
, int stage
)
152 static char buffer
[PATH_MAX
];
156 memcpy(buffer
, base
, baselen
);
157 strcpy(buffer
+baselen
, pathname
);
158 url
= cgit_pageurl(ctx
.qry
.repo
, "tree",
159 fmt("h=%s&path=%s", curr_rev
, buffer
));
161 cgit_tree_link(xstrdup(pathname
), NULL
, NULL
, ctx
.qry
.head
,
164 if (strcmp(match_path
, buffer
))
165 return READ_TREE_RECURSIVE
;
170 return READ_TREE_RECURSIVE
;
172 print_object(sha1
, buffer
);
176 ls_item(sha1
, base
, baselen
, pathname
, mode
, stage
);
182 * Show a tree or a blob
183 * rev: the commit pointing at the root tree object
184 * path: path to tree or blob
186 void cgit_print_tree(const char *rev
, char *path
)
188 unsigned char sha1
[20];
189 struct commit
*commit
;
190 const char *paths
[] = {path
, NULL
};
195 curr_rev
= xstrdup(rev
);
196 if (get_sha1(rev
, sha1
)) {
197 cgit_print_error(fmt("Invalid revision name: %s", rev
));
200 commit
= lookup_commit_reference(sha1
);
201 if (!commit
|| parse_commit(commit
)) {
202 cgit_print_error(fmt("Invalid commit reference: %s", rev
));
206 html("path: <a href='");
207 html_attr(cgit_pageurl(ctx
.qry
.repo
, "tree", fmt("h=%s", rev
)));
211 ls_tree(commit
->tree
->object
.sha1
, NULL
);
216 read_tree_recursive(commit
->tree
, NULL
, 0, 0, paths
, walk_tree
);