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

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 <NdbApi.hpp>
  16. #include <NDBT.hpp>
  17. #include "UtilTransactions.hpp"
  18. #include <getarg.h>
  19. int main(int argc, const char** argv){
  20.   ndb_init();
  21.   const char* _tabname = NULL;
  22.   const char* _to_tabname = NULL;
  23.   const char* _dbname = "TEST_DB";
  24.   const char* _connectstr = NULL;
  25.   int _copy_data = true;
  26.   int _help = 0;
  27.   
  28.   struct getargs args[] = {
  29.     { "database", 'd', arg_string, &_dbname, "dbname", 
  30.       "Name of database table is in"}, 
  31.     { "connstr", 'c', arg_string, &_connectstr, "connect string", 
  32.       "How to connect to NDB"}, 
  33.     { "copy-data", '', arg_negative_flag, &_copy_data, "Don't copy data to new table", 
  34.       "How to connect to NDB"}, 
  35.     { "usage", '?', arg_flag, &_help, "Print help", "" }
  36.   };
  37.   int num_args = sizeof(args) / sizeof(args[0]);
  38.   int optind = 0;
  39.   char desc[] = 
  40.     "srctab desttabn"
  41.     "This program will copy one table in Ndbn";
  42.   if(getarg(args, num_args, argc, argv, &optind) || 
  43.      argv[optind] == NULL || argv[optind + 1] == NULL || _help){
  44.     arg_printusage(args, num_args, argv[0], desc);
  45.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  46.   }
  47.   _tabname = argv[optind];
  48.   _to_tabname = argv[optind+1];
  49.   
  50.   if (_connectstr)
  51.     Ndb::setConnectString(_connectstr);
  52.   Ndb MyNdb(_dbname);
  53.   if(MyNdb.init() != 0){
  54.     ERR(MyNdb.getNdbError());
  55.     return NDBT_ProgramExit(NDBT_FAILED);
  56.   }
  57.   
  58.   while(MyNdb.waitUntilReady() != 0)
  59.     ndbout << "Waiting for ndb to become ready..." << endl;
  60.   
  61.   ndbout << "Copying table " <<  _tabname << " to " << _to_tabname << "...";
  62.   const NdbDictionary::Table* ptab = MyNdb.getDictionary()->getTable(_tabname);
  63.   if (ptab){
  64.     NdbDictionary::Table tab2(*ptab);
  65.     tab2.setName(_to_tabname);
  66.     if (MyNdb.getDictionary()->createTable(tab2) != 0){
  67.       ndbout << endl << MyNdb.getDictionary()->getNdbError() << endl;
  68.       return NDBT_ProgramExit(NDBT_FAILED);
  69.     }
  70.   } else {
  71.     ndbout << endl << MyNdb.getDictionary()->getNdbError() << endl;
  72.     return NDBT_ProgramExit(NDBT_FAILED);
  73.   }
  74.   ndbout << "OK" << endl;
  75.   if (_copy_data){
  76.     ndbout << "Copying data..."<<endl;
  77.     const NdbDictionary::Table * tab3 = 
  78.       NDBT_Table::discoverTableFromDb(&MyNdb, 
  79.       _tabname);
  80.     //    if (!tab3)
  81.     UtilTransactions util(*tab3);
  82.     if(util.copyTableData(&MyNdb,
  83.   _to_tabname) != NDBT_OK){
  84.       return NDBT_ProgramExit(NDBT_FAILED);
  85.     }
  86.     ndbout << "OK" << endl;
  87.   }
  88.   return NDBT_ProgramExit(NDBT_OK);
  89. }