csomh / source-git / rpm

Forked from source-git/rpm 4 years ago
Clone
2ff057
/*
2ff057
 * Copyright (c) 1989, 1993
2ff057
 *	The Regents of the University of California.  All rights reserved.
2ff057
 *
2ff057
 * Redistribution and use in source and binary forms, with or without
2ff057
 * modification, are permitted provided that the following conditions
2ff057
 * are met:
2ff057
 * 1. Redistributions of source code must retain the above copyright
2ff057
 *    notice, this list of conditions and the following disclaimer.
2ff057
 * 2. Redistributions in binary form must reproduce the above copyright
2ff057
 *    notice, this list of conditions and the following disclaimer in the
2ff057
 *    documentation and/or other materials provided with the distribution.
2ff057
 * 4. Neither the name of the University nor the names of its contributors
2ff057
 *    may be used to endorse or promote products derived from this software
2ff057
 *    without specific prior written permission.
2ff057
 *
2ff057
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2ff057
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2ff057
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2ff057
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2ff057
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2ff057
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2ff057
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2ff057
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2ff057
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2ff057
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2ff057
 * SUCH DAMAGE.
2ff057
 *
2ff057
 *	@(#)fts.h	8.3 (Berkeley) 8/14/94
2ff057
 */
2ff057
2ff057
#ifndef	_FTS_H
2ff057
#define	_FTS_H 1
2ff057
2ff057
#include <rpm/rpmutil.h>
2ff057
2ff057
#if defined(__GLIBC__)
2ff057
#include <features.h>
2ff057
#else
2ff057
2ff057
#   define __THROW
2ff057
2ff057
#if !defined(_LARGEFILE64_SOURCE)
2ff057
# define	_LARGEFILE64_SOURCE
2ff057
#endif
2ff057
2ff057
#if !defined(_D_EXACT_NAMLEN)
2ff057
# define _D_EXACT_NAMLEN(d) (strlen((d)->d_name))
2ff057
#endif
2ff057
2ff057
#if defined(hpux)
2ff057
# if !defined(_INCLUDE_POSIX_SOURCE)
2ff057
#  define	_INCLUDE_POSIX_SOURCE
2ff057
# endif
2ff057
#endif
2ff057
2ff057
#endif
2ff057
2ff057
#include <sys/types.h>
2ff057
#include <sys/stat.h>
2ff057
#include <stdint.h>
2ff057
#include <dirent.h>
2ff057
2ff057
typedef struct {
2ff057
	struct _ftsent *fts_cur;	/*!< current node */
2ff057
	struct _ftsent *fts_child;	/*!< linked list of children */
2ff057
	struct _ftsent **fts_array;	/*!< sort array */
2ff057
	dev_t fts_dev;			/*!< starting device # */
2ff057
	char *fts_path;			/*!< path for this descent */
2ff057
	int fts_rfd;			/*!< fd for root */
2ff057
	int fts_pathlen;		/*!< sizeof(path) */
2ff057
	int fts_nitems;			/*!< elements in the sort array */
2ff057
	int (*fts_compar) (const void *, const void *);			/*!< compare fn */
2ff057
2ff057
	DIR * (*fts_opendir) (const char * path);
2ff057
	struct dirent * (*fts_readdir) (DIR * dir);
2ff057
	int (*fts_closedir) (DIR * dir);
2ff057
	int (*fts_stat) (const char * path, struct stat * st);
2ff057
	int (*fts_lstat) (const char * path, struct stat * st);
2ff057
2ff057
#define	FTS_COMFOLLOW	0x0001		/* follow command line symlinks */
2ff057
#define	FTS_LOGICAL	0x0002		/* logical walk */
2ff057
#define	FTS_NOCHDIR	0x0004		/* don't change directories */
2ff057
#define	FTS_NOSTAT	0x0008		/* don't get stat info */
2ff057
#define	FTS_PHYSICAL	0x0010		/* physical walk */
2ff057
#define	FTS_SEEDOT	0x0020		/* return dot and dot-dot */
2ff057
#define	FTS_XDEV	0x0040		/* don't cross devices */
2ff057
#define FTS_WHITEOUT	0x0080		/* return whiteout information */
2ff057
#define	FTS_OPTIONMASK	0x00ff		/* valid user option mask */
2ff057
2ff057
#define	FTS_NAMEONLY	0x0100		/* (private) child names only */
2ff057
#define	FTS_STOP	0x0200		/* (private) unrecoverable error */
2ff057
	int fts_options;		/*!< fts_open options, global flags */
2ff057
} FTS;
2ff057
2ff057
typedef struct _ftsent {
2ff057
	struct _ftsent *fts_cycle;	/*!< cycle node */
2ff057
	struct _ftsent *fts_parent;	/*!< parent directory */
2ff057
	struct _ftsent *fts_link;	/*!< next file in directory */
2ff057
	long fts_number;	        /*!< local numeric value */
2ff057
	void *fts_pointer;	        /*!< local address value */
2ff057
	char *fts_accpath;		/*!< access path */
2ff057
	char *fts_path;			/*!< root path */
2ff057
	int fts_errno;			/*!< errno for this node */
2ff057
	int fts_symfd;			/*!< fd for symlink */
2ff057
	uint16_t fts_pathlen;		/*!< strlen(fts_path) */
2ff057
	uint16_t fts_namelen;		/*!< strlen(fts_name) */
2ff057
2ff057
	ino_t fts_ino;			/*!< inode */
2ff057
	dev_t fts_dev;			/*!< device */
2ff057
	nlink_t fts_nlink;		/*!< link count */
2ff057
2ff057
#define	FTS_ROOTPARENTLEVEL	-1
2ff057
#define	FTS_ROOTLEVEL		 0
2ff057
	short fts_level;		/*!< depth (-1 to N) */
2ff057
2ff057
#define	FTS_D		 1		/* preorder directory */
2ff057
#define	FTS_DC		 2		/* directory that causes cycles */
2ff057
#define	FTS_DEFAULT	 3		/* none of the above */
2ff057
#define	FTS_DNR		 4		/* unreadable directory */
2ff057
#define	FTS_DOT		 5		/* dot or dot-dot */
2ff057
#define	FTS_DP		 6		/* postorder directory */
2ff057
#define	FTS_ERR		 7		/* error; errno is set */
2ff057
#define	FTS_F		 8		/* regular file */
2ff057
#define	FTS_INIT	 9		/* initialized only */
2ff057
#define	FTS_NS		10		/* stat(2) failed */
2ff057
#define	FTS_NSOK	11		/* no stat(2) requested */
2ff057
#define	FTS_SL		12		/* symbolic link */
2ff057
#define	FTS_SLNONE	13		/* symbolic link without target */
2ff057
#define FTS_W		14		/* whiteout object */
2ff057
	uint16_t fts_info;		/*!< user flags for FTSENT structure */
2ff057
2ff057
#define	FTS_DONTCHDIR	 0x01		/* don't chdir .. to the parent */
2ff057
#define	FTS_SYMFOLLOW	 0x02		/* followed a symlink to get here */
2ff057
	uint16_t fts_flags;		/*!< private flags for FTSENT structure */
2ff057
2ff057
#define	FTS_AGAIN	 1		/* read node again */
2ff057
#define	FTS_FOLLOW	 2		/* follow symbolic link */
2ff057
#define	FTS_NOINSTR	 3		/* no instructions */
2ff057
#define	FTS_SKIP	 4		/* discard node */
2ff057
	uint16_t fts_instr;		/*!< fts_set() instructions */
2ff057
2ff057
	struct stat *fts_statp;		/*!< stat(2) information */
2ff057
	char fts_name[1];		/*!< file name */
2ff057
} FTSENT;
2ff057
2ff057
#ifdef  __cplusplus
2ff057
extern "C" {
2ff057
#endif
2ff057
2ff057
/**
2ff057
 * Return list of children of the current node.
2ff057
 * @param sp		file hierarchy state
2ff057
 * @param instr
2ff057
 * @return		file set member
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
FTSENT	*Fts_children (FTS * sp, int instr) __THROW
2ff057
;
2ff057
2ff057
/**
2ff057
 * Destroy a file hierarchy traversal handle.
2ff057
 * @param sp		file hierarchy state
2ff057
 * @return		0 on success, -1 on error
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
int	 Fts_close (FTS * sp) __THROW
2ff057
;
2ff057
2ff057
/**
2ff057
 * Create a handle for file hierarchy traversal.
2ff057
 * @param argv		paths that compose a logical file hierarchy
2ff057
 * @param options	traversal options
2ff057
 * @param compar	traversal ordering (or NULL)
2ff057
 * @return 		file hierarchy state (or NULL on error)
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
FTS	*Fts_open (char * const * argv, int options,
2ff057
		   int (*compar) (const FTSENT **, const FTSENT **)) __THROW
2ff057
	;
2ff057
2ff057
/**
2ff057
 * Return next node in the file hierarchy traversal.
2ff057
 * @param sp		file hierarchy state
2ff057
 * @return		file set member
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
FTSENT	*Fts_read (FTS * sp) __THROW
2ff057
;
2ff057
2ff057
/**
2ff057
 * Modify the traversal for a file set member.
2ff057
 * @param sp		file hierarchy state
2ff057
 * @param p		file set member
2ff057
 * @param instr		new disposition for file set member
2ff057
 * @return		0 on success, -1 on error
2ff057
 */
2ff057
RPM_GNUC_INTERNAL
2ff057
int	 Fts_set (FTS * sp, FTSENT * p, int instr) __THROW
2ff057
;
2ff057
2ff057
#ifdef  __cplusplus
2ff057
}
2ff057
#endif
2ff057
2ff057
#endif /* fts.h */