summaryrefslogtreecommitdiffabout
path: root/scan-tree.c
authorLars Hjemli <hjemli@gmail.com>2009-08-18 15:17:41 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-08-18 15:22:14 (UTC)
commite16f1783346a090e4ea1194dcaae7f03e813f6a2 (patch) (unidiff)
tree268f5ba231895ba3a63071497764c64d44733da5 /scan-tree.c
parent523c133e2e5f7089a3d18ac23f2074b60991a7f0 (diff)
downloadcgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.zip
cgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.tar.gz
cgit-e16f1783346a090e4ea1194dcaae7f03e813f6a2.tar.bz2
Add and use a common readfile() function
This function is used to read the full content of a textfile into a newly allocated buffer (with zerotermination). It replaces the earlier readfile() in scan-tree.c (which was rather error-prone[1]), and is reused by read_agefile() in ui-repolist.c. 1: No checks for EINTR and EAGAIN, fixed-size buffer Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'scan-tree.c') (more/less context) (ignore whitespace changes)
-rw-r--r--scan-tree.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/scan-tree.c b/scan-tree.c
index 47f3988..95dc65b 100644
--- a/scan-tree.c
+++ b/scan-tree.c
@@ -30,35 +30,23 @@ static int is_git_dir(const char *path)
30 return 0; 30 return 0;
31 } 31 }
32 if (!S_ISREG(st.st_mode)) 32 if (!S_ISREG(st.st_mode))
33 return 0; 33 return 0;
34 34
35 return 1; 35 return 1;
36} 36}
37 37
38char *readfile(const char *path)
39{
40 FILE *f;
41 static char buf[MAX_PATH];
42
43 if (!(f = fopen(path, "r")))
44 return NULL;
45 buf[0] = 0;
46 fgets(buf, MAX_PATH, f);
47 fclose(f);
48 return buf;
49}
50
51static void add_repo(const char *base, const char *path) 38static void add_repo(const char *base, const char *path)
52{ 39{
53 struct cgit_repo *repo; 40 struct cgit_repo *repo;
54 struct stat st; 41 struct stat st;
55 struct passwd *pwd; 42 struct passwd *pwd;
56 char *p; 43 char *p;
44 size_t size;
57 45
58 if (stat(path, &st)) { 46 if (stat(path, &st)) {
59 fprintf(stderr, "Error accessing %s: %s (%d)\n", 47 fprintf(stderr, "Error accessing %s: %s (%d)\n",
60 path, strerror(errno), errno); 48 path, strerror(errno), errno);
61 return; 49 return;
62 } 50 }
63 if ((pwd = getpwuid(st.st_uid)) == NULL) { 51 if ((pwd = getpwuid(st.st_uid)) == NULL) {
64 fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", 52 fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n",
@@ -75,17 +63,17 @@ static void add_repo(const char *base, const char *path)
75 63
76 repo = cgit_add_repo(xstrdup(p)); 64 repo = cgit_add_repo(xstrdup(p));
77 repo->name = repo->url; 65 repo->name = repo->url;
78 repo->path = xstrdup(path); 66 repo->path = xstrdup(path);
79 repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : ""); 67 repo->owner = (pwd ? xstrdup(pwd->pw_gecos ? pwd->pw_gecos : pwd->pw_name) : "");
80 68
81 p = fmt("%s/description", path); 69 p = fmt("%s/description", path);
82 if (!stat(p, &st)) 70 if (!stat(p, &st))
83 repo->desc = xstrdup(readfile(p)); 71 readfile(p, &repo->desc, &size);
84 72
85 p = fmt("%s/README.html", path); 73 p = fmt("%s/README.html", path);
86 if (!stat(p, &st)) 74 if (!stat(p, &st))
87 repo->readme = "README.html"; 75 repo->readme = "README.html";
88} 76}
89 77
90static void scan_path(const char *base, const char *path) 78static void scan_path(const char *base, const char *path)
91{ 79{