From 9f7f2a958321d41725c0ae7f46c434fe4cbf3c6a Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Fri, 25 Feb 2011 00:21:46 +0100 Subject: dpkg: Refactor infodb file existence check into new pkg_infodb_has_file() --- src/infodb.c | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/infodb.c (limited to 'src/infodb.c') diff --git a/src/infodb.c b/src/infodb.c new file mode 100644 index 000000000..9a4fa50d3 --- /dev/null +++ b/src/infodb.c @@ -0,0 +1,50 @@ +/* + * dpkg - main program for package management + * infodb.c - package control information database + * + * Copyright © 1995 Ian Jackson + * Copyright © 2011 Guillem Jover + * + * This is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include +#include + +#include +#include + +#include +#include +#include + +#include "infodb.h" + +bool +pkg_infodb_has_file(struct pkginfo *pkg, const char *name) +{ + const char *filename; + struct stat stab; + + filename = pkgadminfile(pkg, name); + if (lstat(filename, &stab) == 0) + return true; + else if (errno == ENOENT) + return false; + else + ohshite(_("unable to check existence of `%.250s'"), filename); +} -- cgit v1.2.3