Graphviz  2.41.20171026.1811
subg.c
Go to the documentation of this file.
1 /* $Id$ $Revision$ */
2 /* vim:set shiftwidth=4 ts=8: */
3 
4 /*************************************************************************
5  * Copyright (c) 2011 AT&T Intellectual Property
6  * All rights reserved. This program and the accompanying materials
7  * are made available under the terms of the Eclipse Public License v1.0
8  * which accompanies this distribution, and is available at
9  * http://www.eclipse.org/legal/epl-v10.html
10  *
11  * Contributors: See CVS logs. Details at http://www.graphviz.org/
12  *************************************************************************/
13 
14 #include <cghdr.h>
15 
16 static Agraph_t *agfindsubg_by_id(Agraph_t * g, IDTYPE id)
17 {
18  Agraph_t template;
19 
21  AGID(&template) = id;
22  return (Agraph_t *) dtsearch(g->g_dict, &template);
23 }
24 
25 static Agraph_t *localsubg(Agraph_t * g, IDTYPE id)
26 {
27  Agraph_t *subg;
28 
29  subg = agfindsubg_by_id(g, id);
30  if (subg)
31  return subg;
32 
33  subg = agalloc(g, sizeof(Agraph_t));
34  subg->clos = g->clos;
35  subg->desc = g->desc;
36  subg->desc.maingraph = FALSE;
37  subg->parent = g;
38  subg->root = g->root;
39  AGID(subg) = id;
40  return agopen1(subg);
41 }
42 
43 Agraph_t *agidsubg(Agraph_t * g, IDTYPE id, int cflag)
44 {
45  Agraph_t *subg;
46  subg = agfindsubg_by_id(g, id);
47  if ((subg == NILgraph) && cflag && agallocid(g, AGRAPH, id))
48  subg = localsubg(g, id);
49  return subg;
50 }
51 
52 Agraph_t *agsubg(Agraph_t * g, char *name, int cflag)
53 {
54  IDTYPE id;
55  Agraph_t *subg;
56 
57  if (name && agmapnametoid(g, AGRAPH, name, &id, FALSE)) {
58  /* might already exist */
59  if ((subg = agfindsubg_by_id(g, id)))
60  return subg;
61  }
62 
63  if (cflag && agmapnametoid(g, AGRAPH, name, &id, TRUE)) { /* reserve id */
64  subg = localsubg(g, id);
65  agregister(g, AGRAPH, subg);
66  return subg;
67  }
68 
69  return NILgraph;
70 }
71 
73 {
74  return (Agraph_t *) dtfirst(g->g_dict);
75 }
76 
78 {
79  Agraph_t *g;
80 
81  g = agparent(subg);
82  return g? (Agraph_t *) dtnext(g->g_dict, subg) : 0;
83 }
84 
86 {
87  return g->parent;
88 }
89 
90 /* this function is only responsible for deleting the entry
91  * in the parent's subg dict. the rest is done in agclose().
92  */
93 long agdelsubg(Agraph_t * g, Agraph_t * subg)
94 {
95  return (long) dtdelete(g->g_dict, subg);
96 }
void agdtdisc(Agraph_t *g, Dict_t *dict, Dtdisc_t *disc)
Definition: utils.c:95
Dtdisc_t Ag_subgraph_id_disc
Definition: graph.c:262
Agdesc_t desc
Definition: cgraph.h:241
int agmapnametoid(Agraph_t *g, int objtype, char *str, IDTYPE *result, int allocflag)
Definition: id.c:96
Agraph_t * agopen1(Agraph_t *g)
Definition: graph.c:69
void agregister(Agraph_t *g, int objtype, void *obj)
Definition: id.c:169
#define AGID(obj)
Definition: cgraph.h:114
CGRAPH_API Agraph_t * agidsubg(Agraph_t *g, IDTYPE id, int cflag)
Definition: subg.c:43
#define dtdelete(d, o)
Definition: cdt.h:264
CGRAPH_API long agdelsubg(Agraph_t *g, Agraph_t *sub)
Definition: subg.c:93
#define dtfirst(d)
Definition: cdt.h:254
CGRAPH_API Agraph_t * agfstsubg(Agraph_t *g)
Definition: subg.c:72
CGRAPH_API Agraph_t * agnxtsubg(Agraph_t *subg)
Definition: subg.c:77
uint64_t IDTYPE
Definition: cgraph.h:51
CGRAPH_API Agraph_t * agsubg(Agraph_t *g, char *name, int cflag)
Definition: subg.c:52
#define dtsearch(d, o)
Definition: cdt.h:260
#define NILgraph
Definition: cghdr.h:56
CGRAPH_API Agraph_t * agparent(Agraph_t *g)
Definition: subg.c:85
#define dtnext(d, o)
Definition: cdt.h:255
Agraph_t * parent
Definition: cgraph.h:247
int agallocid(Agraph_t *g, int objtype, IDTYPE request)
Definition: id.c:126
unsigned maingraph
Definition: cgraph.h:154
Dict_t * g_dict
Definition: cgraph.h:246
CGRAPH_API void * agalloc(Agraph_t *g, size_t size)
Definition: mem.c:62
Agraph_t * root
Definition: cgraph.h:247
Agclos_t * clos
Definition: cgraph.h:248
#define FALSE
Definition: cgraph.h:35
#define AGRAPH
Definition: cgraph.h:100
#define TRUE
Definition: cgraph.h:38