MongoDB Java Driver 源码分析(3):com.mongodb.DBCollection _JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > MongoDB Java Driver 源码分析(3):com.mongodb.DBCollection

MongoDB Java Driver 源码分析(3):com.mongodb.DBCollection

 2011/11/14 6:40:01  裴小星  http://xxing22657-yahoo-com-cn.iteye.com  我要评论(0)
  • 摘要:DBCollection是表示数据集合的抽象类,它的实现可以简单地分为两类:一类是抽象方法,由子类(DBApiLayer.MyCollection)实现;另一类委托给类型为"DB"的属性_db,_db实际上是DBApiLayer类的实例(DBApiLayer继承抽象类DB);因此,DBCollection类是实现细节与DBApiLayer关系密切。DBApiLyer的实现细节我们将在后续文章中进行详细的描述,本文主要探讨两者之间的联系。由子类实现的方法以下方法是由子类实现的
  • 标签:
  DBCollection 是表示数据集合的抽象类,它的实现可以简单地分为两类:
  一类是抽象方法,由子类(DBApiLayer.MyCollection)实现;
  另一类委托给类型为 "DB" 的属性 _db,_db 实际上是 DBApiLayer 类的实例(DBApiLayer 继承抽象类 DB);

  因此,DBCollection 类是实现细节与 DBApiLayer 关系密切。
  DBApiLyer 的实现细节我们将在后续文章中进行详细的描述,本文主要探讨两者之间的联系。

由子类实现的方法
  以下方法是由子类实现的,这些将在介绍 DBApiLayer 时再进行详细说明:
// 插入记录
public abstract WriteResult insert(DBObject[] arr , WriteConcern concern )

// 更新记录
public abstract WriteResult update( DBObject q , DBObject o , boolean upsert , boolean multi , WriteConcern concern ) 

// 保存数据之前附加额外属性
protected abstract void doapply( DBObject o )

// 删除记录
public abstract WriteResult remove( DBObject o , WriteConcern concern ) 

// 查询记录
abstract Iterator<DBObject> __find( DBObject ref , DBObject fields , int numToSkip , int batchSize , int limit, int options )

// 创建索引
public abstract void createIndex( DBObject keys , DBObject options ) 

  此外,以下方法是在这些方法的基础上,在进行包装和组合得到的:
public final void ensureIndex( final DBObject keys , final DBObject optionsIN )
public final DBObject findOne( DBObject o, DBObject fields )
public final Object apply( DBObject jo , boolean ensureID )

  ensurceIndex 方法用于创建索引,调用了抽象方法 createdIndex ,在此之前,先检查数据库是否为只读,以及是否重复创建索引。
  具体实现如下:
    public final void ensureIndex( final DBObject keys , final DBObject optionsIN )
        throws MongoException {

        // 检查是否为只读
        if ( checkReadOnly( false ) ) return;

        // 设置参数
        final DBObject options = defaultOptions( keys );
        for ( String k : optionsIN.keySet() )
            options.put( k , optionsIN.get( k ) );

        // 取得参数中的索引名称
        final String name = options.get( "name" ).toString();

        // 如果索引已经创建,则返回,避免重复创建
        if ( _createdIndexes.contains( name ) )
            return;

        // 创建索引,并添加到 createdIndexes
        createIndex( keys , options );
        _createdIndexes.add( name );
    }

  findOne 方法用于查询一个对象,第一个参数是表示查询条件的 DBObject,第二个参数表示返回结果包含的字段。
  调用了抽象方法 _find,并取第一条。
  具体实现如下:
    public final DBObject findOne( DBObject o, DBObject fields ) {
        // 调用 _find 方法
        Iterator<DBObject> i = __find( o , fields , 0 , -1 , 0, getOptions() );

        // 读取第一条记录
        if ( i == null || ! i.hasNext() )
            return null;
        return i.next();
    }

  apply 方法用于在保存对象之前,为对象添加额外的属性。
  除了调用抽象方法 doapply,还可以根据 ensureId 的值,生成 id。
  具体实现如下:
    public final Object apply( DBObject jo , boolean ensureID ){
        // 根据 ensureId 的值,确定是否生成 id
        Object id = jo.get( "_id" );
        if ( ensureID && id == null ){
            id = ObjectId.get();
            jo.put( "_id" , id );
        }

        // 调用抽象方法 doapply,为对象附加额外属性。
        doapply( jo );

        return id;
    }


委托给 _db 的方法
// 查询并修改对象
public DBObject findAndModify(DBObject query, DBObject fields, DBObject sort,
    boolean remove, DBObject update, boolean returnNew, boolean upsert)

// 删除索引
public void dropIndexes( String name )

// 删除该数据集
public void drop()

// 统计数量
public long getCount(DBObject query, DBObject fields, long limit, long skip )

// 重命名该集合
public DBCollection rename( String newName, boolean dropTarget )

// 执行 Group 操作
public DBObject group( GroupCommand cmd )

// 查询对象并去除重复
public List distinct( String key , DBObject query )

// 执行 Map Reduce 操作
public MapReduceOutput mapReduce( MapReduceCommand command )

// 获取索引信息
public List<DBObject> getIndexInfo() 

// 获取子数据集
public DBCollection getCollection( String n )

  以 findAndModify 为例。
  findAndModify 方法用于查询并修改对象,实际调用的是 _db.command( cmd ) 方法;
  在调用 _db 的方法之前,先对 cmd 进行组装,添加查询条件、查询字段、排序条件等;
  然后调用 _db.command( cmd ),返回结果或抛出异常
  具体实现如下:
    public DBObject findAndModify(DBObject query, DBObject fields, DBObject sort,
        boolean remove, DBObject update, boolean returnNew, boolean upsert) {
        // 创建 cmd 对象
        BasicDBObject cmd = new BasicDBObject( "findandmodify", _name);

        // 添加查询条件
        if (query != null && !query.keySet().isEmpty())
            cmd.append( "query", query );

        // 添加查询字段
        if (fields != null && !fields.keySet().isEmpty())
            cmd.append( "fields", fields );

        // 添加排序字段
        if (sort != null && !sort.keySet().isEmpty())
            cmd.append( "sort", sort );

        // 是否执行删除
        if (remove)
            cmd.append( "remove", remove );
        else {
            // 添加更新的字段
            if (update != null && !update.keySet().isEmpty()) {
                // if 1st key doesnt start with $, then object will be inserted as is, need to check it
                String key = update.keySet().iterator().next();
                if (key.charAt(0) != '$')
                    _checkObject(update, false, false);
                cmd.append( "update", update );
            }
            // 是否返回新创建的对象
            if (returnNew)
                cmd.append( "new", returnNew );

           // 被查询的对象不存在时是否创建一个 
           if (upsert)
                cmd.append( "upsert", upsert );
        }

        // caozuo.html" target="_blank">删除操作与更新操作不能混合,抛异常
        if (remove && !(update == null || update.keySet().isEmpty() || returnNew))
            throw new MongoException("FindAndModify: Remove cannot be mixed with the Update, or returnNew params!");

        // 执行 _db.command( cmd )
        CommandResult res = this._db.command( cmd );

        // 返回结果或抛异常
        if (res.ok() || res.getErrorMessage().equals( "No matching object found" ))
            return (DBObject) res.get( "value" );
        res.throwOnError();
        return null;
    }
  • 相关文章
发表评论
用户名: 匿名