-
Notifications
You must be signed in to change notification settings - Fork 203
/
DataTable.cpp
228 lines (184 loc) · 5.27 KB
/
DataTable.cpp
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// DataTable.cpp : implementation file
//
#include "stdafx.h"
#include "CP_Main.h"
#include "DataTable.h"
#include "DatabaseUtilities.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDataTable
IMPLEMENT_DYNAMIC(CDataTable, CDaoRecordset)
CDataTable::CDataTable(CDaoDatabase* pdb)
:CDaoRecordset(pdb)
{
//{{AFX_FIELD_INIT(CDataTable)
m_lID = 0;
m_lDataID = 0;
m_strClipBoardFormat = _T("");
m_nFields = 4;
//}}AFX_FIELD_INIT
m_nDefaultType = dbOpenDynaset;
}
CString CDataTable::GetDefaultDBName()
{
return GetDBName();
}
CString CDataTable::GetDefaultSQL()
{
return _T("[Data]");
}
void CDataTable::DoFieldExchange(CDaoFieldExchange* pFX)
{
//{{AFX_FIELD_MAP(CDataTable)
pFX->SetFieldType(CDaoFieldExchange::outputColumn);
DFX_Long(pFX, _T("[lID]"), m_lID);
DFX_Long(pFX, _T("[lDataID]"), m_lDataID);
DFX_Text(pFX, _T("[strClipBoardFormat]"), m_strClipBoardFormat);
DFX_LongBinary(pFX, _T("[ooData]"), m_ooData);
//}}AFX_FIELD_MAP
}
/////////////////////////////////////////////////////////////////////////////
// CDataTable Member Functions
// assigns the new autoincr ID to m_lID
void CDataTable::AddNew()
{
CDaoRecordset::AddNew();
// get the new, automatically assigned ID
COleVariant varID;
GetFieldValue("lID", varID);
m_lID = varID.lVal;
}
// caller must free
// takes m_ooData's HGLOBAL (do not update recset after calling this)
// This should be faster than making a copy, but is this SAFE ??
HGLOBAL CDataTable::TakeData()
{
// if there is nothing to take
if( m_ooData.m_hData == 0 || m_ooData.m_dwDataLength == 0 )
return 0;
// Unlock the handle that was locked by DaoLongBinaryAllocCallback()
// (through DFX_LongBinary()).
::GlobalUnlock( m_ooData.m_hData );
// we have to do a realloc in order to make the hGlobal m_dwDataLength
HGLOBAL hGlobal = ::GlobalReAlloc(m_ooData.m_hData, m_ooData.m_dwDataLength, GMEM_MOVEABLE );
if( !hGlobal || ::GlobalSize(hGlobal) == 0 )
{
TRACE0( GetErrorString(::GetLastError()) );
//::_RPT0( _CRT_WARN, GetErrorString(::GetLastError()) );
ASSERT(FALSE);
}
// no longer valid
m_ooData.m_hData = 0;
m_ooData.m_dwDataLength = 0;
return hGlobal;
}
// this takes ownership of hgData, freeing m_ooData if necessary
// This should be faster than making a copy, but is this SAFE?
// looks like it is safe based upon:
// http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q152/5/33.asp&NoWebContent=1
// http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/q119/7/65.asp&NoWebContent=1
BOOL CDataTable::ReplaceData( HGLOBAL hgData, UINT len )
{
// make sure the given HGLOBAL is valid.
if( hgData != NULL )
{
VERIFY( len > 0 );
UINT size = ::GlobalSize( hgData );
VERIFY( size >= len );
VERIFY( IsValid(hgData) );
}
else
VERIFY( len == 0 );
// free the old HGLOBAL
if( m_ooData.m_hData )
::GlobalFree( m_ooData.m_hData );
m_ooData.m_hData = hgData;
m_ooData.m_dwDataLength = len;
//Set the fields dirty
SetFieldDirty(&m_ooData);
SetFieldNull(&m_ooData,FALSE);
return TRUE;
}
// copies hgData into m_ooData
BOOL CDataTable::SetData( HGLOBAL hgData, UINT size )
{
UINT unSize = (size < 0)? ::GlobalSize(hgData) : size;
//Reallocate m_ooData.m_hData
if(m_ooData.m_hData)
m_ooData.m_hData = ::GlobalReAlloc(m_ooData.m_hData, unSize, GMEM_MOVEABLE);
else
m_ooData.m_hData = ::GlobalAlloc(GHND, unSize);
m_ooData.m_dwDataLength = unSize;
::CopyToGlobalHH( m_ooData.m_hData, hgData, unSize );
//Set the fields dirty
SetFieldDirty(&m_ooData);
SetFieldNull(&m_ooData,FALSE);
return TRUE;
}
// allocates a new copy of the data
HGLOBAL CDataTable::LoadData()
{
HGLOBAL hGlobal;
ULONG ulBufLen = m_ooData.m_dwDataLength; //Retrieve size of array
if( ulBufLen == 0 || m_ooData.m_hData == 0 )
return 0;
hGlobal = NewGlobalH( m_ooData.m_hData, ulBufLen );
return hGlobal;
}
void CDataTable::CopyRec( CDataTable& src )
{
m_strClipBoardFormat = src.m_strClipBoardFormat;
SetData( src.m_ooData.m_hData, src.m_ooData.m_dwDataLength );
}
BOOL CDataTable::DeleteAll()
{
BOOL bRet = FALSE;
try
{
theApp.EnsureOpenDB();
theApp.m_pDatabase->Execute("DELETE * FROM Data", dbFailOnError);
bRet = TRUE;
}
catch(CDaoException* e)
{
AfxMessageBox(e->m_pErrorInfo->m_strDescription);
e->Delete();
}
return bRet;
}
void CDataTable::Open(LPCTSTR lpszFormat,...)
{
m_pDatabase = theApp.EnsureOpenDB();
CString csText;
va_list vlist;
ASSERT(AfxIsValidString(lpszFormat));
va_start(vlist,lpszFormat);
csText.FormatV(lpszFormat,vlist);
va_end(vlist);
CDaoRecordset::Open(AFX_DAO_USE_DEFAULT_TYPE, csText, 0);
}
void CDataTable::Open(int nOpenType, LPCTSTR lpszSql, int nOptions)
{
m_pDatabase = theApp.EnsureOpenDB();
CDaoRecordset::Open(nOpenType, lpszSql, nOptions);
}
BOOL CDataTable::DataEqual(HGLOBAL hgData)
{
return ::CompareGlobalHH( hgData, m_ooData.m_hData, m_ooData.m_dwDataLength ) == 0;
}
/////////////////////////////////////////////////////////////////////////////
// CDataTable diagnostics
#ifdef _DEBUG
void CDataTable::AssertValid() const
{
CDaoRecordset::AssertValid();
}
void CDataTable::Dump(CDumpContext& dc) const
{
CDaoRecordset::Dump(dc);
}
#endif //_DEBUG