Fix all the DXUser API changes to use JSON
[spider.git] / cmd / show / isolate.pl
index cefae9dc6dfeab77d6cd30cfdd708002fd6e8e9d..c16515a3908f46b940771dd11a73308adbc6e192 100644 (file)
@@ -8,8 +8,6 @@
 #
 #
 
-use DB_File;
-
 sub handle
 {
        my ($self, $line) = @_;
@@ -31,18 +29,25 @@ sub generate
        my @out;
        my @val;
                                                        
-       my ($action, $count, $key, $data) = (0,0,0,0);
-
-       for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
-               if ($data =~ m{isolate}) {
-                       my $u = DXUser::get_current($key);
-                       if ($u && $u->isolate) {
-                               push @val, $key;
-                               ++$count;
-                       }
-               }
-       } 
+#      my ($action, $count, $key, $data) = (0,0,0,0);
+#
+#      for ($action = DXUser::R_FIRST, $count=0; !$DXUser::dbm->seq($key, $data, $action); $action = DXUser::R_NEXT) {
+#              if ($data =~ m{isolate}) {
+#                      my $u = DXUser::get_current($key);
+#                      if ($u && $u->isolate) {
+#                              push @val, $key;
+#                              ++$count;
+#                      }
+#              }
+#      } 
+       @val = DXUser::scan(sub {
+                                                       my $k = shift;
+                                                       my $l = shift;
+                                                       # cheat, don't decode because we can easily pull it out from the json test
+                                                       return $l =~ m{"isolate":1} ? $k : ();
+                                               });
 
+       my $count = @val;
        my @l;
        foreach my $call (@val) {
                if (@l >= 5) {