2009-02-10 20:04:03 +01:00
|
|
|
/** @file model.h */
|
2008-10-20 00:46:53 +02:00
|
|
|
|
2009-10-27 20:58:27 +01:00
|
|
|
/* Copyright 2009 10gen
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2008-10-20 00:46:53 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "dbclient.h"
|
2010-04-23 23:52:10 +02:00
|
|
|
#include "redef_macros.h"
|
2008-10-20 00:46:53 +02:00
|
|
|
|
2009-01-14 23:09:51 +01:00
|
|
|
namespace mongo {
|
|
|
|
|
2009-01-27 03:15:08 +01:00
|
|
|
/** Model is a base class for defining objects which are serializable to the Mongo
|
2009-01-15 16:17:11 +01:00
|
|
|
database via the database driver.
|
|
|
|
|
2009-02-09 23:40:45 +01:00
|
|
|
Definition
|
2009-01-15 16:17:11 +01:00
|
|
|
Your serializable class should inherit from Model and implement the abstract methods
|
|
|
|
below.
|
|
|
|
|
2009-02-09 23:40:45 +01:00
|
|
|
Loading
|
2009-01-27 03:15:08 +01:00
|
|
|
To load, first construct an (empty) object. Then call load(). Do not load an object
|
2009-01-15 16:17:11 +01:00
|
|
|
more than once.
|
|
|
|
*/
|
|
|
|
class Model {
|
|
|
|
public:
|
|
|
|
Model() { }
|
|
|
|
virtual ~Model() { }
|
|
|
|
|
|
|
|
virtual const char * getNS() = 0;
|
|
|
|
virtual void serialize(BSONObjBuilder& to) = 0;
|
2009-02-27 16:37:13 +01:00
|
|
|
virtual void unserialize(const BSONObj& from) = 0;
|
2010-04-20 23:07:07 +02:00
|
|
|
virtual BSONObj toObject();
|
|
|
|
virtual void append( const char * name , BSONObjBuilder& b );
|
|
|
|
|
2009-03-12 22:12:24 +01:00
|
|
|
virtual string modelServer() = 0;
|
2009-03-25 22:28:54 +01:00
|
|
|
|
2009-01-27 03:15:08 +01:00
|
|
|
/** Load a single object.
|
|
|
|
@return true if successful.
|
|
|
|
*/
|
2009-03-25 22:28:54 +01:00
|
|
|
virtual bool load(BSONObj& query);
|
2009-12-02 22:36:32 +01:00
|
|
|
virtual void save( bool safe=false );
|
|
|
|
virtual void remove( bool safe=false );
|
2009-02-08 23:55:17 +01:00
|
|
|
|
2009-03-26 14:42:03 +01:00
|
|
|
protected:
|
2009-02-14 15:41:52 +01:00
|
|
|
BSONObj _id;
|
2009-01-15 16:17:11 +01:00
|
|
|
};
|
2009-01-14 23:09:51 +01:00
|
|
|
|
|
|
|
} // namespace mongo
|
2010-04-23 23:52:10 +02:00
|
|
|
|
|
|
|
#include "undef_macros.h"
|