summaryrefslogtreecommitdiff
path: root/storage/ndb/src/old_files/newtonapi/dba_process.cpp
blob: ddb6e62f180cccef2193b33099d786d5a60ab7e1 (plain)
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
/* Copyright (C) 2003 MySQL AB

   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; either version 2 of the License, or
   (at your option) any later version.

   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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


#include "dba_process.hpp"

NewtonBatchProcess::NewtonBatchProcess(Ndb & ndb, NdbMutex & mutex) : 
  theNdb(ndb),
  theMutex(mutex)
{
  theThread = 0;
  startStopMutex = NdbMutex_Create();

  _running = false;
  _stop = false;
} 

NewtonBatchProcess::~NewtonBatchProcess(){
  doStop(true);

  if(theThread != 0)
    NdbThread_Destroy(&theThread);
  
  if(startStopMutex != 0)
    NdbMutex_Destroy(startStopMutex);
  startStopMutex = 0;
}

extern "C" 
void* 
runNDB_C(void * _nbp){
  NewtonBatchProcess * nbp = (NewtonBatchProcess*)_nbp;
  nbp->_running = true;
  nbp->run();  
  nbp->_running = false;
  
  /** 
   *  This sleep is to make sure that the transporter 
   *  send thread will come in and send any
   *  signal buffers that this thread may have allocated.
   *  If that doesn't happen an error will occur in OSE
   *  when trying to restore a signal buffer allocated by a thread
   *  that have been killed.
   */
  NdbSleep_MilliSleep(50);
  NdbThread_Exit(0);
  return 0;
}

void
NewtonBatchProcess::doStart(){
  NdbMutex_Lock(startStopMutex);
  if(_running && !_stop){
    NdbMutex_Unlock(startStopMutex);
    return ;
  }
  
  while(_running){
    NdbMutex_Unlock(startStopMutex);
    NdbSleep_MilliSleep(200);
    NdbMutex_Lock(startStopMutex);
  }
  
  require(!_running);
  _stop = false;
  
  if(theThread != 0)
    NdbThread_Destroy(&theThread);
  
  theThread = NdbThread_Create(runNDB_C,
			       (void**)this,
			       65535,
			       "Newton_BP",
			       NDB_THREAD_PRIO_LOWEST);
  
  NdbMutex_Unlock(startStopMutex);
}

void
NewtonBatchProcess::doStop(bool wait){
  NdbMutex_Lock(startStopMutex);
  _stop = true;

  if(wait){
    while(_running){
      NdbSleep_MilliSleep(200);
    }
  }
  NdbMutex_Unlock(startStopMutex);
}

bool
NewtonBatchProcess::isRunning() const {
  return _running;
}

bool
NewtonBatchProcess::isStopping() const {
  return _stop;
}

void
NewtonBatchProcess::run(){
  while(!_stop){
    NdbMutex_Lock(&theMutex);
    theNdb.sendPollNdb(0, 1, DBA__NBP_Force);
    NdbMutex_Unlock(&theMutex);
    NdbSleep_MilliSleep(DBA__NBP_Intervall);
  }
}