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

  1. #!/usr/bin/perl
  2. #  cat-col.pl - Graphs movements by categor
  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: cat-col.pl,v 2.5 1997/05/06 02:33:50 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.  
  142. if ( ! -x "$graphpath/graphcol") {
  143.     die "Cannot launch $graphpath/graphcol\n";
  144. }
  145.  
  146. open(DATA,"| $graphpath/graphcol") || die "Cannot launch graph\n";
  147.  
  148. foreach $lcat (sort keys(%tmp_cat)) {
  149.     
  150.     chop($tmp_cat{$lcat});  # Delete final comma
  151.  
  152.     @keys = split(/,/, $tmp_cat{$lcat});
  153.  
  154.     $subtotal = 0.00;
  155.  
  156.     while ( $#keys >= 0 ) {
  157.         $lkey = shift(@keys);
  158.         $amt  = shift(@keys);
  159.  
  160.         $result = $ALLTRANS{$lkey};
  161.  
  162.         ($key, $date, $check, $desc, $debit, $credit, $cat, $com, $cleared,
  163.          $total) = split(/\t/, $result);
  164.  
  165.         $subtotal = $subtotal + $amt;
  166.         if ( $amt > 0 ) {
  167.             $credit_total = $credit_total + $amt;
  168.         } else {
  169.             $debit_total = $debit_total + $amt;
  170.         }
  171.     }
  172.  
  173.     $lcat =~ s/ /-/g;
  174.     $lcat eq "" and $lcat="<empty>";
  175.     print DATA "$lcat $subtotal\n";
  176. }
  177.  
  178. close(DATA);
  179.  
  180.  
  181. # ----------------------------------------------------------------------------
  182. # $Log: cat-col.pl,v $
  183. # Revision 2.5  1997/05/06 02:33:50  curt
  184. # Added "require memorized".
  185. #
  186. # Revision 2.4  1997/01/28 03:25:38  curt
  187. # Force strict scoping in all perl scripts.
  188. #
  189. # Revision 2.3  1996/12/13 01:25:17  curt
  190. # Updated paths, modified to work with reports.tcl
  191. #
  192. # Revision 2.2  1996/07/13 02:58:32  curt
  193. # Misc. changes.
  194. #
  195. # Revision 2.1  1996/02/27  05:36:10  curt
  196. # Just stumbling around a bit with cvs ... :-(
  197. #
  198. # Revision 2.0  1996/02/27  04:43:20  curt
  199. # Initial 2.0 revision.  (See "Log" files for old history.)
  200.