Commit 77fd668e authored by unknown's avatar unknown

addes auto pointer class for using with my_ functions

switch to using my_ for heap allocations


ndb/include/util/NdbAutoPtr.hpp:
  addes auto pointer class for using with my_ functions
ndb/src/mgmclient/CommandInterpreter.cpp:
  switch to using my_ for heap allocations
parent 341d8aae
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#define __NDB_AUTO_PTR_HPP #define __NDB_AUTO_PTR_HPP
#include <ndb_global.h> #include <ndb_global.h>
#include <my_sys.h>
template<typename T> template<typename T>
class NdbAutoPtr { class NdbAutoPtr {
...@@ -46,4 +47,13 @@ public: ...@@ -46,4 +47,13 @@ public:
~NdbAutoObjArrayPtr() { if (m_obj) delete[] m_obj;} ~NdbAutoObjArrayPtr() { if (m_obj) delete[] m_obj;}
}; };
template<typename T>
class My_auto_ptr {
T * m_obj;
public:
My_auto_ptr(T * obj = 0){ m_obj = obj;}
void reset(T * obj = 0) { if (m_obj) my_free(m_obj,MYF(0)); m_obj = obj; }
~My_auto_ptr() { if (m_obj) my_free(m_obj,MYF(0));}
};
#endif #endif
...@@ -14,6 +14,9 @@ ...@@ -14,6 +14,9 @@
along with this program; if not, write to the Free Software along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include <ndb_global.h>
#include <my_sys.h>
#include "CommandInterpreter.hpp" #include "CommandInterpreter.hpp"
#include <mgmapi.h> #include <mgmapi.h>
...@@ -22,6 +25,7 @@ ...@@ -22,6 +25,7 @@
#include <NdbAutoPtr.hpp> #include <NdbAutoPtr.hpp>
#include <NdbOut.hpp> #include <NdbOut.hpp>
#include <NdbSleep.h> #include <NdbSleep.h>
#include <NdbMem.h>
#include <EventLogger.hpp> #include <EventLogger.hpp>
#include <signaldata/SetLogLevelOrd.hpp> #include <signaldata/SetLogLevelOrd.hpp>
#include <signaldata/GrepImpl.hpp> #include <signaldata/GrepImpl.hpp>
...@@ -178,7 +182,7 @@ CommandInterpreter::CommandInterpreter(const char *_host) ...@@ -178,7 +182,7 @@ CommandInterpreter::CommandInterpreter(const char *_host)
connected = false; connected = false;
try_reconnect = 0; try_reconnect = 0;
host = strdup(_host); host = my_strdup(_host,MYF(MY_WME));
#ifdef HAVE_GLOBAL_REPLICATION #ifdef HAVE_GLOBAL_REPLICATION
rep_host = NULL; rep_host = NULL;
m_repserver = NULL; m_repserver = NULL;
...@@ -193,7 +197,7 @@ CommandInterpreter::~CommandInterpreter() ...@@ -193,7 +197,7 @@ CommandInterpreter::~CommandInterpreter()
{ {
connected = false; connected = false;
ndb_mgm_destroy_handle(&m_mgmsrv); ndb_mgm_destroy_handle(&m_mgmsrv);
free((char *)host); my_free((char *)host,MYF(0));
host = NULL; host = NULL;
} }
...@@ -213,16 +217,6 @@ emptyString(const char* s) ...@@ -213,16 +217,6 @@ emptyString(const char* s)
return true; return true;
} }
class AutoPtr
{
public:
AutoPtr(void * ptr) : m_ptr(ptr) {}
~AutoPtr() { free(m_ptr);}
private:
void * m_ptr;
};
void void
CommandInterpreter::printError() CommandInterpreter::printError()
{ {
...@@ -282,9 +276,8 @@ CommandInterpreter::readAndExecute(int _try_reconnect) ...@@ -282,9 +276,8 @@ CommandInterpreter::readAndExecute(int _try_reconnect)
return false; return false;
} }
line = strdup(_line); line = my_strdup(_line,MYF(MY_WME));
My_auto_ptr<char> ptr(line);
AutoPtr ptr(line);
if (emptyString(line)) { if (emptyString(line)) {
return true; return true;
...@@ -510,20 +503,19 @@ CommandInterpreter::executeForAll(const char * cmd, ExecuteFunction fun, ...@@ -510,20 +503,19 @@ CommandInterpreter::executeForAll(const char * cmd, ExecuteFunction fun,
ndbout_c("Use ALL STATUS to see the system start-up phases."); ndbout_c("Use ALL STATUS to see the system start-up phases.");
} else { } else {
connect(); connect();
struct ndb_mgm_cluster_state *cl; struct ndb_mgm_cluster_state *cl= ndb_mgm_get_status(m_mgmsrv);
cl = ndb_mgm_get_status(m_mgmsrv);
if(cl == 0){ if(cl == 0){
ndbout_c("Unable get status from management server"); ndbout_c("Unable get status from management server");
printError(); printError();
return; return;
} }
NdbAutoPtr<char> ap1((char*)cl);
while(get_next_nodeid(cl, &nodeId, NDB_MGM_NODE_TYPE_NDB)) { while(get_next_nodeid(cl, &nodeId, NDB_MGM_NODE_TYPE_NDB)) {
if(strcmp(cmd, "STATUS") != 0) if(strcmp(cmd, "STATUS") != 0)
ndbout_c("Executing %s on node %d.", cmd, nodeId); ndbout_c("Executing %s on node %d.", cmd, nodeId);
(this->*fun)(nodeId, allAfterSecondToken, true); (this->*fun)(nodeId, allAfterSecondToken, true);
ndbout << endl; ndbout << endl;
} // while } // while
free(cl);
} }
} }
...@@ -540,7 +532,8 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog, ...@@ -540,7 +532,8 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog,
} }
// Copy allAfterLog since strtok will modify it // Copy allAfterLog since strtok will modify it
char* newAllAfterLog = strdup(allAfterLog); char* newAllAfterLog = my_strdup(allAfterLog,MYF(MY_WME));
My_auto_ptr<char> ap1(newAllAfterLog);
char* firstTokenAfterLog = strtok(newAllAfterLog, " "); char* firstTokenAfterLog = strtok(newAllAfterLog, " ");
for (unsigned int i = 0; i < strlen(firstTokenAfterLog); ++i) { for (unsigned int i = 0; i < strlen(firstTokenAfterLog); ++i) {
firstTokenAfterLog[i] = toupper(firstTokenAfterLog[i]); firstTokenAfterLog[i] = toupper(firstTokenAfterLog[i]);
...@@ -549,14 +542,12 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog, ...@@ -549,14 +542,12 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog,
if (strcmp(firstTokenAfterLog, "BLOCK") != 0) { if (strcmp(firstTokenAfterLog, "BLOCK") != 0) {
ndbout << "Unexpected value: " << firstTokenAfterLog ndbout << "Unexpected value: " << firstTokenAfterLog
<< ". Expected BLOCK." << endl; << ". Expected BLOCK." << endl;
free(newAllAfterLog);
return false; return false;
} }
char* allAfterFirstToken = strtok(NULL, "\0"); char* allAfterFirstToken = strtok(NULL, "\0");
if (emptyString(allAfterFirstToken)) { if (emptyString(allAfterFirstToken)) {
ndbout << "Expected =." << endl; ndbout << "Expected =." << endl;
free(newAllAfterLog);
return false; return false;
} }
...@@ -564,7 +555,6 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog, ...@@ -564,7 +555,6 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog,
if (strcmp(secondTokenAfterLog, "=") != 0) { if (strcmp(secondTokenAfterLog, "=") != 0) {
ndbout << "Unexpected value: " << secondTokenAfterLog ndbout << "Unexpected value: " << secondTokenAfterLog
<< ". Expected =." << endl; << ". Expected =." << endl;
free(newAllAfterLog);
return false; return false;
} }
...@@ -580,17 +570,14 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog, ...@@ -580,17 +570,14 @@ CommandInterpreter::parseBlockSpecification(const char* allAfterLog,
if (blocks.size() == 0) { if (blocks.size() == 0) {
ndbout << "No block specified." << endl; ndbout << "No block specified." << endl;
free(newAllAfterLog);
return false; return false;
} }
if (blocks.size() > 1 && all) { if (blocks.size() > 1 && all) {
// More than "ALL" specified // More than "ALL" specified
ndbout << "Nothing expected after ALL." << endl; ndbout << "Nothing expected after ALL." << endl;
free(newAllAfterLog);
return false; return false;
} }
free(newAllAfterLog);
return true; return true;
} }
...@@ -655,6 +642,7 @@ CommandInterpreter::executeShutdown(char* parameters) ...@@ -655,6 +642,7 @@ CommandInterpreter::executeShutdown(char* parameters)
printError(); printError();
return; return;
} }
NdbAutoPtr<char> ap1((char*)state);
int result = 0; int result = 0;
result = ndb_mgm_stop(m_mgmsrv, 0, 0); result = ndb_mgm_stop(m_mgmsrv, 0, 0);
...@@ -790,6 +778,7 @@ CommandInterpreter::executeShow(char* parameters) ...@@ -790,6 +778,7 @@ CommandInterpreter::executeShow(char* parameters)
printError(); printError();
return; return;
} }
NdbAutoPtr<char> ap1((char*)state);
ndb_mgm_configuration * conf = ndb_mgm_get_configuration(m_mgmsrv,0); ndb_mgm_configuration * conf = ndb_mgm_get_configuration(m_mgmsrv,0);
if(conf == 0){ if(conf == 0){
...@@ -878,7 +867,8 @@ CommandInterpreter::executeClusterLog(char* parameters) ...@@ -878,7 +867,8 @@ CommandInterpreter::executeClusterLog(char* parameters)
char name[12]; char name[12];
bool noArgs = false; bool noArgs = false;
char * tmpString = strdup(parameters); char * tmpString = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(tmpString);
char * tmpPtr = 0; char * tmpPtr = 0;
char * item = strtok_r(tmpString, " ", &tmpPtr); char * item = strtok_r(tmpString, " ", &tmpPtr);
...@@ -916,7 +906,6 @@ CommandInterpreter::executeClusterLog(char* parameters) ...@@ -916,7 +906,6 @@ CommandInterpreter::executeClusterLog(char* parameters)
item = strtok_r(NULL, " ", &tmpPtr); item = strtok_r(NULL, " ", &tmpPtr);
} // while(item != NULL){ } // while(item != NULL){
free(tmpString);
if (noArgs) { if (noArgs) {
ndbout << "Missing argument(s)." << endl; ndbout << "Missing argument(s)." << endl;
...@@ -1112,7 +1101,8 @@ CommandInterpreter::executeRestart(int processId, const char* parameters, ...@@ -1112,7 +1101,8 @@ CommandInterpreter::executeRestart(int processId, const char* parameters,
int abort = 0; int abort = 0;
if(parameters != 0 && strlen(parameters) != 0){ if(parameters != 0 && strlen(parameters) != 0){
char * tmpString = strdup(parameters); char * tmpString = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(tmpString);
char * tmpPtr = 0; char * tmpPtr = 0;
char * item = strtok_r(tmpString, " ", &tmpPtr); char * item = strtok_r(tmpString, " ", &tmpPtr);
while(item != NULL){ while(item != NULL){
...@@ -1124,7 +1114,6 @@ CommandInterpreter::executeRestart(int processId, const char* parameters, ...@@ -1124,7 +1114,6 @@ CommandInterpreter::executeRestart(int processId, const char* parameters,
abort = 1; abort = 1;
item = strtok_r(NULL, " ", &tmpPtr); item = strtok_r(NULL, " ", &tmpPtr);
} }
free(tmpString);
} }
if(all) { if(all) {
...@@ -1160,7 +1149,8 @@ CommandInterpreter::executeDumpState(int processId, const char* parameters, ...@@ -1160,7 +1149,8 @@ CommandInterpreter::executeDumpState(int processId, const char* parameters,
Uint32 no = 0; Uint32 no = 0;
int pars[25]; int pars[25];
char * tmpString = strdup(parameters); char * tmpString = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(tmpString);
char * tmpPtr = 0; char * tmpPtr = 0;
char * item = strtok_r(tmpString, " ", &tmpPtr); char * item = strtok_r(tmpString, " ", &tmpPtr);
while(item != NULL){ while(item != NULL){
...@@ -1180,7 +1170,6 @@ CommandInterpreter::executeDumpState(int processId, const char* parameters, ...@@ -1180,7 +1170,6 @@ CommandInterpreter::executeDumpState(int processId, const char* parameters,
ndbout.setHexFormat(1) << pars[i] << " "; ndbout.setHexFormat(1) << pars[i] << " ";
if (!(i+1 & 0x3)) ndbout << endl; if (!(i+1 & 0x3)) ndbout << endl;
} }
free(tmpString);
struct ndb_mgm_reply reply; struct ndb_mgm_reply reply;
ndb_mgm_dump_state(m_mgmsrv, processId, pars, no, &reply); ndb_mgm_dump_state(m_mgmsrv, processId, pars, no, &reply);
...@@ -1207,6 +1196,7 @@ CommandInterpreter::executeStatus(int processId, ...@@ -1207,6 +1196,7 @@ CommandInterpreter::executeStatus(int processId,
printError(); printError();
return; return;
} }
NdbAutoPtr<char> ap1((char*)cl);
int i = 0; int i = 0;
while((i < cl->no_of_nodes) && cl->node_states[i].node_id != processId) while((i < cl->no_of_nodes) && cl->node_states[i].node_id != processId)
...@@ -1303,26 +1293,23 @@ void CommandInterpreter::executeError(int processId, ...@@ -1303,26 +1293,23 @@ void CommandInterpreter::executeError(int processId,
connect(); connect();
// Copy parameters since strtok will modify it // Copy parameters since strtok will modify it
char* newpar = strdup(parameters); char* newpar = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(newpar);
char* firstParameter = strtok(newpar, " "); char* firstParameter = strtok(newpar, " ");
int errorNo; int errorNo;
if (! convert(firstParameter, errorNo)) { if (! convert(firstParameter, errorNo)) {
ndbout << "Expected an integer." << endl; ndbout << "Expected an integer." << endl;
free(newpar);
return; return;
} }
char* allAfterFirstParameter = strtok(NULL, "\0"); char* allAfterFirstParameter = strtok(NULL, "\0");
if (! emptyString(allAfterFirstParameter)) { if (! emptyString(allAfterFirstParameter)) {
ndbout << "Nothing expected after error number." << endl; ndbout << "Nothing expected after error number." << endl;
free(newpar);
return; return;
} }
ndb_mgm_insert_error(m_mgmsrv, processId, errorNo, NULL); ndb_mgm_insert_error(m_mgmsrv, processId, errorNo, NULL);
free(newpar);
} }
//***************************************************************************** //*****************************************************************************
...@@ -1337,21 +1324,20 @@ CommandInterpreter::executeTrace(int /*processId*/, ...@@ -1337,21 +1324,20 @@ CommandInterpreter::executeTrace(int /*processId*/,
return; return;
} }
char* newpar = strdup(parameters); char* newpar = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(newpar);
char* firstParameter = strtok(newpar, " "); char* firstParameter = strtok(newpar, " ");
int traceNo; int traceNo;
if (! convert(firstParameter, traceNo)) { if (! convert(firstParameter, traceNo)) {
ndbout << "Expected an integer." << endl; ndbout << "Expected an integer." << endl;
free(newpar);
return; return;
} }
char* allAfterFirstParameter = strtok(NULL, "\0"); char* allAfterFirstParameter = strtok(NULL, "\0");
if (! emptyString(allAfterFirstParameter)) { if (! emptyString(allAfterFirstParameter)) {
ndbout << "Nothing expected after trace number." << endl; ndbout << "Nothing expected after trace number." << endl;
free(newpar);
return; return;
} }
...@@ -1359,7 +1345,6 @@ CommandInterpreter::executeTrace(int /*processId*/, ...@@ -1359,7 +1345,6 @@ CommandInterpreter::executeTrace(int /*processId*/,
if (result != 0) { if (result != 0) {
ndbout << _mgmtSrvr.getErrorText(result) << endl; ndbout << _mgmtSrvr.getErrorText(result) << endl;
} }
free(newpar);
#endif #endif
} }
...@@ -1383,7 +1368,8 @@ CommandInterpreter::executeLog(int processId, ...@@ -1383,7 +1368,8 @@ CommandInterpreter::executeLog(int processId,
len += strlen(blocks[i]); len += strlen(blocks[i]);
} }
len += blocks.size()*2; len += blocks.size()*2;
char * blockNames = (char*)malloc(len); char * blockNames = (char*)my_malloc(len,MYF(MY_WME));
My_auto_ptr<char> ap1(blockNames);
for(i=0; i<blocks.size(); i++) { for(i=0; i<blocks.size(); i++) {
strcat(blockNames, blocks[i]); strcat(blockNames, blocks[i]);
...@@ -1519,13 +1505,13 @@ CommandInterpreter::executeSet(int /*processId*/, ...@@ -1519,13 +1505,13 @@ CommandInterpreter::executeSet(int /*processId*/,
} }
#if 0 #if 0
// Copy parameters since strtok will modify it // Copy parameters since strtok will modify it
char* newpar = strdup(parameters); char* newpar = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1(newpar);
char* configParameterName = strtok(newpar, " "); char* configParameterName = strtok(newpar, " ");
char* allAfterParameterName = strtok(NULL, "\0"); char* allAfterParameterName = strtok(NULL, "\0");
if (emptyString(allAfterParameterName)) { if (emptyString(allAfterParameterName)) {
ndbout << "Missing parameter value." << endl; ndbout << "Missing parameter value." << endl;
free(newpar);
return; return;
} }
...@@ -1534,7 +1520,6 @@ CommandInterpreter::executeSet(int /*processId*/, ...@@ -1534,7 +1520,6 @@ CommandInterpreter::executeSet(int /*processId*/,
char* allAfterValue = strtok(NULL, "\0"); char* allAfterValue = strtok(NULL, "\0");
if (! emptyString(allAfterValue)) { if (! emptyString(allAfterValue)) {
ndbout << "Nothing expected after parameter value." << endl; ndbout << "Nothing expected after parameter value." << endl;
free(newpar);
return; return;
} }
...@@ -1580,7 +1565,6 @@ CommandInterpreter::executeSet(int /*processId*/, ...@@ -1580,7 +1565,6 @@ CommandInterpreter::executeSet(int /*processId*/,
abort(); abort();
} }
} }
free(newpar);
#endif #endif
} }
...@@ -1771,7 +1755,8 @@ CommandInterpreter::executeRep(char* parameters) ...@@ -1771,7 +1755,8 @@ CommandInterpreter::executeRep(char* parameters)
} }
connect(); connect();
char * line = strdup(parameters); char * line = my_strdup(parameters,MYF(MY_WME));
My_auto_ptr<char> ap1((char*)line);
char * firstToken = strtok(line, " "); char * firstToken = strtok(line, " ");
struct ndb_rep_reply reply; struct ndb_rep_reply reply;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment