forked from lix-project/lix
Remove some duplicate code
This commit is contained in:
parent
c08c802bf3
commit
3f8576a6ab
|
@ -815,23 +815,16 @@ static void prim_readDir(EvalState & state, const Pos & pos, Value * * args, Val
|
||||||
DirEntries entries = readDirectory(path);
|
DirEntries entries = readDirectory(path);
|
||||||
state.mkAttrs(v, entries.size());
|
state.mkAttrs(v, entries.size());
|
||||||
|
|
||||||
for (const auto & ent : entries) {
|
for (auto & ent : entries) {
|
||||||
Value * ent_val = state.allocAttr(v, state.symbols.create(ent.name));
|
Value * ent_val = state.allocAttr(v, state.symbols.create(ent.name));
|
||||||
if (ent.type == DT_UNKNOWN) {
|
if (ent.type == DT_UNKNOWN)
|
||||||
struct stat st = lstat(path + "/" + ent.name);
|
ent.type = getFileType(path);
|
||||||
mkString(*ent_val,
|
|
||||||
S_ISREG(st.st_mode) ? "regular" :
|
|
||||||
S_ISDIR(st.st_mode) ? "directory" :
|
|
||||||
S_ISLNK(st.st_mode) ? "symlink" :
|
|
||||||
"unknown");
|
|
||||||
} else {
|
|
||||||
mkString(*ent_val,
|
mkString(*ent_val,
|
||||||
ent.type == DT_REG ? "regular" :
|
ent.type == DT_REG ? "regular" :
|
||||||
ent.type == DT_DIR ? "directory" :
|
ent.type == DT_DIR ? "directory" :
|
||||||
ent.type == DT_LNK ? "symlink" :
|
ent.type == DT_LNK ? "symlink" :
|
||||||
"unknown");
|
"unknown");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
v.attrs->sort();
|
v.attrs->sort();
|
||||||
}
|
}
|
||||||
|
|
|
@ -301,12 +301,8 @@ static void findRoots(StoreAPI & store, const Path & path, unsigned char type, R
|
||||||
{
|
{
|
||||||
try {
|
try {
|
||||||
|
|
||||||
if (type == DT_UNKNOWN) {
|
if (type == DT_UNKNOWN)
|
||||||
struct stat st = lstat(path);
|
type = getFileType(path);
|
||||||
if (S_ISDIR(st.st_mode)) type = DT_DIR;
|
|
||||||
else if (S_ISLNK(st.st_mode)) type = DT_LNK;
|
|
||||||
else if (S_ISREG(st.st_mode)) type = DT_REG;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (type == DT_DIR) {
|
if (type == DT_DIR) {
|
||||||
for (auto & i : readDirectory(path))
|
for (auto & i : readDirectory(path))
|
||||||
|
|
|
@ -227,6 +227,16 @@ DirEntries readDirectory(const Path & path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
unsigned char getFileType(const Path & path)
|
||||||
|
{
|
||||||
|
struct stat st = lstat(path);
|
||||||
|
if (S_ISDIR(st.st_mode)) return DT_DIR;
|
||||||
|
if (S_ISLNK(st.st_mode)) return DT_LNK;
|
||||||
|
if (S_ISREG(st.st_mode)) return DT_REG;
|
||||||
|
return DT_UNKNOWN;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
string readFile(int fd)
|
string readFile(int fd)
|
||||||
{
|
{
|
||||||
struct stat st;
|
struct stat st;
|
||||||
|
|
|
@ -77,6 +77,8 @@ typedef vector<DirEntry> DirEntries;
|
||||||
|
|
||||||
DirEntries readDirectory(const Path & path);
|
DirEntries readDirectory(const Path & path);
|
||||||
|
|
||||||
|
unsigned char getFileType(const Path & path);
|
||||||
|
|
||||||
/* Read the contents of a file into a string. */
|
/* Read the contents of a file into a string. */
|
||||||
string readFile(int fd);
|
string readFile(int fd);
|
||||||
string readFile(const Path & path, bool drain = false);
|
string readFile(const Path & path, bool drain = false);
|
||||||
|
|
Loading…
Reference in a new issue