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
|
/* This file is part of the KDE project
Copyright (C) 2003,2006 Jaroslaw Staniek <js@iidea.pl>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "roweditbuffer.h"
#include "utils.h"
#include <kdebug.h>
using namespace KexiDB;
RowEditBuffer::RowEditBuffer(bool dbAwareBuffer)
: m_simpleBuffer(dbAwareBuffer ? 0 : new SimpleMap())
, m_simpleBufferIt(dbAwareBuffer ? 0 : new SimpleMap::ConstIterator())
, m_dbBuffer(dbAwareBuffer ? new DBMap() : 0)
, m_dbBufferIt(dbAwareBuffer ? new DBMap::Iterator() : 0)
, m_defaultValuesDbBuffer(dbAwareBuffer ? new TQMap<QueryColumnInfo*,bool>() : 0)
, m_defaultValuesDbBufferIt(dbAwareBuffer ? new TQMap<QueryColumnInfo*,bool>::ConstIterator() : 0)
{
}
RowEditBuffer::~RowEditBuffer()
{
delete m_simpleBuffer;
delete m_simpleBufferIt;
delete m_dbBuffer;
delete m_defaultValuesDbBuffer;
delete m_dbBufferIt;
}
const TQVariant* RowEditBuffer::at( QueryColumnInfo& ci, bool useDefaultValueIfPossible ) const
{
if (!m_dbBuffer) {
KexiDBWarn << "RowEditBuffer::at(QueryColumnInfo&): not db-aware buffer!" << endl;
return 0;
}
*m_dbBufferIt = m_dbBuffer->find( &ci );
TQVariant* result = 0;
if (*m_dbBufferIt!=m_dbBuffer->end())
result = &(*m_dbBufferIt).data();
if ( useDefaultValueIfPossible
&& (!result || result->isNull())
&& ci.field && !ci.field->defaultValue().isNull() && KexiDB::isDefaultValueAllowed(ci.field)
&& !hasDefaultValueAt(ci) )
{
//no buffered or stored value: try to get a default value declared in a field, so user can modify it
if (!result)
m_dbBuffer->insert(&ci, ci.field->defaultValue() );
result = &(*m_dbBuffer)[ &ci ];
m_defaultValuesDbBuffer->insert(&ci, true);
}
return (const TQVariant*)result;
}
const TQVariant* RowEditBuffer::at( Field& f ) const
{
if (!m_simpleBuffer) {
KexiDBWarn << "RowEditBuffer::at(Field&): this is db-aware buffer!" << endl;
return 0;
}
*m_simpleBufferIt = m_simpleBuffer->find( f.name() );
if (*m_simpleBufferIt==m_simpleBuffer->constEnd())
return 0;
return &(*m_simpleBufferIt).data();
}
const TQVariant* RowEditBuffer::at( const TQString& fname ) const
{
if (!m_simpleBuffer) {
KexiDBWarn << "RowEditBuffer::at(Field&): this is db-aware buffer!" << endl;
return 0;
}
*m_simpleBufferIt = m_simpleBuffer->find( fname );
if (*m_simpleBufferIt==m_simpleBuffer->constEnd())
return 0;
return &(*m_simpleBufferIt).data();
}
void RowEditBuffer::clear() {
if (m_dbBuffer) {
m_dbBuffer->clear();
m_defaultValuesDbBuffer->clear();
}
if (m_simpleBuffer)
m_simpleBuffer->clear();
}
bool RowEditBuffer::isEmpty() const
{
if (m_dbBuffer)
return m_dbBuffer->isEmpty();
if (m_simpleBuffer)
return m_simpleBuffer->isEmpty();
return true;
}
void RowEditBuffer::debug()
{
if (isDBAware()) {
KexiDBDbg << "RowEditBuffer type=DB-AWARE, " << m_dbBuffer->count() <<" items"<< endl;
for (DBMap::ConstIterator it = m_dbBuffer->constBegin(); it!=m_dbBuffer->constEnd(); ++it) {
KexiDBDbg << "* field name=" <<it.key()->field->name()<<" val="
<< (it.data().isNull() ? TQString("<NULL>") : it.data().toString())
<< (hasDefaultValueAt(*it.key()) ? " DEFAULT" : "") <<endl;
}
return;
}
KexiDBDbg << "RowEditBuffer type=SIMPLE, " << m_simpleBuffer->count() <<" items"<< endl;
for (SimpleMap::ConstIterator it = m_simpleBuffer->constBegin(); it!=m_simpleBuffer->constEnd(); ++it) {
KexiDBDbg << "* field name=" <<it.key()<<" val="
<< (it.data().isNull() ? TQString("<NULL>") : it.data().toString()) <<endl;
}
}
|