route cache, wcy, wwv. ann caching
[spider.git] / perl / Route / User.pm
index 0cd170299f482243af45b801d767376d48d6bdda..51d14f21382951ed14b422dc43c2521678f6f16c 100644 (file)
@@ -11,21 +11,20 @@ package Route::User;
 use DXDebug;
 use Route;
 use DXUtil;
+use DXJSON;
+use Time::HiRes qw(gettimeofday);
 
 use strict;
 
 use vars qw(%list %valid @ISA $max $filterdef);
 @ISA = qw(Route);
 
-%valid = (
-                 parent => '0,Parent Calls,parray',
-                 ip => '0,IP Address',
-);
-
 $filterdef = $Route::filterdef;
 %list = ();
 $max = 0;
 
+our $cachefn = localdata('route_user_cache');
+
 sub count
 {
        my $n = scalar(keys %list);
@@ -99,7 +98,29 @@ sub delparent
     return $self->_dellist('parent', @_);
 }
 
+sub TO_JSON { return { %{ shift() } }; }
 
+sub write_cache
+{
+       my $json = DXJSON->new;
+       $json->canonical(0)->allow_blessed(1)->convert_blessed(1);
+       
+       my $ta = [ gettimeofday ];
+       $json->indent(1)->canonical(1) if isdbg('routecache');
+       my $s = eval {$json->encode(\%list)};
+       if ($s) {
+               my $fh = IO::File->new(">$cachefn") or confess("writing $cachefn $!");
+               $fh->print($s);
+               $fh->close;
+       } else {
+               dbg("Route::User:Write_cache error '$@'");
+               return;
+       }
+       $json->indent(0)->canonical(0);
+       my $diff = _diffms($ta);
+       my $size = sprintf('%.3fKB', (length($s) / 1000));
+       dbg("Route::User:WRITE_CACHE size: $size time to write: $diff mS");
+}
 
 #
 # generic AUTOLOAD for accessors