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

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. extern "C" {
  14. #include "user_populate.h"
  15. }
  16. #include <ndb_global.h>
  17. #include <NdbApi.hpp>
  18. #include "ndb_schema.hpp"
  19. #include "ndb_error.hpp"
  20. int
  21. insert_subscriber(void * obj,
  22.   SubscriberNumber number, 
  23.   SubscriberName name,
  24.   GroupId groupId,
  25.   Location l,
  26.   ActiveSessions activeSessions,
  27.   ChangedBy changedBy,
  28.   ChangedTime changedTime){
  29.   Ndb * pNDB = (Ndb *)obj;
  30.   int check;
  31.   
  32.   NdbConnection * MyTransaction = pNDB->startTransaction();
  33.   if (MyTransaction == NULL)   
  34.     error_handler("startTranscation", pNDB->getNdbErrorString(), 0);
  35.   
  36.   NdbOperation *MyOperation = MyTransaction->getNdbOperation(SUBSCRIBER_TABLE);
  37.   CHECK_NULL(MyOperation, "getNdbOperation", MyTransaction);
  38.   
  39.   check = MyOperation->insertTuple();
  40.   CHECK_MINUS_ONE(check, "insertTuple", MyTransaction);
  41.   
  42.   check = MyOperation->equal(SUBSCRIBER_NUMBER, number);
  43.   CHECK_MINUS_ONE(check, "equal", MyTransaction);
  44.   check = MyOperation->setValue(SUBSCRIBER_NAME, name);
  45.   CHECK_MINUS_ONE(check, "setValue name", MyTransaction);
  46.   check = MyOperation->setValue(SUBSCRIBER_GROUP, (char*)&groupId);
  47.   CHECK_MINUS_ONE(check, "setValue group", MyTransaction);
  48.   check = MyOperation->setValue(SUBSCRIBER_LOCATION, (char*)&l);
  49.   CHECK_MINUS_ONE(check, "setValue location", MyTransaction);
  50.   check = MyOperation->setValue(SUBSCRIBER_SESSIONS, (char*)&activeSessions);
  51.   CHECK_MINUS_ONE(check, "setValue sessions", MyTransaction);
  52.   check = MyOperation->setValue(SUBSCRIBER_CHANGED_BY, changedBy);
  53.   CHECK_MINUS_ONE(check, "setValue changedBy", MyTransaction);
  54.   check = MyOperation->setValue(SUBSCRIBER_CHANGED_TIME, changedTime);
  55.   CHECK_MINUS_ONE(check, "setValue changedTime", MyTransaction);
  56.   check = MyTransaction->execute( Commit ); 
  57.   CHECK_MINUS_ONE(check, "commit", MyTransaction);  
  58.   pNDB->closeTransaction(MyTransaction);
  59.   return 0;
  60. }
  61. int
  62. insert_server(void * obj,
  63.       ServerId serverId,
  64.       SubscriberSuffix suffix,
  65.       ServerName name,
  66.       Counter noOfRead,
  67.       Counter noOfInsert,
  68.       Counter noOfDelete){
  69.   Ndb * pNDB = (Ndb *)obj;
  70.   int check;
  71.   NdbConnection * MyTransaction = pNDB->startTransaction();
  72.   if (MyTransaction == NULL)   
  73.     error_handler("startTranscation", pNDB->getNdbErrorString(), 0);
  74.   
  75.   NdbOperation *MyOperation = MyTransaction->getNdbOperation(SERVER_TABLE);
  76.   CHECK_NULL(MyOperation, "getNdbOperation", MyTransaction);
  77.   
  78.   check = MyOperation->insertTuple();
  79.   CHECK_MINUS_ONE(check, "insert tuple", MyTransaction);  
  80.   
  81.   check = MyOperation->equal(SERVER_ID, (char*)&serverId);
  82.   CHECK_MINUS_ONE(check, "setValue id", MyTransaction);  
  83.   
  84.   check = MyOperation->setValue(SERVER_SUBSCRIBER_SUFFIX, suffix);
  85.   CHECK_MINUS_ONE(check, "setValue suffix", MyTransaction);  
  86.   check = MyOperation->setValue(SERVER_NAME, name);
  87.   CHECK_MINUS_ONE(check, "setValue name", MyTransaction);  
  88.   check = MyOperation->setValue(SERVER_READS, (char*)&noOfRead);
  89.   CHECK_MINUS_ONE(check, "setValue reads", MyTransaction);  
  90.   check = MyOperation->setValue(SERVER_INSERTS, (char*)&noOfInsert);
  91.   CHECK_MINUS_ONE(check, "setValue inserts", MyTransaction);  
  92.   check = MyOperation->setValue(SERVER_DELETES, (char*)&noOfDelete);
  93.   CHECK_MINUS_ONE(check, "setValue deletes", MyTransaction);  
  94.   check = MyTransaction->execute( Commit ); 
  95.   CHECK_MINUS_ONE(check, "commit", MyTransaction);  
  96.   
  97.   pNDB->closeTransaction(MyTransaction);
  98.   return 0;
  99. }
  100. int
  101. insert_group(void * obj,
  102.      GroupId groupId, 
  103.      GroupName name,
  104.      Permission allowRead,
  105.      Permission allowInsert,
  106.      Permission allowDelete){
  107.   Ndb * pNDB = (Ndb *)obj;
  108.   int check;
  109.   
  110.   NdbConnection * MyTransaction = pNDB->startTransaction();
  111.   if (MyTransaction == NULL)   
  112.     error_handler("startTranscation", pNDB->getNdbErrorString(), 0);
  113.   
  114.   NdbOperation *MyOperation = MyTransaction->getNdbOperation(GROUP_TABLE);
  115.   CHECK_NULL(MyOperation, "getNdbOperation", MyTransaction);  
  116.   
  117.   check = MyOperation->insertTuple();
  118.   CHECK_MINUS_ONE(check, "insertTuple", MyTransaction);  
  119.   
  120.   check = MyOperation->equal(GROUP_ID, (char*)&groupId);
  121.   CHECK_MINUS_ONE(check, "equal", MyTransaction);  
  122.   
  123.   check = MyOperation->setValue(GROUP_NAME, name);
  124.   CHECK_MINUS_ONE(check, "setValue name", MyTransaction);  
  125.   check = MyOperation->setValue(GROUP_ALLOW_READ, (char*)&allowRead);
  126.   CHECK_MINUS_ONE(check, "setValue allowRead", MyTransaction);  
  127.   check = MyOperation->setValue(GROUP_ALLOW_INSERT, (char*)&allowInsert);
  128.   CHECK_MINUS_ONE(check, "setValue allowInsert", MyTransaction);  
  129.   check = MyOperation->setValue(GROUP_ALLOW_DELETE, (char*)&allowDelete);
  130.   CHECK_MINUS_ONE(check, "setValue allowDelete", MyTransaction);  
  131.   
  132.   check = MyTransaction->execute( Commit ); 
  133.   CHECK_MINUS_ONE(check, "commit", MyTransaction);  
  134.   
  135.   pNDB->closeTransaction(MyTransaction);
  136.   return 0;
  137. }