Forked from davidwatkins73/Liquibase-XML-inserts.xml.groovy
Created
November 15, 2021 10:28
-
-
Save dannylagrouw/659d671c786e643e34160393b35352f2 to your computer and use it in GitHub Desktop.
Jetbrains Intellij / Datagrip: Data Extractor - allows export of row data into Liquibase compatible insert statements
This file contains 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
/* | |
* Available context bindings: | |
* COLUMNS List<DataColumn> | |
* ROWS Iterable<DataRow> | |
* OUT { append() } | |
* FORMATTER { format(row, col); formatValue(Object, col) } | |
* TRANSPOSED Boolean | |
* plus ALL_COLUMNS, TABLE, DIALECT | |
* | |
* where: | |
* DataRow { rowNumber(); first(); last(); data(): List<Object>; value(column): Object } | |
* DataColumn { columnNumber(), name() } | |
*/ | |
import java.util.regex.Pattern | |
NEWLINE = System.getProperty("line.separator") | |
pattern = Pattern.compile("[^\\w\\d]") | |
def escapeTag(name) { | |
name = pattern.matcher(name).replaceAll("_") | |
return name.isEmpty() || !Character.isLetter(name.charAt(0)) ? "_$name" : name | |
} | |
def printRow = { values, rowTag, namer, valueToString -> | |
OUT.append("""$NEWLINE\t<${rowTag} tableName="${TABLE.name}">$NEWLINE""") | |
values.eachWithIndex { it, index -> | |
def colName = namer(it, index) | |
def str = valueToString(it) | |
OUT.append("""\t\t<column name="${colName}" value="${str}"/>$NEWLINE""") | |
} | |
OUT.append("\t</$rowTag>") | |
} | |
OUT.append( | |
""" | |
<changeSet id="xxx" | |
author="xxx"> | |
\t<comment>Extracted changeset</comment> | |
""") | |
if (!TRANSPOSED) { | |
ROWS.each { row -> printRow(COLUMNS, "insert", {it, _ -> escapeTag(it.name())}) { FORMATTER.format(row, it) } } | |
} | |
else { | |
def values = COLUMNS.collect { new ArrayList<String>() } | |
ROWS.each { row -> COLUMNS.eachWithIndex { col, i -> values[i].add(FORMATTER.format(row, col)) } } | |
values.eachWithIndex { it, index -> printRow(it, escapeTag(COLUMNS[index].name()), { _, i -> "row${i + 1}" }, { it }) } | |
} | |
OUT.append(""" | |
</changeSet> | |
""") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment