test: Fix test dependancy
[govpp.git] / adapter / statsclient / stat_segment_api.go
index 23755a5..fd7ef36 100644 (file)
@@ -38,15 +38,24 @@ const (
        maxVersion = 2
 )
 
-const (
-       statDirIllegal               = 0
-       statDirScalarIndex           = 1
-       statDirCounterVectorSimple   = 2
-       statDirCounterVectorCombined = 3
-       statDirErrorIndex            = 4
-       statDirNameVector            = 5
-       statDirEmpty                 = 6
-)
+var dirTypeMapping = map[dirType]adapter.StatType{
+       1: adapter.ScalarIndex,
+       2: adapter.SimpleCounterVector,
+       3: adapter.CombinedCounterVector,
+       4: adapter.NameVector,
+       5: adapter.Empty,
+       6: adapter.Symlink,
+}
+
+var dirTypeMappingLegacy = map[dirType]adapter.StatType{
+       1: adapter.ScalarIndex,
+       2: adapter.SimpleCounterVector,
+       3: adapter.CombinedCounterVector,
+       4: adapter.ErrorIndex,
+       5: adapter.NameVector,
+       6: adapter.Empty,
+       7: adapter.Symlink,
+}
 
 type (
        dirVector  unsafe.Pointer
@@ -75,8 +84,10 @@ type statSegment interface {
        GetEpoch() (int64, bool)
 
        // CopyEntryData accepts pointer to a directory segment and returns adapter.Stat
-       // based on directory type populated with data
-       CopyEntryData(segment dirSegment) adapter.Stat
+       // based on directory type populated with data. The index is an optional parameter
+       // (used by symlinks) returning stats for item on the given index only.
+       // Use ^uint32(0) as an empty index (since 0 is a valid value).
+       CopyEntryData(segment dirSegment, index uint32) adapter.Stat
 
        // UpdateEntryData accepts pointer to a directory segment with data, and stat
        // segment to update
@@ -89,10 +100,6 @@ type vecHeader struct {
        vectorData [0]uint8
 }
 
-func (t dirType) String() string {
-       return adapter.StatType(t).String()
-}
-
 func getVersion(data []byte) uint64 {
        type apiVersion struct {
                value uint64
@@ -110,6 +117,19 @@ func vectorLen(v dirVector) dirVector {
        return dirVector(&vec.length)
 }
 
+func getStatType(dirTypeNum dirType, useLegacyMapping bool) (dirTyp adapter.StatType) {
+       var exists bool
+       if useLegacyMapping {
+               dirTyp, exists = dirTypeMappingLegacy[dirTypeNum]
+       } else {
+               dirTyp, exists = dirTypeMapping[dirTypeNum]
+       }
+       if exists {
+               return dirTyp
+       }
+       return adapter.Unknown
+}
+
 //go:nosplit
 func statSegPointer(v dirVector, offset uintptr) dirVector {
        return dirVector(uintptr(v) + offset)