本文整理汇总了Golang中fmt.Stringer类的典型用法代码示例。如果您正苦于以下问题:Golang Stringer类的具体用法?Golang Stringer怎么用?Golang Stringer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Stringer类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: String
func String(s fmt.Stringer) string {
if reflect.ValueOf(s).IsNil() {
return ""
}
return s.String()
}
开发者ID:coreos,项目名称:coreos-metadata,代码行数:7,代码来源:metadata.go
示例2: TestGraphSupportsDownCasting
func TestGraphSupportsDownCasting(t *testing.T) {
RegisterTestingT(t)
graph := inject.NewGraph()
var (
d fmt.Stringer
)
graph.Define(&d, inject.NewProvider(NewD))
graph.ResolveAll()
Expect(d).To(Equal(NewD()))
Expect(d.String()).To(Equal("&ImplD{}"))
expectedString := `&graph\{
definitions: \[
&definition\{
ptr: \*fmt\.Stringer=0x.*,
provider: &provider\{
constructor: func\(\) \*test\.ImplD,
argPtrs: \[\]
\},
value: <\*test\.ImplD Value>
\}
\]
\}`
Expect(graph.String()).To(MatchRegexp(expectedString))
}
开发者ID:jdef,项目名称:oinker-go,代码行数:29,代码来源:graph_test.go
示例3: TestInterfaces
func TestInterfaces(t *testing.T) {
db, err := bolt.Open("my4.db", 0600, nil)
if err != nil {
t.Error(err.Error())
}
defer os.Remove("my4.db")
defer db.Close()
s := NewStore(db, []byte("interface"))
var j fmt.Stringer = &MyType{"First", "Last"}
s.Put([]byte("test"), &j)
err = s.ForEach(func(str fmt.Stringer) {
if str.String() != "First Last" {
t.Errorf("unexpected string %s", str)
}
})
if err != nil {
t.Error(err.Error())
}
var i fmt.Stringer
err = s.Get([]byte("test"), &i)
if err != nil {
t.Error(err.Error())
} else {
if i.String() != "First Last" {
t.Errorf("unexpected string %s", i)
}
}
}
开发者ID:dz0ny,项目名称:stow,代码行数:32,代码来源:stow_test.go
示例4: Insert
// Insert adds a new item to the hash map or, if the key already exists,
// replaces the current item with the new one.
func (pm *ParMap) Insert(item fmt.Stringer) {
key := item.String()
shard := pm.getShard(key)
shard.mutex.Lock()
shard.index[key] = item
shard.mutex.Unlock()
}
开发者ID:pombredanne,项目名称:pbtc,代码行数:9,代码来源:parmap.go
示例5: testStringMatch
func testStringMatch(t *testing.T, s fmt.Stringer, expected string) {
actual := strings.TrimSpace(s.String())
expected = strings.TrimSpace(expected)
if actual != expected {
t.Fatalf("Actual\n\n%s\n\nExpected:\n\n%s", actual, expected)
}
}
开发者ID:malston,项目名称:terraform-provider-bosh,代码行数:7,代码来源:terraform_test.go
示例6: assert
func assert(t *testing.T, o fmt.Stringer, s string) {
if o.String() != s {
t.Log("Expected object to be resolved differently as a String:")
t.Logf("Object: %#v", o)
t.Logf("Expected: %q", s)
t.Fatalf("Got: %q", o.String())
}
}
开发者ID:taskcluster,项目名称:taskcluster-base-go,代码行数:8,代码来源:scopes_descriptions_test.go
示例7: AddWithFallback
func (v *ASTStringer) AddWithFallback(color string, what fmt.Stringer, fallback string) *ASTStringer {
if !isNil(what) {
v.AddStringColored(color, what.String())
} else {
v.AddStringColored(color, fallback)
}
return v
}
开发者ID:kiljacken,项目名称:ark,代码行数:8,代码来源:ast.go
示例8: processLogMsg
func (cLogger *commonLogger) processLogMsg(level LogLevel, message fmt.Stringer, context LogContextInterface) {
defer func() {
if err := recover(); err != nil {
reportInternalError(fmt.Errorf("recovered from panic during message processing: %s", err))
}
}()
if cLogger.config.IsAllowed(level, context) {
cLogger.config.RootDispatcher.Dispatch(message.String(), level, context, reportInternalError)
}
}
开发者ID:ColBT,项目名称:amazon-ecs-init,代码行数:10,代码来源:logger.go
示例9: Lookup
// Lookup finds the first node in the current scope by name.
func (s *Scope) Lookup(token fmt.Stringer) (ssa.Node, error) {
name := token.String()
if s.Empty() {
return nil, fmt.Errorf("can't find a node '%s' in an empty scope stack", name)
}
for _, symtab := range s.stack.list {
if symtab.contains(name) {
return symtab.get(name)
}
}
return nil, fmt.Errorf("'%s' not yet declared", name)
}
开发者ID:jackspirou,项目名称:chip,代码行数:13,代码来源:scope.go
示例10: safeString
func safeString(str fmt.Stringer) (s string, ok bool) {
defer func() {
if panicVal := recover(); panicVal != nil {
if v := reflect.ValueOf(str); v.Kind() == reflect.Ptr && v.IsNil() {
s, ok = "null", false
} else {
panic(panicVal)
}
}
}()
s, ok = str.String(), true
return
}
开发者ID:qband,项目名称:down,代码行数:13,代码来源:encode.go
示例11: safeString
func safeString(str fmt.Stringer) (s string) {
defer func() {
if panicVal := recover(); panicVal != nil {
if v := reflect.ValueOf(str); v.Kind() == reflect.Ptr && v.IsNil() {
s = "NULL"
} else {
panic(panicVal)
}
}
}()
s = str.String()
return
}
开发者ID:gledger,项目名称:api,代码行数:13,代码来源:json_logger.go
示例12: Global
// Global sets a node and its name in the global scope.
func (s *Scope) Global(token fmt.Stringer, n ssa.Node) error {
name := token.String()
symtab, err := s.stack.bottom()
if err != nil {
return err
}
if symtab.contains(name) {
return fmt.Errorf("'%s' already declared globally", name)
}
err = symtab.set(name, n)
if err != nil {
return err
}
return nil
}
开发者ID:jackspirou,项目名称:chip,代码行数:16,代码来源:scope.go
示例13: processLogMsg
func (cLogger *commonLogger) processLogMsg(
level LogLevel,
message fmt.Stringer,
context logContextInterface) {
defer func() {
if err := recover(); err != nil {
fmt.Println(err)
}
}()
if cLogger.config.IsAllowed(level, context) {
cLogger.config.RootDispatcher.Dispatch(message.String(), level, context, reportInternalError)
}
}
开发者ID:stoiclabs,项目名称:blockchainr,代码行数:15,代码来源:logger.go
示例14: Add
// Add adds a name to the topmost scope in the scope stack.
func (s *Scope) Add(token fmt.Stringer, n ssa.Node) error {
name := token.String()
if s.Contains(name) {
return fmt.Errorf("'%s' already declared", name)
}
symtab, err := s.stack.peek()
if err != nil {
return err
}
err = symtab.set(name, n)
if err != nil {
return err
}
return nil
}
开发者ID:jackspirou,项目名称:chip,代码行数:16,代码来源:scope.go
示例15: TestNXTStringer
func TestNXTStringer(t *testing.T) {
name, devicePath := "testingbot", "/dev/tty-foobar"
var n fmt.Stringer
n = NewNXT(name, devicePath)
if n == nil {
t.Errorf("Calling NewNXT should not result in a nil NXT instance.")
return
}
expected, actual := fmt.Sprintf("NXT \"%s\": %s", name, devicePath), n.String()
if actual != expected {
t.Errorf("Expected NXT.String to return \"%s\", but got \"%s\" instead", expected, actual)
}
}
开发者ID:farshidtz,项目名称:go-nxt,代码行数:15,代码来源:nxt_test.go
示例16: pathDealer
func (w *Web) pathDealer(re *regexp.Regexp, str fmt.Stringer) {
names := re.SubexpNames()
matches := re.FindStringSubmatch(str.String())
for key, name := range names {
if name != "" {
w.Param.Set(name, matches[key])
}
}
switch str.(type) {
case pathStr:
w.pri.curpath += matches[0]
w.pri.path = w.pri.path[re.FindStringIndex(w.pri.path)[1]:]
}
}
开发者ID:jlertle,项目名称:webby,代码行数:16,代码来源:param.go
示例17: Trust
// Trust takes a name token and node that has not yet been defined and "trusts"
// that it will be defined later according to the node type values that were
// implied by the parser.
func (t *TBV) Trust(token fmt.Stringer, node ssa.Node) {
name := token.String()
if _, ok := t.table[name]; ok {
// p.enter()("'" + name + "' is already being trusted.")
} else {
t.table[name] = node
}
}
开发者ID:jackspirou,项目名称:chip,代码行数:11,代码来源:tbv.go
示例18: SendSync
// SendSync sends SYNC message to the writer, tagging it as sent from node,
// described by given source and adding optional description for the given
// SYNC phase taken by extraction it from the original SYNC message, sent
// by node.
func (protocol *syncProtocol) SendSync(
source fmt.Stringer,
sync string,
) error {
data := strings.TrimSpace(
strings.TrimPrefix(sync, protocol.prefix+" "+syncProtocolSync),
)
_, err := io.WriteString(
protocol.output,
syncProtocolSync+" "+source.String()+" "+data+"\n",
)
if err != nil {
return protocolSuspendEOF(err)
}
return nil
}
开发者ID:reconquest,项目名称:orgalorg,代码行数:23,代码来源:sync_protocol.go
示例19: AddValue
//AddValue ajoute dans la BD
func (dbManager *DbManager) AddValue(bucketName string, key string, object fmt.Stringer) error {
err := dbManager.db.Update(func(tx *bolt.Tx) error {
bucket, err := tx.CreateBucketIfNotExists([]byte(bucketName))
if err != nil {
return err
}
encoded := object.String()
return bucket.Put([]byte(key), []byte(encoded))
})
if err == nil {
logger.Print("Ajout de " + key + " dans la bd")
} else {
logger.Error("Erreur lors de l'ajout dans la bd", err)
}
return nil
}
开发者ID:Manouel,项目名称:go-viducha,代码行数:22,代码来源:dbManager.go
示例20: Verify
// Verify verifies that the provided token and node match with a corresponding
// pair that were trusted previously.
func (t *TBV) Verify(tok fmt.Stringer, node ssa.Node) (bool, error) {
name := tok.String()
// check if the node is present in the TBV table
if trustNode, ok := t.table[name]; ok {
if trustNode.Type() != node.Type() {
return true, errors.New("mismatch types")
}
switch trustNode.Type().Token() {
case token.FUNC:
trustFuncType := trustNode.Type().(*types.Func)
funcType := node.Type().(*types.Func)
if trustFuncType.Value() != nil {
if trustFuncType.Value() != funcType.Value() {
return false, errors.New("The function '" + name + "' must return either a type " + trustFuncType.Value().String() + " or " + funcType.Value().String() + ". Not both.")
}
}
if trustFuncType.Arity() != funcType.Arity() {
return false, errors.New("Number of arguments do not match.")
}
trustParam := trustFuncType.Param()
param := funcType.Param()
for param != nil {
if param != trustParam {
return false, errors.New("Parameter types are off.")
}
param = param.Next()
trustParam = trustParam.Next()
}
return true, nil
}
}
return false, nil
}
开发者ID:jackspirou,项目名称:chip,代码行数:41,代码来源:tbv.go
注:本文中的fmt.Stringer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论