Commit b66484c3 authored by Jeremy Hylton's avatar Jeremy Hylton

Add -W option to wait forever for server.

parent 171981ae
...@@ -15,6 +15,9 @@ Options: ...@@ -15,6 +15,9 @@ Options:
-d days -- pack objects more than days old -d days -- pack objects more than days old
-W -- wait for server to come up. Normally the script tries to
connect for 10 seconds, then exits with an error.
You must specify either -p and -h or -U. You must specify either -p and -h or -U.
""" """
...@@ -40,14 +43,19 @@ def connect(storage): ...@@ -40,14 +43,19 @@ def connect(storage):
return return
raise RuntimeError, "Unable to connect to ZEO server" raise RuntimeError, "Unable to connect to ZEO server"
def pack(addr, storage, days): def pack(addr, storage, days, wait):
cs = ClientStorage(addr, storage=storage, wait_for_server_on_startup=1) cs = ClientStorage(addr, storage=storage, wait_for_server_on_startup=wait)
if wait:
# _startup() is an artifact of the way ZEO 1.0 works. The # _startup() is an artifact of the way ZEO 1.0 works. The
# ClientStorage doesn't get fully initialized until registerDB() # ClientStorage doesn't get fully initialized until registerDB()
# is called. The only thing we care about, though, is that # is called. The only thing we care about, though, is that
# registerDB() calls _startup(). # registerDB() calls _startup().
cs._startup()
else:
connect(cs) connect(cs)
cs.invalidator = None
cs.pack(wait=1, days=days) cs.pack(wait=1, days=days)
cs.close()
def usage(exit=1): def usage(exit=1):
print __doc__ print __doc__
...@@ -60,8 +68,9 @@ def main(): ...@@ -60,8 +68,9 @@ def main():
unix = None unix = None
storage = '1' storage = '1'
days = 0 days = 0
wait = 0
try: try:
opts, args = getopt.getopt(sys.argv[1:], 'p:h:U:S:d:') opts, args = getopt.getopt(sys.argv[1:], 'p:h:U:S:d:W')
for o, a in opts: for o, a in opts:
if o == '-p': if o == '-p':
port = int(a) port = int(a)
...@@ -73,6 +82,8 @@ def main(): ...@@ -73,6 +82,8 @@ def main():
storage = a storage = a
elif o == '-d': elif o == '-d':
days = int(a) days = int(a)
elif o == '-W':
wait = 1
except Exception, err: except Exception, err:
print err print err
usage() usage()
...@@ -86,7 +97,7 @@ def main(): ...@@ -86,7 +97,7 @@ def main():
usage() usage()
addr = host, port addr = host, port
pack(addr, storage, days) pack(addr, storage, days, wait)
if __name__ == "__main__": if __name__ == "__main__":
try: try:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment