Created skeleton for Groovy implementation, basic Nim implementation.

This commit is contained in:
Joanthan Bernard 2015-02-09 18:38:40 -06:00
commit ed2f7ec54d
5 changed files with 68 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
*.sw?
nimcache/
build/
.gradle/

6
build.gradle Normal file
View File

@ -0,0 +1,6 @@
apply plugin: "groovy"
apply plugin: "maven"
group = "com.jdblabs"
version = "alpa"

View File

@ -0,0 +1,8 @@
package com.jdblabs.file
import com.jdblabs.util.LightOptionParser
public class TreeDiff {
}

39
treediff.nim Normal file
View File

@ -0,0 +1,39 @@
import os, docopt, tables, md5, iterutils, re
proc studyDir(root: string, ignore: Iterable[string]): TableRef[string, string] =
result = newTable[string, string]()
for path in walkDirRec(root):
var relPath = substr(path, len(root))
if foldl(ignore, proc (acc: bool, it: string): bool = acc and match(relPath, re(it)), true): continue
var fileInfo = getFileInfo(path)
if fileInfo.kind == pcFile:
result.add(relPath, $(toMD5(readFile(path))))
elif fileInfo.kind == pcDir:
result.add(relPath, "directory")
when isMainModule:
let doc = """
treediff
Usage:
treediff [-i <regex>]... [<path>]...
treediff (-h | --help)
treediff (-v | --version)
Options:
-h --help Show this usage information.
-v --version Show the program version.
"""
let args = docopt(doc, version = "treediff 0.1")
for root in @(args["<path>"]):
echo "Looking at ", root
echo studyDir(root, @(args["<regex>"]))
echo ""

11
treediff.nimble Normal file
View File

@ -0,0 +1,11 @@
[Package]
name = "treeediff"
version = "0.1.0"
author = "Jonathan Bernard (jdb@jdb-labs.com)"
description = "Tree Diff"
license = "BSD"
bin = "treediff"
[Deps]
Requires: "nim >= 0.10.0, docopt >= 0.1.0, iterutils >= 0.1.0"