-
Notifications
You must be signed in to change notification settings - Fork 24
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
feat: add perun types && fix: add marshal method for script group #225
Open
ravi0131
wants to merge
10
commits into
nervosnetwork:v2
Choose a base branch
from
perun-network:v2
base: v2
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 all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
92da1f3
molecule: Add perun types
janbormet a53c8de
molecule: Make changes to perun types regarding funding and payout
janbormet 847ec80
molecule: Distinguish strictly between "script hash" and "code hash"
janbormet bf526a7
molecule: Change Balance array to underlying type Uint64 from Uint128
janbormet 2696c93
molecule: Use 33 bytes compressed SEC1 encoding for public keys
janbormet 676e800
molecule: Remove ParticipantIndex type
janbormet 3461782
molecule: Add OffChainParticipant
janbormet 1f7bfbb
molecule: Remove payment_min_capacity from OffChainParticipant
janbormet e184b64
molecule: Adjust types for sudt support
janbormet d1c9686
feat(transaction): add marshal method for script group
NhoxxKienn 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
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,196 @@ | ||
package molecule | ||
|
||
import ( | ||
"bytes" | ||
"errors" | ||
"strconv" | ||
"strings" | ||
) | ||
|
||
type OffChainParticipantBuilder struct { | ||
pub_key SEC1EncodedPubKey | ||
payment_script Script | ||
unlock_script Script | ||
} | ||
|
||
func (s *OffChainParticipantBuilder) Build() OffChainParticipant { | ||
b := new(bytes.Buffer) | ||
|
||
totalSize := HeaderSizeUint * (3 + 1) | ||
offsets := make([]uint32, 0, 3) | ||
|
||
offsets = append(offsets, totalSize) | ||
totalSize += uint32(len(s.pub_key.AsSlice())) | ||
offsets = append(offsets, totalSize) | ||
totalSize += uint32(len(s.payment_script.AsSlice())) | ||
offsets = append(offsets, totalSize) | ||
totalSize += uint32(len(s.unlock_script.AsSlice())) | ||
|
||
b.Write(packNumber(Number(totalSize))) | ||
|
||
for i := 0; i < len(offsets); i++ { | ||
b.Write(packNumber(Number(offsets[i]))) | ||
} | ||
|
||
b.Write(s.pub_key.AsSlice()) | ||
b.Write(s.payment_script.AsSlice()) | ||
b.Write(s.unlock_script.AsSlice()) | ||
return OffChainParticipant{inner: b.Bytes()} | ||
} | ||
|
||
func (s *OffChainParticipantBuilder) PubKey(v SEC1EncodedPubKey) *OffChainParticipantBuilder { | ||
s.pub_key = v | ||
return s | ||
} | ||
|
||
func (s *OffChainParticipantBuilder) PaymentScript(v Script) *OffChainParticipantBuilder { | ||
s.payment_script = v | ||
return s | ||
} | ||
|
||
func (s *OffChainParticipantBuilder) UnlockScript(v Script) *OffChainParticipantBuilder { | ||
s.unlock_script = v | ||
return s | ||
} | ||
|
||
func NewOffChainParticipantBuilder() *OffChainParticipantBuilder { | ||
return &OffChainParticipantBuilder{pub_key: SEC1EncodedPubKeyDefault(), payment_script: ScriptDefault(), unlock_script: ScriptDefault()} | ||
} | ||
|
||
type OffChainParticipant struct { | ||
inner []byte | ||
} | ||
|
||
func OffChainParticipantFromSliceUnchecked(slice []byte) *OffChainParticipant { | ||
return &OffChainParticipant{inner: slice} | ||
} | ||
func (s *OffChainParticipant) AsSlice() []byte { | ||
return s.inner | ||
} | ||
|
||
func OffChainParticipantDefault() OffChainParticipant { | ||
return *OffChainParticipantFromSliceUnchecked([]byte{155, 0, 0, 0, 16, 0, 0, 0, 49, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 16, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 0, 0, 0, 16, 0, 0, 0, 48, 0, 0, 0, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}) | ||
} | ||
|
||
func OffChainParticipantFromSlice(slice []byte, compatible bool) (*OffChainParticipant, error) { | ||
sliceLen := len(slice) | ||
if uint32(sliceLen) < HeaderSizeUint { | ||
errMsg := strings.Join([]string{"HeaderIsBroken", "OffChainParticipant", strconv.Itoa(int(sliceLen)), "<", strconv.Itoa(int(HeaderSizeUint))}, " ") | ||
return nil, errors.New(errMsg) | ||
} | ||
|
||
totalSize := unpackNumber(slice) | ||
if Number(sliceLen) != totalSize { | ||
errMsg := strings.Join([]string{"TotalSizeNotMatch", "OffChainParticipant", strconv.Itoa(int(sliceLen)), "!=", strconv.Itoa(int(totalSize))}, " ") | ||
return nil, errors.New(errMsg) | ||
} | ||
|
||
if uint32(sliceLen) < HeaderSizeUint*2 { | ||
errMsg := strings.Join([]string{"TotalSizeNotMatch", "OffChainParticipant", strconv.Itoa(int(sliceLen)), "<", strconv.Itoa(int(HeaderSizeUint * 2))}, " ") | ||
return nil, errors.New(errMsg) | ||
} | ||
|
||
offsetFirst := unpackNumber(slice[HeaderSizeUint:]) | ||
if uint32(offsetFirst)%HeaderSizeUint != 0 || uint32(offsetFirst) < HeaderSizeUint*2 { | ||
errMsg := strings.Join([]string{"OffsetsNotMatch", "OffChainParticipant", strconv.Itoa(int(offsetFirst % 4)), "!= 0", strconv.Itoa(int(offsetFirst)), "<", strconv.Itoa(int(HeaderSizeUint * 2))}, " ") | ||
return nil, errors.New(errMsg) | ||
} | ||
|
||
if sliceLen < int(offsetFirst) { | ||
errMsg := strings.Join([]string{"HeaderIsBroken", "OffChainParticipant", strconv.Itoa(int(sliceLen)), "<", strconv.Itoa(int(offsetFirst))}, " ") | ||
return nil, errors.New(errMsg) | ||
} | ||
|
||
fieldCount := uint32(offsetFirst)/HeaderSizeUint - 1 | ||
if fieldCount < 3 { | ||
return nil, errors.New("FieldCountNotMatch") | ||
} else if !compatible && fieldCount > 3 { | ||
return nil, errors.New("FieldCountNotMatch") | ||
} | ||
|
||
offsets := make([]uint32, fieldCount) | ||
|
||
for i := 0; i < int(fieldCount); i++ { | ||
offsets[i] = uint32(unpackNumber(slice[HeaderSizeUint:][int(HeaderSizeUint)*i:])) | ||
} | ||
offsets = append(offsets, uint32(totalSize)) | ||
|
||
for i := 0; i < len(offsets); i++ { | ||
if i&1 != 0 && offsets[i-1] > offsets[i] { | ||
return nil, errors.New("OffsetsNotMatch") | ||
} | ||
} | ||
|
||
var err error | ||
|
||
_, err = SEC1EncodedPubKeyFromSlice(slice[offsets[0]:offsets[1]], compatible) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
_, err = ScriptFromSlice(slice[offsets[1]:offsets[2]], compatible) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
_, err = ScriptFromSlice(slice[offsets[2]:offsets[3]], compatible) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &OffChainParticipant{inner: slice}, nil | ||
} | ||
|
||
func (s *OffChainParticipant) TotalSize() uint { | ||
return uint(unpackNumber(s.inner)) | ||
} | ||
func (s *OffChainParticipant) FieldCount() uint { | ||
var number uint = 0 | ||
if uint32(s.TotalSize()) == HeaderSizeUint { | ||
return number | ||
} | ||
number = uint(unpackNumber(s.inner[HeaderSizeUint:]))/4 - 1 | ||
return number | ||
} | ||
func (s *OffChainParticipant) Len() uint { | ||
return s.FieldCount() | ||
} | ||
func (s *OffChainParticipant) IsEmpty() bool { | ||
return s.Len() == 0 | ||
} | ||
func (s *OffChainParticipant) CountExtraFields() uint { | ||
return s.FieldCount() - 3 | ||
} | ||
|
||
func (s *OffChainParticipant) HasExtraFields() bool { | ||
return 3 != s.FieldCount() | ||
} | ||
|
||
func (s *OffChainParticipant) PubKey() *SEC1EncodedPubKey { | ||
start := unpackNumber(s.inner[4:]) | ||
end := unpackNumber(s.inner[8:]) | ||
return SEC1EncodedPubKeyFromSliceUnchecked(s.inner[start:end]) | ||
} | ||
|
||
func (s *OffChainParticipant) PaymentScript() *Script { | ||
start := unpackNumber(s.inner[8:]) | ||
end := unpackNumber(s.inner[12:]) | ||
return ScriptFromSliceUnchecked(s.inner[start:end]) | ||
} | ||
|
||
func (s *OffChainParticipant) UnlockScript() *Script { | ||
var ret *Script | ||
start := unpackNumber(s.inner[12:]) | ||
if s.HasExtraFields() { | ||
end := unpackNumber(s.inner[16:]) | ||
ret = ScriptFromSliceUnchecked(s.inner[start:end]) | ||
} else { | ||
ret = ScriptFromSliceUnchecked(s.inner[start:]) | ||
} | ||
return ret | ||
} | ||
|
||
func (s *OffChainParticipant) AsBuilder() OffChainParticipantBuilder { | ||
ret := NewOffChainParticipantBuilder().PubKey(*s.PubKey()).PaymentScript(*s.PaymentScript()).UnlockScript(*s.UnlockScript()) | ||
return *ret | ||
} |
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.
Is this file generated?