Refactored describeRequest.

geesefs-0-30-9
Aaron Jacobs 2015-08-06 15:44:08 +10:00
parent 41ea2b7530
commit 5c05a7c040
1 changed files with 30 additions and 14 deletions

View File

@ -17,27 +17,43 @@ package fuse
import ( import (
"fmt" "fmt"
"reflect" "reflect"
"strings"
) )
// Decide on the name of the given op.
func opName(op interface{}) string {
// We expect all ops to be pointers.
t := reflect.TypeOf(op).Elem()
// Strip the "Op" from "FooOp".
return strings.TrimSuffix(t.Name(), "Op")
}
func describeRequest(op interface{}) (s string) { func describeRequest(op interface{}) (s string) {
// Handle special cases with custom formatting. v := reflect.ValueOf(op).Elem()
// We will set up a comma-separated list of components.
var components []string
addComponent := func(format string, v ...interface{}) {
components = append(components, fmt.Sprintf(format, v...))
}
// Include an inode number, if available.
if f := v.FieldByName("Inode"); f.IsValid() {
addComponent("inode %v", f.Interface())
}
// Handle special cases.
switch typed := op.(type) { switch typed := op.(type) {
case *interruptOp: case *interruptOp:
s = fmt.Sprintf("interruptOp(fuseid=0x%08x)", typed.FuseID) addComponent("fuseid 0x%08x", typed.FuseID)
return
} }
v := reflect.ValueOf(op).Elem() // Use just the name if there is no extra info.
t := v.Type() if len(components) == 0 {
return opName(op)
// Find the inode number involved, if possible.
var inodeDesc string
if f := v.FieldByName("Inode"); f.IsValid() {
inodeDesc = fmt.Sprintf("(inode=%v)", f.Interface())
} }
// Use the type name. // Otherwise, include the extra info.
s = fmt.Sprintf("%s%s", t.Name(), inodeDesc) return fmt.Sprintf("%s (%s)", opName(op), strings.Join(components, ", "))
return
} }