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
|
/// @file
/// @brief generic manipulations with @ref Agobj_t and derived objects graphs, nodes and edges
/// @ingroup cgraph_object
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Details at https://graphviz.org
*************************************************************************/
#include <cgraph/cghdr.h>
#include <stdlib.h>
#include <util/alloc.h>
#include <util/unreachable.h>
int agdelete(Agraph_t * g, void *obj)
{
if (AGTYPE(obj) == AGRAPH && g != agparent(obj)) {
agerrorf("agdelete on wrong graph");
return FAILURE;
}
switch (AGTYPE(obj)) {
case AGNODE:
return agdelnode(g, obj);
case AGINEDGE:
case AGOUTEDGE:
return agdeledge(g, obj);
case AGRAPH:
return agclose(obj);
default:
agerrorf("agdelete on bad object");
}
return SUCCESS; /* not reached */
}
int agrename(Agobj_t * obj, char *newname)
{
Agraph_t *g;
IDTYPE old_id, new_id;
switch (AGTYPE(obj)) {
case AGRAPH:
old_id = AGID(obj);
g = agraphof(obj);
/* can we reserve the id corresponding to newname? */
if (agmapnametoid(agroot(g), AGTYPE(obj), newname, &new_id, false) == 0)
return FAILURE;
if (new_id == old_id)
return SUCCESS;
if (agmapnametoid(agroot(g), AGTYPE(obj), newname, &new_id, true) == 0)
return FAILURE;
/* obj* is unchanged, so no need to re agregister() */
if (agparent(g) && agidsubg(agparent(g), new_id))
return FAILURE;
agfreeid(g, AGRAPH, old_id);
AGID(g) = new_id;
break;
case AGNODE:
return agrelabel_node((Agnode_t *) obj, newname);
case AGINEDGE:
case AGOUTEDGE:
return FAILURE;
default:
UNREACHABLE();
}
return SUCCESS;
}
/* perform initialization/update/finalization method invocation.
* skip over nil pointers to next method below.
*/
void agmethod_init(Agraph_t * g, void *obj)
{
aginitcb(g, obj, g->clos->cb);
}
void aginitcb(Agraph_t * g, void *obj, Agcbstack_t * cbstack)
{
agobjfn_t fn;
if (cbstack == NULL)
return;
aginitcb(g, obj, cbstack->prev);
fn = NULL;
switch (AGTYPE(obj)) {
case AGRAPH:
fn = cbstack->f->graph.ins;
break;
case AGNODE:
fn = cbstack->f->node.ins;
break;
case AGEDGE:
fn = cbstack->f->edge.ins;
break;
default: // ignore
break;
}
if (fn)
fn(g, obj, cbstack->state);
}
void agmethod_upd(Agraph_t * g, void *obj, Agsym_t * sym)
{
agupdcb(g, obj, sym, g->clos->cb);
}
void agupdcb(Agraph_t * g, void *obj, Agsym_t * sym, Agcbstack_t * cbstack)
{
agobjupdfn_t fn;
if (cbstack == NULL)
return;
agupdcb(g, obj, sym, cbstack->prev);
fn = NULL;
switch (AGTYPE(obj)) {
case AGRAPH:
fn = cbstack->f->graph.mod;
break;
case AGNODE:
fn = cbstack->f->node.mod;
break;
case AGEDGE:
fn = cbstack->f->edge.mod;
break;
default: // ignore
break;
}
if (fn)
fn(g, obj, cbstack->state, sym);
}
void agmethod_delete(Agraph_t * g, void *obj)
{
agdelcb(g, obj, g->clos->cb);
}
void agdelcb(Agraph_t * g, void *obj, Agcbstack_t * cbstack)
{
agobjfn_t fn;
if (cbstack == NULL)
return;
agdelcb(g, obj, cbstack->prev);
fn = NULL;
switch (AGTYPE(obj)) {
case AGRAPH:
fn = cbstack->f->graph.del;
break;
case AGNODE:
fn = cbstack->f->node.del;
break;
case AGEDGE:
fn = cbstack->f->edge.del;
break;
default: // ignore
break;
}
if (fn)
fn(g, obj, cbstack->state);
}
Agraph_t *agroot(void* obj)
{
if (obj == 0) return NULL;
switch (AGTYPE(obj)) {
case AGINEDGE:
case AGOUTEDGE:
return ((Agedge_t *) obj)->node->root;
case AGNODE:
return ((Agnode_t *) obj)->root;
case AGRAPH:
return ((Agraph_t *) obj)->root;
default: /* actually can't occur if only 2 bit tags */
agerrorf("agroot of a bad object");
return NULL;
}
}
Agraph_t *agraphof(void *obj)
{
switch (AGTYPE(obj)) {
case AGINEDGE:
case AGOUTEDGE:
return ((Agedge_t *) obj)->node->root;
case AGNODE:
return ((Agnode_t *) obj)->root;
case AGRAPH:
return obj;
default: /* actually can't occur if only 2 bit tags */
agerrorf("agraphof a bad object");
return NULL;
}
}
/* to manage disciplines */
void agpushdisc(Agraph_t * g, Agcbdisc_t * cbd, void *state)
{
Agcbstack_t *stack_ent = gv_alloc(sizeof(Agcbstack_t));
stack_ent->f = cbd;
stack_ent->state = state;
stack_ent->prev = g->clos->cb;
g->clos->cb = stack_ent;
}
int agpopdisc(Agraph_t * g, Agcbdisc_t * cbd)
{
Agcbstack_t *stack_ent;
stack_ent = g->clos->cb;
if (stack_ent) {
if (stack_ent->f == cbd)
g->clos->cb = stack_ent->prev;
else {
while (stack_ent && stack_ent->prev->f != cbd)
stack_ent = stack_ent->prev;
if (stack_ent && stack_ent->prev)
stack_ent->prev = stack_ent->prev->prev;
}
if (stack_ent) {
free(stack_ent);
return SUCCESS;
}
}
return FAILURE;
}
int agcontains(Agraph_t* g, void* obj)
{
Agraph_t* subg;
if (agroot (g) != agroot (obj)) return 0;
switch (AGTYPE(obj)) {
case AGRAPH:
subg = obj;
do {
if (subg == g) return 1;
} while ((subg = agparent (subg)));
return 0;
case AGNODE:
return agidnode(g, AGID(obj), 0) != 0;
default:
return agsubedge(g, obj, 0) != 0;
}
}
int agobjkind(void *arg)
{
return AGTYPE(arg);
}
|