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

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 <ndb_opts.h>
  15. #include <NDBT.hpp>
  16. #include <NdbApi.hpp>
  17. NDB_STD_OPTS_VARS;
  18. static const char* _dbname = "TEST_DB";
  19. static int _unqualified = 0;
  20. static struct my_option my_long_options[] =
  21. {
  22.   NDB_STD_OPTS("ndb_desc"),
  23.   { "database", 'd', "Name of database table is in",
  24.     (gptr*) &_dbname, (gptr*) &_dbname, 0,
  25.     GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  26.   { "unqualified", 'u', "Use unqualified table names",
  27.     (gptr*) &_unqualified, (gptr*) &_unqualified, 0,
  28.     GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0 }, 
  29.   { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  30. };
  31. static void usage()
  32. {
  33.   char desc[] = 
  34.     "tabnamen"
  35.     "This program list all properties of table(s) in NDB Cluster.n"
  36.     "  ex: desc T1 T2 T4n";
  37.   ndb_std_print_version();
  38.   my_print_help(my_long_options);
  39.   my_print_variables(my_long_options);
  40. }
  41. static my_bool
  42. get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
  43.        char *argument)
  44. {
  45.   return ndb_std_get_one_option(optid, opt, argument ? argument :
  46. "d:t:O,/tmp/ndb_desc.trace");
  47. }
  48. int main(int argc, char** argv){
  49.   NDB_INIT(argv[0]);
  50.   const char *load_default_groups[]= { "mysql_cluster",0 };
  51.   load_defaults("my",load_default_groups,&argc,&argv);
  52.   int ho_error;
  53.   if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option)))
  54.     return NDBT_ProgramExit(NDBT_WRONGARGS);
  55.   Ndb::setConnectString(opt_connect_str);
  56.   Ndb* pMyNdb;
  57.   pMyNdb = new Ndb(_dbname);  
  58.   pMyNdb->init();
  59.   
  60.   ndbout << "Waiting...";
  61.   while (pMyNdb->waitUntilReady() != 0) {
  62.     ndbout << "...";
  63.   }
  64.   ndbout << endl;
  65.   NdbDictionary::Dictionary * dict = pMyNdb->getDictionary();
  66.   for (int i = 0; i < argc; i++) {
  67.     NDBT_Table* pTab = (NDBT_Table*)dict->getTable(argv[i]);
  68.     if (pTab != 0){
  69.       ndbout << (* pTab) << endl;
  70.       NdbDictionary::Dictionary::List list;
  71.       if (dict->listIndexes(list, argv[i]) != 0){
  72. ndbout << argv[i] << ": " << dict->getNdbError() << endl;
  73. return NDBT_ProgramExit(NDBT_FAILED);
  74.       }
  75.         
  76.       ndbout << "-- Indexes -- " << endl;
  77.       ndbout << "PRIMARY KEY(";
  78.       unsigned j;
  79.       for (j= 0; (int)j < pTab->getNoOfPrimaryKeys(); j++)
  80.       {
  81. const NdbDictionary::Column * col = pTab->getColumn(pTab->getPrimaryKey(j));
  82. ndbout << col->getName();
  83. if ((int)j < pTab->getNoOfPrimaryKeys()-1)
  84.   ndbout << ", ";       
  85.       }
  86.       ndbout << ") - UniqueHashIndex" << endl;
  87.       for (j= 0; j < list.count; j++) {
  88. NdbDictionary::Dictionary::List::Element& elt = list.elements[j];
  89. const NdbDictionary::Index *pIdx = dict->getIndex(elt.name, argv[i]);
  90. if (!pIdx){
  91.   ndbout << argv[i] << ": " << dict->getNdbError() << endl;
  92.   return NDBT_ProgramExit(NDBT_FAILED);
  93. }
  94.   
  95. ndbout << (*pIdx) << endl;
  96.       }
  97.       ndbout << endl;
  98.     }
  99.     else
  100.       ndbout << argv[i] << ": " << dict->getNdbError() << endl;
  101.   }
  102.   
  103.   delete pMyNdb;
  104.   return NDBT_ProgramExit(NDBT_OK);
  105. }