VirtualBox

source: kBuild/trunk/src/lib/nt/fts-nt.h@ 3394

Last change on this file since 3394 was 3004, checked in by bird, 8 years ago

fts-nt.c: Wide char support, part 3.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 7.6 KB
Line 
1/* $Id: fts-nt.h 3004 2016-11-05 23:18:51Z bird $ */
2/** @file
3 * Header for the NT port of BSD fts.h.
4 *
5 * @copyright Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved.
6 * @copyright NT modifications Copyright (C) 2016 knut st. osmundsen <[email protected]>
7 * @licenses BSD3
8 */
9
10/*
11 * Copyright (c) 1989, 1993
12 * The Regents of the University of California. All rights reserved.
13 *
14 * Redistribution and use in source and binary forms, with or without
15 * modification, are permitted provided that the following conditions
16 * are met:
17 * 1. Redistributions of source code must retain the above copyright
18 * notice, this list of conditions and the following disclaimer.
19 * 2. Redistributions in binary form must reproduce the above copyright
20 * notice, this list of conditions and the following disclaimer in the
21 * documentation and/or other materials provided with the distribution.
22 * 3. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * SUCH DAMAGE.
37 *
38 * @(#)fts.h 8.3 (Berkeley) 8/14/94
39 * $FreeBSD$
40 *
41 */
42
43#ifndef INCLUDED_FTS_NT_H
44#define INCLUDED_FTS_NT_H
45
46#include <sys/types.h>
47#include <stdint.h>
48#include "ntstat.h" /* ensure correct stat structure */
49
50typedef uint64_t fts_dev_t;
51typedef uint64_t fts_ino_t;
52typedef uint32_t fts_nlink_t;
53#ifdef _WINNT_
54typedef HANDLE fts_fd_t;
55# define NT_FTS_INVALID_HANDLE_VALUE INVALID_HANDLE_VALUE
56#else
57typedef void * fts_fd_t;
58# define NT_FTS_INVALID_HANDLE_VALUE ((void *)~(uintptr_t)0)
59#endif
60#define FTSCALL __cdecl
61
62typedef struct {
63 struct _ftsent *fts_cur; /* current node */
64 struct _ftsent *fts_child; /* linked list of children */
65 struct _ftsent **fts_array; /* sort array */
66 fts_dev_t fts_dev; /* starting device # */
67 char *fts_path; /* path for this descent */
68 size_t fts_pathlen; /* sizeof(path) */
69 wchar_t *fts_wcspath; /* NT: UTF-16 path for this descent. */
70 size_t fts_cwcpath; /* NT: size of fts_wcspath buffer */
71 size_t fts_nitems; /* elements in the sort array */
72 int (FTSCALL *fts_compar) /* compare function */
73 (const struct _ftsent * const *, const struct _ftsent * const *);
74
75#define FTS_COMFOLLOW 0x001 /* follow command line symlinks */
76#define FTS_LOGICAL 0x002 /* logical walk */
77#define FTS_NOCHDIR 0x004 /* don't change directories */
78#define FTS_NOSTAT 0x008 /* don't get stat info */
79#define FTS_PHYSICAL 0x010 /* physical walk */
80#define FTS_SEEDOT 0x020 /* return dot and dot-dot */
81#define FTS_XDEV 0x040 /* don't cross devices */
82#if 0 /* No whiteout on NT. */
83#define FTS_WHITEOUT 0x080 /* return whiteout information */
84#endif
85#define FTS_NO_ANSI 0x40000000 /* NT: No ansi name or access path. */
86#define FTS_OPTIONMASK 0x400000ff /* valid user option mask */
87
88#define FTS_NAMEONLY 0x100 /* (private) child names only */
89#define FTS_STOP 0x200 /* (private) unrecoverable error */
90 int fts_options; /* fts_open options, global flags */
91 void *fts_clientptr; /* thunk for sort function */
92} FTS;
93
94typedef struct _ftsent {
95 struct _ftsent *fts_cycle; /* cycle node */
96 struct _ftsent *fts_parent; /* parent directory */
97 struct _ftsent *fts_link; /* next file in directory */
98 int64_t fts_number; /* local numeric value */
99#define fts_bignum fts_number /* XXX non-std, should go away */
100 void *fts_pointer; /* local address value */
101 char *fts_accpath; /* access path */
102 wchar_t *fts_wcsaccpath; /* NT: UTF-16 access path */
103 char *fts_path; /* root path */
104 wchar_t *fts_wcspath; /* NT: UTF-16 root path */
105 int fts_errno; /* errno for this node */
106 size_t fts_alloc_size; /* internal - size of the allocation for this entry. */
107 fts_fd_t fts_dirfd; /* NT: Handle to the directory (NT_FTS_)INVALID_HANDLE_VALUE if not valid */
108 size_t fts_pathlen; /* strlen(fts_path) */
109 size_t fts_cwcpath; /* NT: length of fts_wcspath. */
110 size_t fts_namelen; /* strlen(fts_name) */
111 size_t fts_cwcname; /* NT: length of fts_wcsname. */
112
113 fts_ino_t fts_ino; /* inode */
114 fts_dev_t fts_dev; /* device */
115 fts_nlink_t fts_nlink; /* link count */
116
117#define FTS_ROOTPARENTLEVEL -1
118#define FTS_ROOTLEVEL 0
119 long fts_level; /* depth (-1 to N) */
120
121#define FTS_D 1 /* preorder directory */
122#define FTS_DC 2 /* directory that causes cycles */
123#define FTS_DEFAULT 3 /* none of the above */
124#define FTS_DNR 4 /* unreadable directory */
125#define FTS_DOT 5 /* dot or dot-dot */
126#define FTS_DP 6 /* postorder directory */
127#define FTS_ERR 7 /* error; errno is set */
128#define FTS_F 8 /* regular file */
129#define FTS_INIT 9 /* initialized only */
130#define FTS_NS 10 /* stat(2) failed */
131#define FTS_NSOK 11 /* no stat(2) requested */
132#define FTS_SL 12 /* symbolic link */
133#define FTS_SLNONE 13 /* symbolic link without target */
134//#define FTS_W 14 /* whiteout object */
135 int fts_info; /* user status for FTSENT structure */
136
137#define FTS_DONTCHDIR 0x01 /* don't chdir .. to the parent */
138#define FTS_SYMFOLLOW 0x02 /* followed a symlink to get here */
139#define FTS_ISW 0x04 /* this is a whiteout object */
140 unsigned fts_flags; /* private flags for FTSENT structure */
141
142#define FTS_AGAIN 1 /* read node again */
143#define FTS_FOLLOW 2 /* follow symbolic link */
144#define FTS_NOINSTR 3 /* no instructions */
145#define FTS_SKIP 4 /* discard node */
146 int fts_instr; /* fts_set() instructions */
147
148 struct stat *fts_statp; /* stat(2) information */
149 char *fts_name; /* file name */
150 wchar_t *fts_wcsname; /* NT: UTF-16 file name. */
151 FTS *fts_fts; /* back pointer to main FTS */
152 BirdStat_T fts_stat; /* NT: We always got stat info. */
153} FTSENT;
154
155
156#ifdef __cplusplus
157extern "C" {
158#endif
159
160FTSENT *FTSCALL nt_fts_children(FTS *, int);
161int FTSCALL nt_fts_close(FTS *);
162void *FTSCALL nt_fts_get_clientptr(FTS *);
163#define fts_get_clientptr(fts) ((fts)->fts_clientptr)
164FTS *FTSCALL nt_fts_get_stream(FTSENT *);
165#define fts_get_stream(ftsent) ((ftsent)->fts_fts)
166FTS *FTSCALL nt_fts_open(char * const *, int, int (FTSCALL*)(const FTSENT * const *, const FTSENT * const *));
167FTS *FTSCALL nt_fts_openw(wchar_t * const *, int, int (FTSCALL*)(const FTSENT * const *, const FTSENT * const *));
168FTSENT *FTSCALL nt_fts_read(FTS *);
169int FTSCALL nt_fts_set(FTS *, FTSENT *, int);
170void FTSCALL nt_fts_set_clientptr(FTS *, void *);
171
172/* API mappings. */
173#define fts_children(a_pFts, a_iInstr) nt_fts_children(a_pFts, a_iInstr)
174#define fts_close(a_pFts) nt_fts_close(a_pFts)
175#define fts_open(a_papszArgs, a_fOptions, a_pfnCompare) nt_fts_open(a_papszArgs, a_fOptions, a_pfnCompare)
176#define fts_read(a_pFts) nt_fts_read(a_pFts)
177#define fts_set(a_pFts, a_pFtsEntry, a_iInstr) nt_fts_set(a_pFts, a_pFtsEntry, a_iInstr)
178#define fts_set_clientptr(a_pFts, a_pvUser) nt_fts_set_clientptr(a_pFts, a_pvUser)
179
180#ifdef __cplusplus
181}
182#endif
183
184#endif /* !INCLUDED_FTS_NT_H */
185
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette