File: directory.h

package info (click to toggle)
curves 0.8.19
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge, squeeze, wheezy
  • size: 724 kB
  • ctags: 1,016
  • sloc: cpp: 6,284; ansic: 535; makefile: 292; sh: 192; fortran: 149
file content (135 lines) | stat: -rw-r--r-- 3,975 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* directory.h							-*- C++ -*-
     $Id: directory.h,v 1.11 2001/11/27 23:57:36 elf Exp $

   written by Marc Singer
   20 September 1996

   This file is part of the project CurVeS.  See the file README for
   more information.

   Copyright (C) 1996 Marc Singer

   This program 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 program 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
   with your Debian GNU/Linux system, in
   /usr/share/common-licenses/GPL, or with the Debian GNU/Linux hello
   source package as the file COPYING. If not, write to the Free
   Software Foundation, Inc., 59 Temple Place -Suite 330, MA
   02111-1307, USA.

   -----------
   DESCRIPTION
   -----------

   Header for directory class.


*/

#if !defined (_DIRECTORY_H_)
#    define   _DIRECTORY_H_

#include <dirent.h>

typedef bool (*PFN_DIRECTORY_SELECT)  (const char* szFile, void* pv);
typedef int (*PFN_DIRECTORY_COMPARE) (const void* pv0, const void* pv1);

typedef enum {
  fileRankDirectory = 1,
  fileRankFile	    = 2,
  fileRankOther	    = 3,
} eFileRank;

typedef struct {
  char* szPath;			// Pointer to file/directory name
  off_t cb;			/* Length of file in bytes */
  umode_t mode;			/* Mode/type of file */
  time_t time;			/* Time of last change to file */
  void* pvUser;			// Caller's baggage
} FILE_INFO;

class LDirectory {
protected:
  char* m_szPath;		/* Original path */

  		// -- Enumerated files 
  FILE_INFO* m_rgInfo;
  int m_cFiles;
  int m_cFilesMax;

  bool _is_ok (int iFile) {
    return m_rgInfo && iFile >= 0 && iFile < m_cFiles; }
  void _stat (int iFile);


public:
  LDirectory () {
    zero (); }
  LDirectory (const char* szPath) {
    zero (); init (szPath); }
  ~LDirectory () {
    release_this (); }
  void zero (void) {
    memset (this, 0, sizeof (*this)); }
  void init (const char* szPath);
  void release_this (void);
  void release_files (void);

  int alloc_to (int cFiles);
  int count_files (void) {
    return m_cFiles; }
  const char* path (void) {
    return m_szPath; }

  bool is_directory (int iFile);
  static bool is_directory (FILE_INFO* pInfo);
  bool is_file (int iFile);
  static bool is_file (FILE_INFO* pInfo);
  bool is_softlink (int iFile);

  const char* abbreviate (int cchMax);
  int add_file (const char* szFile, int cch);
  int enumerate (PFN_DIRECTORY_SELECT pfn, void* pv);
  static const char* file (FILE_INFO* pInfo) {
    return pInfo->szPath; }
  const char* file (int iFile) {
    return _is_ok (iFile) ? m_rgInfo[iFile].szPath : (const char*) NULL; }
  FILE_INFO* file_info (int iFile) {
    return _is_ok (iFile) ? &m_rgInfo[iFile] : (FILE_INFO*) 0; }
  bool exists (void);
  int find (const char* szFile, int cch);
  void normalize (void);
  static int rank (FILE_INFO* pInfo);
  void sort (PFN_DIRECTORY_COMPARE pfn);
  static int sort_alpha_compare (const void*, const void*);
  static long size (FILE_INFO* pInfo) {
    return pInfo->cb; }
  long size (int iFile) {
    return _is_ok (iFile) ? m_rgInfo[iFile].cb : 0; }
  void set_user (int iFile, void* pvUser) {
    if (_is_ok (iFile))
      m_rgInfo[iFile].pvUser = pvUser; }
  void stat (int iFile) {
    if (!_is_ok (iFile))
      return;
    _stat (iFile); }
  static time_t time (FILE_INFO* pInfo) {
    return pInfo->time; }
  time_t time (int iFile) {
    return _is_ok (iFile) ? m_rgInfo[iFile].time : 0; }
  static void* user (FILE_INFO* pInfo) {
    return pInfo->pvUser; }
  void* user (int iFile) {
    return _is_ok (iFile) ? m_rgInfo[iFile].pvUser : 0; }
};

#endif /* _DIRECTORY_H_ */