X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=discover%2Fparser.h;h=e7d52fe5d2ae671e96e78c6ec6270396e4bb82a3;hp=bff52e30d09fbfda86620664b2a4d61108ac8439;hb=9e869ebe3a5127575105d82c4d289d95cbed2db9;hpb=91ce1a8f8863d8f740188236f138421d17292d6c diff --git a/discover/parser.h b/discover/parser.h index bff52e3..e7d52fe 100644 --- a/discover/parser.h +++ b/discover/parser.h @@ -45,6 +45,12 @@ enum generic_icon_type { ICON_TYPE_UNKNOWN }; +struct parser_found_file { + const char *filename; + unsigned ino; + struct list_item list; +}; + #define streq(a,b) (!strcasecmp((a),(b))) void parser_init(void); @@ -85,4 +91,12 @@ int parser_scandir(struct discover_context *ctx, const char *dirname, struct dirent ***files, int (*filter)(const struct dirent *), int (*comp)(const struct dirent **, const struct dirent **)); +/* parser_is_unique - Test a file against a list of known files. + * If the file @filename exists and the file is not in @found_list add the + * file to @found_list and return true. Use when searching case-insensitive + * filesystems. + */ +bool parser_is_unique(struct discover_context *ctx, struct discover_device *dev, const char *filename, + struct list *found_list); + #endif /* _PARSER_H */