platform/test/models/car.orm.g.dart

157 lines
4.8 KiB
Dart
Raw Normal View History

2017-06-17 16:45:31 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
// **************************************************************************
2017-06-18 04:19:05 +00:00
// Generator: PostgresORMGenerator
2017-06-17 16:45:31 +00:00
// Target: class _Car
// **************************************************************************
2017-06-24 21:21:32 +00:00
import 'dart:async';
import 'package:angel_orm/angel_orm.dart';
import 'package:postgres/postgres.dart';
import 'car.dart';
class CarQuery {
final List<String> _and = [];
final List<String> _or = [];
final List<String> _not = [];
final CarQueryWhere where = new CarQueryWhere();
void and(CarQuery other) {
var compiled = other.where.toWhereClause();
if (compiled != null) {
_and.add(compiled);
}
}
void or(CarQuery other) {
var compiled = other.where.toWhereClause();
if (compiled != null) {
_or.add(compiled);
}
}
void not(CarQuery other) {
var compiled = other.where.toWhereClause();
if (compiled != null) {
_not.add(compiled);
}
}
2017-06-30 22:39:17 +00:00
String toSql() {
var buf = new StringBuffer('SELECT * FROM "cars"');
var whereClause = where.toWhereClause();
if (whereClause != null) {
buf.write(' ' + whereClause);
}
buf.write(';');
return buf.toString();
}
2017-06-24 21:21:32 +00:00
static Car parseRow(List row) {
return new Car.fromJson({
'id': row[0].toString(),
'make': row[1],
'description': row[2],
'family_friendly': row[3] == 1,
2017-06-30 22:39:17 +00:00
'recalled_at': row[4],
'created_at': row[5],
'updated_at': row[6]
2017-06-24 21:21:32 +00:00
});
}
Stream<Car> get(PostgreSQLConnection connection) {
StreamController<Car> ctrl = new StreamController<Car>();
connection.query(toSql()).then((rows) {
rows.map(parseRow).forEach(ctrl.add);
ctrl.close();
}).catchError(ctrl.addError);
return ctrl.stream;
}
Future<Car> getOne(int id, PostgreSQLConnection connection) {
2017-06-30 22:39:17 +00:00
return connection.query('SELECT * FROM "cars" WHERE "id" = @id;',
2017-06-24 21:21:32 +00:00
substitutionValues: {'id': id}).then((rows) => parseRow(rows.first));
}
Future<Car> update() {}
Future<Car> delete() {}
static Future<Car> insert(PostgreSQLConnection connection,
{String id,
String make,
String description,
bool familyFriendly,
DateTime recalledAt,
DateTime createdAt,
DateTime updatedAt}) async {
2017-06-30 22:39:17 +00:00
print(
'INSERT INTO "cars" ("make", "description", "family_friendly", "recalled_at", "created_at", "updated_at") VALUES (@make, @description, @familyFriendly, @recalledAt, @createdAt, @updatedAt) RETURNING ("id", "make", "description", "family_friendly", "recalled_at", "created_at", "updated_at");');
var __ormNow__ = new DateTime.now();
2017-06-24 21:21:32 +00:00
var result = await connection.query(
2017-06-30 22:39:17 +00:00
'INSERT INTO "cars" ("make", "description", "family_friendly", "recalled_at", "created_at", "updated_at") VALUES (@make, @description, @familyFriendly, @recalledAt, @createdAt, @updatedAt) RETURNING ("id", "make", "description", "family_friendly", "recalled_at", "created_at", "updated_at");',
2017-06-24 21:21:32 +00:00
substitutionValues: {
'make': make,
'description': description,
'familyFriendly': familyFriendly,
'recalledAt': recalledAt,
2017-06-30 22:39:17 +00:00
'createdAt': createdAt != null ? createdAt : __ormNow__,
'updatedAt': updatedAt != null ? updatedAt : __ormNow__
2017-06-24 21:21:32 +00:00
});
return parseRow(result);
}
static Stream<Car> getAll(PostgreSQLConnection connection) =>
new CarQuery().get(connection);
}
class CarQueryWhere {
final StringSqlExpressionBuilder id = new StringSqlExpressionBuilder();
final StringSqlExpressionBuilder make = new StringSqlExpressionBuilder();
final StringSqlExpressionBuilder description =
new StringSqlExpressionBuilder();
final BooleanSqlExpressionBuilder familyFriendly =
new BooleanSqlExpressionBuilder();
final DateTimeSqlExpressionBuilder recalledAt =
new DateTimeSqlExpressionBuilder('recalled_at');
final DateTimeSqlExpressionBuilder createdAt =
new DateTimeSqlExpressionBuilder('created_at');
final DateTimeSqlExpressionBuilder updatedAt =
new DateTimeSqlExpressionBuilder('updated_at');
String toWhereClause() {
final List<String> expressions = [];
if (id.hasValue) {
2017-06-30 22:39:17 +00:00
expressions.add('"id" ' + id.compile());
2017-06-24 21:21:32 +00:00
}
if (make.hasValue) {
2017-06-30 22:39:17 +00:00
expressions.add('"make" ' + make.compile());
2017-06-24 21:21:32 +00:00
}
if (description.hasValue) {
2017-06-30 22:39:17 +00:00
expressions.add('"description" ' + description.compile());
2017-06-24 21:21:32 +00:00
}
if (familyFriendly.hasValue) {
2017-06-30 22:39:17 +00:00
expressions.add('"family_friendly" ' + familyFriendly.compile());
2017-06-24 21:21:32 +00:00
}
if (recalledAt.hasValue) {
expressions.add(recalledAt.compile());
}
if (createdAt.hasValue) {
expressions.add(createdAt.compile());
}
if (updatedAt.hasValue) {
expressions.add(updatedAt.compile());
}
return expressions.isEmpty ? null : ('WHERE ' + expressions.join(' AND '));
}
}