]> Cypherpunks.ru repositories - goredo.git/blobdiff - cleanup.go
isModified check must only look at ifchanges
[goredo.git] / cleanup.go
index 2c4268c9a785df2c54eee40932d403ceeb4910cd..8c757aeebcf4c58d2b1e96ba5e93fa10e0c4b271 100644 (file)
@@ -18,6 +18,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 package main
 
 import (
+       "flag"
        "fmt"
        "io"
        "log"
@@ -33,6 +34,15 @@ const (
        CleanupTmp  = "tmp"
 )
 
+var DryRun *bool
+
+func init() {
+       if CmdName() != CmdNameRedoCleanup {
+               return
+       }
+       DryRun = flag.Bool("n", false, "do no delete files during cleanup, just show them")
+}
+
 func redoDirClean(root, what string) error {
        root, err := filepath.Abs(root)
        if err != nil {
@@ -55,17 +65,22 @@ func redoDirClean(root, what string) error {
                        pth = cwdMustRel(root, fi.Name())
                        switch what {
                        case CleanupLog:
-                               if strings.HasSuffix(fi.Name(), LogSuffix) {
+                               if strings.HasSuffix(fi.Name(), LogSuffix) ||
+                                       strings.HasSuffix(fi.Name(), LogRecSuffix) {
                                        fmt.Println(pth)
-                                       if err = os.Remove(pth); err != nil {
-                                               return err
+                                       if !*DryRun {
+                                               if err = os.Remove(pth); err != nil {
+                                                       return err
+                                               }
                                        }
                                }
                        case CleanupTmp:
                                if strings.HasPrefix(fi.Name(), TmpPrefix) {
                                        fmt.Println(pth)
-                                       if err = os.Remove(pth); err != nil {
-                                               return err
+                                       if !*DryRun {
+                                               if err = os.Remove(pth); err != nil {
+                                                       return err
+                                               }
                                        }
                                }
                        default:
@@ -101,7 +116,9 @@ func cleanupWalker(root, what string) error {
                                if fi.Name() == RedoDir {
                                        if what == CleanupFull {
                                                fmt.Println(pthRel)
-                                               err = os.RemoveAll(pth)
+                                               if !*DryRun {
+                                                       err = os.RemoveAll(pth)
+                                               }
                                        } else {
                                                err = redoDirClean(pth, what)
                                        }
@@ -116,8 +133,10 @@ func cleanupWalker(root, what string) error {
                        if (what == CleanupTmp || what == CleanupFull) &&
                                strings.HasPrefix(fi.Name(), TmpPrefix) {
                                fmt.Println(pthRel)
-                               if err = os.Remove(pth); err != nil {
-                                       return err
+                               if !*DryRun {
+                                       if err = os.Remove(pth); err != nil {
+                                               return err
+                                       }
                                }
                        }
                }