aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-05-03 22:29:22 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-03 22:29:22 +0000
commit2229baedd0adc229be29a9e35305db17a32ce2c4 (patch)
treea0f3a89ede64ff0cfcfd0954c2cfb8ad94d2be0d /contrib
parent87d9a293c8080a5c5384c140034b6275e32b2429 (diff)
downloadopenembedded-2229baedd0adc229be29a9e35305db17a32ce2c4.tar.gz
qa/ipkg-diff:
Implement diffing the content of two directories and showing the difference. as mithro pointed out the splitting could be done in one loop and I have other optimisations in my head as well, but this way it just looks sexy and is intuitive.
Diffstat (limited to 'contrib')
-rw-r--r--contrib/qa/ipkg-diff/ipkg-diff54
1 files changed, 54 insertions, 0 deletions
diff --git a/contrib/qa/ipkg-diff/ipkg-diff b/contrib/qa/ipkg-diff/ipkg-diff
index d09ec4e89f..47df98ea92 100644
--- a/contrib/qa/ipkg-diff/ipkg-diff
+++ b/contrib/qa/ipkg-diff/ipkg-diff
@@ -9,12 +9,59 @@
def check_dir(name, error):
+ """
+ Check if the given directory exists, if not error
+ is printed and the application is left.
+ """
import os, sys
import stat
if not os.path.isdir(name):
print error
sys.exit(-1)
+
+def find_packages(dir):
+ import os
+ contents = os.listdir(dir)
+ ipks = []
+ for f in contents:
+ (root,ext) = os.path.splitext(f)
+ if ext == ".ipk":
+ ipks.append( f )
+ return ipks
+
+def diff_dirs( old_ipks, new_ipks ):
+ """
+ We will return three lists. The first one will
+ contain the files that are only in a, the second
+ the files in both directories and the third one
+ will
+ """
+ only_old = [ i for i in old_ipks if i not in new_ipks]
+ both = [ i for i in old_ipks if i in new_ipks ]
+ only_new = [ i for i in new_ipks if i not in old_ipks]
+
+ return only_old, both, only_new
+
+def print_result_start( old, both, new ):
+ """
+ Print the findings of ipkg-diff
+ """
+ print "ipkg-diff diff report"
+ print "%d packages found" % (len(old)+len(both)+len(new))
+ print "# of old/removed packages: %d" % len(old)
+ print "# of new packages: %d" % len(new)
+ print "# of possible changed packages: %d" % len(both)
+ print ""
+
+ if len(old) > 0:
+ for i in old:
+ print "Vanished ipk: %s" % i
+
+ if len(new) > 0:
+ for i in new:
+ print "New ipk: %s" % i
+
if __name__ == "__main__":
import os,sys
if len(sys.argv) != 3:
@@ -23,3 +70,10 @@ if __name__ == "__main__":
check_dir(sys.argv[1], "Source Directory does not exist")
check_dir(sys.argv[2], "Dest Directory does not exists")
+
+ old_ipks = find_packages(sys.argv[1])
+ new_ipks = find_packages(sys.argv[2])
+
+ only_old, both, only_new = diff_dirs( old_ipks, new_ipks )
+
+ print_result_start( only_old, both, only_new )