]> git.sur5r.net Git - bacula/bacula/commitdiff
Revert "Regenerated Ingres code using esqlcc"
authorKern Sibbald <kern@sibbald.com>
Sat, 10 Apr 2010 10:15:02 +0000 (12:15 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 10 Apr 2010 10:15:02 +0000 (12:15 +0200)
This reverts commit e70e63e107849f8e8c74e04a52a50fc87cb5deb0.

bacula/src/cats/myingres.c
bacula/src/cats/myingres.h

index adf367db14ef3d11f1b284987dfa80562e7271e5..d1cff9752b8d2feca5d8e0d74366f63a92da6a4a 100644 (file)
@@ -50,15 +50,19 @@ IISQLCA *IIsqlca();
 /*
  * ---Implementations---
  */
+int INGcheck()
+{
+   return (sqlca.sqlcode < 0) ? sqlca.sqlcode : 0;
+}
 short INGgetCols(INGconn *conn, const char *query, bool transaction)
 {
-/* # line 52 "myingres.sc" */  
+/* # line 57 "myingres.sc" */  
   
   int sess_id;
   char *stmt;
-/* # line 55 "myingres.sc" */  
+/* # line 60 "myingres.sc" */  
   
-   short number = -1;
+   short number = 1;
    IISQLDA *sqlda;
    sqlda = (IISQLDA *)malloc(IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE));
    memset(sqlda, 0, (IISQDA_HEAD_SIZE + (number * IISQDA_VAR_SIZE)));
@@ -68,56 +72,61 @@ short INGgetCols(INGconn *conn, const char *query, bool transaction)
     * Switch to the correct default session for this thread.
     */
    sess_id = conn->session_id;
-/* # line 71 "myingres.sc" */  /* set_sql */
+/* # line 76 "myingres.sc" */  /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(sess_id),&sess_id);
   }
-/* # line 75 "myingres.sc" */  /* prepare */
+/* # line 78 "myingres.sc" */  /* prepare */
   {
     IIsqInit(&sqlca);
     IIsqPrepare(0,(char *)"s1",(char *)0,0,stmt);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
   }
-/* # line 76 "myingres.sc" */  /* describe */
+/* # line 79 "myingres.sc" */  /* host code */
+   if (INGcheck() < 0) {
+      number = -1;
+      goto bail_out;
+   }
+/* # line 84 "myingres.sc" */  /* describe */
   {
     IIsqInit(&sqlca);
     IIsqDescribe(0,(char *)"s1",sqlda,0);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
   }
-/* # line 80 "myingres.sc" */  /* host code */
+/* # line 85 "myingres.sc" */  /* host code */
+   if (INGcheck() < 0) {
+      number = -1;
+      goto bail_out;
+   }
    number = sqlda->sqld;
+bail_out:
    /*
     * If we are not in a transaction we commit our work now.
     */
    if (!transaction) {
-/* # line 86 "myingres.sc" */  /* commit */
+/* # line 97 "myingres.sc" */  /* commit */
   {
     IIsqInit(&sqlca);
     IIxact(3);
   }
-/* # line 87 "myingres.sc" */  /* host code */
+/* # line 98 "myingres.sc" */  /* host code */
    }
-bail_out:
    /*
     * Switch to no default session for this thread.
     */
