~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to storage/ndb/src/common/debugger/signaldata/StartRec.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2003 MySQL AB
 
2
 
 
3
   This program is free software; you can redistribute it and/or modify
 
4
   it under the terms of the GNU General Public License as published by
 
5
   the Free Software Foundation; version 2 of the License.
 
6
 
 
7
   This program is distributed in the hope that it will be useful,
 
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
10
   GNU General Public License for more details.
 
11
 
 
12
   You should have received a copy of the GNU General Public License
 
13
   along with this program; if not, write to the Free Software
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
15
 
 
16
 
 
17
#include <RefConvert.hpp>
 
18
#include <signaldata/StartRec.hpp>
 
19
#include <signaldata/StartFragReq.hpp>
 
20
 
 
21
bool
 
22
printSTART_REC_REQ(FILE * output, 
 
23
                  const Uint32 * theData, 
 
24
                  Uint32 len, 
 
25
                  Uint16 recBlockNo){
 
26
  StartRecReq * sig = (StartRecReq *) theData;
 
27
 
 
28
  fprintf(output, " receivingNodeId: %d senderRef: (%d, %d)\n",
 
29
          sig->receivingNodeId, 
 
30
          refToNode(sig->senderRef),
 
31
          refToBlock(sig->senderRef));
 
32
  
 
33
  fprintf(output, " keepGci: %d lastCompletedGci: %d newestGci: %d\n",
 
34
          sig->keepGci, 
 
35
          sig->lastCompletedGci,
 
36
          sig->newestGci);
 
37
 
 
38
  return true;
 
39
}
 
40
 
 
41
bool
 
42
printSTART_REC_CONF(FILE * output, 
 
43
                    const Uint32 * theData, 
 
44
                    Uint32 len, 
 
45
                    Uint16 recBlockNo){
 
46
  StartRecConf * sig = (StartRecConf *) theData;
 
47
 
 
48
  fprintf(output, " startingNodeId: %d\n",
 
49
          sig->startingNodeId);
 
50
 
 
51
  return true;
 
52
}
 
53
 
 
54
bool 
 
55
printSTART_FRAG_REQ(FILE * output, 
 
56
                    const Uint32 * theData, 
 
57
                    Uint32 len, 
 
58
                    Uint16 recBlockNo)
 
59
{
 
60
  StartFragReq* sig = (StartFragReq*)theData;
 
61
 
 
62
  fprintf(output, " table: %d frag: %d lcpId: %d lcpNo: %d #nodes: %d \n",
 
63
          sig->tableId, sig->fragId, sig->lcpId, sig->lcpNo, 
 
64
          sig->noOfLogNodes);
 
65
 
 
66
  for(Uint32 i = 0; i<sig->noOfLogNodes; i++)
 
67
  {
 
68
    fprintf(output, " (node: %d startGci: %d lastGci: %d)",
 
69
            sig->lqhLogNode[i],
 
70
            sig->startGci[i],
 
71
            sig->lastGci[i]);
 
72
  }
 
73
    
 
74
  fprintf(output, "\n");
 
75
  return true; 
 
76
}