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

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. /**
  14.  * ndb_config --nodes --query=nodeid --type=ndbd --host=local1
  15.  */
  16. #include <ndb_global.h>
  17. #include <my_sys.h>
  18. #include <my_getopt.h>
  19. #include <mysql_version.h>
  20. #include <NdbOut.hpp>
  21. #include <mgmapi.h>
  22. #include <mgmapi_configuration.hpp>
  23. #include <ConfigInfo.hpp>
  24. static int g_verbose = 0;
  25. static int try_reconnect = 3;
  26. static int g_nodes = 1;
  27. static const char * g_connectstring = 0;
  28. static const char * g_query = 0;
  29. static int g_nodeid = 0;
  30. static const char * g_type = 0;
  31. static const char * g_host = 0;
  32. static const char * g_field_delimiter=",";
  33. static const char * g_row_delimiter=" ";
  34. static const char * g_config_file = 0;
  35. int g_print_full_config, opt_ndb_shm;
  36. my_bool opt_core;
  37. typedef ndb_mgm_configuration_iterator Iter;
  38. static void ndb_std_print_version()
  39. {
  40.   printf("MySQL distrib %s, for %s (%s)n",
  41.  MYSQL_SERVER_VERSION,SYSTEM_TYPE,MACHINE_TYPE);
  42. }
  43. static struct my_option my_long_options[] =
  44. {
  45.   { "usage", '?', "Display this help and exit.", 
  46.     0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0 }, 
  47.   { "help", '?', "Display this help and exit.", 
  48.     0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0 }, 
  49.   { "version", 'V', "Output version information and exit.", 0, 0, 0, 
  50.     GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0 }, 
  51.   { "ndb-connectstring", 256,
  52.     "Set connect string for connecting to ndb_mgmd. " 
  53.     "Syntax: "[nodeid=<id>;][host=]<hostname>[:<port>]". " 
  54.     "Overides specifying entries in NDB_CONNECTSTRING and Ndb.cfg", 
  55.     (gptr*) &g_connectstring, (gptr*) &g_connectstring, 
  56.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0 },
  57.   { "nodes", 256, "Print nodes",
  58.     (gptr*) &g_nodes, (gptr*) &g_nodes,
  59.     0, GET_BOOL, NO_ARG, 1, 0, 0, 0, 0, 0},
  60.   { "query", 'q', "Query option(s)",
  61.     (gptr*) &g_query, (gptr*) &g_query,
  62.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  63.   { "host", 257, "Host",
  64.     (gptr*) &g_host, (gptr*) &g_host,
  65.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  66.   { "type", 258, "Type of node/connection",
  67.     (gptr*) &g_type, (gptr*) &g_type,
  68.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  69.   { "id", 258, "Nodeid",
  70.     (gptr*) &g_nodeid, (gptr*) &g_nodeid,
  71.     0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  72.   { "nodeid", 258, "Nodeid",
  73.     (gptr*) &g_nodeid, (gptr*) &g_nodeid,
  74.     0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  75.   { "fields", 'f', "Field separator",
  76.     (gptr*) &g_field_delimiter, (gptr*) &g_field_delimiter,
  77.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  78.   { "rows", 'r', "Row separator",
  79.     (gptr*) &g_row_delimiter, (gptr*) &g_row_delimiter,
  80.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  81.   { "config-file", 256, "Path to config.ini",
  82.     (gptr*) &g_config_file, (gptr*) &g_config_file,
  83.     0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
  84.   { 0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
  85. };
  86. static void usage()
  87. {
  88.   char desc[] = 
  89.     "This program will retreive config options for a ndb clustern";
  90.   ndb_std_print_version();
  91.   my_print_help(my_long_options);
  92.   my_print_variables(my_long_options);
  93. }
  94. static my_bool
  95. ndb_std_get_one_option(int optid,
  96.        const struct my_option *opt __attribute__((unused)),
  97.        char *argument)
  98. {
  99.   switch (optid) {
  100.   case 'V':
  101.     ndb_std_print_version();
  102.     exit(0);
  103.   case '?':
  104.     usage();
  105.     exit(0);
  106.   }
  107.   return 0;
  108. }
  109. /**
  110.  * Match/Apply framework
  111.  */
  112. struct Match
  113. {
  114.   int m_key;
  115.   BaseString m_value;
  116.   virtual int eval(const Iter&);
  117. };
  118. struct Apply
  119. {
  120.   Apply() {}
  121.   Apply(int val) { m_key = val;}
  122.   int m_key;
  123.   virtual int apply(const Iter&);
  124. };
  125. struct NodeTypeApply : public Apply
  126. {
  127.   virtual int apply(const Iter&);
  128. };
  129. static int parse_query(Vector<Apply*>&, int &argc, char**& argv);
  130. static int parse_where(Vector<Match*>&, int &argc, char**& argv);
  131. static int eval(const Iter&, const Vector<Match*>&);
  132. static int apply(const Iter&, const Vector<Apply*>&);
  133. static ndb_mgm_configuration* fetch_configuration();
  134. static ndb_mgm_configuration* load_configuration();
  135. int
  136. main(int argc, char** argv){
  137.   NDB_INIT(argv[0]);
  138.   const char *load_default_groups[]= { "mysql_cluster",0 };
  139.   load_defaults("my",load_default_groups,&argc,&argv);
  140.   int ho_error;
  141.   if ((ho_error=handle_options(&argc, &argv, my_long_options,
  142.        ndb_std_get_one_option)))
  143.     return -1;
  144.   ndb_mgm_configuration * conf = 0;
  145.   if (g_config_file)
  146.     conf = load_configuration();
  147.   else
  148.     conf = fetch_configuration();
  149.   if (conf == 0)
  150.   {
  151.     return -1;
  152.   }
  153.   
  154.   Vector<Apply*> select_list;
  155.   Vector<Match*> where_clause;
  156.   if(strcmp(g_row_delimiter, "\n") == 0)
  157.     g_row_delimiter = "n";
  158.   if(strcmp(g_field_delimiter, "\n") == 0)
  159.     g_field_delimiter = "n";
  160.   if(parse_query(select_list, argc, argv))
  161.   {
  162.     exit(0);
  163.   }
  164.   if(parse_where(where_clause, argc, argv))
  165.   {
  166.     exit(0);
  167.   }
  168.   Iter iter(* conf, CFG_SECTION_NODE);
  169.   bool prev= false;
  170.   iter.first();
  171.   for(iter.first(); iter.valid(); iter.next())
  172.   {
  173.     if(eval(iter, where_clause))
  174.     {
  175.       if(prev)
  176. printf("%s", g_row_delimiter);
  177.       prev= true;
  178.       apply(iter, select_list);
  179.     }
  180.   }
  181.   printf("n");
  182.   return 0;
  183. }
  184. static
  185. int
  186. parse_query(Vector<Apply*>& select, int &argc, char**& argv)
  187. {
  188.   if(g_query)
  189.   {
  190.     BaseString q(g_query);
  191.     Vector<BaseString> list;
  192.     q.split(list, ",");
  193.     for(unsigned i = 0; i<list.size(); i++)
  194.     {
  195.       const char * str= list[i].c_str();
  196.       if(strcasecmp(str, "id") == 0 || strcasecmp(str, "nodeid") == 0)
  197. select.push_back(new Apply(CFG_NODE_ID));
  198.       else if(strncasecmp(str, "host", 4) == 0)
  199. select.push_back(new Apply(CFG_NODE_HOST));
  200.       else if(strcasecmp(str, "type") == 0)
  201. select.push_back(new NodeTypeApply());
  202.       else if(g_nodes)
  203.       {
  204. bool found = false;
  205. for(int p = 0; p<ConfigInfo::m_NoOfParams; p++)
  206. {
  207.   if(0)ndbout_c("%s %s",
  208. ConfigInfo::m_ParamInfo[p]._section,
  209. ConfigInfo::m_ParamInfo[p]._fname);
  210.   if(strcmp(ConfigInfo::m_ParamInfo[p]._section, "DB") == 0 ||
  211.      strcmp(ConfigInfo::m_ParamInfo[p]._section, "API") == 0 ||
  212.      strcmp(ConfigInfo::m_ParamInfo[p]._section, "MGM") == 0)
  213.   {
  214.     if(strcasecmp(ConfigInfo::m_ParamInfo[p]._fname, str) == 0)
  215.     {
  216.       select.push_back(new Apply(ConfigInfo::m_ParamInfo[p]._paramId));
  217.       found = true;
  218.       break;
  219.     }
  220.   }
  221. }
  222. if(!found)
  223. {
  224.   fprintf(stderr, "Unknown query option: %sn", str);
  225.   return 1;
  226. }
  227.       }
  228.       else
  229.       {
  230. fprintf(stderr, "Unknown query option: %sn", str);
  231. return 1;
  232.       }
  233.     }
  234.   }
  235.   return 0;
  236. }
  237. static 
  238. int 
  239. parse_where(Vector<Match*>& where, int &argc, char**& argv)
  240. {
  241.   Match m;
  242.   if(g_host)
  243.   {
  244.     m.m_key = CFG_NODE_HOST;
  245.     m.m_value.assfmt("%s", g_host);
  246.     where.push_back(new Match(m));
  247.   }
  248.   
  249.   if(g_type)
  250.   {
  251.     m.m_key = CFG_TYPE_OF_SECTION;
  252.     m.m_value.assfmt("%d", ndb_mgm_match_node_type(g_type));
  253.     where.push_back(new Match(m));
  254.   }
  255.   if(g_nodeid)
  256.   {
  257.     m.m_key = CFG_NODE_ID;
  258.     m.m_value.assfmt("%d", g_nodeid);
  259.     where.push_back(new Match(m));
  260.   }
  261.   return 0;
  262. }
  263. template class Vector<Apply*>;
  264. template class Vector<Match*>;
  265. static 
  266. int
  267. eval(const Iter& iter, const Vector<Match*>& where)
  268. {
  269.   for(unsigned i = 0; i<where.size(); i++)
  270.   {
  271.     if(where[i]->eval(iter) == 0)
  272.       return 0;
  273.   }
  274.   
  275.   return 1;
  276. }
  277. static 
  278. int 
  279. apply(const Iter& iter, const Vector<Apply*>& list)
  280. {
  281.   for(unsigned i = 0; i<list.size(); i++)
  282.   {
  283.     list[i]->apply(iter);
  284.     if(i + 1 != list.size())
  285.       printf("%s", g_field_delimiter);
  286.   }
  287.   return 0;
  288. }
  289. int
  290. Match::eval(const Iter& iter)
  291. {
  292.   Uint32 val32;
  293.   Uint64 val64;
  294.   const char* valc;
  295.   if (iter.get(m_key, &val32) == 0)
  296.   {
  297.     if(atoi(m_value.c_str()) != (int)val32)
  298.       return 0;
  299.   } 
  300.   else if(iter.get(m_key, &val64) == 0)
  301.   {
  302.     if(strtoll(m_value.c_str(), (char **)NULL, 10) != (long long)val64)
  303.       return 0;
  304.   }
  305.   else if(iter.get(m_key, &valc) == 0)
  306.   {
  307.     if(strcmp(m_value.c_str(), valc) != 0)
  308.       return 0;
  309.   }
  310.   else
  311.   {
  312.     return 0;
  313.   }
  314.   return 1;
  315. }
  316. int
  317. Apply::apply(const Iter& iter)
  318. {
  319.   Uint32 val32;
  320.   Uint64 val64;
  321.   const char* valc;
  322.   if (iter.get(m_key, &val32) == 0)
  323.   {
  324.     printf("%u", val32);
  325.   } 
  326.   else if(iter.get(m_key, &val64) == 0)
  327.   {
  328.     printf("%llu", val64);
  329.   }
  330.   else if(iter.get(m_key, &valc) == 0)
  331.   {
  332.     printf("%s", valc);
  333.   }
  334.   return 0;
  335. }
  336. int
  337. NodeTypeApply::apply(const Iter& iter)
  338. {
  339.   Uint32 val32;
  340.   if (iter.get(CFG_TYPE_OF_SECTION, &val32) == 0)
  341.   {
  342.     printf("%s", ndb_mgm_get_node_type_alias_string((ndb_mgm_node_type)val32, 0));
  343.   } 
  344.   return 0;
  345. }
  346. ndb_mgm_configuration*
  347. fetch_configuration()
  348. {  
  349.   ndb_mgm_configuration* conf = 0;
  350.   NdbMgmHandle mgm = ndb_mgm_create_handle();
  351.   if(mgm == NULL) {
  352.     fprintf(stderr, "Cannot create handle to management server.n");
  353.     return 0;
  354.   }
  355.   ndb_mgm_set_error_stream(mgm, stderr);
  356.   
  357.   if (ndb_mgm_set_connectstring(mgm, g_connectstring))
  358.   {
  359.     fprintf(stderr, "* %5d: %sn", 
  360.     ndb_mgm_get_latest_error(mgm),
  361.     ndb_mgm_get_latest_error_msg(mgm));
  362.     fprintf(stderr, 
  363.     "*        %s", ndb_mgm_get_latest_error_desc(mgm));
  364.     goto noconnect;
  365.   }
  366.   if(ndb_mgm_connect(mgm, try_reconnect-1, 5, 1))
  367.   {
  368.     fprintf(stderr, "Connect failed");
  369.     fprintf(stderr, " code: %d, msg: %sn",
  370.     ndb_mgm_get_latest_error(mgm),
  371.     ndb_mgm_get_latest_error_msg(mgm));
  372.     goto noconnect;
  373.   }
  374.   else if(g_verbose)
  375.   {
  376.     fprintf(stderr, "Connected to %s:%dn", 
  377.     ndb_mgm_get_connected_host(mgm),
  378.     ndb_mgm_get_connected_port(mgm));
  379.   }
  380.   
  381.   conf = ndb_mgm_get_configuration(mgm, 0);
  382.   if(conf == 0)
  383.   {
  384.     fprintf(stderr, "Could not get configuration");
  385.     fprintf(stderr, "code: %d, msg: %sn",
  386.     ndb_mgm_get_latest_error(mgm),
  387.     ndb_mgm_get_latest_error_msg(mgm));
  388.   }
  389.   else if(g_verbose)
  390.   {
  391.     fprintf(stderr, "Fetched configurationn");
  392.   }
  393.   ndb_mgm_disconnect(mgm);
  394. noconnect:
  395.   ndb_mgm_destroy_handle(&mgm);
  396.   
  397.   return conf;
  398. }
  399. #include <Config.hpp>
  400. ndb_mgm_configuration*
  401. load_configuration()
  402. {  
  403.   InitConfigFileParser parser(stderr);
  404.   if (g_verbose)
  405.     fprintf(stderr, "Using config.ini : %s", g_config_file);
  406.   
  407.   Config* conf = parser.parseConfig(g_config_file);
  408.   if (conf)
  409.     return conf->m_configValues;
  410.   return 0;
  411. }