cleanup status handling
[MojoFacets.git] / lib / MojoFacets / Changes.pm
1 package MojoFacets::Changes;
2
3 use strict;
4 use warnings;
5
6 use base 'Mojolicious::Controller';
7
8 use Storable;
9 use Data::Dump qw(dump);
10 use MojoFacets::Data;
11
12 sub _changes_path {
13         my $self = shift;
14         my $path = $self->param('path') || $self->session('path');
15         $self->app->home->rel_dir('data') . '/' . $path . '.changes';
16 }
17
18 sub index {
19         my ( $self ) = @_;
20         my $path = $self->param('path') || $self->session('path');
21         my $on_path = $self->param('on_path');
22         my $commit = $self->param('commit');
23         my ( $items, $unique2id );
24         if ( $on_path ) {
25                 $items = $MojoFacets::Data::loaded->{$on_path}->{data}->{items};
26                 if ( ! $items ) {
27                         warn "$on_path not loaded";
28                         $self->redirect_to('/data/index?path=' . $on_path);
29                         return;
30                 }
31                 warn "using ", $#$items + 1, " items from $on_path\n";
32         }
33         my $invalidate_columns;
34         my $changes;
35         my $stats;
36         my $glob = $self->_changes_path . '/*';
37         my $status = 'unknown';
38         foreach my $t ( sort { $a cmp $b } glob $glob ) {
39                 my $e = retrieve($t);
40                 $e->{old} = [ $e->{old} ] unless ref $e->{old} eq 'ARRAY';
41                 if ( $items && exists $e->{unique} ) {
42                         my ($pk,$id) = %{ $e->{unique} };
43                         if ( ! $pk ) {
44                                 $e->{_status} = 'skip';
45                                 $stats->{skip}++;
46                                 push @$changes, $e;
47                                 next;
48                         }
49                         if ( ! defined $unique2id->{$pk} ) {
50                                 warn "unique2id $pk on ", $#$items + 1 ," items\n";
51                                 foreach my $i ( 0 .. $#$items ) {
52                                         $unique2id->{$pk}->{ $items->[$i]->{$pk}->[0] } = $i;
53                                 }
54                         }
55                         $status = 'missing';
56                         if ( my $i = $unique2id->{$pk}->{$id} ) {
57                                 $status = 'found';
58                                 if ( $commit ) {
59                                         my $column = $e->{column} or die "no column";
60                                         $items->[$i]->{$column} = $e->{new};
61                                         warn "# commit $i $column ",dump( $e->{new} );
62                                         $invalidate_columns->{$column}++;
63                                 }
64                         }
65                 } elsif ( my $code = $e->{code} ) {
66                         if ( $commit ) {
67                                 my $commit_changed;
68                                 my $t = time();
69                                 foreach my $i ( 0 .. $#$items ) {
70                                         MojoFacets::Data::__commit_path_code( $on_path, $i, $code, \$commit_changed );
71                                 }
72                                 $t = time() - $t;
73                                 $self->stash( 'commit_changed', $commit_changed );
74                                 warn "commit_changed in $t s ",dump( $e->{commit_changed}, $commit_changed );
75                                 $e->{commit_changed_this} = $commit_changed;
76                                 MojoFacets::Data::__invalidate_path_column( $on_path, $_ ) foreach keys %$commit_changed;
77                                 MojoFacets::Data::__path_rebuild_stats( $on_path );
78                         }
79                         $status = 'code';
80                 } else {
81                         $status = 'unknown';
82                 }
83
84                 $e->{_status} = $status;
85                 $stats->{$status}++;
86
87                 push @$changes, $e;
88         }
89
90
91         foreach my $name ( keys %$invalidate_columns ) {
92                 MojoFacets::Data::__invalidate_path_column( $on_path, $name );
93         }
94
95         MojoFacets::Data::__path_modified( $on_path );
96
97         my @loaded = MojoFacets::Data::__loaded_paths();
98         warn "# loaded paths ",dump @loaded;
99
100         $self->render(
101                 on_path => $on_path || $path,
102                 changes => $changes,
103                 loaded => \@loaded,
104                 stats => $stats,
105         );
106 }
107
108 sub remove {
109         my $self = shift;
110
111         if ( my $t = $self->param('time') ) {
112                 unlink $self->_changes_path . '/' . $t;
113         }
114
115         $self->redirect_to('/changes');
116 }
117
118 1;