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 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
|
use core:lang;
use lang:bs:macro;
/**
* Base class for an SQL expression.
*/
class SQLExpr on Compiler {
// Position in source.
SrcPos pos;
// Create.
init(SrcPos pos) {
init { pos = pos; }
}
// Resolve this expression. May return some other node. The default behavior is to return the
// node itself, which is what is needed for literals for example.
SQLExpr resolve(ResolveContext context) {
this;
}
// Build this expression.
void build(QueryBuilder into) : abstract;
// Get the type of this expression. Computes the type the first time it is called, and may throw
// a type-checking exception at that time.
Value result() : final {
if (!hasResult) {
computedResult = computeResult();
hasResult = true;
}
computedResult;
}
// Get a Storm expression that corresponds to this expression if available.
lang:bs:Expr? stormExpr() {
null;
}
// Compute the result.
protected Value computeResult() : abstract;
// Is the type computed?
private Bool hasResult;
// What is the cached value of the type.
private Value computedResult;
}
/**
* Literals.
*/
class SQLLiteral extends SQLExpr {
init(SrcPos pos) {
init(pos) {}
}
Bool same(SQLLiteral other) : abstract;
Bool same(Str sqlStr) : abstract;
void toSQL(StrBuf to) : abstract;
Str toSQL() {
StrBuf b;
toSQL(b);
b.toS;
}
void build(QueryBuilder into) : override {
into.query.put(toSQL());
}
}
/**
* Numeric literal.
*/
class SQLInt extends SQLLiteral {
// Integer value.
Long value;
// Create.
init(SrcPos pos, Str value) {
init(pos) {
value = value.toLong;
}
}
// Build.
void toSQL(StrBuf to) : override {
to << value;
}
// Get a Storm expression.
lang:bs:Expr? stormExpr() : override {
lang:bs:NumLiteral(pos, value);
}
// Result.
Value computeResult() : override {
// TODO: Use Long for all things here? Then we also need to promote other variables to Longs.
named{Int};
}
// Output.
void toS(StrBuf to) : override {
to << value;
}
// Equality.
Bool same(SQLLiteral other) : override {
unless (other as SQLInt)
return false;
return value == other.value;
}
Bool same(Str other) : override {
unless (o = other.long)
return false;
o == value;
}
}
/**
* Float literal.
*/
class SQLFloat extends SQLLiteral {
// Float value.
Double value;
// Create.
init(SrcPos pos, Str value) {
init(pos) {
value = value.toDouble;
}
}
// Build.
void toSQL(StrBuf into) : override {
// TODO: Ensure that the representation is appropriate...
into << value;
}
// Get a Storm expression.
lang:bs:Expr? stormExpr() : override {
lang:bs:NumLiteral(pos, value);
}
// Result.
Value computeResult() : override {
named{Double};
}
// Output.
void toS(StrBuf to) : override {
to << value;
}
// Equality.
Bool same(SQLLiteral other) : override {
unless (other as SQLFloat)
return false;
return value == other.value;
}
Bool same(Str other) : override {
unless (o = other.double)
return false;
o == value;
}
}
/**
* String literal.
*/
class SQLStr extends SQLLiteral {
// String value.
Str value;
// Create.
init(SrcPos pos, Str value) {
init(pos) {
value = value.unescape;
}
}
// Build.
void toSQL(StrBuf into) : override {
into << "'";
for (ch in value) {
// Double any single quotes. That is enough.
if (ch.codepoint == 0x27)
into << ch << ch;
else
into << ch;
}
into << "'";
}
// Get a Storm expression.
lang:bs:Expr? stormExpr() : override {
lang:bs:StrLiteral(pos, value);
}
// Result.
Value computeResult() : override {
named{Str};
}
// Output.
void toS(StrBuf to) : override {
to << "\"" << value.escape() << "\"";
}
// Equality.
Bool same(SQLLiteral other) : override {
unless (other as SQLStr)
return false;
return value == other.value;
}
Bool same(Str other) : override {
other == value.toSQLStrLiteral;
}
}
/**
* Name of something. Either something in Basic Storm, or something in SQL.
*
* We don't resolve this node immediately.
*/
class SQLName extends SQLExpr {
// Table name, if present.
Str? table;
// The unresolved name.
Str name;
// Create.
init(SrcPos pos, SStr value) {
init(pos) {
name = value.v;
}
}
// Create, a dotted name.
init(SrcPos pos, SStr table, SStr column) {
init(pos) {
table = table.v;
name = column.v;
}
}
// Resolve.
SQLExpr resolve(ResolveContext context) : override {
// Try to resolve the name.
if (result = context.resolve(pos, table, name)) {
return SQLColumn(pos, result.table, result.column);
}
if (table) {
// If we have a table name, we can't do anything more.
if (context.typed())
throw SyntaxError(pos, "The name ${table}.${name} can not be resolved to a column.");
} else {
// Ask Basic Storm for guidance...
var bsExpr = lang:bs:namedExpr(context.block, pos, name, lang:bs:Actuals());
unless (bsExpr as lang:bs:UnresolvedName)
return StormValue(pos, bsExpr);
// If the above check failed and we are a typed expression, just return that one. It will
// throw eventually.
if (context.typed())
return StormValue(pos, bsExpr);
}
// If untyped and we did not have a match yet, just use this node. Then we will fail at
// runtime if it was invalid.
this;
}
// Build. Only used in the "unknown" case.
void build(QueryBuilder into) : override {
if (table) {
into.query.name(table);
into.query.put(".");
}
into.query.name(name);
}
// Result (we don't know the type).
Value computeResult() : override {
Value();
}
// Output.
void toS(StrBuf to) : override {
to << "unresolved:";
if (table)
to << table << ".";
to << name;
}
}
/**
* A resolved Storm expression of some kind. Will be bound to the prepared statement.
*/
class StormValue extends SQLExpr {
// The Basic Storm expression.
lang:bs:Expr expr;
// Create.
init(SrcPos pos, lang:bs:Expr expr) {
init(pos) {
expr = expr;
}
}
// Build.
void build(QueryBuilder into) : override {
into.bind(expr);
}
// Get a Storm expression.
lang:bs:Expr? stormExpr() : override {
expr;
}
// Result.
Value computeResult() : override {
expr.result.type.asRef(false);
}
// Output.
void toS(StrBuf to) : override {
to << "bs:(" << expr << ")";
}
}
/**
* Escaped value from Basic Storm.
*/
class Escaped extends SQLExpr {
// Captured syntax tree.
lang:bs:SExpr expr;
// Create.
init(lang:bs:SExpr expr) {
init(expr.pos) {
expr = expr;
}
}
// Resolve.
SQLExpr resolve(ResolveContext context) : override {
StormValue(pos, expr.transform(context.block));
}
// Build.
void build(QueryBuilder into) : override {
throw InternalError("An 'Escaped' node was not transformed.");
}
// Result.
Value computeResult() : override {
throw InternalError("An 'Escaped' node was not transformed.");
}
}
/**
* Reference to a column in SQL.
*/
class SQLColumn extends SQLExpr {
// Table.
Str table;
// Column.
Column column;
init(SrcPos pos, Str table, Column column) {
init(pos) {
table = table;
column = column;
}
}
// Build.
void build(QueryBuilder into) : override {
into.query.name(table);
into.query.put(".");
into.query.name(column.name);
}
// Result.
Value computeResult() : override {
column.datatype.storm;
}
// Output.
void toS(StrBuf to) : override {
to << "column:" << table << "." << column.name;
}
}
/**
* Built-in function in SQL.
*/
class SQLBuiltIn extends SQLExpr {
private Str sql;
private Value type;
init(SrcPos pos, Str sql, Value type) {
init(pos) {
sql = sql;
type = type;
}
}
void build(QueryBuilder into) : override {
into.query.put(sql);
}
Value computeResult() : override {
type;
}
void toS(StrBuf to) : override {
to << sql;
}
}
// The CURRENT DATETIME function.
// Note: This currently only works in sqlite.
SQLBuiltIn currentDateTime(SrcPos pos) {
SQLBuiltIn(pos, "datetime('now')", named{Str});
}
|