]> andersk Git - moira.git/blobdiff - regtape/employee.dc
Diane Delgado's changes for a fixed table-locking order
[moira.git] / regtape / employee.dc
index 78e129b54db94d1a0cc40f8d3cad8fae40d6eef1..a313c8069beac7decc6eff26c032468bdca1e2b1 100644 (file)
@@ -7,12 +7,13 @@
 #include <sys/time.h>
 #include <moira.h>
 #include <moira_site.h>
+EXEC SQL INCLUDE sqlca;
 
 
-##define WHO 11859             /* root */
-##define PROG "emp-tape"
+#define WHO 11859              /* root */
+#define PROG "emp-tape"
 
-#define MAX_ID_VALUE   32766
+#define MAX_ID_VALUE   31999
 #define MIN_ID_VALUE   101
 
 /* File format is:
@@ -69,13 +70,16 @@ struct entry {
 
 char *whoami;
 int newfinger = 0;
-int addxuser = 0;
+
+#define sqlfail() (sqlca.sqlcode && sqlca.sqlcode != 100)
+#define SQL_DUPLICATE -40100
+#define SQL_DEADLOCK -49900
 
 
 main(argc, argv)
 int argc;
 char **argv;
-##{
+{
     FILE *in;
     struct entry *e, *get_next_entry();
     int i, wait = 0;
@@ -94,10 +98,8 @@ char **argv;
          setenv("ING_SET", "set printqry");
        else if (!strcmp(argv[i], "-n"))
          newfinger++;
-       else if (!strcmp(argv[i], "-u"))
-         addxuser++;
        else if (file != NULL)
-         fprintf(stderr, "Usage: %s [-w] [-D] [-n] [-u] inputfile\n", whoami);
+         fprintf(stderr, "Usage: %s [-w] [-D] [-n] inputfile\n", whoami);
        else
          file = argv[i];
     }
@@ -108,11 +110,29 @@ char **argv;
        exit(1);
     }
 
-##  ingres sms
-##  range of u is users
+    setlinebuf(stdout);
+    setlinebuf(stderr);
+    initialize_sms_error_table();
+
+    EXEC SQL CONNECT moira;
+    if (sqlca.sqlcode != 0) {
+       com_err(whoami, 0, "ingres error %d opening database", sqlca.sqlcode);
+       exit(1);
+    }
 
     while (e = get_next_entry(in)) {
+    again:
        process_entry(e);
+       EXEC SQL COMMIT WORK;
+       if (sqlca.sqlcode != 0) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "commiting work");
+                goto again;
+            } else {
+                com_err(whoami, 0, "ingres error %d committing work", sqlca.sqlcode);
+                exit(1);
+            }
+       }
        if (wait) {
            printf("Next");
            fflush(stdout);
@@ -120,9 +140,8 @@ char **argv;
        }
     }
 
-##  exit
     exit(0);
-##}
+}
 
 
 char *substr(buf, key)
@@ -147,7 +166,7 @@ FILE *in;
     static char office[LEN_OFFICE+1], phone[LEN_PHONE+1], phone2[LEN_PHONE2+1];
     static char dept[LEN_DEPT+1], title[LEN_TITLE+1], username[LEN_USERNAME+1];
     static char host[LEN_HOST+1];
-    int ends_sr, ends_jr, ends_iii, ends_iv;
+    int ends_sr, ends_jr, ends_iii, ends_iv, ends_ii, ends_v;
     char *p;
 
     if (fgets(buf, sizeof(buf), in) == NULL)
@@ -186,11 +205,13 @@ FILE *in;
        e.first = "";
        e.middle = "";
     }
-    ends_sr = ends_jr = ends_iii = ends_iv = 0;
+    ends_sr = ends_jr = ends_iii = ends_iv = ends_ii = ends_v = 0;
     LookForSt(e.last);
     LookForO(e.last);
-    LookForJrAndIII(e.last, &ends_sr, &ends_jr, &ends_iii, &ends_iv);
-    LookForJrAndIII(e.first, &ends_sr, &ends_jr, &ends_iii, &ends_iv);
+    LookForJrAndIII(e.last, &ends_sr, &ends_jr, &ends_iii, &ends_iv,
+                   &ends_ii, &ends_v);
+    LookForJrAndIII(e.first, &ends_sr, &ends_jr, &ends_iii, &ends_iv,
+                   &ends_ii, &ends_v);
     FixCase(e.last);
     FixCase(e.first);
     FixCase(e.middle);
@@ -206,12 +227,8 @@ FILE *in;
     e.title = strtrim(title);
 
     e.class = "MITS";
-    if (!strcmp(e.dept, "PROJECT ATHENA"))
-      e.class = "STAFF";
-    else if (substr(e.title, "PROF") || substr(e.title, "LECTURE"))
+    if (substr(e.title, "PROF") || substr(e.title, "LECTURE"))
       e.class = "FACULTY";
-    else if (!strcmp(e.title, "VISITING SCIENTIST"))
-      e.class = "VSCIENTI";
 
     strcpy(email, strtrim(username));
     if (host[0] == '@')
@@ -224,42 +241,118 @@ FILE *in;
 
 process_entry(e)
 struct entry *e;
-##{
-    int changed, nochange;
+{
+    int changed, nochange, encrypted;
     char buf[BUFSIZ], *from, *to;
-##  char *first, *last, *eid, *sid, *name, *title, *phone2;
-##  char class[9], oaddr[25], ophone[17], dept[128];
-##  int id, status;
-
+    EXEC SQL BEGIN DECLARE SECTION;
+    char *first, *last, *middle, *eid, *sid, *name, *title, *phone2, *rdept, *rtitle;
+    char *raddr, *rhphone, *rophone, *prog;
+    char class[9], oaddr[25], ophone[17], dept[128], dfirst[17], dlast[17], dmiddle[17];
+    int id, status, who;
+    EXEC SQL END DECLARE SECTION;
+
+    /* Don't process Lincoln Labs */
+    if (!strncmp(e->address, "LL", 2))
+      return;
+
+    who = WHO;
+    prog = PROG;
     first = e->first;
     if (strlen(first) > 16)
       first[16] = 0;
     last = e->last;
     if (strlen(last) > 16)
       last[16] = 0;
+    middle = e->middle;
     eid = e->eid;
+    sid = e->id;
     id = 0;
-##  repeat retrieve (id = u.users_id, class = u.mit_year, oaddr = u.office_addr,
-##           ophone = u.office_phone, dept = u.mit_dept, status = u.#status)
-##     where u.#last = @last and u.#first = @first and u.mit_id = @eid
+    encrypted = 0;
+
+    /* Get user info */
+    EXEC SQL SELECT users_id, first, last, middle, type, office_addr, office_phone, department, status
+      INTO :id, :dfirst, :dlast, :dmiddle, :class, :oaddr, :ophone, :dept, :status
+      FROM users
+      WHERE clearid = :sid;
+    if (sqlfail()) {
+       if (sqlca.sqlcode == SQL_DUPLICATE) {
+           com_err(whoami, 0, "duplicate ID number %s on user %s %s", sid, first, last);
+           return;
+        } else if (sqlca.sqlcode == SQL_DEADLOCK) {
+            com_err(whoami, MR_DEADLOCK, "looking up user %s", sid);
+            EXEC SQL ROLLBACK;
+            return process_entry(e);
+       } else
+         sqlexit();
+    }
     if (id == 0) {
-       newuser(e);
-       return;
+       EXEC SQL SELECT users_id, first, last, middle, type, office_addr, office_phone, department, status
+         INTO :id, :dfirst, :dlast, :dmiddle, :class, :oaddr, :ophone, :dept, :status
+         FROM users
+         WHERE last = :last and first = :first and clearid = :eid;
+        if (sqlfail()) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "looking up user %s", sid);
+                EXEC SQL ROLLBACK;
+                return process_entry(e);
+            } else if (sqlca.sqlcode != SQL_DUPLICATE)
+              sqlexit();
+        }
+       encrypted++;
+       if (id == 0) {
+           newuser(e);
+           return;
+       }
     }
+
+    /* Update class/state if necessary.  (Exclude several spacial cases.) */
     if (strcmp(e->class, strtrim(class)) &&
-       strcmp(class, "STAFF") && strcmp(class, "SIPB")) {
+       strcmp(class, "STAFF") && strcmp(class, "SIPBMEM") &&
+       strcmp(class, "KNIGHT")) {
        com_err(whoami, 0, "updating class for %s %s from %s to %s",
                first, last, class, e->class);
-       if (status == US_NOT_ALLOWED && !strcmp(e->class, "FACULTY"))
+       if (status == US_NOT_ALLOWED)
          status = US_NO_LOGIN_YET;
-       if (status == US_ENROLL_NOT_ALLOWED && !strcmp(e->class, "FACULTY"))
+       if (status == US_ENROLL_NOT_ALLOWED)
          status = US_ENROLLED;
        strcpy(class, e->class);
-##     repeat replace u (mit_year = @class, #status = @status, ugdefault = 1,
-##                modtime = "now", modby = WHO, modwith = PROG)
-##         where u.users_id = @id
+       EXEC SQL UPDATE users
+         SET type = :class, status = :status, modtime = 'now',
+               modby = :who, modwith = :prog
+         WHERE users_id = :id;
+       if (sqlca.sqlcode != 0) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "updating user");
+               return;
+            } else {
+                com_err(whoami, 0, "ingres error %d updating user", sqlca.sqlcode);
+                exit(1);
+           }
+       }
     }
