nice cleanup of script to generate report with functions.
authorChris Koeritz <fred@gruntose.com>
Sun, 20 May 2012 20:58:41 +0000 (16:58 -0400)
committerChris Koeritz <fred@gruntose.com>
Sun, 20 May 2012 20:58:41 +0000 (16:58 -0400)
also added the "weight" of the to-dos, which is just how much disk space the
files are taking up.

scripts/notes/info_overload_report.sh

index 57667e6ed8f3dbcf126fc23c2055ecf2a52b59c5..279a49b664712c43c3707c6050fa99504a4e6953 100644 (file)
@@ -11,66 +11,109 @@ function calculate_depth()
   find "$dir" -type f -exec echo \"{}\" ';' |  grep -v "\.svn" | grep -v "\.git"| grep -v "\.basket" | grep -v "\.version" | grep -v "\.keep" | wc -l | tr -d ' '
 }
 
-##############
+# calculates the size in kilobytes of all the note files in a hierarchy.
+# this is just a raw statistic for how much content all those notes make up.  since
+# we have not separated out all the to-dos in some files (most notably the metaverse
+# backlogs and to-do lists), it's good to also know what kind of girth the notes have.
+function calculate_weight()
+{
+  local dir="$1"; shift
+  find "$dir" -type f -exec echo \"{}\" ';' |  grep -v "\.svn" | grep -v "\.git"| grep -v "\.basket" | grep -v "\.version" | grep -v "\.keep" | xargs ls -al | awk '{ print $5 }' | paste -sd+ | bc
+}
 
-# notes are individual files of tasks, usually, although some are combined.
-note_depth=$(calculate_depth ~/cloud/grunty_notes)
+# produces a report line in our format.
+function format_report_line()
+{
+  local depth="$1"; shift
+  local weight="$1"; shift
+  weight=$((weight / 1024))
+  echo "  $depth\t${weight}kb\t$*\n"
+}
 
-# unsorted files haven't been categorized yet.
-unsorted_depth=$(calculate_depth ~/cloud/unsorted)
+# two parameters are needed: the directory to sum up and the label to use for it in the report.
+# this will calculate the depth and weight for a hierarchy of notes, and then produce a
+# line of reporting for those.
+function analyze_hierarchy_and_report()
+{
+  local dir="$1"; shift
+  local label="$1"; shift
+  local depth=$(calculate_depth "$dir")
+  total_overload=$(($depth + $total_overload))
+  local weight=$(calculate_weight "$dir")
+  total_weight=$(($total_weight + $weight))
+  full_report+=$(format_report_line "$depth" "$weight" "$label")
+}
 
-# source examples need to be sucked into other places, other codebases.  they are not
-# supposed to pile up here.
-source_example_depth=$(calculate_depth ~/cloud/example_source)
+# scans through items in the notes folder that begin with a pattern.
+# each of those is treated as an aggregable portion of the report.
+# first parameter is the title in the report, second and so on are
+# a list of directory patterns to scan and aggregate.
+function analyze_by_dir_patterns()
+{
+  local title="$1"; shift
+  local hier_depth=0
+  local hier_weight=0
+  for i in $@; do
+    temp_depth=$(calculate_depth $i)
+    hier_depth=$(($hier_depth + $temp_depth))
+    temp_weight=$(calculate_weight $i)
+    hier_weight=$(($hier_weight + $temp_weight))
+  done
+  total_overload=$(($hier_depth + $total_overload))
+  total_weight=$(($total_weight + $hier_weight))
+  full_report+=$(format_report_line "$hier_depth" "$hier_weight" "$title")
+}
 
-# the list files are web documents with to-do lists.  individual items are marked with <li>.
-html_item_depth=$(find ~/cloud/grunty_notes/ -type f -iname "*.html" -exec grep "<li" "{}" ';' | wc -l | tr -d ' ')
+##############
 
