-
Notifications
You must be signed in to change notification settings - Fork 380
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
Add Client.Sync method #386
Merged
Merged
Changes from all commits
Commits
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 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 |
---|---|---|
|
@@ -1294,6 +1294,26 @@ func (f *File) Chmod(mode os.FileMode) error { | |
return f.c.Chmod(f.path, mode) | ||
} | ||
|
||
// Sync requests a flush of the contents of a File to stable storage. | ||
// | ||
// Sync requires the server to support the [email protected] extension. | ||
func (f *File) Sync() error { | ||
id := f.c.nextID() | ||
typ, data, err := f.c.sendPacket(sshFxpFsyncPacket{ | ||
ID: id, | ||
Handle: f.handle, | ||
}) | ||
|
||
switch { | ||
case err != nil: | ||
return err | ||
case typ == sshFxpStatus: | ||
return normaliseError(unmarshalStatus(id, data)) | ||
default: | ||
return &unexpectedPacketErr{want: sshFxpStatus, got: typ} | ||
} | ||
} | ||
|
||
// Truncate sets the size of the current file. Although it may be safely assumed | ||
// that if the size is less than its current size it will be truncated to fit, | ||
// the SFTP protocol does not specify what behavior the server should do when setting | ||
|
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 |
---|---|---|
|
@@ -917,6 +917,26 @@ func (p *StatVFS) MarshalBinary() ([]byte, error) { | |
return buf.Bytes(), err | ||
} | ||
|
||
type sshFxpFsyncPacket struct { | ||
ID uint32 | ||
Handle string | ||
} | ||
|
||
func (p sshFxpFsyncPacket) id() uint32 { return p.ID } | ||
|
||
func (p sshFxpFsyncPacket) MarshalBinary() ([]byte, error) { | ||
puellanivis marked this conversation as resolved.
Show resolved
Hide resolved
|
||
l := 1 + 4 + // type (byte) + ID (uint32) | ||
4 + len("[email protected]") + | ||
4 + len(p.Handle) | ||
|
||
b := make([]byte, 0, l) | ||
b = append(b, sshFxpExtended) | ||
b = marshalUint32(b, p.ID) | ||
b = marshalString(b, "[email protected]") | ||
b = marshalString(b, p.Handle) | ||
return b, nil | ||
} | ||
|
||
type sshFxpExtendedPacket struct { | ||
ID uint32 | ||
ExtendedRequest string | ||
|
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.
Oof, I didn’t check the usage of
require
andassert
as closely as I should have. 🤦♀️