/*
 * 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.
 *
 * Other licenses:
 * -----------------------------------------------------------------------------
 * Commercial licenses for this work are available. These replace the above
 * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
 * database integrations.
 *
 * For more information, please visit: http://www.jooq.org/licenses
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 *
 */
package org.jooq.impl;

import static org.jooq.impl.DSL.inline;
import static org.jooq.impl.DSL.xmlparseDocument;
import static org.jooq.impl.DSL.xmlquery;
import static org.jooq.impl.Keywords.K_CONTENT;
import static org.jooq.impl.Keywords.K_DOCUMENT;
import static org.jooq.impl.Names.N_XMLPARSE;
import static org.jooq.impl.SQLDataType.VARCHAR;
import static org.jooq.impl.XMLParse.DocumentOrContent.DOCUMENT;

import org.jooq.Context;
import org.jooq.Field;
import org.jooq.XML;

Author:Lukas Eder
/** * @author Lukas Eder */
final class XMLParse extends AbstractField<XML> {
Generated UID
/** * Generated UID */
private static final long serialVersionUID = 4505809303211506197L; private final Field<String> content; private final DocumentOrContent documentOrContent; XMLParse(Field<String> content, DocumentOrContent documentOrContent) { super(N_XMLPARSE, SQLDataType.XML); this.content = content; this.documentOrContent = documentOrContent; } @Override public final void accept(Context<?> ctx) { switch (ctx.family()) { case POSTGRES: default: acceptStandard(ctx, documentOrContent, content); break; } } private static final void acceptStandard( Context<?> ctx, DocumentOrContent documentOrContent, Field<String> content ) { ctx.visit(N_XMLPARSE).sql('(') .visit(documentOrContent == DOCUMENT ? K_DOCUMENT : K_CONTENT).sql(' ') .visit(content) .sql(')'); } enum DocumentOrContent { DOCUMENT, CONTENT } }