File: soracle.cc

package info (click to toggle)
pdns 3.4.1-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 9,084 kB
  • sloc: cpp: 56,420; ansic: 37,838; sh: 12,762; sql: 1,081; makefile: 734; ruby: 560; yacc: 222; lex: 120; perl: 52; python: 15
file content (301 lines) | stat: -rw-r--r-- 6,928 bytes parent folder | download | duplicates (5)
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/* Copyright 2005 Netherlabs BV, bert.hubert@netherlabs.nl. See LICENSE
   for more information. */

#include "soracle.hh"
#include <string>
#include <iostream>
#include "pdns/misc.hh"
#include "pdns/logger.hh"
#include "pdns/dns.hh"
#include <regex.h>
#include "pdns/namespaces.hh"

bool SOracle::s_dolog;


string SOracle::getOracleError()
{
  string mReason = "ORA-UNKNOWN";

  if (d_errorHandle != NULL) {
    text  msg[512];
    sb4   errcode = 0;

    memset(msg, 0, 512);

    OCIErrorGet((dvoid*) d_errorHandle,1, NULL, &errcode, msg, sizeof(msg), OCI_HTYPE_ERROR);
    if (errcode) {
      char* p = (char*) msg;
      while (*p++ != 0x00) {
        if (*p == '\n' || *p == '\r') {
          *p = ';';
        }
      }

      mReason = (char*) msg;
    }
  }
  return mReason;
}

SOracle::SOracle(const string &database,
                 const string &user,
                 const string &password)
{
  d_environmentHandle = NULL;
  d_errorHandle = NULL;
  d_serviceContextHandle = NULL;
  d_handle = NULL;

  int err = OCIInitialize(OCI_THREADED, 0,  NULL, NULL, NULL);
  if (err) {
    throw sPerrorException("OCIInitialize");
  }

  err = OCIEnvInit(&d_environmentHandle, OCI_DEFAULT, 0, 0);
  if (err) {
    throw sPerrorException("OCIEnvInit");
  }

  // Allocate an error handle

  err = OCIHandleAlloc(d_environmentHandle, (dvoid**) &d_errorHandle, OCI_HTYPE_ERROR, 0, NULL);
  if (err) {
    throw sPerrorException("OCIHandleAlloc");
  }

  // Logon to the database

  const char* username = user.c_str();

  err = OCILogon(d_environmentHandle, d_errorHandle, &d_serviceContextHandle, (OraText*) username, strlen(username),
                 (OraText*) password.c_str(),  strlen(password.c_str()), (OraText*) database.c_str(), strlen(database.c_str()));

  if (err) {
    throw sPerrorException("Loging in to Oracle gave error: " + getOracleError());
  }
}

void SOracle::setLog(bool state)
{
  s_dolog=state;
}

SOracle::~SOracle()
{
  if (d_handle) {
    OCIHandleFree(d_handle, OCI_HTYPE_STMT);
    d_handle=0;
  }

  int err;
  if (d_serviceContextHandle != NULL) {
    err=OCILogoff(d_serviceContextHandle, d_errorHandle);
    if (err) {
      cerr<<"Problems logging out: "+getOracleError()<<endl;
    }
  }

  if (d_errorHandle != NULL) {
    OCIHandleFree(d_errorHandle, OCI_HTYPE_ERROR);
    d_errorHandle = NULL;
  }

  if (d_environmentHandle != NULL) {
    OCIHandleFree(d_environmentHandle, OCI_HTYPE_ENV);
    d_environmentHandle = NULL;
  }
}

SSqlException SOracle::sPerrorException(const string &reason)
{
  return SSqlException(reason);
}

int SOracle::doCommand(const string &query)
{
  int retval = doQuery(query);
  if (d_handle) {
    OCIHandleFree(d_handle, OCI_HTYPE_STMT);
    d_handle=0;
  }

  return retval;
}

int getNumFields(const string &query)
{
  string lquery=toLower(query);
  const char* delim[]= {" from ", "\tfrom\t", "\tfrom ", " from\t", 0};
  int n=0;
  string::size_type pos;
  for (n=0; delim[n] && (pos=lquery.find(delim[n]))==string::npos; ++n)
    ;

  if (!delim[n]) {
    return -1;
  }

  unsigned int num=1;

  for (unsigned int n=0; n < pos; ++n)
    if (lquery[n]==',') {
      num++;
    }

  return num;
}

