hugoCalculator.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 <NdbSleep.h>
  16. #include <NDBT_Tables.hpp>
  17. #include <getarg.h>
  18. #include <NDBT.hpp>
  19. #include <HugoCalculator.hpp>
  20. //extern NdbOut g_info;
  21. int main(int argc, const char** argv)
  22. {
  23.   ndb_init();
  24.   int _row = 0;
  25.   int _column = 0;
  26.   int _updates = 0;
  27.   const char* _tableName = NULL;
  28.   struct getargs args[] = {
  29.     { "row", 'r', arg_integer, &_row, "The row number", "row" },
  30.     { "column", 'c', arg_integer, &_column, "The column id", "column" },
  31.     { "updates", 'u', arg_integer, &_updates, "# of updates", "updates" }
  32.   };
  33.   int num_args = sizeof(args) / sizeof(args[0]);
  34.   int optind = 0;
  35.   if(getarg(args, num_args, argc, argv, &optind) || argv[optind] == NULL) {
  36.     arg_printusage(args, num_args, argv[0], "table namen");
  37.     return NDBT_WRONGARGS;
  38.   }
  39.   // Check if table name is supplied
  40.   if (argv[optind] != NULL) 
  41.     _tableName = argv[optind];
  42.   const NdbDictionary::Table* table = NDBT_Tables::getTable(_tableName);
  43.   const NdbDictionary::Column * attribute = table->getColumn(_column);
  44.   g_info << "Table " << _tableName << endl
  45.  << "Row: " << _row << ", "
  46.  << "Column(" << attribute->getName() << ")"
  47.  << "[" << attribute->getType() << "]" 
  48.  << ", Updates: " << _updates
  49.  << endl;
  50.   HugoCalculator calc(*table);
  51.   char buf[8000];
  52.   g_info << "Value: " << calc.calcValue(_row, _column, _updates, buf)
  53.  << endl;
  54.   return 0;
  55. }