author | brad <brad> | 2004-04-05 10:58:32 (UTC) |
---|---|---|
committer | brad <brad> | 2004-04-05 10:58:32 (UTC) |
commit | 0b481957a2eebf28b05d9803780d05ad4232aa00 (patch) (unidiff) | |
tree | 85b6b3123f8bbb86a79806ab07d9189c041730ce | |
parent | 900fb3d498891d9aca81c362b2ea3460d1dc3f59 (diff) | |
download | opie-0b481957a2eebf28b05d9803780d05ad4232aa00.zip opie-0b481957a2eebf28b05d9803780d05ad4232aa00.tar.gz opie-0b481957a2eebf28b05d9803780d05ad4232aa00.tar.bz2 |
Regex support for sqlite (finally)
-rw-r--r-- | libopie2/opiedb/osqlitedriver.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/libopie2/opiedb/osqlitedriver.cpp b/libopie2/opiedb/osqlitedriver.cpp index 2c53248..eea1093 100644 --- a/libopie2/opiedb/osqlitedriver.cpp +++ b/libopie2/opiedb/osqlitedriver.cpp | |||
@@ -1,151 +1,181 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | 3 | ||
4 | =. | 4 | =. |
5 | .=l. | 5 | .=l. |
6 | .>+-= | 6 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 7 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 8 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | 9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 10 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 13 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 14 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 16 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 19 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 20 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 21 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 22 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 23 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 24 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 25 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 26 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 27 | Boston, MA 02111-1307, USA. |
28 | 28 | ||
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include "osqlquery.h" | 31 | #include "osqlquery.h" |
32 | #include "osqlitedriver.h" | 32 | #include "osqlitedriver.h" |
33 | 33 | ||
34 | #include <opie2/odebug.h> | 34 | #include <opie2/odebug.h> |
35 | 35 | ||
36 | #include <stdlib.h> | 36 | #include <stdlib.h> |
37 | #include <regex.h> | ||
38 | #include <stdio.h> | ||
37 | 39 | ||
38 | // fromLocal8Bit() does not work as expected. Thus it | 40 | // fromLocal8Bit() does not work as expected. Thus it |
39 | // is replaced by fromLatin1() (eilers) | 41 | // is replaced by fromLatin1() (eilers) |
40 | #define __BUGGY_LOCAL8BIT_ | 42 | #define __BUGGY_LOCAL8BIT_ |
41 | 43 | ||
42 | 44 | ||
43 | using namespace Opie::DB; | 45 | using namespace Opie::DB; |
44 | using namespace Opie::DB::Internal; | 46 | using namespace Opie::DB::Internal; |
45 | 47 | ||
46 | namespace { | 48 | namespace { |
47 | struct Query { | 49 | struct Query { |
48 | OSQLError::ValueList errors; | 50 | OSQLError::ValueList errors; |
49 | OSQLResultItem::ValueList items; | 51 | OSQLResultItem::ValueList items; |
50 | OSQLiteDriver *driver; | 52 | OSQLiteDriver *driver; |
51 | }; | 53 | }; |
52 | } | 54 | } |
53 | 55 | ||
54 | 56 | ||
55 | OSQLiteDriver::OSQLiteDriver( QLibrary *lib ) | 57 | OSQLiteDriver::OSQLiteDriver( QLibrary *lib ) |
56 | : OSQLDriver( lib ) | 58 | : OSQLDriver( lib ) |
57 | { | 59 | { |
58 | m_sqlite = 0l; | 60 | m_sqlite = 0l; |
59 | } | 61 | } |
60 | 62 | ||
61 | 63 | ||
62 | OSQLiteDriver::~OSQLiteDriver() { | 64 | OSQLiteDriver::~OSQLiteDriver() { |
63 | close(); | 65 | close(); |
64 | } | 66 | } |
65 | 67 | ||
66 | 68 | ||
67 | QString OSQLiteDriver::id()const { | 69 | QString OSQLiteDriver::id()const { |
68 | return QString::fromLatin1("SQLite"); | 70 | return QString::fromLatin1("SQLite"); |
69 | } | 71 | } |
70 | 72 | ||
71 | void OSQLiteDriver::setUserName( const QString& ) {} | 73 | void OSQLiteDriver::setUserName( const QString& ) {} |
72 | 74 | ||
73 | 75 | ||
74 | void OSQLiteDriver::setPassword( const QString& ) {} | 76 | void OSQLiteDriver::setPassword( const QString& ) {} |
75 | 77 | ||
76 | 78 | ||
77 | void OSQLiteDriver::setUrl( const QString& url ) { | 79 | void OSQLiteDriver::setUrl( const QString& url ) { |
78 | m_url = url; | 80 | m_url = url; |
79 | } | 81 | } |
80 | 82 | ||
81 | 83 | ||
82 | void OSQLiteDriver::setOptions( const QStringList& ) { | 84 | void OSQLiteDriver::setOptions( const QStringList& ) { |
83 | } | 85 | } |
84 | 86 | ||
87 | /*------------------------------------------------------------------/* | ||
88 | * Functions to patch a regex search into sqlite | ||
89 | * -----------------------------------------------------------------*/ | ||
90 | int sqliteRlikeCompare(const char *zPattern, const char *zString){ | ||
91 | regex_t regex; | ||
92 | int res; | ||
93 | if ( zPattern==NULL || zString==NULL ) { | ||
94 | printf("One of the args was null!\n"); | ||
95 | return 0; | ||
96 | } | ||
97 | res = regcomp(®ex, zPattern, REG_EXTENDED); | ||
98 | if ( res != 0 ) { | ||
99 | printf("Regcomp failed with code %u on string %s\n",res,zPattern); | ||
100 | |||
101 | return 0; | ||
102 | } | ||
103 | res = (regexec(®ex, zString, 0, NULL, 0)==0); | ||
104 | regfree(®ex); | ||
105 | return res; | ||
106 | } | ||
107 | |||
108 | void rlikeFunc(sqlite_func *context, int arg, const char **argv){ | ||
109 | if( argv[0]==0 || argv[1]==0 ) return; | ||
110 | sqlite_set_result_int(context, | ||
111 | sqliteRlikeCompare((const char*)argv[0], | ||
112 | (const char*)argv[1])); | ||
113 | } | ||
85 | 114 | ||
86 | /* | 115 | /* |
87 | * try to open a db specified via setUrl | 116 | * try to open a db specified via setUrl |
88 | * and options | 117 | * and options |
89 | */ | 118 | */ |
90 | bool OSQLiteDriver::open() { | 119 | bool OSQLiteDriver::open() { |
91 | char *error; | 120 | char *error; |
92 | qDebug("OSQLiteDriver::open: about to open"); | 121 | qDebug("OSQLiteDriver::open: about to open"); |
93 | m_sqlite = sqlite_open(m_url.local8Bit(), | 122 | m_sqlite = sqlite_open(m_url.local8Bit(), |
94 | 0, | 123 | 0, |
95 | &error ); | 124 | &error ); |
96 | 125 | ||
97 | /* failed to open */ | 126 | /* failed to open */ |
98 | if (m_sqlite == 0l ) { | 127 | if (m_sqlite == 0l ) { |
99 | // FIXME set the last error | 128 | // FIXME set the last error |
100 | qWarning("OSQLiteDriver::open: %s", error ); | 129 | qWarning("OSQLiteDriver::open: %s", error ); |
101 | free( error ); | 130 | free( error ); |
102 | return false; | 131 | return false; |
103 | } | 132 | } |
133 | sqlite_create_function(m_sqlite,"rlike",2,rlikeFunc,NULL); | ||
104 | return true; | 134 | return true; |
105 | } | 135 | } |
106 | 136 | ||
107 | 137 | ||
108 | /* close the db | 138 | /* close the db |
109 | * sqlite closes them without | 139 | * sqlite closes them without |
110 | * telling failure or success | 140 | * telling failure or success |
111 | */ | 141 | */ |
112 | bool OSQLiteDriver::close() { | 142 | bool OSQLiteDriver::close() { |
113 | if (m_sqlite ) | 143 | if (m_sqlite ) |
114 | sqlite_close( m_sqlite ), m_sqlite=0l; | 144 | sqlite_close( m_sqlite ), m_sqlite=0l; |
115 | 145 | ||
116 | return true; | 146 | return true; |
117 | } | 147 | } |
118 | 148 | ||
119 | 149 | ||
120 | /* Query */ | 150 | /* Query */ |
121 | OSQLResult OSQLiteDriver::query( OSQLQuery* qu) { | 151 | OSQLResult OSQLiteDriver::query( OSQLQuery* qu) { |
122 | if ( !m_sqlite ) { | 152 | if ( !m_sqlite ) { |
123 | // FIXME set error code | 153 | // FIXME set error code |
124 | OSQLResult result( OSQLResult::Failure ); | 154 | OSQLResult result( OSQLResult::Failure ); |
125 | return result; | 155 | return result; |
126 | } | 156 | } |
127 | Query query; | 157 | Query query; |
128 | query.driver = this; | 158 | query.driver = this; |
129 | char *err; | 159 | char *err; |
130 | /* SQLITE_OK 0 if return code > 0 == failure */ | 160 | /* SQLITE_OK 0 if return code > 0 == failure */ |
131 | if ( sqlite_exec(m_sqlite, qu->query(),&call_back, &query, &err) > 0 ) { | 161 | if ( sqlite_exec(m_sqlite, qu->query(),&call_back, &query, &err) > 0 ) { |
132 | qWarning("OSQLiteDriver::query: Error while executing"); | 162 | qWarning("OSQLiteDriver::query: Error while executing"); |
133 | free(err ); | 163 | free(err ); |
134 | // FixMe Errors | 164 | // FixMe Errors |
135 | } | 165 | } |
136 | 166 | ||
137 | OSQLResult result(OSQLResult::Success, | 167 | OSQLResult result(OSQLResult::Success, |
138 | query.items, | 168 | query.items, |
139 | query.errors ); | 169 | query.errors ); |
140 | return result; | 170 | return result; |
141 | } | 171 | } |
142 | 172 | ||
143 | 173 | ||
144 | OSQLTable::ValueList OSQLiteDriver::tables() const { | 174 | OSQLTable::ValueList OSQLiteDriver::tables() const { |
145 | 175 | ||
146 | } | 176 | } |
147 | 177 | ||
148 | 178 | ||
149 | OSQLError OSQLiteDriver::lastError() { | 179 | OSQLError OSQLiteDriver::lastError() { |
150 | OSQLError error; | 180 | OSQLError error; |
151 | return error; | 181 | return error; |