summaryrefslogtreecommitdiff
path: root/db/cloner.cpp
diff options
context:
space:
mode:
authorDwight <dmerriman@gmail.com>2009-09-01 16:23:56 -0400
committerDwight <dmerriman@gmail.com>2009-09-01 16:23:56 -0400
commit7172529835487de9dec84e03c5eea4c2d065a621 (patch)
tree1cebf3643ef3a641b51b82744dae49811a731992 /db/cloner.cpp
parent777c1883c3d019e1318703eb324fa55dff325ad8 (diff)
downloadmongo-7172529835487de9dec84e03c5eea4c2d065a621.tar.gz
some help for commands
Diffstat (limited to 'db/cloner.cpp')
-rw-r--r--db/cloner.cpp40
1 files changed, 24 insertions, 16 deletions
diff --git a/db/cloner.cpp b/db/cloner.cpp
index b91552c63a1..76dace7c62d 100644
--- a/db/cloner.cpp
+++ b/db/cloner.cpp
@@ -381,6 +381,10 @@ namespace mongo {
virtual bool slaveOk() {
return false;
}
+ virtual void help( stringstream &help ) const {
+ help << "clone this database from an instance of the db on another host\n";
+ help << "example: { clone : \"host13\" }";
+ }
CmdClone() : Command("clone") { }
virtual bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool fromRepl) {
string from = cmdObj.getStringField("clone");
@@ -546,6 +550,10 @@ namespace mongo {
virtual bool slaveOk() {
return false;
}
+ virtual void help( stringstream &help ) const {
+ help << "copy a database from antoher host to this host\n";
+ help << "usage: {copydb: 1, fromhost: <hostname>, fromdb: <db>, todb: <db>}";
+ }
virtual bool run(const char *ns, BSONObj& cmdObj, string& errmsg, BSONObjBuilder& result, bool fromRepl) {
string fromhost = cmdObj.getStringField("fromhost");
if ( fromhost.empty() ) {
@@ -576,9 +584,9 @@ namespace mongo {
virtual bool slaveOk() {
return false;
}
- virtual bool logTheOp() {
- return true; // can't log steps when doing fast rename within a db, so always log the op rather than individual steps comprising it.
- }
+ virtual bool logTheOp() {
+ return true; // can't log steps when doing fast rename within a db, so always log the op rather than individual steps comprising it.
+ }
virtual void help( stringstream &help ) const {
help << " example: { renameCollection: foo.a, to: bar.b }";
}
@@ -602,16 +610,16 @@ namespace mongo {
setClient( target.c_str() );
uassert( "target namespace exists", !nsdetails( target.c_str() ) );
- {
- char from[256];
- nsToClient( source.c_str(), from );
- char to[256];
- nsToClient( target.c_str(), to );
- if ( strcmp( from, to ) == 0 ) {
- renameNamespace( source.c_str(), target.c_str() );
- return true;
- }
- }
+ {
+ char from[256];
+ nsToClient( source.c_str(), from );
+ char to[256];
+ nsToClient( target.c_str(), to );
+ if ( strcmp( from, to ) == 0 ) {
+ renameNamespace( source.c_str(), target.c_str() );
+ return true;
+ }
+ }
BSONObjBuilder spec;
if ( capped ) {
@@ -666,9 +674,9 @@ namespace mongo {
theDataFileMgr.insert( targetIndexes.c_str(), n );
}
- setClientTempNs( source.c_str() );
- dropCollection( source, errmsg, result );
- return true;
+ setClientTempNs( source.c_str() );
+ dropCollection( source, errmsg, result );
+ return true;
}
} cmdrenamecollection;