home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / cbb / graphs / cat2-col.pl < prev    next >
Perl Script  |  1998-10-07  |  5KB  |  201 lines

  1. #!/usr/bin/perl
  2. #  cat2-col.pl - Graphs expenses by category
  3. #
  4. #  Modified by Arlindo L. Oliveira (aml@inesc.pt)
  5. #
  6. #  Copyright (C) 1994  Curtis L. Olson  - curt@sledge.mn.org
  7. #
  8. #  This program is free software; you can redistribute it and/or modify
  9. #  it under the terms of the GNU General Public License as published by
  10. #  the Free Software Foundation; either version 2 of the License, or
  11. #  (at your option) any later version.
  12. #
  13. #  This program is distributed in the hope that it will be useful,
  14. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #  GNU General Public License for more details.
  17. #
  18. #  You should have received a copy of the GNU General Public License
  19. #  along with this program; if not, write to the Free Software
  20. #  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. # $Id: cat2-col.pl,v 2.5 1997/05/06 02:33:51 curt Exp $
  23. # (Log is kept at end of this file)
  24.  
  25.  
  26. package CBB;
  27.  
  28. use strict;    # don't take no guff
  29.  
  30. my($tmp, $temp, $cbb_incl_dir);
  31. my($key, $date, $check, $desc, $debit, $credit, $cat, $com, $cleared, $total);
  32. my($credit_total, $debit_total, $amt, $lkey, $lcat, $subtotal);
  33. my($tcom, $tamt, $tcat);
  34. my(@keys, %ALLTRANS, @splits);
  35. my($graphpath, $account, $name, $result);
  36.  
  37.  
  38. # return the directory of a file name (this is duplicated in common.pl
  39. # but we need this to find the include directory for common.pl :-(
  40. sub my_file_dirname {
  41.     my($file) = @_;
  42.     my($pos);
  43.  
  44.     $pos = rindex($file, "/");
  45.     if ( $pos >= 0 ) {
  46.     return substr($file, 0, ($pos + 1));
  47.     } else { 
  48.     return "./"; 
  49.     }
  50. }
  51.  
  52. # specify the installed location of the necessary pieces.
  53. $temp = &my_file_dirname($0); chop($temp);
  54. $cbb_incl_dir = &my_file_dirname($temp);
  55. unshift(@INC, $cbb_incl_dir);
  56.  
  57. $graphpath = "/usr/X11R6/lib/X11/cbb/graphs";
  58.  
  59. require "common.pl";
  60. require "reports.pl";
  61. require "engine.pl";
  62. require "memorized.pl";
  63.  
  64.  
  65. ($#ARGV >= 0) || die "Usage: report [ -from date ] [ -to date] accounts";
  66.  
  67.  
  68. # process arguments
  69.  
  70. my($fromdate, $todate, @account_list) = &process_rep_args();
  71.  
  72. if ( $fromdate eq "all" ) {
  73.     $fromdate = "";
  74. }
  75.  
  76. if ( $todate eq "all" ) {
  77.     $todate = "";
  78. }
  79.  
  80. # print "'$fromdate' '$todate' '@account_list'\n";
  81.  
  82. %ALLTRANS = ();
  83.  
  84. # load all matching transactions from all specified accounts (ignoring
  85. # those that are outside the specified date range)
  86.  
  87. my(%tmp_cat) = ();
  88.  
  89. foreach $account ( @account_list ) {
  90.     $name = &file_basename($account);
  91.  
  92.     # open the account
  93.     (&load_trans($account) eq "ok") || die "Cannot open account:  $account";
  94.  
  95.     $result = &first_trans();
  96.     while ( $result ne "none" ) {
  97.         ($key, $date, $check, $desc, $debit, $credit, $cat, $com, $cleared,
  98.          $total) = split(/\t/, $result);
  99.  
  100.         $amt = $credit - $debit;
  101.  
  102.         if ( (($fromdate == 0) || ($fromdate <= $date)) && 
  103.             (($todate == 0) || ($todate >= $date)) ) {
  104.  
  105.             $ALLTRANS{"$key$name"} = $result;
  106.  
  107.             if ( substr($cat, 0, 1) ne "|" ) {
  108.                 $tmp_cat{$cat} .= "$key$name" . "," . $amt . ",";
  109.             } else {
  110.                 # process split
  111.  
  112.                 @splits = split(/\|/, $cat);
  113.                 shift(@splits);
  114.  
  115.                 $tmp = 0;
  116.                 while ( $#splits >= 0 ) {
  117.                     $tcat = shift(@splits);
  118.                     $tcom = shift(@splits);
  119.                     $tamt = shift(@splits);
  120.  
  121.                     $tmp += $tamt;
  122.  
  123.                     # print "processing $tcat $tamt\n";
  124.                     $tmp_cat{$tcat} .= "$key$name" . "," . $tamt . ",";
  125.                 }
  126.                 if ( sprintf("%.2f", $tmp) ne sprintf("%.2f", $amt) ) {
  127.                     printf("WARNING:  Incorrect splits in $date: $desc\n");
  128.                     printf("    %.2f != %.2f\n\n", $tmp, $amt);
  129.                 }
  130.             }
  131.         }
  132.  
  133.         $result = &next_trans();
  134.     }
  135. }
  136.  
  137.  
  138. $credit_total = 0.00;
  139. $debit_total = 0.00;
  140.  
  141. if ( ! -x "$graphpath/graphcolpos") {
  142.     die "Cannot launch $graphpath/graphcolpos\n";
  143. }
  144.  
  145. open(DATA,"| $graphpath/graphcolpos") || die "Cannot launch graph\n";
  146.  
  147. foreach $lcat (sort keys(%tmp_cat)) {
  148.     
  149.     chop($tmp_cat{$lcat});  # Delete final comma
  150.  
  151.     @keys = split(/,/, $tmp_cat{$lcat});
  152.  
  153.     $subtotal = 0.00;
  154.  
  155.     while ( $#keys >= 0 ) {
  156.         $lkey = shift(@keys);
  157.         $amt  = shift(@keys);
  158.  
  159.         $result = $ALLTRANS{$lkey};
  160.  
  161.         ($key, $date, $check, $desc, $debit, $credit, $cat, $com, $cleared,
  162.          $total) = split(/\t/, $result);
  163.  
  164.         $subtotal = $subtotal + $amt;
  165.         if ( $amt > 0 ) {
  166.             $credit_total = $credit_total + $amt;
  167.         } else {
  168.             $debit_total = $debit_total + $amt;
  169.         }
  170.  
  171.     }
  172.  
  173.     $lcat =~ s/ /-/g;
  174.     $lcat eq "" and $lcat="<empty>";
  175.     print DATA "$lcat $subtotal\n";
  176.     # printf(" = %9.2f\n", $subtotal);
  177. }
  178.  
  179. close(DATA);
  180.  
  181.  
  182. # ----------------------------------------------------------------------------
  183. # $Log: cat2-col.pl,v $
  184. # Revision 2.5  1997/05/06 02:33:51  curt
  185. # Added "require memorized".
  186. #
  187. # Revision 2.4  1997/01/28 03:25:41  curt
  188. # Force strict scoping in all perl scripts.
  189. #
  190. # Revision 2.3  1996/12/13 01:25:18  curt
  191. # Updated paths, modified to work with reports.tcl
  192. #
  193. # Revision 2.2  1996/07/13 02:58:33  curt
  194. # Misc. changes.
  195. #
  196. # Revision 2.1  1996/02/27  05:36:12  curt
  197. # Just stumbling around a bit with cvs ... :-(
  198. #
  199. # Revision 2.0  1996/02/27  04:43:21  curt
  200. # Initial 2.0 revision.  (See "Log" files for old history.)
  201.