File: umlformalparameter.c

package info (click to toggle)
dia 0.98%2Bgit20260221-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,136 kB
  • sloc: ansic: 156,533; xml: 14,063; python: 6,250; cpp: 3,647; sh: 447; perl: 137; makefile: 33
file content (149 lines) | stat: -rw-r--r-- 3,924 bytes parent folder | download | duplicates (2)
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
/* Dia -- an diagram creation/manipulation program
 * Copyright (C) 1998 Alexander Larsson
 *
 * umlformalparameter.c : refactored from uml.c, class.c to final use StdProps
 *                  PROP_TYPE_DARRAY, a list where each element is a set
 *                  of properies described by the same StdPropDesc
 * Copyright (C) 2005 Hans Breuer
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include "config.h"

#include <glib/gi18n-lib.h>

#include <string.h>

#include "uml.h"
#include "properties.h"

static PropDescription umlformalparameter_props[] = {
  { "name", PROP_TYPE_STRING, PROP_FLAG_VISIBLE | PROP_FLAG_OPTIONAL,
  N_("Name"), NULL, NULL },
  { "type", PROP_TYPE_STRING, PROP_FLAG_VISIBLE | PROP_FLAG_OPTIONAL,
  N_("Type"), NULL, NULL },

  PROP_DESC_END
};

static PropOffset umlformalparameter_offsets[] = {
  { "name", PROP_TYPE_STRING, offsetof(UMLFormalParameter, name) },
  { "type", PROP_TYPE_STRING, offsetof(UMLFormalParameter, type) },
  { NULL, 0, 0 },
};

PropDescDArrayExtra umlformalparameter_extra = {
  { umlformalparameter_props, umlformalparameter_offsets, "umlformalparameter" },
  (NewRecordFunc) uml_formal_parameter_new,
  (FreeRecordFunc) uml_formal_parameter_unref
};

G_DEFINE_BOXED_TYPE (UMLFormalParameter, uml_formal_parameter, uml_formal_parameter_ref, uml_formal_parameter_unref)


UMLFormalParameter *
uml_formal_parameter_new (void)
{
  UMLFormalParameter *param;

  param = g_rc_box_new0 (UMLFormalParameter);
  param->name = NULL;
  param->type = NULL;

  return param;
}


UMLFormalParameter *
uml_formal_parameter_copy (UMLFormalParameter *param)
{
  UMLFormalParameter *newparam;

  newparam = uml_formal_parameter_new ();

  newparam->name = g_strdup (param->name);
  newparam->type = g_strdup (param->type);

  return newparam;
}


UMLFormalParameter *
uml_formal_parameter_ref (UMLFormalParameter *param)
{
  g_return_val_if_fail (param != NULL, NULL);

  return g_rc_box_acquire (param);
}


static void
formal_parameter_destroy (UMLFormalParameter *param)
{
  g_clear_pointer (&param->name, g_free);
  g_clear_pointer (&param->type, g_free);
}


void
uml_formal_parameter_unref (UMLFormalParameter *param)
{
  g_rc_box_release_full (param, (GDestroyNotify) formal_parameter_destroy);
}


void
uml_formal_parameter_write (AttributeNode       attr_node,
                            UMLFormalParameter *param,
                            DiaContext         *ctx)
{
  DataNode composite;

  composite = data_add_composite (attr_node, "umlformalparameter", ctx);

  data_add_string (composite_add_attribute (composite, "name"),
                   param->name, ctx);
  data_add_string (composite_add_attribute (composite, "type"),
                   param->type, ctx);
}


char *
uml_formal_parameter_get_string (UMLFormalParameter *parameter)
{
  int len;
  char *str;

  /* Calculate length: */
  len = parameter->name ? strlen (parameter->name) : 0;

  if (parameter->type != NULL) {
    len += 1 + strlen (parameter->type);
  }

  /* Generate string: */
  str = g_new0 (char, len + 1);
  strcpy (str, parameter->name ? parameter->name : "");
  if (parameter->type != NULL) {
    strcat (str, ":");
    strcat (str, parameter->type);
  }

  g_assert (strlen (str) == len);

  return str;
}