File Coverage

blib/lib/App/bif/sync.pm
Criterion Covered Total %
statement 10 12 83.3
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 16 87.5


line stmt bran cond sub pod time code
1             package App::bif::sync;
2 1     1   1844 use strict;
  1         3  
  1         25  
3 1     1   5 use warnings;
  1         2  
  1         36  
4 1     1   1465 use AnyEvent;
  1         5633  
  1         32  
5 1     1   522 use Bif::Sync::Client;
  0            
  0            
6             use Bif::Mo;
7             use Coro;
8             use DBIx::ThinSQL qw/qv/;
9              
10             our $VERSION = '0.1.5_7';
11             extends 'App::bif';
12              
13             sub run {
14             my $self = shift;
15             my $opts = $self->opts;
16             my $dbw = $self->dbw;
17              
18             # Consider upping PRAGMA cache_size? Or handle that in Bif::Role::Sync?
19             my @hubs = $dbw->xhashrefs(
20             select => [ 'h.id', 'n.name', 'h.location', 'n.uuid' ],
21             from => 'hubs h',
22             inner_join => 'nodes n',
23             on => 'n.id = h.id',
24             $opts->{hub} ? ( where => { 'n.name' => $opts->{hub} } ) : (),
25             order_by => 'n.name',
26             );
27              
28             return $self->err( 'SyncNone', 'no (matching) hubs found' )
29             unless @hubs;
30              
31             $|++; # no buffering
32              
33             foreach my $hub (@hubs) {
34             my $error;
35             my $cv = AE::cv;
36              
37             my $client = Bif::Sync::Client->new(
38             name => $hub->{name},
39             db => $dbw,
40             location => $hub->{location},
41             debug => $opts->{debug},
42             debug_bifsync => $opts->{debug_bifsync},
43             on_update => sub {
44             my $client = shift;
45             $self->lprint( $client->name . ': ' . $_[0] );
46             },
47             on_error => sub {
48             $error = shift;
49             $cv->send;
50             },
51             );
52              
53             my $fh = select;
54             my $coro = async {
55             select $fh;
56              
57             eval {
58             $dbw->txn(
59             sub {
60             my @status = $client->sync_hub( $hub->{id} );
61              
62             unless ( $status[0] eq 'HubMatch'
63             or $status[0] eq 'HubSync' )
64             {
65             $dbw->rollback;
66             $error =
67             "unexpected HubSync/Match status received: @status";
68             return;
69              
70             }
71              
72             if ( $status[0] eq 'HubSync' ) {
73             @status = $client->transfer_hub_changes;
74             if ( $status[0] ne 'TransferHubChanges' ) {
75             $dbw->rollback;
76             $error =
77             "unexpected TransferHubChanges status received: @status";
78             return;
79             }
80             }
81              
82             print "\n";
83             $self->lprint('');
84             my $hub_id = $client->hub_id;
85             my @projects = $dbw->xhashrefs(
86             select_distinct =>
87             [ 'p2.id AS id', 'n.path AS path' ],
88             from => 'projects p',
89             inner_join => 'nodes_tree nt',
90             on => 'nt.parent = p.id',
91             inner_join => 'projects p2',
92             on => 'p2.id = nt.child AND p2.local = 1',
93             inner_join => 'nodes n',
94             on => 'n.id = p2.id',
95             where => {
96             'p.default_hub_id' => $hub_id,
97             },
98             );
99              
100             foreach my $project (@projects) {
101             $client->name("$hub->{name}\[$project->{path}\]");
102             my $status =
103             $client->sync_project( $project->{id} );
104             if ( $status eq 'ProjectSync' ) {
105             @status =
106             $client->transfer_project_related_changes;
107              
108             if ( $status[0] ne
109             'TransferProjectRelatedChanges' )
110             {
111             $dbw->rollback;
112             $error =
113             "unexpected TransferProjectRelatedChanges status received: @status";
114             return;
115             }
116             }
117             elsif ( $status ne 'ProjectMatch' ) {
118             $dbw->rollback;
119             $error =
120             "unexpected sync_project status received: $status";
121             return $status;
122             }
123              
124             print "\n";
125             $self->lprint('');
126             }
127              
128             $dbw->xdo(
129             insert_or_replace_into =>
130             [ 'bifkv', qw/key change_id change_id2/ ],
131             select =>
132             [ qv('last_sync'), 'MAX(c.id)', 'MAX(c.id)', ],
133             from => 'changes c',
134             );
135              
136             return;
137             }
138             );
139             };
140              
141             if ($@) {
142             $error = $@;
143             print "\n";
144             }
145              
146             return $cv->send;
147             };
148              
149             $cv->recv;
150             $client->disconnect;
151              
152             return $self->err( 'Unknown', $error ) if $error;
153              
154             }
155              
156             # TODO make this dependent on how many changes received/made since the last
157             # analyze
158             $dbw->do('ANALYZE');
159              
160             return $self->ok('Sync');
161             }
162              
163             1;
164              
165             __END__