git/GitDiffFileStructure.st
author vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
Wed, 19 Sep 2012 01:08:21 +0000
changeset 8 4275f357d3e8
parent 5 57c20a77e549
child 27 a36a11925d3f
permissions -rw-r--r--
- API fixes, more to come

"{ Package: 'stx:libscm/git' }"

GitStructure subclass:#GitDiffFileStructure
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Git-Internal-Structures'
!


!GitDiffFileStructure class methodsFor:'accessing'!

libraryName

    OperatingSystem isUNIXlike ifTrue:[^'libgit2.so'].

    OperatingSystem isMSWINDOWSlike ifTrue:[^'git2.dll'].

    self error:'Library name for host OS is not known'
!

structSize
    "Returns size of undelaying structure in bytes"

    ^40
! !

!GitDiffFileStructure methodsFor:'accessing'!

flags
    "Returns unsigned 
		int32"

    ^self longAt:1 + 32
!

flags: value

    self longAt:1 + 32 put:value
!

mode
    "Returns a Cface::CShortNode"

    ^self longAt:1 + 36
!

mode: value

    self longAt:1 + 36 put:value
!

oid
    "Returns ;; Line: 1476
;; Class: GitOidStructure
"

    ^self at:1 + 0
!

oid: value

    self at:1 + 0 put:value
!

path
    "Returns (pointer-to char)"

    ^self pointerAt:1 + 20
!

path: value

    self pointerAt:1 + 20 put:value
!

size
    "Returns a Cface::CLongNode"

    ^self longLongAt:1 + 24
!

size: value

    self longLongAt:1 + 24 put:value
! !

!GitDiffFileStructure class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !