1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
/******************************************************************************
Copyright (c) 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
Pavel@Xerox.Com
*****************************************************************************/
/*****************************************************************************
* Private interface for internal communication in the DB implementation
*****************************************************************************/
#include "config.h"
#include "exceptions.h"
#include "program.h"
#include "structures.h"
typedef struct Verbdef Verbdef;
struct Verbdef {
const char *name;
Program *program;
Objid owner;
short perms;
short prep;
Verbdef *next;
};
typedef struct Proplist Proplist;
typedef struct Propdef Propdef;
struct Propdef {
const char *name;
int hash;
};
struct Proplist {
int max_length;
int cur_length;
Propdef *l;
};
typedef struct Pval {
Var var;
Objid owner;
short perms;
} Pval;
typedef struct Object {
Objid id;
Objid owner;
Objid location;
Objid contents;
Objid next;
Objid parent;
Objid child;
Objid sibling;
const char *name;
int flags;
Verbdef *verbdefs;
Proplist propdefs;
Pval *propval;
} Object;
/*********** Verb cache support ***********/
#define VERB_CACHE 1
#ifdef VERB_CACHE
/* Whenever anything is modified that could influence callable verb
* lookup, this function must be called.
*/
#ifdef RONG
#define db_priv_affected_callable_verb_lookup() (db_verb_generation++)
/* The choice of a new generation. */
extern unsigned int db_verb_generation;
#endif
extern void db_priv_affected_callable_verb_lookup(void);
#else /* no cache */
#define db_priv_affected_callable_verb_lookup()
#endif
/*********** Objects ***********/
extern void dbpriv_set_all_users(Var);
/* Initialize the list returned by
* db_all_users().
*/
extern Object *dbpriv_new_object(void);
/* Creates a new object, assigning it a number,
* but doesn't fill in any of the fields other
* than `id'.
*/
extern void dbpriv_new_recycled_object(void);
/* Does the equivalent of creating and
* destroying an object, with the net effect of
* using up the next available object number.
*/
extern Object *dbpriv_find_object(Objid);
/* Returns 0 if given object is not valid.
*/
/*********** Properties ***********/
extern Propdef dbpriv_new_propdef(const char *name);
extern int dbpriv_count_properties(Objid);
extern int dbpriv_check_properties_for_chparent(Objid oid,
Objid new_parent);
/* Return true iff NEW_PARENT defines no
* properties that are also defined by either
* OID or any of OID's descendants.
*/
extern void dbpriv_fix_properties_after_chparent(Objid oid,
Objid old_parent);
/* OID has just had its parent changed away
* from OLD_PARENT. Fix up the properties of
* OID and its descendants, removing obsolete
* ones and adding clear new ones, as
* appropriate for its new parent.
*/
/*********** Verbs ***********/
extern void dbpriv_build_prep_table(void);
/* Should be called once near the beginning of
* the world, to initialize the
* prepositional-phrase matching table.
*/
/*********** DBIO ***********/
extern Exception dbpriv_dbio_failed;
/* Raised by DBIO in case of failure (e.g.,
* running out of disk space for the dump).
*/
extern void dbpriv_set_dbio_input(FILE *);
extern void dbpriv_set_dbio_output(FILE *);
/*
* $Log: db_private.h,v $
* Revision 1.4 1998/12/14 13:17:37 nop
* Merge UNSAFE_OPTS (ref fixups); fix Log tag placement to fit CVS whims
*
* Revision 1.3 1997/07/07 03:24:53 nop
* Merge UNSAFE_OPTS (r5) after extensive testing.
*
* Revision 1.2 1997/03/03 04:18:30 nop
* GNU Indent normalization
*
* Revision 1.1.1.1 1997/03/03 03:45:02 nop
* LambdaMOO 1.8.0p5
*
* Revision 2.3 1996/02/08 06:27:28 pavel
* Updated copyright notice for 1996. Release 1.8.0beta1.
*
* Revision 2.2 1995/12/31 03:18:05 pavel
* Removed a few more uses of `unsigned'. Release 1.8.0alpha4.
*
* Revision 2.1 1995/12/28 00:57:51 pavel
* Added dbpriv_build_prep_table(). Release 1.8.0alpha3.
*
* Revision 2.0 1995/11/30 05:05:53 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.1 1995/11/30 05:05:38 pavel
* Initial revision
*/
|