GitRepo.vala
[gitlive] / GitRepo.vala
1
2 /**
3  * @class Scm.Git.Repo
4  *
5  * @extends Scm.Repo
6  * 
7  *
8  *
9  */
10 static GitRepo  _GitRepo; 
11  
12 public class GitRepo : Object
13 {
14      
15     public Gee.ArrayList<GitMonitorQueue> cmds;
16
17     public string name;
18     public string gitdir;
19     public string git_working_dir;
20     public bool debug = false;
21     public bool has_local_changes = false;
22     public string host = "";
23     public string git_status;    
24     public string git_diff;        
25     public string ahead_or_behind = "";
26     
27     public Gee.HashMap<string,bool> ignore_files;
28     public GitBranch currentBranch;
29     public Gee.HashMap<string,GitBranch> branches; // accessed in GitBranch..
30         public RooTicket? activeTicket;
31     public  Gee.HashMap<string,GitRepo> cache;
32     
33     
34     
35         public static GitRepo singleton()
36     {
37         if (_GitRepo == null) {
38             _GitRepo = new GitRepo.single();
39             _GitRepo.cache = new Gee.HashMap<string,GitRepo>();
40         }
41         return _GitRepo;
42     }
43  
44     /**
45     * index of.. matching gitpath..
46     */
47     public static int indexOf( Array<GitRepo> repos, string gitpath) {
48         // make a fake object to compare against..
49         var test_repo = GitRepo.get(gitpath);
50         
51         for(var i =0; i < repos.length; i++) {
52             if (repos.index(i).gitdir == test_repo.gitdir) {
53                 return i;
54             }
55         }
56         return -1;
57     
58     }
59     
60
61     
62     
63     
64     public static   Array<GitRepo> list()
65     {
66
67         //if (GitRepo.list_cache !=  null) {
68         //    unowned  Array<GitRepo>    ret = GitRepo.list_cache;
69          //   return ret;
70         //}
71         var cache = GitRepo.singleton().cache;
72         var list_cache = new Array<GitRepo>();
73         
74         var dir = Environment.get_home_dir() + "/gitlive";
75         
76         var f = File.new_for_path(dir);
77         FileEnumerator file_enum;
78         try {
79             file_enum = f.enumerate_children(
80                 FileAttribute.STANDARD_DISPLAY_NAME + ","+ 
81                 FileAttribute.STANDARD_TYPE,
82                 FileQueryInfoFlags.NONE,
83                 null);
84         } catch (Error e) {
85             
86             return list_cache;
87             
88         }
89         
90         FileInfo next_file; 
91         
92         while (true) {
93             
94             try {
95                 next_file = file_enum.next_file(null);
96                 if (next_file == null) {
97                     break;
98                 }
99                 
100             } catch (Error e) {
101                 GLib.debug("Error: %s",e.message);
102                 break;
103             }
104          
105             //print("got a file " + next_file.sudo () + '?=' + Gio.FileType.DIRECTORY);
106             
107             if (next_file.get_file_type() !=  FileType.DIRECTORY) {
108                 next_file = null;
109                 continue;
110             }
111             
112             if (next_file.get_file_type() ==  FileType.SYMBOLIC_LINK) {
113                 next_file = null;
114                 continue;
115             }
116             
117             if (next_file.get_display_name()[0] == '.') {
118                 next_file = null;
119                 continue;
120             }
121             var sp = dir+"/"+next_file.get_display_name();
122            
123             var gitdir = dir + "/" + next_file.get_display_name() + "/.git";
124             
125             if (!FileUtils.test(gitdir, FileTest.IS_DIR)) {
126                 continue;
127             }
128             
129                 var rep =  GitRepo.get(  sp );
130                 list_cache.append_val(rep);             
131             
132         }
133     
134         return list_cache;
135          
136         }
137         
138         public static GitRepo get(string path) 
139         {
140                 var cache = GitRepo.singleton().cache;
141                 if (cache.has_key(path)) {
142                         return cache.get(path);
143                 }
144                 return new GitRepo(path);
145         }
146         
147     private GitRepo.single() {
148                 // used to create the signleton
149         }
150     /**
151      * constructor:
152      * 
153      * @param {Object} cfg - Configuration
154      *     (basically repopath is currently only critical one.)
155      *
156      */
157      
158     private GitRepo(string path) {
159         // cal parent?
160         this.name =   File.new_for_path(path).get_basename();
161         this.ignore_files = new Gee.HashMap<string,bool>();
162         
163         this.git_working_dir = path;
164         this.gitdir = path + "/.git";
165         if (!FileUtils.test(this.gitdir , FileTest.IS_DIR)) {
166             this.gitdir = path; // naked...
167         }
168         this.cmds = new  Gee.ArrayList<GitMonitorQueue> ();
169         
170                 var cache = GitRepo.singleton().cache;
171         //Repo.superclass.constructor.call(this,cfg);
172                 if ( !cache.has_key(path) ) {
173                         cache.set( path, this);
174         }
175         
176         var r = this.git({ "remote" , "get-url" , "--push" , "origin"});
177         var uri = new Soup.URI(r);      
178         this.host = uri.get_host();
179
180         
181         this.loadBranches();
182         this.loadActiveTicket();
183         this.loadStatus();
184     } 
185     
186     public bool is_master_branch()
187     {
188         // special branches that do not allow autopushing now...
189         return this.currentBranch.name == "master" || this.currentBranch.name == "roojs";
190                 
191     }
192     public void init_config()
193     {
194         // managed = 
195         if (this.get_config("managed") == "") {
196                 this.set_config("managed", this.host == "git.roojs.com" ? "1" : "0");
197                 }
198         if (this.get_config("autocommit") == "") {
199                 this.set_config("autocommit", this.host == "git.roojs.com" ? "1" : "0");
200                 }
201         if (this.get_config("autopush") == "") {
202                 this.set_config("autopush", this.host == "git.roojs.com" ? "1" : "0");
203                 }
204     }
205     
206     
207     
208     public string get_config(string key) {
209         return this.git({ "config" , "gitlive." + key });
210         }
211     public string set_config(string key, string value) {
212         return this.git({ "config" , "gitlive." + key, value });
213         }
214     
215     public bool is_managed()
216     {
217         return this.get_config("managed") == "1";
218     }
219     
220     
221     public bool is_autocommit ()
222     {           
223         return this.get_config("autocommit") == "1";            
224     }
225     
226     public void set_autocommit(bool val)
227     {
228                 this.set_config("autocommit", val ? "1" : "0");
229     
230     }
231     
232     public bool is_auto_branch ()
233     {
234         if (this.name == "gitlog") {
235                 return false;
236                 }
237                 // check remote...
238         if (this.is_managed()) {
239                 return true;
240                 }
241         return false;
242         
243  
244     }
245     
246     public void set_auto_branch(bool val)
247     {
248                 if (this.name == "gitlog") {
249                 return;
250                 }
251                 this.set_config("managed", val ? "1" : "0");
252     
253     }
254     public bool is_autopush ()
255     {
256         return this.get_config("autopush") == "1";
257     }
258     public void set_autopush(bool val)
259     {
260
261                 var cur = this.is_autopush();
262                 GLib.debug("SET auto push : %s <= %s", val ? "ON" : "OFF",  cur  ? "ON" : "OFF");
263                 if (cur == val) {
264                         return; // no change..
265                 }
266                 if (!val) {
267                         FileUtils.set_contents(this.gitdir + "/.gitlive-disable-autopush" , "");
268                 } else {
269                         // it exists...
270                         FileUtils.remove(this.gitdir + "/.gitlive-disable-autopush" ); 
271                 }
272     
273     }
274     
275     
276         public void loadStatus()
277         {
278                 var r = this.git({ "status" , "--porcelain" });
279                 this.git_status = r;
280                 this.has_local_changes = r.length > 0;
281                 
282                 var rs = this.git({ "status" , "-sb" });
283
284                 this.ahead_or_behind = rs.contains("[ahead") ? "A" : (rs.contains("[behind") ? "B" : "");
285                 
286                 
287                 this.git_diff  = this.git({ "diff" , "HEAD", "--no-color" });
288         }    
289
290     
291     public void loadBranches()
292     {
293
294         GitBranch.loadBranches(this);
295     }
296      
297     
298     
299     
300     public string branchesToString()
301     {
302         var ret = "";
303                 foreach( var br in this.branches.values) {
304                         if (br.name == "") {
305                                 continue; 
306                         }
307                         ret += ret.length > 0 ? "\n"  : "";
308                         ret += br.name;
309                 
310                 }
311                 return ret;
312         
313     }
314      public static void doMerges(string action, string ticket_id, string commit_message)
315     {
316        GitMonitor.gitmonitor.stop();
317        
318        var commitrevs = "";
319        var sucess = true;
320        foreach(var  repo in GitRepo.singleton().cache.values) {
321                if (repo.activeTicket != null && repo.activeTicket.id == ticket_id) {
322                        var res = repo.doMerge(action,ticket_id, commit_message);
323                        if (!res) {
324                                sucess = false;
325                                continue;
326                        }
327                        commitrevs += commitrevs.length > 0 ? " " : "";
328                        commitrevs += repo.currentBranch.lastrev;
329                }
330        }
331        if (sucess && action == "CLOSE") {
332                RooTicket.singleton().getById(ticket_id).close(commitrevs);
333        }
334        GitMonitor.gitmonitor.start();
335     }
336      
337
338     public bool doMerge(string action, string ticket_id, string commit_message)
339     {
340        // in theory we should check to see if other repo's have got the same branch and merge all them at the same time.
341        // also need to decide which branch we will merge into?
342                    var ret = "";
343                    if (action == "CLOSE" || action == "LEAVE") {
344                                    
345                try {
346                    var oldbranch = this.currentBranch.name;
347                    this.setActiveTicket(null, "master");
348                            string [] cmd = { "merge",   "--squash",  oldbranch };
349                            this.git( cmd );
350                            cmd = { "commit",   "-a" , "-m",  commit_message };
351                            this.git( cmd );
352                            this.push();
353                            this.loadBranches(); // updates lastrev..
354                
355                        var notification = new Notify.Notification(
356                                "Merged branch %s to master".printf(oldbranch),
357                                "",
358                                 "dialog-information"
359                                
360                        );
361
362                        notification.set_timeout(5);
363                        notification.show();   
364                
365                // close ticket..
366                return true; 
367                
368            } catch (Error e) {
369
370                GitMonitor.gitmonitor.pauseError(e.message);
371                return false;
372            }
373            // error~?? -- show the error dialog...
374                    return false;
375        }
376        if (action == "MASTER") {
377                // merge master into ours..
378                        try {
379                        string[] cmd = { "merge",  "master" };
380                        this.git( cmd );
381                        var notification = new Notify.Notification(
382                                        "Merged code from master to %s".printf(this.currentBranch.name),
383                                        "",
384                                         "dialog-information"
385                                        
386                                );
387                                notification.set_timeout(5);
388                                notification.show();   
389                       
390                        return true;
391                        } catch (Error e) {
392                        GitMonitor.gitmonitor.pauseError(e.message);
393                        return false;
394                    }
395            }
396        if (action == "EXIT") {
397                        try {
398                        var oldbranch  = this.currentBranch.name;
399                          this.setActiveTicket(null, "master");
400                        this.loadBranches();
401                        var notification = new Notify.Notification(
402                                        "Left branch %s".printf(oldbranch),
403                                        "",
404                                         "dialog-information"
405                                        
406                                );
407                                notification.set_timeout(5);
408                                notification.show();   
409                        
410                        return true;
411                    } catch (Error e) {
412                        GitMonitor.gitmonitor.pauseError(e.message);
413
414                        return false;                   
415                    }
416                    // error~?? -- show the error dialog...
417
418        }
419        return false;
420     }
421         
422     public void loadActiveTicket()
423     {
424         this.activeTicket = null;
425         if (!FileUtils.test(this.gitdir + "/.gitlive-active-ticket" , FileTest.EXISTS)) {
426                 return;
427         }
428         string ticket_id;
429         FileUtils.get_contents(this.gitdir + "/.gitlive-active-ticket" , out ticket_id);  
430         if (ticket_id.length < 1) {
431                 return;
432                 }
433                 this.activeTicket = RooTicket.singleton().getById(ticket_id.strip());
434         
435         
436     }
437     
438     
439     
440     public bool setActiveTicket(RooTicket? ticket, string branchname)
441     {
442         if (!this.createBranchNamed(branchname)) {
443                 return false;
444                 }
445                 if (ticket != null) {
446                 FileUtils.set_contents(this.gitdir + "/.gitlive-active-ticket" , ticket.id);
447         } else {
448                 FileUtils.remove(this.gitdir + "/.gitlive-active-ticket" );
449         }
450         this.activeTicket = ticket;
451         return true;
452     }
453     
454     public bool createBranchNamed(string branchname)
455     {   
456                 
457
458                      if (this.branches.has_key(branchname)) {
459                         this.switchToExistingBranchNamed(branchname);
460                     
461                     } else {
462                                  this.createNewBranchNamed(branchname); 
463                             
464                     }
465                        var notification = new Notify.Notification(
466                        "Changed to branch %s".printf(branchname),
467                        "",
468                         "dialog-information"
469                        
470                );
471
472                notification.set_timeout(5);
473                notification.show();   
474        
475          
476          this.loadBranches(); // update branch list...
477          //GitMonitor.gitmonitor.runQueue(); // no point - we have hidden the queue..
478          return true;
479     }
480      bool switchToExistingBranchNamed(string branchname)
481      {
482                 var stash = false;
483                                          // this is where it get's tricky...
484                 string files = "";
485                 try {                   
486                                 string[] cmd = { "ls-files" ,  "-m" };                   // list the modified files..
487                                 files = this.git(cmd);
488                                 stash = files.length> 1 ;
489                                 
490                                 
491                                 cmd = { "stash" };                      
492                                 if (stash) { this.git(cmd); }
493                                 
494                                 this.pull();
495                                 
496                                 cmd = { "checkout", branchname  };
497                                 this.git(cmd);
498                   } catch(Error e) {
499                                 GitMonitor.gitmonitor.pauseError(e.message);
500                                 return false;           
501                   }
502                 try {
503                    if (branchname != "master") {
504                        string[] cmd = { "merge", "master"  };
505                             this.git(cmd);
506                             this.push();
507                        
508                     }
509                     
510                 } catch(Error e) {
511                     string[] cmd = { "checkout", "master"  };
512                     this.git(cmd);
513                         GitMonitor.gitmonitor.pauseError(
514                                 "Use\n\na) git checkout %s\nb) git mergetool\nc) git commit\nd) git push\n d) stash pop \ne) start gitlive again\n".printf(
515                                         branchname)
516                                  + e.message
517                         );
518                         return false;           
519                  
520                 }
521                 try {                                   
522                     string[]  cmd = { "stash", "pop"  };
523                     if (stash) { 
524                         this.git(cmd); 
525                         var fl = files.split("\n");
526                         cmd = { "commit", "-m" , "Changed " + string.joinv("",fl) };
527                         foreach(var f in fl) {
528                                 if (f.length < 1) continue;
529                                 cmd += f;
530                         }
531                         this.git(cmd);                              
532                 }
533              
534
535                    
536                 } catch(Error ee) {
537                         GitMonitor.gitmonitor.pauseError(ee.message);
538                         return false;           
539                 }
540        this.push();
541        return true;                             
542                  
543      }
544     
545     
546     
547      bool createNewBranchNamed(string branchname)
548      {
549                 var stash = false;
550                  try {                                  
551                                 string[] cmd = { "ls-files" ,  "-m" };                   // list the modified files..
552                                 var files = this.git(cmd);
553                                 stash = files.length> 1 ;
554                         
555                          cmd = { "checkout", "-b" , branchname  };
556                         this.git(cmd);
557
558                cmd = { "push", "-u" , "origin" ,"HEAD"  };
559                         this.git(cmd);
560                                 if (stash) { 
561
562                                 var fl = files.split("\n");
563                                 cmd = { "commit", "-m" , "Changed " + string.joinv("",fl) };
564                                 foreach(var f in fl) {
565                                         if (f.length < 1) continue;
566                                         cmd += f;
567                                 }
568                                 this.git(cmd);  
569                                 this.push();                        
570                         }
571
572              
573                 } catch(Error ee) {
574                                 GitMonitor.gitmonitor.pauseError(ee.message);
575                                 return false;           
576                         }
577                         return true;
578      
579      }
580     
581     
582     
583     /**
584      * add:
585      * add files to track.
586      *
587      * @argument {Array} files the files to add.
588      */
589     public string add ( Gee.ArrayList<GitMonitorQueue> files ) throws Error, SpawnError
590     {
591         // should really find out if these are untracked files each..
592         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
593         // not sure if that is how git works.. but just be certian.
594         var ret = "";
595         for (var i = 0; i < files.size;i++) {
596             var f = files.get(i).vname;
597             try {
598                 string[] cmd = { "add",    f  };
599                 this.git( cmd );
600             } catch (Error e) {
601                 ret += e.message  + "\n";
602             }        
603
604         }
605         return ret;
606     }
607         
608     public bool is_ignore(string fname) throws Error, SpawnError
609     {
610                 if (fname == ".gitignore") {
611                         this.ignore_files.clear();
612                 }
613                 
614                 if (this.ignore_files.has_key(fname)) {
615                         return this.ignore_files.get(fname);
616                 }
617                 
618                 try {
619                         var ret = this.git( { "check-ignore" , fname } );
620                         this.ignore_files.set(fname, ret.length >  0);
621                         return ret.length > 0;
622                 } catch (SpawnError e) {
623                         this.ignore_files.set(fname, false);
624                         return false;
625                 }
626                  
627     } 
628     
629     
630       /**
631      * remove:
632      * remove files to track.
633      *
634      * @argument {Array} files the files to add.
635      */
636     public string remove  ( Gee.ArrayList<GitMonitorQueue> files ) throws Error, SpawnError
637     {
638         // this may fail if files do not exist..
639         // should really find out if these are untracked files each..
640         // we run multiple versions to make sure that if one failes, it does not ignore the whole lot..
641         // not sure if that is how git works.. but just be certian.
642         var ret = "";
643
644         for (var i = 0; i < files.size;i++) {
645             var f = files.get(i).vname;
646             try {
647                 string[] cmd = { "rm",  "-f" ,  f  };
648                 this.git( cmd );
649             } catch (Error e) {
650                 ret += e.message  + "\n";
651             }        
652         }
653
654         return ret;
655
656     }
657     
658     
659     /**
660      * commit:
661      * perform a commit.
662      *
663      * @argument {Object} cfg commit configuration
664      * 
665      * @property {String} name (optional)
666      * @property {String} email (optional)
667      * @property {String} changed (date) (optional)
668      * @property {String} reason (optional)
669      * @property {Array} files - the files that have changed. 
670      * 
671      */
672      
673     public string commit ( string message, Gee.ArrayList<GitMonitorQueue> files  ) throws Error, SpawnError
674     {
675         
676
677         /*
678         var env = [];
679
680         if (typeof(cfg.name) != 'undefined') {
681             args.push( {
682                 'author' : cfg.name + ' <' + cfg.email + '>'
683             });
684             env.push(
685                 "GIT_COMMITTER_NAME" + cfg.name,
686                 "GIT_COMMITTER_EMAIL" + cfg.email
687             );
688         }
689
690         if (typeof(cfg.changed) != 'undefined') {
691             env.push("GIT_AUTHOR_DATE= " + cfg.changed )
692             
693         }
694         */
695         string[] args = { "commit", "-m" };
696         args +=  (message.length > 0  ? message : "Changed" );
697         for (var i = 0; i< files.size ; i++ ) {
698             args += files.get(i).vname; // full path?
699         }
700          
701         return this.git(args);
702     }
703     
704     /**
705      * pull:
706      * Fetch and merge remote repo changes into current branch..
707      *
708      * At present we just need this to update the current working branch..
709      * -- maybe later it will have a few options and do more stuff..
710      *
711      */
712     public string pull () throws Error, SpawnError
713     {
714         // should probably hand error conditions better... 
715         string[] cmd = { "pull" , "--no-edit" };
716         return this.git( cmd );
717
718         
719     }
720     
721     public delegate void GitAsyncCallback (GitRepo repo, int err, string str);
722     public void pull_async(GitAsyncCallback cb) 
723     {
724     
725          string[] cmd = { "pull" , "--no-edit" };
726          this.git_async( cmd , cb);
727          
728     
729     }
730     
731     /**
732      * push:
733      * Send local changes to remote repo(s)
734      *
735      * At present we just need this to push the current branch.
736      * -- maybe later it will have a few options and do more stuff..
737      *
738      */
739     public string push () throws Error, SpawnError
740     {
741         // should 
742         return this.git({ "push"  });
743         
744     }
745     
746     
747     
748      /**
749      * git:
750      * The meaty part.. run spawn.. with git..
751      *
752      *
753      */
754     
755     public string git(string[] args_in ) throws Error, SpawnError
756     {
757         // convert arguments.
758         
759         string[]  args = { "git" };
760         //args +=  "--git-dir";
761         //args +=  this.gitdir;
762         args +=  "--no-pager";
763  
764  
765         //if (this.gitdir != this.repopath) {
766         //    args +=   "--work-tree";
767          //   args += this.repopath; 
768         //}
769         for (var i = 0; i < args_in.length;i++) {
770             args += args_in[i];
771         }            
772
773         //this.lastCmd = args.join(" ");
774         //if(this.debug) {
775             GLib.debug( "CWD=%s",  this.git_working_dir ); 
776             GLib.debug( "cmd: %s", string.joinv (" ", args)); 
777         //}
778
779         string[]   env = {};
780         string  home = "HOME=" + Environment.get_home_dir() ;
781         env +=  home ;
782         // do not need to set gitpath..
783         //if (File.exists(this.repo + '/.git/config')) {
784             //env.push("GITPATH=" + this.repo );
785         //}
786           
787         var cfg = new SpawnConfig(this.git_working_dir , args , env);
788         //cfg.debug = true;
789
790        // may throw error...
791         var sp = new Spawn(cfg);
792       
793         // diff output is a bit big..
794                 if (args_in[0] != "diff") {
795                 GLib.debug( "GOT: %s" , sp.output);
796         }
797         // parse output for some commands ?
798         return sp.output;
799     }
800         
801    unowned GitAsyncCallback git_async_on_callback;
802         public void  git_async( string[] args_in,   GitAsyncCallback cb ) throws Error, SpawnError
803     {
804         // convert arguments.
805        this.git_async_on_callback = cb;
806         string[]  args = { "git" };
807         //args +=  "--git-dir";
808         //args +=  this.gitdir;
809         args +=  "--no-pager";
810  
811  
812         //if (this.gitdir != this.repopath) {
813         //    args +=   "--work-tree";
814          //   args += this.repopath; 
815         //}
816         for (var i = 0; i < args_in.length;i++) {
817             args += args_in[i];
818         }            
819
820         //this.lastCmd = args.join(" ");
821         //if(this.debug) {
822             GLib.debug( "CWD=%s",  this.git_working_dir ); 
823             //print( "cmd: %s\n", string.joinv (" ", args)); 
824         //}
825
826         string[]   env = {};
827         string  home = "HOME=" + Environment.get_home_dir() ;
828         env +=  home ;
829         // do not need to set gitpath..
830         //if (File.exists(this.repo + '/.git/config')) {
831             //env.push("GITPATH=" + this.repo );
832         //}
833         
834
835         var cfg = new SpawnConfig(this.git_working_dir , args , env);
836         cfg.async = true;
837        
838
839        // may throw error...
840         var sp = new Spawn(cfg);
841                 //sp.ref();
842         //this.ref();
843         sp.run(this.git_async_on_complete); 
844          
845     }
846     
847     void git_async_on_complete(int err, string output)
848     {
849                 GLib.debug("GOT %d : %s", err, output);
850                 this.git_async_on_callback(this, err, output);
851 //              this.unref();   
852         //      sp.unref();             
853     
854     
855     }
856     
857  
858          
859     
860  
861     public void update_async(GitAsyncCallback cb) 
862     {
863          string[] cmd = { "fetch" , "--all" };
864          this.git_async( cmd , cb);
865          
866     }
867     
868     
869     static uint update_all_total = 0;
870     static string update_all_after = "";
871      
872     public static void updateAll(string after)
873     {
874                 update_all_after = after;
875                 var tr =  GitRepo.singleton().cache;
876             
877         
878        update_all_total = tr.size;
879        foreach(var repo  in tr.values) {
880                 if (!repo.is_managed()) {
881                         update_all_total--;                     
882                         continue;
883                 }
884            repo.update_async(updateAllCallback); 
885         } 
886
887     }
888     public static void  updateAllCallback(GitRepo repo, int err, string res)
889     {
890         repo.loadBranches();
891         repo.loadStatus();
892         
893         update_all_total--;
894         if (update_all_total > 0 ) {
895                 return;
896                 }
897                 switch (update_all_after) {
898                         case "show_clones":
899                                 Clones.singleton().show();
900                                 break;
901                         default:
902                                 break;
903                 }
904                 return;
905     }
906     
907     
908     
909 }