summaryrefslogtreecommitdiffstats
path: root/base/tps/src/main/RA_pblock.cpp
blob: e59e4c7f155ae044483f3e244473902ddb0e0135 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// --- BEGIN COPYRIGHT BLOCK ---
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation;
// version 2.1 of the License.
// 
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor,
// Boston, MA  02110-1301  USA 
// 
// Copyright (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---

#ifdef __cplusplus
extern "C"
{
#endif

#include "prmem.h"

#ifdef __cplusplus
}
#endif

#include <string.h>
#include "engine/RA.h"
#include "main/Buffer.h"
#include "main/Memory.h"
#include "main/Util.h"
#include "main/RA_pblock.h"

#ifdef XP_WIN32
#define TPS_PUBLIC __declspec(dllexport)
#else /* !XP_WIN32 */
#define TPS_PUBLIC
#endif /* !XP_WIN32 */

TPS_PUBLIC RA_pblock::RA_pblock( int tm_nargs, Buffer_nv** tm_nvs )
{
    m_nargs = tm_nargs;

    if( tm_nvs != NULL ) {
        for( int i = 0; i < MAX_NVS; i++ ) {
            m_nvs[i] = tm_nvs[i];
        }
    } else {
        for( int i = 0; i < MAX_NVS; i++ ) {
            m_nvs[i] = NULL;
        }
    }
}

TPS_PUBLIC RA_pblock::~RA_pblock()
{
    free_pblock();
}

Buffer_nv **RA_pblock::GetNVs()
{
    return m_nvs;
}

// returns url-decoded value
TPS_PUBLIC Buffer *RA_pblock::find_val( const char * name )
{
    for( int i = 0; i < m_nargs; i++ ) {
        if( i >= MAX_NVS ) {
          continue;
        }

        if( ( m_nvs[i] == NULL )       ||
            ( m_nvs[i]->name == NULL ) ||
            ( m_nvs[i]->value == NULL ) ) {
            continue;
        }

        if( PR_CompareStrings( m_nvs[i]->name, name ) == 1 ) {
            return m_nvs[i]->value;
        }
    }

    return NULL;
}

TPS_PUBLIC char *RA_pblock::get_name( int i )
{
    return m_nvs[i]->name; 
}

TPS_PUBLIC int RA_pblock::get_num_of_names()
{
    return m_nargs;
}

// returns non-urldecoded value
TPS_PUBLIC char* RA_pblock::find_val_s( const char * name )
{
    RA::Debug( LL_PER_PDU, "RA_pblock::find_val_s",
               "searching for name= %s", name );

    int end = m_nargs;

    if( MAX_NVS < m_nargs ) {
        RA::Error( "RA_pblock::find_val_s",
                   "MAX_NVS too small, needs increasing... "
                   "m_nargs= %d, MAX_NVS=%d", m_nargs, MAX_NVS );
        end = MAX_NVS;
    }

    for( int i = 0; i < end; i++ ) {
        if( ( m_nvs[i] == NULL )       ||
            ( m_nvs[i]->name == NULL ) ||
            ( m_nvs[i]->value_s == NULL ) ) {
            continue;
        }

        /* RA::Debug( LL_PER_PDU, "RA_pblock::find_val_s", */
        /*            "found %s", m_nvs[i]->name );        */

        if( PR_CompareStrings( m_nvs[i]->name, name ) == 1 ) {
            return m_nvs[i]->value_s;
        }
    }

    return NULL;
}

void RA_pblock::free_pblock()
{
    RA::Debug( LL_PER_PDU, "RA_pblock::free_pblock", "in free_pblock" );

    int end = m_nargs;

    if( MAX_NVS < m_nargs ) {
        RA::Error( "RA_pblock::free_pblock",
                   "MAX_NVS too small, needs increasing... "
                   "m_nargs= %d, MAX_NVS=%d", m_nargs, MAX_NVS );
        end = MAX_NVS;
    }

    for( int i = 0; i < end ; i++ ) {
        if( m_nvs[i] == NULL ) {
            continue;
        }

        if( m_nvs[i]->value ) {
            delete( m_nvs[i]->value );
            m_nvs[i]->value = NULL;
        }

        if( m_nvs[i]->value_s ) {
            PL_strfree( m_nvs[i]->value_s );
            m_nvs[i]->value_s = NULL;
        }

        if( m_nvs[i]->name != NULL ) {
            PL_strfree( m_nvs[i]->name );
            m_nvs[i]->name = NULL;
        }

        if( m_nvs[i] != NULL ) {
            PR_Free( m_nvs[i] );
            m_nvs[i] = NULL;
        }
    }

    RA::Debug( LL_PER_PDU, "RA_pblock::free_pblock", "in free_pblock done" );
}