git/GitIndexerStatsStructure.st
author vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
Wed, 03 Oct 2012 18:40:32 +0000
changeset 27 a36a11925d3f
parent 9 2783c9882d30
child 31 d96d7eff6efc
permissions -rw-r--r--
Class category renames

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

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


!GitIndexerStatsStructure class methodsFor:'instance creation'!

new
    ^self new: self structSize

    "Created: / 19-09-2012 / 09:57:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!GitIndexerStatsStructure 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"

    ^12
! !

!GitIndexerStatsStructure methodsFor:'accessing'!

processed
    "Returns unsigned 
		int32"

    ^self longAt:1 + 4
!

processed: value

    self longAt:1 + 4 put:value
!

received
    "Returns unsigned 
		int32"

    ^self longAt:1 + 8
!

received: value

    self longAt:1 + 8 put:value
!

total
    "Returns unsigned 
		int32"

    ^self longAt:1 + 0
!

total: value

    self longAt:1 + 0 put:value
! !

!GitIndexerStatsStructure class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !