0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/client/model.h

63 lines
1.8 KiB
C
Raw Normal View History

/** @file model.h */
2008-10-20 00:46:53 +02: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"
#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
database via the database driver.
2009-02-09 23:40:45 +01:00
Definition
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
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 );
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
protected:
2009-02-14 15:41:52 +01:00
BSONObj _id;
};
2009-01-14 23:09:51 +01:00
} // namespace mongo
#include "undef_macros.h"