Added list-copies
command.
This commit is contained in:
parent
7f39ab7de1
commit
cabbdf7450
@ -1,7 +1,7 @@
|
|||||||
#Wed, 01 May 2013 08:54:59 -0500
|
#Wed, 01 May 2013 09:40:28 -0500
|
||||||
lib.local=true
|
lib.local=true
|
||||||
name=jdb-gtd
|
name=jdb-gtd
|
||||||
version=0.3.1
|
version=0.4
|
||||||
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
nailgun.classpath.dir=/home/jdbernard/programs/nailgun/classpath
|
||||||
|
|
||||||
build.number=1
|
build.number=5
|
||||||
|
@ -10,7 +10,7 @@ import org.joda.time.DateTime
|
|||||||
|
|
||||||
public class GTDCLI {
|
public class GTDCLI {
|
||||||
|
|
||||||
public static final String VERSION = "0.3.1"
|
public static final String VERSION = "0.4"
|
||||||
private static String EOL = System.getProperty("line.separator")
|
private static String EOL = System.getProperty("line.separator")
|
||||||
private static GTDCLI nailgunInst
|
private static GTDCLI nailgunInst
|
||||||
|
|
||||||
@ -95,9 +95,9 @@ public class GTDCLI {
|
|||||||
case ~/done/: done(parsedArgs); break
|
case ~/done/: done(parsedArgs); break
|
||||||
case ~/cal|calendar/: calendar(parsedArgs); break
|
case ~/cal|calendar/: calendar(parsedArgs); break
|
||||||
case ~/process/: process(parsedArgs); break
|
case ~/process/: process(parsedArgs); break
|
||||||
|
case ~/list-copies/: listCopies(parsedArgs); break
|
||||||
default:
|
default:
|
||||||
parsedArgs.addFirst(command)
|
println "Unrecognized command: ${command}"
|
||||||
process(parsedArgs)
|
|
||||||
break } } }
|
break } } }
|
||||||
|
|
||||||
protected void process(LinkedList args) {
|
protected void process(LinkedList args) {
|
||||||
@ -267,29 +267,26 @@ public class GTDCLI {
|
|||||||
if (inPath(gtdDirs.projects, oldFile)) {
|
if (inPath(gtdDirs.projects, oldFile)) {
|
||||||
|
|
||||||
// Delete any copies of this item in the next actions folder.
|
// Delete any copies of this item in the next actions folder.
|
||||||
gtdDirs["next-actions"].eachFileRecurse({ file ->
|
findAllCopies(oldFile, gtdDrs."next-actions").each { file ->
|
||||||
if (file.isFile() && md5.digest(file.bytes) == itemMd5) {
|
println "Deleting duplicate entry from the " +
|
||||||
println "Deleting duplicate entry from the " +
|
|
||||||
"${file.parentFile.name} context."
|
"${file.parentFile.name} context."
|
||||||
file.delete() }})
|
file.delete() }
|
||||||
|
|
||||||
// Delete any copies of this item in the waiting folder.
|
// Delete any copies of this item in the waiting folder.
|
||||||
gtdDirs.waiting.eachFileRecurse({ file ->
|
findAllCopies(oldFile, gtdDirs.waiting).each { file ->
|
||||||
if (file.isFile() && md5.digest(file.bytes) == itemMd5) {
|
println "Deleting duplicate entry from the " +
|
||||||
println "Deleting duplicate entry from the " +
|
"${file.parentFile.name} waiting context."
|
||||||
"${file.parentFile.name} waiting context."
|
file.delete() }}
|
||||||
file.delete() }})}
|
|
||||||
|
|
||||||
// Check if this item was in the next-action or waiting folder.
|
// Check if this item was in the next-action or waiting folder.
|
||||||
if (inPath(gtdDirs["next-actions"], oldFile) ||
|
if (inPath(gtdDirs["next-actions"], oldFile) ||
|
||||||
inPath(gtdDirs.waiting, oldFile)) {
|
inPath(gtdDirs.waiting, oldFile)) {
|
||||||
|
|
||||||
// Delete any copies of this item in the projects folder.
|
// Delete any copies of this item in the projects folder.
|
||||||
gtdDirs.projects.eachFileRecurse({ file ->
|
findAllCopies(oldFile, gtdDirs.projects).each { file ->
|
||||||
if (file.isFile() && md5.digest(file.bytes) == itemMd5) {
|
println "Deleting duplicate entry from the " +
|
||||||
println "Deleting duplicate entry from the " +
|
"${file.parentFile.name} project."
|
||||||
"${file.parentFile.name} project."
|
file.delete() }}
|
||||||
file.delete() }})}
|
|
||||||
|
|
||||||
// Delete the original
|
// Delete the original
|
||||||
oldFile.delete()
|
oldFile.delete()
|
||||||
@ -324,6 +321,28 @@ public class GTDCLI {
|
|||||||
|
|
||||||
println " $item" } }
|
println " $item" } }
|
||||||
|
|
||||||
|
protected void listCopies(LinkedList args) {
|
||||||
|
|
||||||
|
args.each { filePath ->
|
||||||
|
def file = new File(filePath)
|
||||||
|
|
||||||
|
if (!file.isAbsolute()) file = new File(workingDir, filePath)
|
||||||
|
|
||||||
|
if (!file.isFile()) {
|
||||||
|
println "${file.canonicalPath} is not a regular file."
|
||||||
|
return }
|
||||||
|
|
||||||
|
String originalRelativePath = getRelativePath(gtdDirs.root, file)
|
||||||
|
println "Copies of $originalRelativePath:"
|
||||||
|
println ""
|
||||||
|
|
||||||
|
findAllCopies(file, gtdDirs.root).each { copy ->
|
||||||
|
if (copy.canonicalPath != file.canonicalPath) {
|
||||||
|
String relativePath = getRelativePath(gtdDirs.root, copy)
|
||||||
|
println " $relativePath" }} }
|
||||||
|
|
||||||
|
args.clear() }
|
||||||
|
|
||||||
protected void printUsage(LinkedList args) {
|
protected void printUsage(LinkedList args) {
|
||||||
|
|
||||||
if (!args) {
|
if (!args) {
|
||||||
@ -402,6 +421,16 @@ exact file contents (MD5 has of the file contents)."""
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected List<File> findAllCopies(File original, File inDir) {
|
||||||
|
def copies = []
|
||||||
|
def originalMD5 = md5.digest(original.bytes)
|
||||||
|
|
||||||
|
inDir.eachFileRecurse { file ->
|
||||||
|
if (file.isFile() && md5.digest(file.bytes) == originalMD5)
|
||||||
|
copies << file }
|
||||||
|
|
||||||
|
return copies }
|
||||||
|
|
||||||
protected boolean inPath(File parent, File child) {
|
protected boolean inPath(File parent, File child) {
|
||||||
def parentPath = parent.canonicalPath.split("/")
|
def parentPath = parent.canonicalPath.split("/")
|
||||||
def childPath = child.canonicalPath.split("/")
|
def childPath = child.canonicalPath.split("/")
|
||||||
@ -422,6 +451,18 @@ exact file contents (MD5 has of the file contents)."""
|
|||||||
// parent path.
|
// parent path.
|
||||||
return true }
|
return true }
|
||||||
|
|
||||||
|
protected String getRelativePath(File parent, File child) {
|
||||||
|
def parentPath = parent.canonicalPath.split("/")
|
||||||
|
def childPath = child.canonicalPath.split("/")
|
||||||
|
|
||||||
|
if (parentPath.length > childPath.length) return ""
|
||||||
|
|
||||||
|
int b = 0
|
||||||
|
while (b < parentPath.length && parentPath[b] == childPath[b] ) b++;
|
||||||
|
|
||||||
|
if (b != parentPath.length) return ""
|
||||||
|
return (['.'] + childPath[b..<childPath.length]).join('/') }
|
||||||
|
|
||||||
protected Map findGtdRootDir(File givenDir) {
|
protected Map findGtdRootDir(File givenDir) {
|
||||||
|
|
||||||
def gtdDirs = [:]
|
def gtdDirs = [:]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user