org.jooq.impl.CaseConditionStepImpl Maven / Gradle / Ivy
/**
* Copyright (c) 2009-2014, Data Geekery GmbH (http://www.datageekery.com)
* All rights reserved.
*
* This work is dual-licensed
* - under the Apache Software License 2.0 (the "ASL")
* - under the jOOQ License and Maintenance Agreement (the "jOOQ License")
* =============================================================================
* You may choose which license applies to you:
*
* - If you're using this work with Open Source databases, you may choose
* either ASL or jOOQ License.
* - If you're using this work with at least one commercial database, you must
* choose jOOQ License
*
* For more information, please visit http://www.jooq.org/licenses
*
* Apache Software License 2.0:
* -----------------------------------------------------------------------------
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* jOOQ License and Maintenance Agreement:
* -----------------------------------------------------------------------------
* Data Geekery grants the Customer the non-exclusive, timely limited and
* non-transferable license to install and use the Software under the terms of
* the jOOQ License and Maintenance Agreement.
*
* This library is distributed with a LIMITED WARRANTY. See the jOOQ License
* and Maintenance Agreement for more details: http://www.jooq.org/licensing
*/
package org.jooq.impl;
import java.util.ArrayList;
import java.util.List;
import org.jooq.CaseConditionStep;
import org.jooq.Clause;
import org.jooq.Condition;
import org.jooq.Configuration;
import org.jooq.Context;
import org.jooq.Field;
import org.jooq.QueryPart;
import org.jooq.Record1;
import org.jooq.Select;
class CaseConditionStepImpl extends AbstractFunction implements CaseConditionStep {
/**
* Generated UID
*/
private static final long serialVersionUID = -1735676153683257465L;
private final List conditions;
private final List> results;
private Field otherwise;
CaseConditionStepImpl(Condition condition, Field result) {
super("case", result.getDataType());
this.conditions = new ArrayList();
this.results = new ArrayList>();
when(condition, result);
}
@Override
public final CaseConditionStep when(Condition condition, T result) {
return when(condition, Utils.field(result));
}
@Override
public final CaseConditionStep when(Condition condition, Field result) {
conditions.add(condition);
results.add(result);
return this;
}
@Override
public final CaseConditionStep when(Condition condition, Select extends Record1> result) {
return when(condition, DSL.field(result));
}
@Override
public final Field otherwise(T result) {
return otherwise(Utils.field(result));
}
@Override
public final Field otherwise(Field result) {
this.otherwise = result;
return this;
}
@Override
public final Field otherwise(Select extends Record1> result) {
return otherwise(DSL.field(result));
}
@Override
final QueryPart getFunction0(Configuration configuration) {
switch (configuration.dialect().family()) {
/* [pro] xx
xxxx xxxxxxx
xxxxxx xxx xxxxxxxxx
xx [/pro] */
default:
return new Native();
}
}
private abstract class Base extends AbstractQueryPart {
/**
* Generated UID
*/
private static final long serialVersionUID = 6146002888421945901L;
@Override
public final Clause[] clauses(Context> ctx) {
return null;
}
}
/* [pro] xx
xxxxxxx xxxxx xxxxxx xxxxxxx xxxx x
xxx
x xxxxxxxxx xxx
xx
xxxxxxx xxxxxx xxxxx xxxx xxxxxxxxxxxxxxxx x xxxxxxxxxxxxxxxxxxxxx
xxxxxxxxx
xxxxxx xxxxx xxxx xxxxxxxxxxxxxxxxx xxxx x
xxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xxx xxxx x xxxxxxxxxxxxxxxxxx
xxx xxxx x x xx x x xxxxx xxxx x
xx xx x xx x
xxxxxxxxxx xxx
x
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxx xx
xxxxxxxxxxxxxxxxxxxxxxx
x
xx xxxxxxxxxx xx xxxxx x
xxxxxxxxxx xx
xxxxxxxxxxxxxxxx
xxxxxxx xx
xxxxxxxxxxxxxxxxxx
x
xxxxxxxxxxxxx
x
x
xx [/pro] */
private class Native extends Base {
/**
* Generated UID
*/
private static final long serialVersionUID = 7850713333675233736L;
@Override
public final void accept(Context> ctx) {
ctx.formatIndentLockStart()
.keyword("case")
.formatIndentLockStart();
int size = conditions.size();
for (int i = 0; i < size; i++) {
if (i > 0) {
ctx.formatNewLine();
}
ctx.sql(" ").keyword("when").sql(" ").visit(conditions.get(i))
.sql(" ").keyword("then").sql(" ").visit(results.get(i));
}
if (otherwise != null) {
ctx.formatNewLine()
.sql(" ").keyword("else").sql(" ").visit(otherwise);
}
ctx.formatIndentLockEnd();
if (size > 1 || otherwise != null) {
ctx.formatSeparator();
}
else {
ctx.sql(" ");
}
ctx.keyword("end")
.formatIndentLockEnd();
}
}
}