All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.openfeign.querydsl.sql.json.JsonSupport Maven / Gradle / Ivy

/*
 * Copyright 2015, The Querydsl Team (http://www.querydsl.com/team)
 *
 * 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.
 */
package io.github.openfeign.querydsl.sql.json;

import com.querydsl.codegen.AbstractModule;
import com.querydsl.codegen.CodegenModule;
import com.querydsl.codegen.Extension;
import com.querydsl.codegen.TypeMappings;
import com.querydsl.codegen.utils.model.ClassType;
import com.querydsl.codegen.utils.model.SimpleType;
import com.querydsl.codegen.utils.model.TypeCategory;
import io.github.openfeign.querydsl.sql.json.types.JSONType;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;

/** {@code JsonSupport} provides support for j types in code generation */
public final class JsonSupport implements Extension {

  private static void registerTypes(TypeMappings typeMappings) {
    typeMappings.register(
        new ClassType(TypeCategory.MAP, JsonEntity.class),
        new SimpleType(JSONType.class.getSimpleName()));
  }

  private static void addImports(AbstractModule module, String packageName) {
    @SuppressWarnings("unchecked")
    Set imports = module.get(Set.class, CodegenModule.IMPORTS);
    if (imports.isEmpty()) {
      imports = Collections.singleton(packageName);
    } else {
      var old = imports;
      imports = new HashSet<>();
      imports.addAll(old);
      imports.add(packageName);
    }
    module.bind(CodegenModule.IMPORTS, imports);
  }

  /**
   * Register spatial types to the given codegen module
   *
   * @param module module to be customized for spatial support
   */
  @Override
  public void addSupport(AbstractModule module) {
    registerTypes(module.get(TypeMappings.class));
    addImports(module, "io.github.openfeign.querydsl.sql.json.types");
    addImports(module, "io.github.openfeign.querydsl.sql.json");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy