-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d72a4b8
commit fa387ae
Showing
8 changed files
with
95 additions
and
105 deletions.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
import { createErreurStore } from '@dldc/erreur'; | ||
|
||
export type TRsyncErreurData = | ||
| { kind: 'InvalidDiff'; blockIndex: number } | ||
| { kind: 'BlockCountMismatch'; expected: number; actual: number } | ||
| { kind: 'UnexpectedEof' }; | ||
|
||
const RsyncErreurInternal = createErreurStore<TRsyncErreurData>(); | ||
|
||
export const RsyncErreur = RsyncErreurInternal.asReadonly; | ||
|
||
export function throwInvalidDiff(blockIndex: number): never { | ||
throw RsyncErreurInternal.setAndThrow( | ||
`Unexpected diff, patch block after ${blockIndex}, but the block is not matched`, | ||
{ kind: 'InvalidDiff', blockIndex }, | ||
); | ||
} | ||
|
||
export function throwBlockCountMismatch(expected: number, actual: number): never { | ||
throw RsyncErreurInternal.setAndThrow(`Block count mismatch, expected ${expected}, got ${actual}`, { | ||
kind: 'BlockCountMismatch', | ||
expected, | ||
actual, | ||
}); | ||
} | ||
|
||
export function throwUnexpectedEof(): never { | ||
throw RsyncErreurInternal.setAndThrow('Unexpected end of file', { kind: 'UnexpectedEof' }); | ||
} |
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.