{
const struct variable *src; /* Source variable. */
struct variable *dst; /* Target variable. */
- struct hmap items; /* Hash table of "struct arc_item"s. */
+ struct hmap *items; /* Hash table of "struct arc_item"s. */
};
/* Descending or ascending sort order. */
/* AUTORECODE data. */
struct autorecode_pgm
- {
- struct arc_spec *specs;
- size_t n_specs;
- };
+{
+ struct arc_spec *specs;
+ size_t n_specs;
+
+ /* Hash table of "struct arc_item"s. */
+ struct hmap *global_items;
+};
static trns_proc_func autorecode_trns_proc;
static trns_free_func autorecode_trns_free;
size_t n_srcs = 0;
size_t n_dsts = 0;
- enum arc_direction direction;
- bool print;
+ enum arc_direction direction = ASCENDING;
+ bool print = true;
struct casereader *input;
struct ccase *c;
size_t i;
bool ok;
+ /* Create procedure. */
+ arc = xzalloc (sizeof *arc);
+
/* Parse variable lists. */
lex_match_id (lexer, "VARIABLES");
lex_match (lexer, '=');
}
/* Parse options. */
- direction = ASCENDING;
- print = false;
while (lex_match (lexer, '/'))
- if (lex_match_id (lexer, "DESCENDING"))
- direction = DESCENDING;
- else if (lex_match_id (lexer, "PRINT"))
- print = true;
+ {
+ if (lex_match_id (lexer, "DESCENDING"))
+ direction = DESCENDING;
+ else if (lex_match_id (lexer, "PRINT"))
+ print = true;
+ else if (lex_match_id (lexer, "GROUP"))
+ {
+ arc->global_items = xmalloc (sizeof (*arc->global_items));
+ hmap_init (arc->global_items);
+ }
+ }
+
if (lex_token (lexer) != '.')
{
lex_error (lexer, _("expecting end of command"));
goto error;
}
- /* Create procedure. */
- arc = xmalloc (sizeof *arc);
arc->specs = xmalloc (n_dsts * sizeof *arc->specs);
arc->n_specs = n_dsts;
+
for (i = 0; i < n_dsts; i++)
{
struct arc_spec *spec = &arc->specs[i];
spec->src = src_vars[i];
- hmap_init (&spec->items);
+ if (arc->global_items)
+ {
+ spec->items = arc->global_items;
+ }
+ else
+ {
+ spec->items = xmalloc (sizeof (*spec->items));
+ hmap_init (spec->items);
+ }
}
+
/* Execute procedure. */
input = proc_open (ds);
for (; (c = casereader_read (input)) != NULL; case_unref (c))
{
item = xmalloc (sizeof *item);
value_clone (&item->from, value, width);
- hmap_insert (&spec->items, &item->hmap_node, hash);
+ hmap_insert (spec->items, &item->hmap_node, hash);
}
}
ok = casereader_destroy (input);
spec->dst = dict_create_var_assert (dict, dst_names[i], 0);
/* Create array of pointers to items. */
- n_items = hmap_count (&spec->items);
+ n_items = hmap_count (spec->items);
items = xmalloc (n_items * sizeof *items);
j = 0;
- HMAP_FOR_EACH (item, struct arc_item, hmap_node, &spec->items)
+ HMAP_FOR_EACH (item, struct arc_item, hmap_node, spec->items)
items[j++] = item;
- assert (j == n_items);
+ if (!arc->global_items)
+ assert (j == n_items);
/* Sort array by value. */
src_width = var_get_width (spec->src);
the source value from whence the new value comes. */
if (src_width > 0)
- recoded_value =
- recode_string (UTF8, dict_get_encoding (dict), (char *) value_str (from, src_width), src_width);
+ {
+ const char *str = (const char *) value_str (from, src_width);
+
+ recoded_value = recode_string (UTF8, dict_get_encoding (dict), str, src_width);
+ }
else
recoded_value = asnprintf (NULL, &len, "%g", from->f);
int width = var_get_width (spec->src);
struct arc_item *item, *next;
- HMAP_FOR_EACH_SAFE (item, next, struct arc_item, hmap_node,
- &spec->items)
- {
- value_destroy (&item->from, width);
- hmap_delete (&spec->items, &item->hmap_node);
- free (item);
- }
- hmap_destroy (&spec->items);
+ HMAP_FOR_EACH_SAFE (item, next, struct arc_item, hmap_node,
+ spec->items)
+ {
+ value_destroy (&item->from, width);
+ hmap_delete (spec->items, &item->hmap_node);
+ free (item);
+ }
}
+
+ if (arc->global_items)
+ {
+ free (arc->global_items);
+ }
+ else
+ {
+ for (i = 0; i < arc->n_specs; i++)
+ {
+ struct arc_spec *spec = &arc->specs[i];
+ if (spec->items)
+ {
+ hmap_destroy (spec->items);
+ free (spec->items);
+ }
+ }
+ }
+
free (arc->specs);
free (arc);
}
{
struct arc_item *item;
- HMAP_FOR_EACH_WITH_HASH (item, struct arc_item, hmap_node, hash,
- &spec->items)
+ HMAP_FOR_EACH_WITH_HASH (item, struct arc_item, hmap_node, hash, spec->items)
if (value_equal (value, &item->from, var_get_width (spec->src)))
return item;
return NULL;