char *dirPath;
char* dirList= strdup(searchPath);
size_t extLen=0;
+ int count=0;
- void ScanDir (char *searchPath) {
- DIR *dirHandle;
+ int ScanDir (char *searchPath) {
+ int found=0;
+ DIR *dirHandle;
struct dirent *dirEnt;
dirHandle = opendir (searchPath);
if (!dirHandle) {
AFB_DEBUG ("CONFIG-SCANNING dir=%s not readable", searchPath);
- return;
+ return 0;
}
//AFB_NOTICE ("CONFIG-SCANNING:ctl_listconfig scanning: %s", searchPath);
strncpy(newpath, searchPath, sizeof(newpath));
strncat(newpath, "/", sizeof(newpath)-strlen(newpath)-1);
strncat(newpath, dirEnt->d_name, sizeof(newpath)-strlen(newpath)-1);
- ScanDir(newpath);
+ found += ScanDir(newpath);
continue;
}
json_object_object_add(pathJ, "fullpath", json_object_new_string(searchPath));
json_object_object_add(pathJ, "filename", json_object_new_string(dirEnt->d_name));
json_object_array_add(responseJ, pathJ);
+ found ++;
}
}
closedir(dirHandle);
+ return found;
}
if (ext) extLen=strlen(ext);
// loop recursively on dir
for (dirPath= strtok(dirList, ":"); dirPath && *dirPath; dirPath=strtok(NULL,":")) {
- ScanDir (dirPath);
+ count += ScanDir (dirPath);
}
-
+ if (count == 0) {
+ json_object_put (responseJ);
+ return NULL;
+ }
+
return (responseJ);
}