From: Evan Broder Date: Sun, 15 Mar 2009 12:30:25 +0000 (-0400) Subject: Throw a PRNOENT exception when looking up PTS IDs or names when the X-Git-Tag: 0.1.0~69 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/python-afs.git/commitdiff_plain/8d2728f99cd4e073aac44163f608145c88f0f695 Throw a PRNOENT exception when looking up PTS IDs or names when the entity in question doesn't exist. Signed-off-by: Evan Broder --- diff --git a/afs/_pts.pyx b/afs/_pts.pyx index 3e04d7d..85395bd 100644 --- a/afs/_pts.pyx +++ b/afs/_pts.pyx @@ -3,11 +3,7 @@ from afs cimport * cdef import from "afs/ptuser.h": enum: PR_MAXNAMELEN - - enum: PRGRP - - enum: ANONYMOUSID ctypedef char prname[PR_MAXNAMELEN] @@ -26,6 +22,12 @@ cdef import from "afs/ptuser.h": int ubik_PR_NewEntry(ubik_client *, afs_int32, char *, afs_int32, afs_int32, afs_int32 *) int ubik_PR_Delete(ubik_client *, afs_int32, afs_int32) +cdef import from "afs/pterror.h": + enum: + PRNOENT + + void initialize_PT_error_table() + cdef class PTS: cdef ubik_client * client @@ -54,6 +56,8 @@ cdef class PTS: cdef rx_connection *serverconns[MAXSERVERS] cdef int i + initialize_PT_error_table() + if cell is None: c_cell = NULL else: @@ -135,6 +139,8 @@ cdef class PTS: if lids.idlist_val is not NULL: id = lids.idlist_val[0] free(lids.idlist_val) + if id == ANONYMOUSID: + code = PRNOENT if code != 0: raise Exception("Failed to lookup PTS name: %s" % afs_error_message(code)) return id @@ -159,6 +165,8 @@ cdef class PTS: free(lnames.namelist_val) if lids.idlist_val is not NULL: free(lids.idlist_val) + if name == str(id): + code = PRNOENT if code != 0: raise Exception("Failed to lookup PTS ID: %s" % afs_error_message(code)) return name @@ -193,8 +201,6 @@ cdef class PTS: name = name[:PR_MAXNAMELEN].lower() oid = self.NameToId(owner) - if oid == ANONYMOUSID: - raise Exception("Error creating group: owner does not exist") if id is not None: cid = id