-/* # line 93 "myingres.sc" */  /* set_sql */
+/* # line 102 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(-97),(void *)IILQint(-97));
   }
-/* # line 94 "myingres.sc" */  /* host code */
+/* # line 103 "myingres.sc" */ /* host code */
    free(stmt);
    free(sqlda);
    return number;
 }
 static inline IISQLDA *INGgetDescriptor(short numCols, const char *query)
 {
-/* # line 101 "myingres.sc" */ 
+/* # line 110 "myingres.sc" */ 
   
   char *stmt;
-/* # line 103 "myingres.sc" */ 
+/* # line 112 "myingres.sc" */ 
   
    int i;
    IISQLDA *sqlda;
@@ -125,15 +134,16 @@ static inline IISQLDA *INGgetDescriptor(short numCols, const char *query)
    memset(sqlda, 0, (IISQDA_HEAD_SIZE + (numCols * IISQDA_VAR_SIZE)));
    sqlda->sqln = numCols;
    stmt = bstrdup(query);
-/* # line 115 "myingres.sc" */ /* prepare */
+/* # line 124 "myingres.sc" */ /* prepare */
   {
     IIsqInit(&sqlca);
     IIsqPrepare(0,(char *)"s2",sqlda,0,stmt);
   }
-/* # line 117 "myingres.sc" */ /* host code */
+/* # line 126 "myingres.sc" */ /* host code */
+   free(stmt);
    for (i = 0; i < sqlda->sqld; ++i) {
       /*
-       * Negative type indicates nullable columns, so an indicator
+       * Negative type indicates nullable coulumns, so an indicator
        * is allocated, otherwise it's null
        */
       if (sqlda->sqlvar[i].sqltype > 0) {
@@ -163,7 +173,6 @@ static inline IISQLDA *INGgetDescriptor(short numCols, const char *query)
          break;
       }
    }
-   free(stmt);
    return sqlda;
 }
 static void INGfreeDescriptor(IISQLDA *sqlda)
