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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272
|
/* $Id: graph.c,v 1.8 2009/07/11 15:38:51 erg Exp $ $Revision: 1.8 $ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#define EXTERN
#include <cghdr.h>
const char AgraphVersion[] = "VERSION";
/*
* this code sets up the resource management discipline
* and returns a new main graph struct.
*/
static Agclos_t *agclos(Agdisc_t * proto)
{
Agmemdisc_t *memdisc;
void *memclosure;
Agclos_t *rv;
/* establish an allocation arena */
memdisc = ((proto && proto->mem) ? proto->mem : &AgMemDisc);
memclosure = memdisc->open();
rv = memdisc->alloc(memclosure, sizeof(Agclos_t));
rv->disc.mem = memdisc;
rv->state.mem = memclosure;
rv->disc.id = ((proto && proto->id) ? proto->id : &AgIdDisc);
rv->disc.io = ((proto && proto->io) ? proto->io : &AgIoDisc);
rv->callbacks_enabled = TRUE;
return rv;
}
/*
* Open a new main graph with the given descriptor (directed, strict, etc.)
*/
Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * arg_disc)
{
Agraph_t *g;
Agclos_t *clos;
unsigned long gid;
clos = agclos(arg_disc);
g = clos->disc.mem->alloc(clos->state.mem, sizeof(Agraph_t));
AGTYPE(g) = AGRAPH;
g->clos = clos;
g->desc = desc;
g->desc.maingraph = TRUE;
g->root = g;
g->clos->state.id = g->clos->disc.id->open(g);
if (agmapnametoid(g, AGRAPH, name, &gid, TRUE))
AGID(g) = gid;
/* else AGID(g) = 0 because we have no alternatives */
return agopen1(g);
}
/*
* initialize dictionaries, set seq, invoke init method of new graph
*/
Agraph_t *agopen1(Agraph_t * g)
{
Agraph_t *par;
g->n_seq = agdtopen(g, &Ag_subnode_seq_disc, Dttree);
g->n_id = agdtopen(g, &Ag_subnode_id_disc, Dttree);
g->e_seq = agdtopen(g, g == agroot(g)? &Ag_mainedge_seq_disc : &Ag_subedge_seq_disc, Dttree);
g->e_id = agdtopen(g, g == agroot(g)? &Ag_mainedge_id_disc : &Ag_subedge_id_disc, Dttree);
g->g_dict = agdtopen(g, &Ag_subgraph_id_disc, Dttree);
par = agparent(g);
if (par) {
AGSEQ(g) = agnextseq(par, AGRAPH);
dtinsert(par->g_dict, g);
} /* else AGSEQ=0 */
if (!par || par->desc.has_attrs)
agraphattr_init(g);
agmethod_init(g, g);
return g;
}
/*
* Close a graph or subgraph, freeing its storage.
*/
int agclose(Agraph_t * g)
{
Agraph_t *subg, *next_subg, *par;
Agnode_t *n, *next_n;
par = agparent(g);
if ((par == NILgraph) && (AGDISC(g, mem)->close)) {
/* free entire heap */
agmethod_delete(g, g); /* invoke user callbacks */
agfreeid(g, AGRAPH, AGID(g));
AGDISC(g, mem)->close(AGCLOS(g, mem)); /* whoosh */
return SUCCESS;
}
for (subg = agfstsubg(g); subg; subg = next_subg) {
next_subg = agnxtsubg(subg);
agclose(subg);
}
for (n = agfstnode(g); n; n = next_n) {
next_n = agnxtnode(g, n);
agdelnode(g, n);
}
aginternalmapclose(g);
agmethod_delete(g, g);
assert(dtsize(g->n_id) == 0);
agdtclose(g, g->n_id);
assert(dtsize(g->n_seq) == 0);
agdtclose(g, g->n_seq);
assert(dtsize(g->e_id) == 0);
agdtclose(g, g->e_id);
assert(dtsize(g->e_seq) == 0);
agdtclose(g, g->e_seq);
assert(dtsize(g->g_dict) == 0);
agdtclose(g, g->g_dict);
if (g->desc.has_attrs)
agraphattr_delete(g);
agrecclose((Agobj_t *) g);
agfreeid(g, AGRAPH, AGID(g));
if (par) {
agdelsubg(par, g);
agfree(par, g);
} else {
Agmemdisc_t *memdisc;
void *memclos, *clos;
while (g->clos->cb)
agpopdisc(g, g->clos->cb->f);
AGDISC(g, id)->close(AGCLOS(g, id));
agstrclose(g);
memdisc = AGDISC(g, mem);
memclos = AGCLOS(g, mem);
clos = g->clos;
(memdisc->free) (memclos, g);
(memdisc->free) (memclos, clos);
}
return SUCCESS;
}
unsigned long agnextseq(Agraph_t * g, int objtype)
{
return ++(g->clos->seq[objtype]);
}
int agnnodes(Agraph_t * g)
{
return dtsize(g->n_id);
}
int agnedges(Agraph_t * g)
{
Agnode_t *n;
int rv = 0;
for (n = agfstnode(g); n; n = agnxtnode(g, n))
rv += agdegree(g, n, FALSE, TRUE); /* must use OUT to get self-arcs */
return rv;
}
int agisdirected(Agraph_t * g)
{
return g->desc.directed;
}
int agisundirected(Agraph_t * g)
{
return NOT(agisdirected(g));
}
int agisstrict(Agraph_t * g)
{
return g->desc.strict;
}
int agissimple(Agraph_t * g)
{
return (g->desc.strict && g->desc.no_loop);
}
static int cnt(Dict_t * d, Dtlink_t ** set)
{
int rv;
dtrestore(d, *set);
rv = dtsize(d);
*set = dtextract(d);
return rv;
}
int agcountuniqedges(Agraph_t * g, Agnode_t * n, int want_in, int want_out)
{
Agedge_t *e;
Agsubnode_t *sn;
int rv = 0;
sn = agsubrep(g, n);
if (want_out) rv = cnt(g->e_seq,&(sn->out_seq));
if (want_in) {
if (!want_out) rv += cnt(g->e_seq,&(sn->in_seq)); /* cheap */
else { /* less cheap */
for (e = agfstin(g, n); e; e = agnxtin(g, e))
if (e->node != n) rv++; /* don't double count loops */
}
}
return rv;
}
int agdegree(Agraph_t * g, Agnode_t * n, int want_in, int want_out)
{
Agsubnode_t *sn;
int rv = 0;
sn = agsubrep(g, n);
if (want_out) rv += cnt(g->e_seq,&(sn->out_seq));
if (want_in) rv += cnt(g->e_seq,&(sn->in_seq));
return rv;
}
int agraphidcmpf(Dict_t * d, void *arg0, void *arg1, Dtdisc_t * disc)
{
Agraph_t *sg0, *sg1;
sg0 = (Agraph_t *) arg0;
sg1 = (Agraph_t *) arg1;
return (AGID(sg0) - AGID(sg1));
}
int agraphseqcmpf(Dict_t * d, void *arg0, void *arg1, Dtdisc_t * disc)
{
Agraph_t *sg0, *sg1;
sg0 = (Agraph_t *) arg0;
sg1 = (Agraph_t *) arg1;
return (AGSEQ(sg0) - AGSEQ(sg1));
}
Dtdisc_t Ag_subgraph_id_disc = {
0, /* pass object ptr */
0, /* size (ignored) */
offsetof(Agraph_t, link), /* link offset */
NIL(Dtmake_f),
NIL(Dtfree_f),
agraphidcmpf,
NIL(Dthash_f),
agdictobjmem,
NIL(Dtevent_f)
};
/* directed, strict, no_loops, maingraph */
Agdesc_t Agdirected = { 1, 0, 0, 1 };
Agdesc_t Agstrictdirected = { 1, 1, 0, 1 };
Agdesc_t Agundirected = { 0, 0, 0, 1 };
Agdesc_t Agstrictundirected = { 0, 1, 0, 1 };
Agdisc_t AgDefaultDisc = { &AgMemDisc, &AgIdDisc, &AgIoDisc };
|