mmstest.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <ndb_global.h>
  14. #include <NdbOut.hpp>
  15. #include "NdbThread.h"
  16. #include <NdbMem.h>
  17. #include <NdbMain.h>
  18. NDB_COMMAND(ndbmem, "ndbmem", "ndbmem", "Test the ndbmem functionality", 4096){
  19.   ndbout << "Starting test of NdbMem" << endl;
  20.   ndbout << "=======================" << endl;
  21.   ndbout << "Creating NdbMem" << endl;
  22.   NdbMem_Create();
  23.   
  24.   ndbout << "NdbMem - test 1" << endl;
  25.   if (argc == 2){
  26.     int size1 = atoi(argv[1]);
  27.     ndbout << "Allocate and test "<<size1<<" bytes of memory" << endl;
  28.     char* mem1 = (char*)NdbMem_Allocate(size1);
  29.     ndbout << "mem1 = " << hex << (int)mem1 << endl;
  30.     if (mem1 != NULL){
  31.       char* p1;
  32.       // Write to the memory allocated 
  33.       p1 = mem1;
  34.       for(int i = 0; i < size1; i++){
  35. *p1 = (char)(i%256);
  36. p1++;
  37.       }
  38.       // Read from the memory and check value
  39.       char read1;
  40.       char* pread1;
  41.       pread1 = mem1;
  42.       for(int i = 0; i < size1; i++){
  43. read1 = *pread1;
  44. //ndbout << i << "=" << read1 << endl;
  45. if (read1 != (i%256))
  46.   ndbout << "Byte " << i << " was not correct, read1=" << read1 << endl;
  47. pread1++;
  48.       }
  49.       ndbout << "Freeing NdbMem" << endl;
  50.       NdbMem_Free(mem1);
  51.     }
  52.     ndbout << "Destroying NdbMem" << endl;
  53.     NdbMem_Destroy();
  54.   }else{
  55.     ndbout << "Usage: ndbmem <size(bytes)>"<< endl;
  56.   }
  57.   return NULL;
  58. }