-
Notifications
You must be signed in to change notification settings - Fork 996
misc(cel-shed): add a data hash exists | get helper to cel-shed #3494
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ramin
wants to merge
7
commits into
main
Choose a base branch
from
feat/ramin/cel-shed-hash
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
433324b
wip
ramin 05b4c72
rename file, add proper close
ramin 993e463
lint
ramin fa08af4
make it node.store
ramin 6668ad9
hex.DecodeString
ramin cfc0429
add valid commands
ramin e33e95b
handle errors in defers
ramin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,92 @@ | ||
package main | ||
|
||
import ( | ||
"context" | ||
"encoding/hex" | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/celestiaorg/celestia-node/nodebuilder" | ||
"github.com/celestiaorg/celestia-node/share" | ||
"github.com/celestiaorg/celestia-node/share/eds" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
||
var path string | ||
|
||
func init() { | ||
rootCmd.PersistentFlags().StringVar(&path, "node.store", "", "Path to the node store") | ||
} | ||
|
||
var hashCmd = &cobra.Command{ | ||
Use: "hash [command] [root hash]", | ||
Short: "Commands to interact with EDS hashes", | ||
Args: cobra.ExactArgs(2), | ||
RunE: func(_ *cobra.Command, args []string) error { | ||
command := args[0] | ||
|
||
hexData, err := hex.DecodeString(args[1]) | ||
if err != nil { | ||
return fmt.Errorf("failed to decode hex string: %w", err) | ||
} | ||
rootHash := share.DataHash(hexData) | ||
|
||
nodestore, err := nodebuilder.OpenStore(path, nil) | ||
if err != nil { | ||
return err | ||
} | ||
defer func() { | ||
err = errors.Join(err, nodestore.Close()) | ||
}() | ||
|
||
datastore, err := nodestore.Datastore() | ||
if err != nil { | ||
return err | ||
} | ||
|
||
store, err := eds.NewStore(eds.DefaultParameters(), path, datastore) | ||
if err != nil { | ||
return err | ||
} | ||
err = store.Start(context.Background()) | ||
if err != nil { | ||
fmt.Println("Error starting store:", err) | ||
return err | ||
} | ||
Comment on lines
+54
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. defer store.Stop |
||
|
||
switch command { | ||
case "has", "exists": | ||
ramin marked this conversation as resolved.
Show resolved
Hide resolved
|
||
exists, err := store.Has(context.Background(), rootHash) | ||
if err != nil { | ||
fmt.Println("Error checking for root hash:", err) | ||
return err | ||
} | ||
|
||
if exists { | ||
fmt.Printf("Root hash %s exists.\n", rootHash) | ||
} else { | ||
fmt.Printf("Root hash %s does not exist.\n", rootHash) | ||
} | ||
case "get": | ||
eds, err := store.Get(context.Background(), rootHash) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
fmt.Printf("Retrieved EDS for root hash %s\n", rootHash) | ||
|
||
output, err := json.MarshalIndent(eds, "", " ") | ||
if err != nil { | ||
return err | ||
} | ||
|
||
fmt.Println(string(output)) | ||
default: | ||
return fmt.Errorf("unknown command: %s", command) | ||
cristaloleg marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
return nil | ||
}, | ||
} |
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
error reassignment is ineffectual