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 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/* Copyright (c) 2003-2005 MySQL AB
Use is subject to license terms
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; version 2 of the License.
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
#include <NdbOut.hpp>
#include <NdbApi.hpp>
#include <NdbSleep.h>
#include <NDBT.hpp>
#include <getarg.h>
int setValuesFromLine(NdbOperation* pOp,
const NdbDictionary::Table* pTab,
char* line){
int check = 0;
char* p = line;
char* pn;
char buf[8000];
// Loop through each attribute in this table
for (int a = 0; a<pTab->getNoOfColumns(); a++){
pn = p;
while (*pn != ';')
pn++;
memset(buf, 0, sizeof(buf));
strncpy(buf, p, pn-p);
// ndbout << a << ": " << buf << endl;
const NdbDictionary::Column* attr = pTab->getColumn(a);
switch (attr->getType()){
case NdbDictionary::Column::Unsigned:
Int32 sval;
if (sscanf(buf, "%d", &sval) == 0)
return -2;
check = pOp->setValue(a, sval);
break;
case NdbDictionary::Column::Int:
Uint32 uval;
if (sscanf(buf, "%u", &uval) == 0)
return -2;
check = pOp->setValue(a, uval);
break;
case NdbDictionary::Column::Char:
char buf2[8000];
char* p2;
memset(buf2, 0, sizeof(buf));
p2 = &buf2[0];
while(*p != ';'){
*p2 = *p;
p++;p2++;
};
*p2 = 0;
check = pOp->setValue(a, buf2);
break;
default:
check = -2;
break;
}
// Move pointer to after next ";"
while (*p != ';')
p++;
p++;
}
return check;
}
int insertLine(Ndb* pNdb,
const NdbDictionary::Table* pTab,
char* line){
int check;
int retryAttempt = 0;
int retryMax = 5;
NdbConnection *pTrans;
NdbOperation *pOp;
while (retryAttempt < retryMax){
pTrans = pNdb->startTransaction();
if (pTrans == NULL) {
ERR(pNdb->getNdbError());
NdbSleep_MilliSleep(50);
retryAttempt++;
continue;
}
pOp = pTrans->getNdbOperation(pTab->getName());
if (pOp == NULL) {
ERR(pTrans->getNdbError());
pNdb->closeTransaction(pTrans);
return -1;
}
check = pOp->insertTuple();
if( check == -1 ) {
ERR(pTrans->getNdbError());
pNdb->closeTransaction(pTrans);
return -1;
}
check = setValuesFromLine(pOp,
pTab,
line);
if (check == -2){
pNdb->closeTransaction(pTrans);
return -2;
}
if( check == -1 ) {
ERR(pTrans->getNdbError());
pNdb->closeTransaction(pTrans);
return -1;
}
// Execute the transaction and insert the record
check = pTrans->execute( Commit );
if(check == -1 ) {
const NdbError err = pTrans->getNdbError();
pNdb->closeTransaction(pTrans);
switch(err.status){
case NdbError::Success:
ERR(err);
ndbout << "ERROR: NdbError reports success when transcaction failed" << endl;
return -1;
break;
case NdbError::TemporaryError:
ERR(err);
NdbSleep_MilliSleep(50);
retryAttempt++;
continue;
break;
case NdbError::UnknownResult:
ERR(err);
return -1;
break;
case NdbError::PermanentError:
switch (err.classification){
case NdbError::ConstraintViolation:
// Tuple already existed, OK in this application, but should be reported
ndbout << err.code << " " << err.message << endl;
break;
default:
ERR(err);
return -1;
break;
}
break;
}
}
else{
pNdb->closeTransaction(pTrans);
}
return 0;
}
return check;
}
int insertFile(Ndb* pNdb,
const NdbDictionary::Table* pTab,
const char* fileName){
const int MAX_LINE_LEN = 8000;
char line[MAX_LINE_LEN];
int lineNo = 0;
FILE* instr = fopen(fileName, "r");
if (instr == NULL){
ndbout << "Coul'd not open " << fileName << endl;
return -1;
}
while(fgets(line, MAX_LINE_LEN, instr)){
lineNo++;
if (line[strlen(line)-1] == '\n') {
line[strlen(line)-1] = '\0';
}
int check = insertLine(pNdb, pTab, line);
if (check == -2){
ndbout << "Wrong format in input data file, line: " << lineNo << endl;
fclose(instr);
return -1;
}
if (check == -1){
fclose(instr);
return -1;
}
}
fclose(instr);
return 0;
}
int main(int argc, const char** argv){
ndb_init();
const char* _tabname = NULL;
int _help = 0;
struct getargs args[] = {
{ "usage", '?', arg_flag, &_help, "Print help", "" }
};
int num_args = sizeof(args) / sizeof(args[0]);
int optind = 0;
char desc[] =
"tabname\n"\
"This program will bulk copy data from a file to a table in Ndb.\n";
if(getarg(args, num_args, argc, argv, &optind) ||
argv[optind] == NULL || _help) {
arg_printusage(args, num_args, argv[0], desc);
return NDBT_ProgramExit(NDBT_WRONGARGS);
}
_tabname = argv[optind];
ndbout << "Tablename: " << _tabname << endl;
// Connect to Ndb
Ndb MyNdb( "TEST_DB" );
if(MyNdb.init() != 0){
ERR(MyNdb.getNdbError());
return NDBT_ProgramExit(NDBT_FAILED);
}
// Connect to Ndb and wait for it to become ready
while(MyNdb.waitUntilReady() != 0)
ndbout << "Waiting for ndb to become ready..." << endl;
// Check if table exists in db
const NdbDictionary::Table* pTab = MyNdb.getDictionary()->getTable(_tabname);
if(pTab == NULL){
ndbout << " Table " << _tabname << " does not exist!" << endl;
return NDBT_ProgramExit(NDBT_WRONGARGS);
}
char buf[255];
BaseString::snprintf(buf, sizeof(buf), "%s.data", (const char*)_tabname);
if (insertFile(&MyNdb, pTab, buf) != 0){
return NDBT_ProgramExit(NDBT_FAILED);
}
return NDBT_ProgramExit(NDBT_OK);
}
|