@@ -350,36 +359,39 @@ static inline ING_ROW *INGgetRowSpace(INGresult *ing_res)
 }
 static inline int INGfetchAll(const char *query, INGresult *ing_res)
 {
+   int linecount = 0;
    ING_ROW *row;
    IISQLDA *desc;
-   int linecount = -1;
+   int check = -1;
    desc = ing_res->sqlda;
-/* # line 371 "myingres.sc" */ /* open */
+/* # line 380 "myingres.sc" */ /* host code */
+   if ((check = INGcheck()) < 0) {
+      return check;
+   }
+/* # line 384 "myingres.sc" */ /* open */
   {
     IIsqInit(&sqlca);
-    IIcsOpen((char *)"c2",14614,8429);
+    IIcsOpen((char *)"c2",19193,19709);
     IIwritio(0,(short *)0,1,32,0,(char *)"s2");
-    IIcsQuery((char *)"c2",14614,8429);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
+    IIcsQuery((char *)"c2",19193,19709);
   }
-/* # line 375 "myingres.sc" */ /* host code */
-   linecount = 0;
+/* # line 385 "myingres.sc" */ /* host code */
+   if ((check = INGcheck()) < 0) {
+      return check;
+   }
+   /* for (linecount = 0; sqlca.sqlcode == 0; ++linecount) */
    do {
-/* # line 377 "myingres.sc" */ /* fetch */
+/* # line 391 "myingres.sc" */ /* fetch */
   {
     IIsqInit(&sqlca);
-    if (IIcsRetScroll((char *)"c2",14614,8429,-1,-1) != 0) {
+    if (IIcsRetScroll((char *)"c2",19193,19709,-1,-1) != 0) {
       IIcsDaGet(0,desc);
       IIcsERetrieve();
     } /* IIcsRetrieve */
   }
-/* # line 379 "myingres.sc" */ /* host code */
-      if (sqlca.sqlcode == 0 || sqlca.sqlcode == -40202) {
-         /*
-          * Allocate space for fetched row
-          */
-         row = INGgetRowSpace(ing_res);
+/* # line 393 "myingres.sc" */ /* host code */
+      if ( (sqlca.sqlcode == 0) || (sqlca.sqlcode == -40202) ) {
+         row = INGgetRowSpace(ing_res); /* alloc space for fetched row */
          /*
           * Initialize list when encountered first time
           */
@@ -390,18 +402,18 @@ static inline int INGfetchAll(const char *query, INGresult *ing_res)
          }      
          ing_res->act_row->next = row; /* append row to old act_row */
          ing_res->act_row = row; /* set row as act_row */
-         row->row_number = linecount++;
+         row->row_number = linecount;
+         ++linecount;
       }
    } while ( (sqlca.sqlcode == 0) || (sqlca.sqlcode == -40202) );
-/* # line 400 "myingres.sc" */ /* close */
+/* # line 411 "myingres.sc" */ /* close */
   {
     IIsqInit(&sqlca);
-    IIcsClose((char *)"c2",14614,8429);
+    IIcsClose((char *)"c2",19193,19709);
   }
-/* # line 402 "myingres.sc" */ /* host code */
+/* # line 413 "myingres.sc" */ /* host code */
    ing_res->status = ING_COMMAND_OK;
    ing_res->num_rows = linecount;
-bail_out:
    return linecount;
 }
 static inline ING_STATUS INGresultStatus(INGresult *res)
@@ -467,57 +479,64 @@ short INGftype(const INGresult *res, int column_number)
 int INGexec(INGconn *conn, const char *query, bool transaction)
 {
    int check;
-/* # line 485 "myingres.sc" */ 
+/* # line 494 "myingres.sc" */ 
   
   int sess_id;
   int rowcount;
   char *stmt;
-/* # line 489 "myingres.sc" */ 
+/* # line 498 "myingres.sc" */ 
   
-   rowcount = -1;
    stmt = bstrdup(query);
+   rowcount = -1;
    /*
     * Switch to the correct default session for this thread.
     */
    sess_id = conn->session_id;
-/* # line 498 "myingres.sc" */ /* set_sql */
+/* # line 507 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(sess_id),&sess_id);
   }
-/* # line 502 "myingres.sc" */ /* execute */
+/* # line 508 "myingres.sc" */ /* execute */
   {
     IIsqInit(&sqlca);
     IIsqExImmed(stmt);
     IIsyncup((char *)0,0);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
   }
-/* # line 503 "myingres.sc" */ /* inquire_ingres */
+/* # line 510 "myingres.sc" */ /* host code */
+   free(stmt);
+   if ((check = INGcheck()) < 0) {
+      rowcount = check;
+      goto bail_out;
+   }
+/* # line 517 "myingres.sc" */ /* inquire_ingres */
   {
     IILQisInqSqlio((short *)0,1,30,sizeof(rowcount),&rowcount,8);
   }
-/* # line 507 "myingres.sc" */ /* host code */
+/* # line 518 "myingres.sc" */ /* host code */
+   if ((check = INGcheck()) < 0) {
+      rowcount = check;
+      goto bail_out;
+   }
+bail_out:
    /*
     * If we are not in a transaction we commit our work now.
     */
    if (!transaction) {
-/* # line 511 "myingres.sc" */ /* commit */
+/* # line 528 "myingres.sc" */ /* commit */
   {
     IIsqInit(&sqlca);
     IIxact(3);
   }
-/* # line 512 "myingres.sc" */ /* host code */
+/* # line 529 "myingres.sc" */ /* host code */
    }
-bail_out:
    /*
     * Switch to no default session for this thread.
     */
-/* # line 518 "myingres.sc" */ /* set_sql */
+/* # line 533 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(-97),(void *)IILQint(-97));
   }
-/* # line 519 "myingres.sc" */ /* host code */
-   free(stmt);
+/* # line 534 "myingres.sc" */ /* host code */
    return rowcount;
 }
 INGresult *INGquery(INGconn *conn, const char *query, bool transaction)
@@ -529,20 +548,20 @@ INGresult *INGquery(INGconn *conn, const char *query, bool transaction)
    INGresult *res = NULL;
    int rows = -1;
    int cols = INGgetCols(conn, query, transaction);
-/* # line 532 "myingres.sc" */ 
+/* # line 546 "myingres.sc" */ 
   
   int sess_id;
-/* # line 534 "myingres.sc" */ 
+/* # line 548 "myingres.sc" */ 
   
    /*
     * Switch to the correct default session for this thread.
     */
    sess_id = conn->session_id;
-/* # line 540 "myingres.sc" */ /* set_sql */
+/* # line 554 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(sess_id),&sess_id);
   }
-/* # line 542 "myingres.sc" */ /* host code */
+/* # line 556 "myingres.sc" */ /* host code */
    desc = INGgetDescriptor(cols, query);
    if (!desc) {
       goto bail_out;
@@ -563,21 +582,21 @@ bail_out:
     * If we are not in a transaction we commit our work now.
     */
    if (!transaction) {
-/* # line 566 "myingres.sc" */ /* commit */
+/* # line 580 "myingres.sc" */ /* commit */
   {
     IIsqInit(&sqlca);
     IIxact(3);
   }
-/* # line 567 "myingres.sc" */ /* host code */
+/* # line 581 "myingres.sc" */ /* host code */
    }
    /*
     * Switch to no default session for this thread.
     */
-/* # line 571 "myingres.sc" */ /* set_sql */
+/* # line 585 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(-97),(void *)IILQint(-97));
   }
-/* # line 572 "myingres.sc" */ /* host code */
+/* # line 586 "myingres.sc" */ /* host code */
    return res;
 }
 void INGclear(INGresult *res)
@@ -588,58 +607,59 @@ void INGclear(INGresult *res)
    INGfreeDescriptor(res->sqlda);
    INGfreeINGresult(res);
 }