+
+    /* Update name if necessary */
+    if (strcmp(first, strtrim(dfirst)) ||
+       strcmp(last, strtrim(dlast)) ||
+       strcmp(middle, strtrim(dmiddle))) {
+       com_err(whoami, 0, "updating real name for %s %s", first, last);
+       EXEC SQL UPDATE users
+         SET first = :first, last = :last, middle = :middle,
+               modby = :who, modwith = :prog, modtime = 'now'
+         WHERE users_id = :id;
+       if (sqlca.sqlcode != 0) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "updating name");
+               return;
+            } else {
+                com_err(whoami, 0, "ingres error %d updating name", sqlca.sqlcode);
+                exit(1);
+            }
+       }
+    }
+
     changed = nochange = 0;
+    if (encrypted) changed++;
     strcpy(buf, e->address);
     while (to = index(buf, ','))
       *to = ';';
@@ -312,47 +405,65 @@ struct entry *e;
        strncpy(dept, e->dept, 12);
        dept[12] = 0;
     }
+    sid = e->id;
+    name = e->name;
+    rdept = e->dept;
+    rtitle = e->title;
+    raddr = e->address;
+    rhphone = e->phone;
+    rophone = e->phone2;
     if (changed) {
        com_err(whoami, 0, "updating finger for %s %s", first, last);
-##     repeat replace u (office_addr = @oaddr, ugdefault = 1,
-##                office_phone = @ophone, #mit_dept = @dept,
-##                fmodtime = "now", fmodby = WHO, fmodwith = PROG)
-##         where u.users_id = @id
-    } /* else if (nochange)
-      com_err(whoami, 0, "NOT updating finger for %s %s", first, last);
-       */
-    if (!changed) {
-##     repeat replace u (ugdefault = 1) where u.users_id = @id
-    }
-    if (addxuser) {
-       sid = e->id;
-       name = e->name;
-       strcpy(dept, e->dept);
-       title = e->title;
-       strcpy(oaddr, e->address);
-       phone2 = e->phone2;
-
-       status = 1;
-##     repeat retrieve (status = any(xuser.users_id
-##                      where xuser.users_id = @id))
-       if (!status) {
-##     append xuser (users_id = id, #id = sid, #name = name, #dept = dept,
-##                   #title = title, address = oaddr, #phone1 = ophone,
-##                   #phone2 = phone2, modtime = "now")
+       EXEC SQL REPEATED UPDATE users
+         SET office_addr = :oaddr, office_phone = :ophone, department = :dept,
+           fmodtime = 'now', fmodby = :who, fmodwith = :prog,
+           xname = :name, xdept = :rdept, xtitle = :rtitle,
+           xaddress = :raddr, xphone1 = :rhphone, xphone2 = :rophone,
+           xmodtime = 'now', clearid = :sid
+         WHERE users_id = :id;
+       if (sqlca.sqlcode != 0) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "updating user %s", sid);
+                EXEC SQL ROLLBACK;
+                return process_entry(e);
+            } else {
+                com_err(whoami, 0, "ingres error %d", sqlca.sqlcode);
+                exit(1);
+            }
+       }
+    } else {
+       EXEC SQL REPEATED UPDATE users
+         SET xname = :name, xdept = :rdept, xtitle = :rtitle,
+           xaddress = :raddr, xphone1 = :rhphone, xphone2 = :rophone,
+           xmodtime = 'now', clearid = :sid
+         WHERE users_id = :id;
+       if (sqlca.sqlcode != 0) {
+            if (sqlca.sqlcode == SQL_DEADLOCK) {
+                com_err(whoami, MR_DEADLOCK, "updating user %s", sid);
+                EXEC SQL ROLLBACK;
+                return process_entry(e);
+            } else {
+                com_err(whoami, 0, "ingres error %d", sqlca.sqlcode);
+                exit(1);
+            }
        }
     }
