dongnue4923 2018-04-28 03:53
浏览 47
已采纳

如何在Go中模拟MongoDB中添加克隆和复制功能?

I read this article and it has good guides for mocking MongoDB in Go. But there are some problems in Clone() and Copy() methods. I create this interfaces and structs:

type ISession interface {
    DB(name string) IDatabase
    Close()
    Clone() ISession
    Copy() ISession
}

type IDatabase interface {
    C(name string) ICollection
}

type MongoSession struct {
    dbSession *mgo.Session
}

func (s MongoSession) DB(name string) IDatabase {
    return &MongoDatabase{Database: s.dbSession.DB(name)}
}

func (s MongoSession) Clone() ISession {
    //return session.clone
    return s.dbSession.Clone()
}

func (s MongoSession) Copy() ISession {
    return s.dbSession.Copy()
}

But I got this error

cannot use s.dbSession.Clone() (type *mgo.Session) as type ISession in return argument: *mgo.Session does not implement ISession (wrong type for Clone method) have Clone() *mgo.Session want Clone() ISession

cannot use s.dbSession.Copy() (type *mgo.Session) as type ISession in return argument: *mgo.Session does not implement ISession (wrong type for Clone method) have Clone() *mgo.Session want Clone() ISession

How can I add Clone() and Copy() methods to interface?

  • 写回答

1条回答 默认 最新

  • doushun1904 2018-04-28 07:18
    关注

    MongoSession.Copy() and MongoSession.Clone() must return a value that implements ISession. Basically you create MongoSession type exactly for this: to implement ISession.

    mgo.Session does not implement your ISession interface (e.g. because its Session.Clone() method has a return type of *mgo.Session and not ISession). You should create and return a new value of MongoSession, in which you can wrap the copied or cloned *mgo.Session value.

    Like this:

    func (s MongoSession) Clone() ISession {
        return MongoSession{dbSession: s.dbSession.Clone()}
    }
    
    func (s MongoSession) Copy() ISession {
        return MongoSession{dbSession: s.dbSession.Copy()}
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效