-void INGcommit(const INGconn *conn)
+void INGcommit(const INGconn *dbconn)
 {
-/* # line 587 "myingres.sc" */ 
+/* # line 601 "myingres.sc" */ 
   
   int sess_id;
-/* # line 589 "myingres.sc" */ 
+/* # line 603 "myingres.sc" */ 
   
    if (dbconn != NULL) {
       sess_id = dbconn->session_id;
-/* # line 593 "myingres.sc" */ /* disconnect */
+/* # line 607 "myingres.sc" */ /* disconnect */
   {
     IIsqInit(&sqlca);
     IILQsidSessID(sess_id);
     IIsqDisconnect();
   }
-/* # line 595 "myingres.sc" */ /* host code */
+/* # line 609 "myingres.sc" */ /* host code */
       /*
        * Commit our work.
        */
-/* # line 598 "myingres.sc" */ /* commit */
+/* # line 612 "myingres.sc" */ /* commit */
   {
     IIsqInit(&sqlca);
     IIxact(3);
   }
-/* # line 600 "myingres.sc" */ /* host code */
+/* # line 614 "myingres.sc" */ /* host code */
       /*
        * Switch to no default session for this thread.
        */
-/* # line 603 "myingres.sc" */ /* set_sql */
+/* # line 617 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(-97),(void *)IILQint(-97));
   }
-/* # line 604 "myingres.sc" */ /* host code */
+/* # line 618 "myingres.sc" */ /* host code */
    }
 }
 INGconn *INGconnectDB(char *dbname, char *user, char *passwd, int session_id)
 {
-/* # line 609 "myingres.sc" */ 
+   INGconn *dbconn;
+   if (dbname == NULL || strlen(dbname) == 0) {
+      return NULL;
+   }
+   dbconn = (INGconn *)malloc(sizeof(INGconn));
+   memset(dbconn, 0, sizeof(INGconn));
+/* # line 632 "myingres.sc" */ 
   
   char ingdbname[24];
   char ingdbuser[32];
   char ingdbpasswd[32];
   int sess_id;
-/* # line 614 "myingres.sc" */ 
+/* # line 637 "myingres.sc" */ 
   
-   INGconn *dbconn;
-   if (dbname == NULL || strlen(dbname) == 0) {
-      return NULL;
-   }
    sess_id = session_id;
    bstrncpy(ingdbname, dbname, sizeof(ingdbname));
-/* # line 626 "myingres.sc" */ /* host code */
    if (user != NULL) {
       bstrncpy(ingdbuser, user, sizeof(ingdbuser));
       if (passwd != NULL) {
@@ -647,7 +667,7 @@ INGconn *INGconnectDB(char *dbname, char *user, char *passwd, int session_id)
       } else {
          memset(ingdbpasswd, 0, sizeof(ingdbpasswd));
       }
-/* # line 633 "myingres.sc" */ /* connect */
+/* # line 649 "myingres.sc" */ /* connect */
   {
     IIsqInit(&sqlca);
     IILQsidSessID(sess_id);
@@ -655,76 +675,71 @@ INGconn *INGconnectDB(char *dbname, char *user, char *passwd, int session_id)
     IIsqConnect(0,ingdbname,(char *)"-dbms_password",ingdbpasswd,(char *)0, 
     (char *)0, (char *)0, (char *)0, (char *)0, (char *)0, (char *)0, 
     (char *)0, (char *)0, (char *)0, (char *)0);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
   }
-/* # line 638 "myingres.sc" */ /* host code */
+/* # line 654 "myingres.sc" */ /* host code */
    } else {
-/* # line 639 "myingres.sc" */ /* connect */
+/* # line 655 "myingres.sc" */ /* connect */
   {
     IIsqInit(&sqlca);
     IILQsidSessID(sess_id);
     IIsqConnect(0,ingdbname,(char *)0, (char *)0, (char *)0, (char *)0, 
     (char *)0, (char *)0, (char *)0, (char *)0, (char *)0, (char *)0, 
     (char *)0, (char *)0, (char *)0);
-    if (sqlca.sqlcode < 0) 
-      goto bail_out;
   }
-/* # line 642 "myingres.sc" */ /* host code */
+/* # line 658 "myingres.sc" */ /* host code */
    }   
-/* # line 646 "myingres.sc" */ /* host code */
-   dbconn = (INGconn *)malloc(sizeof(INGconn));
-   memset(dbconn, 0, sizeof(INGconn));
+   if (INGcheck() < 0) {
+      return NULL;
+   }
    bstrncpy(dbconn->dbname, ingdbname, sizeof(dbconn->dbname));
    bstrncpy(dbconn->user, ingdbuser, sizeof(dbconn->user));
    bstrncpy(dbconn->password, ingdbpasswd, sizeof(dbconn->password));
    dbconn->session_id = sess_id;
-   dbconn->msg = (char *)malloc(257);
+   dbconn->msg = (char*)malloc(257);
    memset(dbconn->msg, 0, 257);
    /*
     * Switch to no default session for this thread undo default settings from SQL CONNECT.
     */
-/* # line 659 "myingres.sc" */ /* set_sql */
+/* # line 673 "myingres.sc" */ /* set_sql */
   {
     IILQssSetSqlio(11,(short *)0,1,30,sizeof(-97),(void *)IILQint(-97));
   }
-/* # line 661 "myingres.sc" */ /* host code */
-bail_out:
+/* # line 675 "myingres.sc" */ /* host code */
    return dbconn;
 }
 void INGdisconnectDB(INGconn *dbconn)
 {
-/* # line 667 "myingres.sc" */ 
+/* # line 680 "myingres.sc" */ 
   
   int sess_id;
-/* # line 669 "myingres.sc" */ 
+/* # line 682 "myingres.sc" */ 
   
    if (dbconn != NULL) {
       sess_id = dbconn->session_id;
-/* # line 673 "myingres.sc" */ /* disconnect */
+/* # line 686 "myingres.sc" */ /* disconnect */
   {
     IIsqInit(&sqlca);
     IILQsidSessID(sess_id);
     IIsqDisconnect();
   }
-/* # line 675 "myingres.sc" */ /* host code */
+/* # line 688 "myingres.sc" */ /* host code */
       free(dbconn->msg);
       free(dbconn);
    }
 }
 char *INGerrorMessage(const INGconn *conn)
 {
-/* # line 682 "myingres.sc" */ 
+/* # line 695 "myingres.sc" */ 
   
   char errbuf[256];
-/* # line 684 "myingres.sc" */ 
+/* # line 697 "myingres.sc" */ 
   
-/* # line 686 "myingres.sc" */ /* inquire_ingres */
+/* # line 699 "myingres.sc" */ /* inquire_ingres */
   {
     IILQisInqSqlio((short *)0,1,32,255,errbuf,63);
   }
-/* # line 687 "myingres.sc" */ /* host code */
-   strncpy(conn->msg, errbuf, sizeof(conn->msg));
+/* # line 700 "myingres.sc" */ /* host code */
+   memcpy(conn->msg, &errbuf, 256);
    return conn->msg;
 }
 char *INGcmdTuples(INGresult *res)
@@ -735,5 +750,5 @@ char *INGcmdTuples(INGresult *res)
 int INGputCopyEnd(INGconn *conn, const char *errormsg);
 int INGputCopyData(INGconn *conn, const char *buffer, int nbytes);
 */
-/* # line 701 "myingres.sc" */ 
+/* # line 714 "myingres.sc" */ 
 #endif
index 4b683f94f84c8349b9a493546fbb346971449a58..f5a4554275336c22bb527c358a35963678389583 100644 (file)
@@ -69,6 +69,7 @@ typedef struct ing_conn {
     char *msg;
 } INGconn;
 /* ---Prototypes--- */
+int INGcheck(void);
 short INGgetCols(INGconn *conn, const char *query, bool transaction);
 char *INGgetvalue(INGresult *res, int row_number, int column_number);
 bool INGgetisnull(INGresult *res, int row_number, int column_number);