0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-29 16:47:28 +01:00

docs: generate commands list as internals/VERSION/commands.html

This commit is contained in:
Mike Dirolf 2010-07-15 16:01:46 -04:00
parent 64800fdb10
commit f995e2db3d

View File

@ -4,7 +4,10 @@
from __future__ import with_statement
import os
import shutil
import socket
import subprocess
import time
import urllib2
import markdown
@ -34,6 +37,52 @@ def convert_dir(source, dest):
o.write(html)
def check_mongo():
sock = socket.socket()
sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
sock.settimeout(1)
sock.connect(("localhost", 31999))
sock.close()
def did_mongod_start(timeout=20):
while timeout > 0:
time.sleep(1)
try:
check_mongo()
return True
except Exception,e:
print e
timeout = timeout - 1
return False
def stop(proc):
try:
proc.terminate()
except AttributeError:
os.kill(proc.pid, 15)
def commands_list(out):
clean_dir("dummy_data_dir")
with open("/dev/null") as null:
try:
p = subprocess.Popen(["./mongod", "--dbpath", "dummy_data_dir",
"--port", "31999", "--rest"], stdout=null, stderr=null)
except:
print "No mongod? Skipping..."
return
if not did_mongod_start():
print "Slow mongod? Skipping..."
stop(p)
return
print "Started mongod"
with open(out, "w") as f:
f.write("<base href='http://localhost:28017'/>")
f.write(urllib2.urlopen("http://localhost:32999/_commands").read())
print "Stopping mongod"
stop(p)
def gen_cplusplus(dir):
clean_dir(dir)
clean_dir("docs/doxygen")
@ -58,6 +107,9 @@ def main():
v = version()
print("Generating server docs in docs/html/internal/%s" % v)
convert_dir("docs", "docs/html/internal/%s" % v)
print("Generating commands list")
commands_list("docs/html/internal/%s/commands.html" % v)
shutil.rmtree("dummy_data_dir")
print("Generating C++ docs in docs/html/cplusplus/%s" % v)
gen_cplusplus("docs/html/cplusplus/%s" % v)