File: alloc.c

package info (click to toggle)
grass 6.0.2-6
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 40,044 kB
  • ctags: 31,303
  • sloc: ansic: 321,125; tcl: 25,676; sh: 11,176; cpp: 10,098; makefile: 5,025; fortran: 1,846; yacc: 493; lex: 462; perl: 133; sed: 1
file content (112 lines) | stat: -rw-r--r-- 2,570 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*****************************************************************************
*
* MODULE:       SQL statement parser library 
*   	    	
* AUTHOR(S):    lex.l and yac.y were originaly taken from unixODBC and
*               probably written by Peter Harvey <pharvey@codebydesigns.com>,
*               modifications and other code by Radim Blazek
*
* PURPOSE:      Parse input string containing SQL statement to 
*               SQLPSTMT structure.
*               SQL parser may be used by simple database drivers. 
*
* COPYRIGHT:    (C) 2000 by the GRASS Development Team
*
*               This program is free software under the GNU General Public
*   	    	License (>=v2). Read the file COPYING that comes with GRASS
*   	    	for details.
*
*****************************************************************************/

#include <stdlib.h>
#include <stdio.h>
#include "sqlp.h"

/* alloc structure */
SQLPSTMT * sqpInitStmt( void  )
{
    SQLPSTMT *st;
    
    st = (SQLPSTMT *) calloc (1, sizeof (SQLPSTMT));

    return (st);
}

/* allocate space for columns */
int sqpAllocCol(SQLPSTMT *st, int n)
{
    int i;

    if ( n > st->aCol )
      {
	n += 15;      
        st->Col = (SQLPVALUE *) realloc ( st->Col, n * sizeof(SQLPVALUE));
        st->ColType = (int *) realloc ( st->ColType, n * sizeof(int));
        st->ColWidth = (int *) realloc ( st->ColWidth, n * sizeof(int));
        st->ColDecim = (int *) realloc ( st->ColDecim, n * sizeof(int));
	
        for (i = st->nCol; i < n; i++)
	  {
            st->Col[i].s = NULL ;
          }
	    
        st->aCol = n;
      }
   return (1); 
}
    
/* allocate space for values */
int sqpAllocVal(SQLPSTMT *st, int n)
{
    int i;

    if ( n > st->aVal )
      {
	n += 15;      
        st->Val = (SQLPVALUE *) realloc ( st->Val, n * sizeof(SQLPVALUE));
	
        for (i = st->nVal; i < n; i++)
	  {
            st->Val[i].s = NULL ;
          }
	    
        st->aVal = n;
      }
   return (1); 
}

/* free space allocated by parser */
int sqpFreeStmt(SQLPSTMT *st)
{
    int i;

    /* columns */
    for (i=0; i < st->aCol; i++)
        free ( st->Col[i].s );

    free ( st->Col );
    free ( st->ColType );
    free ( st->ColWidth );
    free ( st->ColDecim );
    st->aCol = 0;
    st->nCol = 0;
    
    /* values */
    for (i=0; i < st->aVal; i++)
        free ( st->Val[i].s );

    free ( st->Val );
    st->aVal = 0;
    st->nVal = 0;

    free (st->orderCol);

    /* Nodes (where) */
    if ( st->upperNodeptr )
	sqpFreeNode ( st->upperNodeptr );
    
    free ( st );
    return (1);
}