int SOracle::doQuery(const string &query)
{
  if (query=="begin") { // oracle does this implicitly
    return 0;
  }

  if (s_dolog) {
    L<<Logger::Warning<<"Query: "<<query<<endl;
  }

  int err = OCIHandleAlloc(d_environmentHandle, (dvoid**) &d_handle, OCI_HTYPE_STMT, 0, NULL);

  if (err) {
    throw sPerrorException("Allocating a query handle: "+getOracleError());
  }

  err = OCIStmtPrepare(d_handle, d_errorHandle, (text*) query.c_str(), strlen(query.c_str()),
                       OCI_NTV_SYNTAX, OCI_DEFAULT);

  if (err) {
    throw sPerrorException("Preparing statement: "+getOracleError());
  }

  ub4 prefetch=1000;
  err=OCIAttrSet(d_handle, (ub4) OCI_HTYPE_STMT,
                 (dvoid*) &prefetch, (ub4) sizeof(ub4),
                 (ub4) OCI_ATTR_PREFETCH_ROWS, d_errorHandle);

  if (err) {
    throw sPerrorException("setting prefetch: "+getOracleError());
  }


  //  cerr<<"Done preparing '"<<query<<"'"<<endl;

  d_numfields=getNumFields(query);

  for (int n=0; n < d_numfields ; ++n) {
    //    cerr<<"bind: "<<n<<endl;
    OCIDefine* theDefineHandle = NULL;
    err = OCIDefineByPos(d_handle, &theDefineHandle, d_errorHandle, n+1, d_fields[n].content,
                         sizeof(d_fields[n].content) - 1, SQLT_STR, (dvoid*) &d_fields[n].indicator, NULL, NULL, OCI_DEFAULT);

    if (err) {
      throw sPerrorException("Error binding returns: "+getOracleError());
    }
  }

  //  cerr<<"Done binding fields"<<endl;

  d_queryResult = OCIStmtExecute(d_serviceContextHandle, d_handle, d_errorHandle, 1, 0,
                                 (OCISnapshot*)NULL, (OCISnapshot*) NULL, OCI_DEFAULT);

  if (d_queryResult != OCI_SUCCESS && d_queryResult != OCI_SUCCESS_WITH_INFO && d_queryResult != OCI_NO_DATA) {
    throw sPerrorException("executing oracle query: "+getOracleError());
  }

  //  cerr<<"Done executing: "<<d_queryResult<<endl;



  return 0;
}

int SOracle::doQuery(const string &query, result_t &result)
{
  result.clear();
  doQuery(query);

  row_t row;
  while (getRow(row)) {
    result.push_back(row);
  }

  return result.size();
}

bool SOracle::getRow(row_t &row)
{
  row.clear();

  if (d_queryResult == OCI_NO_DATA) {
    OCIHandleFree(d_handle, OCI_HTYPE_STMT);
    d_handle=0;
    return false;
  } else {
    for (int n=0; n < d_numfields ; ++n)
      if (!d_fields[n].indicator) {
        row.push_back(d_fields[n].content);
      } else {
        row.push_back("");
      }
  }

  d_queryResult = OCIStmtFetch(d_handle, d_errorHandle, 1, 0, 0);
  if (d_queryResult != OCI_SUCCESS && d_queryResult != OCI_SUCCESS_WITH_INFO && d_queryResult != OCI_NO_DATA) {
    throw sPerrorException("fetching next row of oracle query: "+getOracleError());
  }


  return true;
}

string SOracle::escape(const string &name)
{
  string a;

  for (string::const_iterator i=name.begin(); i!=name.end(); ++i) {
    if (*i=='\\' || *i=='\'') {
      a+='\\';
    }
    a+=*i;
  }
  return a;
}

#if 0

int main(int argc, char** argv)
{
  for (int outer=0; outer<2; ++outer) {
    try {
      SOracle s(argv[1],"",0,"",argv[2],argv[3]);

      cerr<<"Ready to do queries"<<endl;
      time_t then=time(0);

      int loops;
      for (loops=0; loops < 6; ++loops) {
        s.doQuery("select id, content from records");

        SSql::row_t row;

        while (s.getRow(row)) {
          for (SSql::row_t::const_iterator j=row.begin(); j!=row.end(); ++j) {
            cout <<"'"<< *j<<"', ";
          }
          cout<<"\n";
        }
      }
      time_t spent=time(0)-then;
      if (spent) {
        cerr<<"Loops per second: "<< loops/spent<<endl;
      }
    } catch (string &e) {
      cerr<<"fatal: "<<e<<endl;
    } catch (SSqlException &e) {
      cerr<<e.txtReason()<<endl;
    }
  }
}

#endif