mariadb/storage/ndb/test/ndbapi/VerifyNdbApi.cpp
2014-02-17 18:19:04 +05:30

151 lines
4.2 KiB
C++

/* 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 <NdbApi.hpp>
#include <NdbOut.hpp>
#include <NdbMutex.h>
#include "VerifyNdbApi.hpp"
NdbMutex* g_pNdbMutexVerify = 0;
void VerifyBegin(void)
{
if(!g_pNdbMutexVerify)
{
g_pNdbMutexVerify = NdbMutex_Create();
}
NdbMutex_Lock(g_pNdbMutexVerify);
}
void VerifyEnd(void)
{
NdbMutex_Unlock(g_pNdbMutexVerify);
}
void CVerifyNdbSchemaOp::VerifyIntError(const int i, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbSchemaOp::" << szMethod << " returned " << dec << i;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbSchemaCon::VerifyIntError(const int i, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbSchemaCon::" << szMethod << " returned " << dec << i;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbSchemaCon::VerifyPtrError(void* p, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbSchemaCon::" << szMethod << " returned " << hex << (Uint32)p;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbRecAttr::VerifyValueError(const int iNull, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbRecAttr::" << szMethod << " : isNULL() returned " << dec << iNull;
ndbout << endl;
VerifyEnd();
}
void CVerifyNdbOperation::VerifyIntError(const int i, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbOperation::" << szMethod << " returned " << dec << i;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbOperation::VerifyPtrError(void* p, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbOperation::" << szMethod << " returned " << hex << (Uint32)p;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbIndexOperation::VerifyIntError(const int i, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbIndexOperation::" << szMethod << " returned " << dec << i;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbIndexOperation::VerifyPtrError(void* p, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbIndexOperation::" << szMethod << " returned " << hex << (Uint32)p;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbConnection::VerifyIntError(const int i, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbConnection::" << szMethod << " returned " << dec << i;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdbConnection::VerifyPtrError(void* p, const char* szMethod)
{
VerifyBegin();
ndbout << "NdbConnection::" << szMethod << " returned " << hex << (Uint32)p;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdb::VerifyPtrError(void* p, const char* szMethod)
{
VerifyBegin();
ndbout << "Ndb::" << szMethod << " returned " << hex << (Uint32)p;
ndbout << " : " << dec << getNdbError().code << " : " << getNdbError().message << endl;
VerifyEnd();
}
void CVerifyNdb::VerifyVoidError(const int iCode, const char* szMethod)
{
VerifyBegin();
ndbout << "Ndb::" << szMethod << " : getNdbError().code returned " << dec << iCode;
ndbout << " : " << getNdbError().message << endl;
VerifyEnd();
}