aboutsummaryrefslogtreecommitdiff
path: root/jindroush/lib/cfile.cpp
blob: 97a78d2a13c758c31b741f6adfc3105225618c30 (plain)
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
136
137
138
139
//    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
//    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
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//

#include "cfile.h"

CFile::CFile()
{
	m_bOpened = FALSE;
	m_hFile = 0;
	m_bIsDirty = FALSE;
}

CFile::~CFile()
{
	Close();
}

//opens file for reading, binary
BOOL CFile::Open( char* szName )
{
	if ( m_bOpened )
		return FALSE;

	m_hFile = open( szName, O_BINARY | O_RDONLY );

	if ( m_hFile == -1 )
	{
		m_hFile = 0;

		//printf( "CFile::Open %s Err:%d\n", szName, errno );

		return FALSE;
	}

	m_bOpened = TRUE;

	m_lLength = lseek( m_hFile, 0, SEEK_END );
	lseek( m_hFile, 0, SEEK_SET );

	return TRUE;

}

//creates new file, opened  for rdwr, binary, deletes existing
BOOL CFile::Create( char* szName )
{
	if ( m_bOpened )
		return FALSE;

	m_bIsDirty = FALSE;
	m_hFile = open( szName, O_BINARY | O_RDWR | O_CREAT | O_TRUNC, 0666 );

	if ( m_hFile == -1 )
	{
		m_hFile = 0;
		return FALSE;
	}

	m_bOpened = TRUE;

	m_lLength = lseek( m_hFile, 0, SEEK_END );
	lseek( m_hFile, 0, SEEK_SET );

	return TRUE;

}

//reads iBytesToRead bytes to buffer
BOOL CFile::Read( void* pBuff, int iBytesToRead, int* piBytesRead )
{
	if ( !m_bOpened )
		return FALSE;

	m_bIsDirty = FALSE;
	int iBytesRead = read( m_hFile, pBuff, iBytesToRead );

	if ( piBytesRead )
		*piBytesRead = iBytesRead;

	if ( -1 == iBytesRead )
		return FALSE;
	
	m_lCurrPtr = tell( m_hFile );

	return TRUE;
}

//writes iBytesToWrite from buffer
//TODO:check for file being opened for writing
BOOL CFile::Write( void* pBuff, int iBytesToWrite, int* piBytesWritten )
{
	if ( !m_bOpened )
		return FALSE;

	int iBytesWritten = write( m_hFile, pBuff, iBytesToWrite );

	if ( piBytesWritten )
		*piBytesWritten = iBytesWritten;

	if ( -1 == iBytesWritten )
		return FALSE;

	m_lCurrPtr = tell( m_hFile );
	m_bIsDirty = TRUE;

	return TRUE;
}

//seek
BOOL CFile::Seek( long lPos, int iType )
{
	m_lCurrPtr = lseek( m_hFile, lPos, iType );

	return TRUE;
}

//closes the file
void CFile::Close()
{
	if ( m_hFile )
		close( m_hFile );

	m_bIsDirty = FALSE;
	m_hFile = 0;
	m_bOpened = FALSE;
}