-##}
+}
 
 
 newuser(e)
 struct entry *e;
-##{
+{
     char *from, *to;
-##  int id, uid, st;
-##  char *last, *first, *class, *middle, login[9], *eid, fullname[65];
-##  char oaddr[81], ophone[17], dept[128], *sid, *name, *title, phone2[17];
-
-
+    EXEC SQL BEGIN DECLARE SECTION;
+    int id, uid, st, who;
+    char *last, *first, *class, *middle, login[9], *sid, fullname[65], *prog;
+    char oaddr[81], ophone[17], dept[128], *name, *title, phone2[17];
+    char *rdept, *rhphone, *rophone;
+    EXEC SQL END DECLARE SECTION;
+
+    who = WHO;
+    prog = PROG;
     strncpy(oaddr, e->address, 16);
     oaddr[16] = 0;
     while (to = index(oaddr, ','))
@@ -371,85 +482,145 @@ struct entry *e;
     strncpy(dept, e->dept, 12);
     dept[12] = 0;
     
-    id = set_next_object_id("users_id");
-    uid = set_next_object_id("uid");
+    id = set_next_users_id(0);
+    uid = set_next_uid(1);
     sprintf(login, "#%d", uid);
     last = e->last;
     first = e->first;
     middle = e->middle;
-    eid = e->eid;
     class = e->class;
     if (*middle)
       sprintf(fullname, "%s %s %s", first, middle, last);
     else
       sprintf(fullname, "%s %s", first, last);
-    st = US_NOT_ALLOWED;
-    if (!strcmp(e->class, "FACULTY") || !strcmp(e->class, "STAFF"))
-      st = US_NO_LOGIN_YET;
-    
-##  append users (#login = login, users_id = id, #uid = uid, shell = "/bin/csh",
-##               #last = last, #first = first, #middle = middle, status = st,
-##               #mit_id = eid, #mit_year = class, ugdefault = 1,
-##               modtime = "now", modby = WHO, modwith = PROG,
-##               #fullname = fullname, office_addr = oaddr,
-##               office_phone = ophone, #mit_dept = dept,
-##               fmodtime = "now", fmodby = WHO, fmodwith = PROG,
-##               potype = "NONE")
+    st = US_NO_LOGIN_YET;
 
     sid = e->id;
     name = e->name;
-    strcpy(dept, e->dept);
+    rdept = e->dept;
     title = e->title;
-    FixCase(title);
-    strcpy(oaddr, e->address);
-    FixCase(oaddr);
-    from = e->phone2;
-    to = phone2;
-    while (*from) {
-       if (isdigit(*from))
-         *to++ = *from;
-       from++;
+    rhphone = e->phone;
+    rophone = e->phone2;
+
+    EXEC SQL REPEATED INSERT INTO users
+      (login, users_id, uid, shell, last, first, middle, status,
+       clearid, type, modtime, modby, modwith, fullname, office_addr,
+       office_phone, department, fmodtime, fmodby, fmodwith,
+       potype, xname, xdept, xtitle, xaddress, xphone1, xphone2, xmodtime)
+      VALUES (:login, :id, :uid, '/bin/athena/tcsh', :last, :first,
+             :middle, :st, :sid, :class, 'now', :who, :prog,
+             :fullname, :oaddr, :ophone, :dept, 'now', :who, :prog,
+             'NONE', :name, :rdept, :title, :oaddr, :rhphone,
+             :rophone, 'now');
+    if (sqlca.sqlcode != 0) {
+       if (sqlca.sqlcode == SQL_DEADLOCK) {
+           com_err(whoami, MR_DEADLOCK, "adding user");
+       } else {
+           com_err(whoami, 0, "ingres error %d adding user", sqlca.sqlcode);
+           exit(1);
+       }
+    } else
+      com_err(whoami, 0, "adding user %s %s", e->first, e->last);
+}
+
+
+set_next_users_id(limit)
+    int limit;
+{
+    EXEC SQL BEGIN DECLARE SECTION;
+    int rowcount, flag, value, retval;
+    EXEC SQL END DECLARE SECTION;
+
+    EXEC SQL REPEATED SELECT value INTO :value FROM numvalues 
+      WHERE name = 'users_id';
+    if (sqlfail()) sqlexit();
+    if (sqlca.sqlerrd[2] != 1) {
+       EXEC SQL ROLLBACK;
+       com_err(whoami, MR_INTERNAL, "values table inconsistancy");
+       exit(1);
     }
-    *to = 0;
 
-    if (addxuser) {
-##     append xuser (users_id = id, #id = sid, #name = fullname, #dept = dept,
-##               #title = title, address = oaddr, #phone1 = ophone,
-##               #phone2 = phone2, modtime = "now")
+    flag = 0;
+    EXEC SQL REPEATED SELECT users_id INTO :flag FROM users
+      WHERE users_id = :value;
+    if (sqlfail()) sqlexit();
+    if (sqlca.sqlerrd[2] == 0)
+      flag = 0;
+    while (flag) {
+       value++;
+       if (limit && value > MAX_ID_VALUE)
+           value = MIN_ID_VALUE;
+       flag = 0;
+       EXEC SQL REPEATED SELECT users_id INTO :flag FROM users 
+         WHERE users_id = :value;
+       if (sqlfail()) sqlexit();
+       if (sqlca.sqlerrd[2] == 0)
+         flag = 0;
     }
-    com_err(whoami, 0, "adding user %s %s", e->first, e->last);
-##}
-
-
-set_next_object_id(object)
-    char *object;
-##{
-##  char *name;
-##  int rowcount, exists, value;
-
-    name = object;
-##  begin transaction
-##  repeat retrieve (value = values.#value) where values.#name = @name
-##  inquire_equel(rowcount = "rowcount")
-    if (rowcount != 1) {
-##     abort
-       return(0);
+
+    retval = value++;
+    if (limit && value > MAX_ID_VALUE)
+      value = MIN_ID_VALUE;
+    EXEC SQL REPEATED UPDATE numvalues SET value = :value
+      WHERE name = 'users_id';
+    if (sqlca.sqlcode != 0) {
+       com_err(whoami, 0, "ingres error %d assigning ID", sqlca.sqlcode);
+       exit(1);
     }
+    return(retval);
+}
 
-##  retrieve (exists = any(users.name where users.name = value))
-##  inquire_equel(rowcount = "rowcount")
-    if (rowcount != 1) {
-##     abort
-       return(0);
+set_next_uid(limit)
+    int limit;
+{
+    EXEC SQL BEGIN DECLARE SECTION;
+    int rowcount, flag, value, retval;
+    EXEC SQL END DECLARE SECTION;
+
+    EXEC SQL REPEATED SELECT value INTO :value FROM numvalues 
+      WHERE name = 'uid';
+    if (sqlfail()) sqlexit();
+    if (sqlca.sqlerrd[2] != 1) {
+       EXEC SQL ROLLBACK;
+       com_err(whoami, MR_INTERNAL, "values table inconsistancy");
+       exit(1);
     }
-    while (exists) {
+
+    flag = 0;
+    EXEC SQL REPEATED SELECT uid INTO :flag FROM users WHERE uid = :value;
+    if (sqlfail()) sqlexit();
+    if (sqlca.sqlerrd[2] == 0)
+      flag = 0;
+    while (flag) {
        value++;
-       if (value > MAX_ID_VALUE)
+       if (limit && value > MAX_ID_VALUE)
            value = MIN_ID_VALUE;
-##     retrieve (exists = any(users.name where users.name = value))
+       flag = 0;
+       EXEC SQL REPEATED SELECT uid INTO :flag FROM users WHERE uid = :value;
+       if (sqlfail()) sqlexit();
+       if (sqlca.sqlerrd[2] == 0)
+         flag = 0;
+    }
+
+    retval = value++;
+    if (limit && value > MAX_ID_VALUE)
+      value = MIN_ID_VALUE;
+    EXEC SQL REPEATED UPDATE numvalues SET value = :value WHERE name = 'uid';
+    if (sqlca.sqlcode != 0) {
+       com_err(whoami, 0, "ingres error %d assigning ID", sqlca.sqlcode);
+       exit(1);
     }
+    return(retval);
+}
+
 
-##  repeat replace values (#value = @value) where values.#name = @name
-##  end transaction
-    return(value);
-##}
+sqlexit()
+{
+    if (sqlca.sqlcode == SQL_DEADLOCK)
+      com_err(whoami, MR_DEADLOCK, "unrecoverable ingres error %d",
+              sqlca.sqlcode);
+    else
+      com_err(whoami, 0, "ingres error %d", sqlca.sqlcode);
+    EXEC SQL ROLLBACK WORK;
+    exit(1);
+}
This page took 0.057903 seconds and 4 git commands to generate.