-
-
Notifications
You must be signed in to change notification settings - Fork 534
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8409 from dolthub/macneale4/fsck
Introduction of `dolt fsck` support.
- Loading branch information
Showing
33 changed files
with
559 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
// Copyright 2024 Dolthub, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package commands | ||
|
||
import ( | ||
"context" | ||
|
||
"github.com/fatih/color" | ||
|
||
"github.com/dolthub/dolt/go/cmd/dolt/cli" | ||
"github.com/dolthub/dolt/go/libraries/doltcore/doltdb" | ||
"github.com/dolthub/dolt/go/libraries/doltcore/env" | ||
"github.com/dolthub/dolt/go/libraries/utils/argparser" | ||
) | ||
|
||
type FsckCmd struct{} | ||
|
||
var _ cli.Command = FsckCmd{} | ||
|
||
func (cmd FsckCmd) Description() string { | ||
return "Verifies the contents of the database are not corrupted." | ||
} | ||
|
||
var fsckDocs = cli.CommandDocumentationContent{ | ||
ShortDesc: "Verifies the contents of the database are not corrupted.", | ||
LongDesc: "Verifies the contents of the database are not corrupted.", | ||
Synopsis: []string{ | ||
"[--quiet]", | ||
}, | ||
} | ||
|
||
func (cmd FsckCmd) Docs() *cli.CommandDocumentation { | ||
return cli.NewCommandDocumentation(fsckDocs, cmd.ArgParser()) | ||
} | ||
|
||
func (cmd FsckCmd) ArgParser() *argparser.ArgParser { | ||
ap := argparser.NewArgParserWithMaxArgs(cmd.Name(), 0) | ||
ap.SupportsFlag(cli.QuietFlag, "", "Don't show progress. Just print final report.") | ||
|
||
return ap | ||
} | ||
|
||
func (cmd FsckCmd) Name() string { | ||
return "fsck" | ||
} | ||
|
||
func (cmd FsckCmd) Exec(ctx context.Context, commandStr string, args []string, dEnv *env.DoltEnv, _ cli.CliContext) int { | ||
ap := cmd.ArgParser() | ||
apr, _, terminate, status := ParseArgsOrPrintHelp(ap, commandStr, args, fsckDocs) | ||
if terminate { | ||
return status | ||
} | ||
|
||
quiet := apr.Contains(cli.QuietFlag) | ||
|
||
progress := make(chan string, 32) | ||
go fsckHandleProgress(ctx, progress, quiet) | ||
|
||
var report *doltdb.FSCKReport | ||
terminate = func() bool { | ||
defer close(progress) | ||
var err error | ||
report, err = dEnv.DoltDB.FSCK(ctx, progress) | ||
if err != nil { | ||
cli.PrintErrln(err.Error()) | ||
return true | ||
} | ||
// skip printing the report is we were cancelled. Most likely we tripped on the error above first. | ||
select { | ||
case <-ctx.Done(): | ||
cli.PrintErrln(ctx.Err().Error()) | ||
return true | ||
default: | ||
return false | ||
} | ||
}() | ||
if terminate { | ||
return 1 | ||
} | ||
|
||
return printFSCKReport(report) | ||
} | ||
|
||
func printFSCKReport(report *doltdb.FSCKReport) int { | ||
cli.Printf("Chunks Scanned: %d\n", report.ChunkCount) | ||
if len(report.Problems) == 0 { | ||
cli.Println("No problems found.") | ||
return 0 | ||
} else { | ||
for _, e := range report.Problems { | ||
cli.Println(color.RedString("------ Corruption Found ------")) | ||
cli.PrintErrln(e.Error()) | ||
} | ||
|
||
return 1 | ||
} | ||
} | ||
|
||
func fsckHandleProgress(ctx context.Context, progress chan string, quiet bool) { | ||
for item := range progress { | ||
if !quiet { | ||
cli.Println(item) | ||
} | ||
select { | ||
case <-ctx.Done(): | ||
return | ||
default: | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.