-# scan across all appropriately named folders in our folders that live in the "cloud".
-cloud_project_depth=0
-for i in ~/cloud/*project* ~/cloud/*research*; do
-  temp_depth=$(calculate_depth $i)
-  cloud_project_depth=$(($cloud_project_depth + $temp_depth))
-done
+# reset these before we add anything...
+total_overload=0
+total_weight=0
 
-# also snag the files labelled as trivia, since they're still to-dos...
-cloud_trivia_depth=0
-for i in ~/cloud/*trivia*; do
-  temp_depth=$(calculate_depth $i)
-  cloud_trivia_depth=$(($cloud_trivia_depth + $temp_depth))
-done
+# start out the report with a header.
+full_report="\
+\n\
+Current information overload consists of:\n\
+\n\
+"
+
+# notes are individual files of tasks, usually, although some are combined.
+analyze_hierarchy_and_report ~/cloud/grunty_notes "grunty notes"
+
+#hmmm: make an html todo scanning function from this.
+# scan web documents for to-do lists.  individual items are marked with <li>.
+# we do this one a bit differently since we have different criteria for html to-do items.
+html_item_depth=$(find ~/cloud/grunty_notes/ -type f -iname "*.html" -exec grep "<li" "{}" ';' | wc -l | tr -d ' ')
+total_overload=$(($html_item_depth + $total_overload))
+html_item_weight=$(find ~/cloud/grunty_notes/ -type f -iname "*.html" -exec grep "<li" "{}" ';' | wc -c | tr -d ' ')
+total_weight=$(($total_weight + $html_item_weight))
+full_report+="$(format_report_line "$html_item_depth" "$html_item_weight" "to-do notes in html")"
 
-# and then count up the things that we think will be cleaned soon, but one thing we have learned
 # is that things that are intended are not always followed up on right away.  this catches us
 # being too hopeful and makes sure nothing seems to be getting done that's lagging.
-cloud_active_depth=0
-for i in ~/cloud/*active*; do
-  temp_depth=$(calculate_depth $i)
-  cloud_active_depth=$(($cloud_active_depth + $temp_depth))
-done
+analyze_by_dir_patterns "active items" ~/cloud/*active*
 
-#hmmm: the find and add thing is starting to look like a useful function.
+# scan across all appropriately named project or research folders that live in the "cloud".
+analyze_by_dir_patterns "project files" ~/cloud/*project* ~/cloud/*research*
 
-##############
+# source examples need to be sucked into other places, other codebases.  they are not
+# supposed to pile up here.
+analyze_hierarchy_and_report ~/cloud/example_source "source examples"
 
-total_overload=$(($note_depth + $html_item_depth + $unsorted_depth + $source_example_depth + $cloud_project_depth + $cloud_trivia_depth + $cloud_active_depth))
+# also snag the files labelled as trivia, since they're still to-dos...
+analyze_by_dir_patterns "trivial notes" ~/cloud/*trivia*
 
-report="\
-\n\
-Current information overload consists of:\n\
-[gathered on $(date)]\n\
-\n\
-  $note_depth\tgrunty notes\n\
-  $html_item_depth\tto-do notes in html\n\
-  $cloud_active_depth\tactive items\n\
-  $cloud_project_depth\tproject files\n\
-  $source_example_depth\tsource examples\n\
-  $cloud_trivia_depth\ttrivial notes\n\
-  $unsorted_depth\tunsorted files\n\
-  -------\n\
-  $total_overload\ttotal items\n\
-\n\
+# and then count up the things that we think will be cleaned soon, but one thing we have learned
+# unsorted files haven't been categorized yet.
+analyze_hierarchy_and_report ~/cloud/unsorted "unsorted files"
+
+full_report+="\n\
+  =====================================\n\
+"
+full_report+="$(format_report_line "$total_overload" "$total_weight" "Total Overload")"
+full_report+="\n\
+[gathered on $(date)]\n\n\
 ##############"
 
-echo -e "$report" | tee -a "$REPORT_FILE"
+echo -e "$full_report" | tee -a "$REPORT_FILE"