Created
July 17, 2017 00:19
-
-
Save barongun/84d9b6ac00d76b1cc84c0d09e2cd97da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.intellij.database.model.DasTable | |
import com.intellij.database.model.ObjectKind | |
import com.intellij.database.util.Case | |
import com.intellij.database.util.DasUtil | |
/* | |
* Available context bindings: | |
* SELECTION Iterable<DasObject> | |
* PROJECT project | |
* FILES files helper | |
*/ | |
packageName = "com.ipageon.ucms.mvc.vo;" | |
typeMapping = [ | |
(~/(?i)int/) : "long", | |
(~/(?i)number/) : "long", | |
(~/(?i)varchar2/) : "String", | |
(~/(?i)char/) : "short", | |
(~/(?i)float|double|decimal|real/): "double", | |
(~/(?i)datetime|timestamp/) : "java.sql.Timestamp", | |
(~/(?i)date/) : "java.sql.Date", | |
(~/(?i)time/) : "java.sql.Time", | |
(~/(?i)/) : "String" | |
] | |
FILES.chooseDirectoryAndSave("Choose directory", "Choose where to store generated files") { dir -> | |
SELECTION.filter { it instanceof DasTable && it.getKind() == ObjectKind.TABLE }.each { generate(it, dir) } | |
} | |
def generate(table, dir) { | |
def className = javaName(table.getName(), true) | |
def fields = calcFields(table) | |
new File(dir, className + ".java").withPrintWriter { out -> generate(out, className, fields) } | |
} | |
def generate(out, className, fields) { | |
out.println "package $packageName" | |
out.println "" | |
out.println "" | |
out.println "public class $className {" | |
out.println "" | |
fields.each() { | |
if (it.annos != "") out.println " ${it.annos}" | |
out.println " private ${it.type} ${it.name};" | |
} | |
out.println "" | |
fields.each() { | |
out.println "" | |
out.println " public ${it.type} get${it.name.capitalize()}() {" | |
out.println " return ${it.name};" | |
out.println " }" | |
out.println "" | |
out.println " public void set${it.name.capitalize()}(${it.type} ${it.name}) {" | |
out.println " this.${it.name} = ${it.name};" | |
out.println " }" | |
out.println "" | |
} | |
out.println "}" | |
} | |
def calcFields(table) { | |
DasUtil.getColumns(table).reduce([]) { fields, col -> | |
def spec = Case.LOWER.apply(col.getDataType().getSpecification()) | |
def typeStr = typeMapping.find { p, t -> p.matcher(spec).find() }.value | |
fields += [[ | |
name : javaName(col.getName(), false), | |
type : typeStr, | |
annos: ""]] | |
} | |
} | |
def javaName(str, capitalize) { | |
def s = str.split(/(?<=[^\p{IsLetter}])/).collect { Case.LOWER.apply(it).capitalize() } | |
//.join("").replaceAll(/[^\p{javaJavaIdentifierPart}]/, "_") | |
.join("").replaceAll("_", "") | |
capitalize || s.length() == 1? s : Case.LOWER.apply(s[0]) + s[1..-1] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment