Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 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
*
* https://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.
*
* Other licenses:
* -----------------------------------------------------------------------------
* Commercial licenses for this work are available. These replace the above
* Apache-2.0 and offer limited warranties, support, maintenance, and commercial
* database integrations.
*
* For more information, please visit: https://www.jooq.org/legal/licensing
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.jooq.impl;
import static java.lang.Boolean.TRUE;
// ...
import static org.jooq.impl.DSL.inline;
import static org.jooq.impl.DSL.one;
import static org.jooq.impl.DSL.select;
import static org.jooq.impl.Keywords.K_CASE;
import static org.jooq.impl.Keywords.K_ELSE;
import static org.jooq.impl.Keywords.K_END;
import static org.jooq.impl.Keywords.K_NULL;
import static org.jooq.impl.Keywords.K_SWITCH;
import static org.jooq.impl.Keywords.K_THEN;
import static org.jooq.impl.Keywords.K_TRUE;
import static org.jooq.impl.Keywords.K_WHEN;
import static org.jooq.impl.Names.NQ_CASE;
import static org.jooq.impl.Tools.BooleanDataKey.DATA_FORCE_CASE_ELSE_NULL;
import java.util.List;
import org.jooq.CaseConditionStep;
import org.jooq.Condition;
import org.jooq.Context;
import org.jooq.DataType;
import org.jooq.Field;
import org.jooq.Function2;
// ...
import org.jooq.Record1;
// ...
import org.jooq.Select;
import org.jooq.impl.QOM.Tuple2;
import org.jooq.impl.QOM.UnmodifiableList;
/**
* @author Lukas Eder
*/
final class CaseSearched
extends
AbstractField
implements
CaseConditionStep,
QOM.CaseSearched
{
private final List>> when;
private Field else_;
CaseSearched(DataType type) {
super(NQ_CASE, type);
this.when = new QueryPartList<>();
}
CaseSearched(Condition condition, Field result) {
this(result.getDataType());
when(condition, result);
}
// -------------------------------------------------------------------------
// XXX: QueryPart API
// -------------------------------------------------------------------------
@Override
public final CaseConditionStep when(Condition condition, T result) {
return when(condition, Tools.field(result));
}
@Override
public final CaseConditionStep when(Condition condition, Field result) {
when.add(QOM.tuple(condition, result));
return this;
}
@Override
public final CaseConditionStep when(Condition condition, Select extends Record1> result) {
return when(condition, DSL.field(result));
}
@Override
public final CaseConditionStep when(Field condition, T result) {
return when(DSL.condition(condition), result);
}
@Override
public final CaseConditionStep when(Field condition, Field result) {
return when(DSL.condition(condition), result);
}
@Override
public final CaseConditionStep when(Field condition, Select extends Record1> result) {
return when(DSL.condition(condition), result);
}
@Override
public final Field otherwise(T result) {
return else_(result);
}
@Override
public final Field otherwise(Field result) {
return else_(result);
}
@Override
public final Field otherwise(Select extends Record1> result) {
return else_(result);
}
@Override
public final Field else_(T result) {
return else_(Tools.field(result));
}
@Override
public final Field else_(Field result) {
this.else_ = result;
return this;
}
@Override
public final Field else_(Select extends Record1> result) {
return else_(DSL.field(result));
}
@Override
public final void accept(Context> ctx) {
if (when.isEmpty()) {
if (else_ != null)
ctx.visit(else_);
else
ctx.visit(inline(null, getDataType()));
}
else {
switch (ctx.family()) {
default:
acceptNative(ctx);
break;
}
}
}
private final void acceptNative(Context> ctx) {
ctx.visit(K_CASE)
.formatIndentStart();
for (Tuple2> e : when) {
Condition c = e.$1();
ctx.formatSeparator()
.visit(K_WHEN).sql(' ').visit(c).sql(' ')
.visit(K_THEN).sql(' ').visit(e.$2());
}
if (else_ != null)
ctx.formatSeparator()
.visit(K_ELSE).sql(' ').visit(else_);
else if (TRUE.equals(ctx.data(DATA_FORCE_CASE_ELSE_NULL)))
ctx.formatSeparator()
.visit(K_ELSE).sql(' ').visit(K_NULL);
ctx.formatIndentEnd()
.formatSeparator()
.visit(K_END);
}
// -------------------------------------------------------------------------
// XXX: Query Object Model
// -------------------------------------------------------------------------
@Override
public final Function2 super UnmodifiableList extends Tuple2>>, ? super Field, ? extends CaseSearched> $constructor() {
return (w, e) -> {
CaseSearched r = new CaseSearched<>(getDataType());
w.forEach(t -> r.when(t.$1(), t.$2()));
r.else_(e);
return r;
};
}
@Override
public final UnmodifiableList extends Tuple2>> $arg1() {
return QOM.unmodifiable(when);
}
@Override
public final CaseSearched $arg1(UnmodifiableList extends Tuple2>> w) {
return $constructor().apply(w, $else());
}
@Override
public final Field $arg2() {
return else_;
}
@Override
public final CaseSearched $arg2(Field e) {
return $constructor().apply($when(), e);
}
}