X-Git-Url: http://git.dolda2000.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2Fdolcon%2F__init__.py;h=8675b38b0cf67b061979987cf0782bc3e4800deb;hb=17537706a99e4baf6ceca6e66df520f2b675a775;hp=d8a2b753f74f50cb5673f02ce3732b73d78441b0;hpb=00ea20394f7910ae77782aab32d9bb975e6233fe;p=doldaconnect.git diff --git a/lib/python/dolcon/__init__.py b/lib/python/dolcon/__init__.py index d8a2b75..8675b38 100644 --- a/lib/python/dolcon/__init__.py +++ b/lib/python/dolcon/__init__.py @@ -2,6 +2,21 @@ from dolmod import * import os def login(useauthless = True, **kw): + """A convenience function for loginasync. + + This function will initiate an asynchronous login per the + loginasync command, and then run a select loop while waiting for + it to complete. It will return a tuple (res, reason), where res is + the result code, and reason is an explanatory text for any error. + + res can be any of the following: + * success: Login completed successfully + * nologin: No authentication mechanism could be negotiated + * server: An error occurred on the server + * user: An error occurred in the library + * conv: The password conversation mechanism failed + * authfail: The server refused the login (due to e.g. bad credentials) + """ result = [None] def mycb(*v): result[0] = v @@ -11,6 +26,13 @@ def login(useauthless = True, **kw): return result[0] def mustconnect(host, port = -1): + """A convenience function for connect. + + This function will connect to the given host, perform a select + loop, and ensure that the server approves of the connection. If + any of these steps fail, an exception is raised. If successful, + the file descriptor for the server connection is returned. + """ fd = connect(host, port) while True: resp = getresp() @@ -22,10 +44,17 @@ def mustconnect(host, port = -1): return fd def cnl(host = None, port = -1, useauthless = True, **kw): + """A convenience function for connect and loginasync. + + This function will connect to the given server, or the server in + the environment variable $DCSERVER if none is given, or, if that + fails, localhost, and authenticate to the server. If any of the + steps fail, an exception is raised. + """ if host is None: host = os.getenv("DCSERVER") if host is None: - raise ValueError, "No DC host to connect to" + host = "localhost" fd = mustconnect(host, port) err, reason = login(useauthless, **kw) if err != "success": @@ -33,6 +62,13 @@ def cnl(host = None, port = -1, useauthless = True, **kw): return fd def ecmd(*args): + """A convenience function for qcmd. + + This function will queue the given command, and then wait in a + select loop until the command has been carried out. The return + value is a Response object, corresponding to the reponse from the + server. + """ tag = qcmd(*args) while True: resp = getresp(tag) @@ -42,7 +78,24 @@ def ecmd(*args): return resp def ecmda(code, *args): + """A convenience function for ecmd. + + This function does essentially the same as ecmd, but it will also + check so that the response has the given numerical code. If not, + an exception is raised. + """ resp = ecmd(*args) if resp.getcode() != code: raise ValueError, resp.getcode() return resp + +def ecmds(*args): + """Another convenience function for ecmd. + + Like ecmda, but will fail on all 5xx codes, and succeed on all + others. + """ + resp = ecmd(*args) + if resp.getcode() >= 500 and resp.getcode() < 600: + raise ValueError, tuple(resp.extract()[0]) + return resp