Add options to read and write analysis to JSON files.
This commit is contained in:
parent
63e4fd59cf
commit
9cc7547525
@ -3,7 +3,7 @@ apply plugin: "application"
|
|||||||
apply plugin: "maven"
|
apply plugin: "maven"
|
||||||
|
|
||||||
group = "com.jdblabs"
|
group = "com.jdblabs"
|
||||||
version = "1.0"
|
version = "1.1"
|
||||||
mainClassName = "com.jdblabs.file.treediff.TreeDiff"
|
mainClassName = "com.jdblabs.file.treediff.TreeDiff"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -8,9 +8,9 @@ import com.fasterxml.jackson.databind.ObjectMapper
|
|||||||
|
|
||||||
public class TreeDiff {
|
public class TreeDiff {
|
||||||
|
|
||||||
public static final String VERSION = "1.0";
|
public static final String VERSION = "1.1";
|
||||||
|
|
||||||
private ObjectMapper objectMapper
|
private static ObjectMapper objectMapper = new ObjectMapper()
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ public class TreeDiff {
|
|||||||
'h': [longName: 'help'],
|
'h': [longName: 'help'],
|
||||||
'v': [longName: 'version'],
|
'v': [longName: 'version'],
|
||||||
'g': [longName: 'gui'],
|
'g': [longName: 'gui'],
|
||||||
'i': [longName: 'analysis-in'],
|
'i': [longName: 'analysis-in', arguments: 2],
|
||||||
'o': [longName: 'analysis-out'],
|
'o': [longName: 'analysis-out', arguments: 1],
|
||||||
's': [longName: 'same'],
|
's': [longName: 'same'],
|
||||||
'S': [longName: 'exclude-same'],
|
'S': [longName: 'exclude-same'],
|
||||||
'c': [longName: 'content-mismatch'],
|
'c': [longName: 'content-mismatch'],
|
||||||
@ -30,6 +30,7 @@ public class TreeDiff {
|
|||||||
'L': [longName: 'exclude-left-only'],
|
'L': [longName: 'exclude-left-only'],
|
||||||
'r': [longName: 'right-only'],
|
'r': [longName: 'right-only'],
|
||||||
'R': [longName: 'exclude-right-only'],
|
'R': [longName: 'exclude-right-only'],
|
||||||
|
'q': [longName: 'quiet'],
|
||||||
'rd': [longName: 'directory', arguments: 1]
|
'rd': [longName: 'directory', arguments: 1]
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -47,11 +48,16 @@ public class TreeDiff {
|
|||||||
|
|
||||||
public static void cli(def opts) {
|
public static void cli(def opts) {
|
||||||
|
|
||||||
|
File rootDir, leftFile, rightFile
|
||||||
|
|
||||||
|
if (opts.rd) rootDir = new File(opts.rd[0] ?: '.')
|
||||||
|
else rootDir = new File('.')
|
||||||
|
|
||||||
def show = [ same: false, content: false, path: false,
|
def show = [ same: false, content: false, path: false,
|
||||||
left: false, right: false]
|
left: false, right: false]
|
||||||
|
|
||||||
// If none of the explicit selectors are given, assume all are expeced.
|
// If none of the explicit selectors are given, assume all are expeced.
|
||||||
if (!opts.s && !opts.c && !opts.p && !opts.l && !opts.r) {
|
if (!opts.s && !opts.c && !opts.p && !opts.l && !opts.r && !opts.q) {
|
||||||
show = [ same: true, content: true, path: true,
|
show = [ same: true, content: true, path: true,
|
||||||
left: true, right: true] }
|
left: true, right: true] }
|
||||||
|
|
||||||
@ -61,33 +67,34 @@ public class TreeDiff {
|
|||||||
if (opts.l) show.left = true; if (opts.L) show.left = false
|
if (opts.l) show.left = true; if (opts.L) show.left = false
|
||||||
if (opts.r) show.right = true; if (opts.R) show.right = false
|
if (opts.r) show.right = true; if (opts.R) show.right = false
|
||||||
|
|
||||||
if (opts.args.size() < 2) {
|
DirAnalysis left, right;
|
||||||
/* TODO: print usage */
|
|
||||||
println "TreeDiff v${VERSION}: exactly two directory paths are required to compare."
|
|
||||||
System.exit(1) }
|
|
||||||
|
|
||||||
|
if (opts.i) {
|
||||||
|
leftFile = resolvePath(opts.i[0], rootDir)
|
||||||
|
rightFile = resolvePath(opts.i[1], rootDir)
|
||||||
|
left = objectMapper.readValue(leftFile, DirAnalysis)
|
||||||
|
right = objectMapper.readValue(rightFile, DirAnalysis)
|
||||||
|
} else {
|
||||||
|
|
||||||
File rootDir, leftDir, rightDir
|
if (opts.args.size() < 2) {
|
||||||
|
/* TODO: print usage */
|
||||||
|
println "TreeDiff v${VERSION}: exactly two directory paths are required to compare."
|
||||||
|
System.exit(1) }
|
||||||
|
|
||||||
if (opts.rd) rootDir = new File(opts.rd[0] ?: '.')
|
leftFile = resolvePath(opts.args[0], rootDir)
|
||||||
else rootDir = new File('.')
|
rightFile = resolvePath(opts.args[0], rootDir)
|
||||||
|
|
||||||
if (opts.args[0].startsWith('/')) leftDir = new File(opts.args[0])
|
if (!leftFile.isDirectory()) {
|
||||||
else leftDir = new File(rootDir, opts.args[0])
|
println "TreeDiff v${VERSION}: '${opts.args[1]}' is not a directory"
|
||||||
|
System.exit(2) }
|
||||||
|
|
||||||
if (opts.args[1].startsWith('/')) rightDir = new File(opts.args[1])
|
if (!rightFile.isDirectory()) {
|
||||||
else rightDir = new File(rootDir, opts.args[1])
|
println "TreeDiff v${VERSION}: '${opts.args[1]}' is not a directory"
|
||||||
|
System.exit(2) }
|
||||||
|
|
||||||
if (!leftDir.exists() || !leftDir.isDirectory()) {
|
left = analyzeDir(leftFile)
|
||||||
println "TreeDiff v${VERSION}: '${opts.args[0]}' cannot be found or is not a directory"
|
right = analyzeDir(rightFile) }
|
||||||
System.exit(2) }
|
|
||||||
|
|
||||||
if (!rightDir.exists() || !rightDir.isDirectory()) {
|
|
||||||
println "TreeDiff v${VERSION}: '${opts.args[1]}' cannot be found or is not a directory"
|
|
||||||
System.exit(2) }
|
|
||||||
|
|
||||||
DirAnalysis left = analyzeDir(leftDir)
|
|
||||||
DirAnalysis right = analyzeDir(rightDir)
|
|
||||||
|
|
||||||
if (show.same) same(left, right).each {
|
if (show.same) same(left, right).each {
|
||||||
println "same: ${it.relativePath}" }
|
println "same: ${it.relativePath}" }
|
||||||
@ -104,6 +111,19 @@ public class TreeDiff {
|
|||||||
if (show.right) firstSideOnly(right, left).each {
|
if (show.right) firstSideOnly(right, left).each {
|
||||||
println "right only: ${it.relativePath}" }
|
println "right only: ${it.relativePath}" }
|
||||||
|
|
||||||
|
if (opts.o) {
|
||||||
|
String rootName = opts.o[0]
|
||||||
|
File leftOut, rightOut
|
||||||
|
|
||||||
|
if (rootName.startsWith('/')) leftOut = new File(rootName + '.left')
|
||||||
|
else leftOut = new File(rootDir, rootName + '.left')
|
||||||
|
|
||||||
|
if (rootName.startsWith('/')) rightOut = new File(rootName + '.right')
|
||||||
|
else rightOut = new File(rootDir, rootName + '.right')
|
||||||
|
|
||||||
|
objectMapper.writeValue(leftOut, left)
|
||||||
|
objectMapper.writeValue(rightOut, right)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static gui(def opts) {
|
public static gui(def opts) {
|
||||||
@ -182,4 +202,15 @@ public class TreeDiff {
|
|||||||
if (b != parentPath.length) return ""
|
if (b != parentPath.length) return ""
|
||||||
return (['.'] + childPath[b..<childPath.length]).join('/') }
|
return (['.'] + childPath[b..<childPath.length]).join('/') }
|
||||||
|
|
||||||
|
public static File resolvePath(String path, File rootDir) {
|
||||||
|
File f
|
||||||
|
if (path.startsWith('/')) f = new File(path)
|
||||||
|
else f = new File(rootDir, path)
|
||||||
|
|
||||||
|
if (!f.exists()) {
|
||||||
|
println "TreeDiff v${VERSION}: '${f.canonicalPath}' cannot be found"
|
||||||
|
System.exit(2) }
|
||||||
|
|
||||||
|
return f
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user