/*
* Copyright 2011 Perforce Software. All rights reserved.
*
* This file is part of Perforce - the FAST SCM System.
*/
/*
* FileStrBuf.h - FileSys interface to in-memory data
*
* Public classes:
*
* FileStrPtr - FileSys that reads from a StrPtr
*/
class FileStrPtr : public FileSys
{
public:
FileStrPtr( StrPtr *s );
// FileSys methods needed by ReadFile
int Read( char *buf, int len, Error *e );
void Open( FileOpenMode mode, Error *e );
offL_t GetSize();
// FileSys stubs
void Close( Error *e ) {};
void Write( const char *buf, int len, Error *e ) {};
int Stat() { return FSF_EXISTS; }
int StatModTime() { return 0; }
void Truncate( Error *e ) {};
void Truncate( offL_t offset, Error *e ) {};
void Unlink( Error *e = 0 ) {};
void Rename( FileSys *target, Error *e ) {};
void Chmod( FilePerm perms, Error *e ) {};
void ChmodTime( Error *e ) {};
private:
StrPtr *ptr;
int offset;
};
# |
Change |
User |
Description |
Committed |
|
#1
|
21443 |
dannyz_snps |
"Forking branch 2016-1 of perforce_software-p4 to dannyz_snps-p4." |
|
|
//guest/perforce_software/p4/2016-1/sys/filestrbuf.h |
#1
|
19472 |
Liz Lam |
Initial add of the 2016.1 p4/p4api source code. |
|
|