1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2010, 2011 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 #include "data/session.h"
24 #include "data/dataset.h"
25 #include "libpspp/assertion.h"
26 #include "libpspp/cast.h"
27 #include "libpspp/hash-functions.h"
28 #include "libpspp/str.h"
29 #include "libpspp/hmapx.h"
31 #include "gl/xalloc.h"
35 struct hmapx datasets;
36 struct dataset *active;
37 char *syntax_encoding; /* Default encoding for syntax files. */
40 static struct hmapx_node *session_lookup_dataset__ (const struct session *,
48 s = xmalloc (sizeof *s);
49 hmapx_init (&s->datasets);
51 s->syntax_encoding = xstrdup ("Auto");
56 session_destroy (struct session *s)
60 struct hmapx_node *node, *next;
64 HMAPX_FOR_EACH_SAFE (ds, node, next, &s->datasets)
66 free (s->syntax_encoding);
72 session_active_dataset (struct session *s)
78 session_set_active_dataset (struct session *s, struct dataset *ds)
80 assert (ds == NULL || dataset_session (ds) == s);
85 session_add_dataset (struct session *s, struct dataset *ds)
89 old = session_lookup_dataset (s, dataset_name (ds));
93 session_remove_dataset (s, old);
95 hmapx_insert (&s->datasets, ds, hash_case_string (dataset_name (ds), 0));
96 if (s->active == NULL)
99 dataset_set_session__ (ds, s);
103 session_remove_dataset (struct session *s, struct dataset *ds)
105 assert (ds != s->active);
106 hmapx_delete (&s->datasets, session_lookup_dataset__ (s, dataset_name (ds)));
107 dataset_set_session__ (ds, NULL);
111 session_lookup_dataset (const struct session *s, const char *name)
113 struct hmapx_node *node = session_lookup_dataset__ (s, name);
114 return node != NULL ? node->data : NULL;
118 session_lookup_dataset_assert (const struct session *s, const char *name)
120 struct dataset *ds = session_lookup_dataset (s, name);
126 session_set_default_syntax_encoding (struct session *s, const char *encoding)
128 free (s->syntax_encoding);
129 s->syntax_encoding = xstrdup (encoding);
133 session_get_default_syntax_encoding (const struct session *s)
135 return s->syntax_encoding;
139 session_n_datasets (const struct session *s)
141 return hmapx_count (&s->datasets);
145 session_for_each_dataset (const struct session *s,
146 void (*cb) (struct dataset *, void *aux),
149 struct hmapx_node *node, *next;
152 HMAPX_FOR_EACH_SAFE (ds, node, next, &s->datasets)
157 session_get_dataset_by_seqno (const struct session *s, unsigned int seqno)
159 struct hmapx_node *node;
162 HMAPX_FOR_EACH (ds, node, &s->datasets)
163 if (dataset_seqno (ds) == seqno)
168 static struct hmapx_node *
169 session_lookup_dataset__ (const struct session *s_, const char *name)
171 struct session *s = CONST_CAST (struct session *, s_);
172 struct hmapx_node *node;
175 HMAPX_FOR_EACH_WITH_HASH (ds, node, hash_case_string (name, 0), &s->datasets)
176 if (!strcasecmp (dataset_name (ds), name))