⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pgpfilespec.h

📁 vc环境下的pgp源码
💻 H
字号:
/*____________________________________________________________________________
	Copyright (C) 1997 Network Associates Inc. and affiliated companies.
	All rights reserved.
	
	Platform-independent file-specification.  Specifies the *location* of a
	file in the file system.  Also included are utility routines for
	manipulating files.
	
	Note that a PGPFileSpec is not an object; it does not have subclasses
	or inheritence.

	$Id: pgpFileSpec.h,v 1.21 1999/03/10 02:50:37 heller Exp $
____________________________________________________________________________*/
#ifndef Included_pgpFileSpec_h	/* [ */
#define Included_pgpFileSpec_h

#include <time.h>	/* Temporary, for time_t below */

#include "pgpMemoryMgr.h"

#include "pflTypes.h"


PGP_BEGIN_C_DECLARATIONS
#if PRAGMA_IMPORT_SUPPORTED
#pragma import on
#endif

enum PFLFileInfoFlags_
{
	kPGPFileInfo_IsDirectory	= ( 1L << 0 ),
	kPGPFileInfo_IsPlainFile	= ( 1L << 1 )
};
typedef PGPUInt32	PFLFileInfoFlags;
 
typedef struct PFLFileInfo_
{
	PFLFileInfoFlags	flags;
	PGPFileOffset		dataLength;
	time_t				modificationTime;
} PFLFileInfo;

PGPError 	PFLCopyFileSpec( PFLConstFileSpecRef spec,
					PFLFileSpecRef * outRef );
	
PGPError 	PFLFreeFileSpec( PFLFileSpecRef ref);

PGPMemoryMgrRef	PFLGetFileSpecMemoryMgr( PFLConstFileSpecRef spec );

/* *outData must be freed with PGPFreeData */
PGPError 	PFLExportFileSpec( PFLConstFileSpecRef spec,
						PGPByte **outData, PGPSize *outSize );
						
PGPError  	PFLImportFileSpec( PGPMemoryMgrRef context,
					PGPByte const *buffer, PGPSize size,
					PFLFileSpecRef *outRef );

/* *outName must be freed with PGPFreeData */
PGPError 	PFLGetFileSpecName( PFLConstFileSpecRef spec,
					char **outName );

/* put C-String name into client-supplied buffer */
PGPError 	PFLGetFileSpecNameBuffer( PFLConstFileSpecRef spec,
				PGPSize maxSize, char *outName );

/* does not rename the file itself */
PGPError 		PFLSetFileSpecName( PFLFileSpecRef spec,
						char const *newName);
						
/* create a new filespec from a directory spec and a filename */
PGPError 		PFLComposeFileSpec( PFLConstFileSpecRef parentDir,
						char const *fileName,
						PFLFileSpecRef *outRef );
						
/* extend the file name with the extension.
   Takes into account max name length */
PGPError 		PFLExtendFileSpecName( PFLFileSpecRef spec,
						char const *extension);
						
/* get the maximum name length a file spec can handle */
PGPError 		PFLGetMaxFileSpecNameLength( PFLConstFileSpecRef spec,
						PGPSize *	maxLength);

/* remember meta information for file.  Used when create file */
PGPError		PFLSetFileSpecMetaInfo( PFLFileSpecRef spec,
					const void *info);

/* generate a unique FileSpec based on 'spec'.  If spec doesn't exist,
then output will be the same (but a copy) */
PGPError 		PFLFileSpecGetUniqueSpec( PFLConstFileSpecRef spec,
						PFLFileSpecRef *uniqueOut );

PGPError		PFLFileSpecExists( PFLFileSpecRef spec,
					PGPBoolean *exists );
PGPError		PFLFileSpecCreate( PFLFileSpecRef spec );
PGPError		PFLFileSpecDelete( PFLConstFileSpecRef spec );

/* Renames the file AND changes the name in the file spec itself.
	If an error occurs, the spec is not changed. The name is *not*
	the full path, but just the filename itself.
*/
PGPError		PFLFileSpecRename( PFLFileSpecRef spec,
					const char *newName );

PGPError		PFLGetParentDirectory( PFLConstFileSpecRef fileInDir,
					PFLFileSpecRef *outParent );
					
PGPError		PFLGetTempFileSpec( PGPMemoryMgrRef context, 
					PFLConstFileSpecRef optionalRef, PFLFileSpecRef * outRef );

/* Get file information */
PGPError		PFLGetFileInfo( PFLConstFileSpecRef spec,
					PFLFileInfo *outInfo );

/* Directory iteration functions */
PGPError		PFLNewDirectoryIter( PFLConstFileSpecRef parentDir,
					PFLDirectoryIterRef * outIter );
PGPError		PFLNextFileInDirectory( PFLDirectoryIterRef iter,
					PFLFileSpecRef * outRef );
PGPError		PFLFreeDirectoryIter( PFLDirectoryIterRef iter );


PGPBoolean		pflFileSpecIsValid( PFLConstFileSpecRef	ref );
#define PFLValidateFileSpec( ref )		\
	PGPValidateParam( pflFileSpecIsValid( ref ) )


#if PRAGMA_IMPORT_SUPPORTED
#pragma import reset
#endif
PGP_END_C_DECLARATIONS


/*
 * Flag indicating whether attempting to delete an open file will
 * disrupt the process which has the file open.  Depends on the platform.
 * If deletion fails in this case, or succeeds but keeps the file
 * accessable until the last close, then deletes are considered safe
 * and this flag can be set to 0 safely.
 */
#define PFL_PLATFORM_UNSAFE_DELETE	0


#define _pgpFileSpecIncludeRightStuff_

#if PGP_MACINTOSH
#include "pgpFileSpecMac.h"
#else
#include "pgpFileSpecStd.h"
#endif

#undef _pgpFileSpecIncludeRightStuff_

#endif	/* ] Included_pgpFileSpec_h */

/*
 * Local Variables:
 * tab-width: 4
 * End:
 * vi: ts=4 sw=4
 * vim: si
 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -