//======================================================================== // // gfile.h // // Miscellaneous file and directory name manipulation. // // Copyright 1996-2003 Glyph & Cog, LLC // //======================================================================== //======================================================================== // // Modified under the Poppler project - http://poppler.freedesktop.org // // All changes made under the Poppler project to this file are licensed // under GPL version 2 or later // // Copyright (C) 2006 Kristian Høgsberg // Copyright (C) 2009, 2011, 2012, 2017, 2018 Albert Astals Cid // Copyright (C) 2009 Kovid Goyal // Copyright (C) 2013 Adam Reichold // Copyright (C) 2013, 2017 Adrian Johnson // Copyright (C) 2014 Bogdan Cristea // Copyright (C) 2014 Peter Breitenlohner // Copyright (C) 2017 Christoph Cullmann // Copyright (C) 2017 Thomas Freitag // Copyright (C) 2018 Mojca Miklavec // Copyright (C) 2019 Christian Persch // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git // //======================================================================== #ifndef GDIR_H #define GDIR_H #include "poppler-config.h" class GooString; //------------------------------------------------------------------------ // GDir and GDirEntry //------------------------------------------------------------------------ class GDirEntry { public: GDirEntry(const char *dirPath, const char *nameA, bool doStat); ~GDirEntry(); GDirEntry(const GDirEntry &other) = delete; GDirEntry &operator=(const GDirEntry &other) = delete; const GooString *getName() const { return name; } const GooString *getFullPath() const { return fullPath; } bool isDir() const { return dir; } private: GooString *name; // dir/file name GooString *fullPath; bool dir; // is it a directory? }; class GDir { public: GDir(const char *name, bool doStatA = true); ~GDir(); GDir(const GDir &other) = delete; GDir &operator=(const GDir &other) = delete; GDirEntry *getNextEntry(); void rewind(); private: GooString *path; // directory path bool doStat; // call stat() for each entry? #if defined(_WIN32) WIN32_FIND_DATAA ffd; HANDLE hnd; #else DIR *dir; // the DIR structure from opendir() #endif }; #endif