Change union value type to contain uint8_t types instead of char.
[pspp-builds.git] / src / data / missing-values.h
index 8a14edc0d0e5f5b0ae62a6d2854332597466073f..4d046faec3a1be411c4b5be5b2f0e93881b0e182 100644 (file)
@@ -1,26 +1,46 @@
-/* PSPP - computes sample statistics.
-   Copyright (C) 2005 Free Software Foundation, Inc.
+/* PSPP - a program for statistical analysis.
+   Copyright (C) 2005, 2009 Free Software Foundation, Inc.
 
-   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 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 3 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.
+   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., 51 Franklin Street, Fifth Floor, Boston, MA
-   02110-1301, USA. */
+   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-#if !missing_values_h
-#define missing_values_h 1
+/* User-missing values.
+
+   struct missing_values is an opaque type that represents a set
+   of user-missing values associated with a variable.  Valid sets
+   of missing values depend on variable width:
+
+        - Numeric variables may have up to 3 discrete numeric
+          user-missing values, or a range of numeric values, or a
+          range plus one discrete value.
+
+        - String variables may have up to 3 discrete string
+          user-missing values.  (However, for long string
+          variables all bytes after the first MV_MAX_STRING must
+          be spaces.)
+*/
+
+#ifndef DATA_MISSING_VALUES_H
+#define DATA_MISSING_VALUES_H 1
 
 #include <stdbool.h>
-#include "value.h"
+#include "data/value.h"
+
+struct pool;
+
+/* Missing values for long string variables after the first
+   MV_MAX_STRING bytes must be all spaces. */
+#define MV_MAX_STRING 8
 
 /* Missing values.
    Opaque--use access functions defined below. */
@@ -28,7 +48,7 @@ struct missing_values
   {
     int type;                   /* Types of missing values, one of MVT_*. */
     int width;                  /* 0=numeric, otherwise string width. */
-    union value values[3];      /* Missing values.  [y,z] are the range. */
+    union value values[3];      /* Missing values.  [1], [2] are the range. */
   };
 
 /* Classes of missing values. */
@@ -40,41 +60,47 @@ enum mv_class
     MV_ANY = MV_USER | MV_SYSTEM /* Missing if it is user or system-missing. */
   };
 
+/* Is a value missing? */
+bool mv_is_value_missing (const struct missing_values *, const union value *,
+                          enum mv_class);
+bool mv_is_num_missing (const struct missing_values *, double, enum mv_class);
+bool mv_is_str_missing (const struct missing_values *, const uint8_t[],
+                        enum mv_class);
+
+/* Initializing missing value sets. */
 void mv_init (struct missing_values *, int width);
+void mv_init_pool (struct pool *pool, struct missing_values *, int width);
+void mv_destroy (struct missing_values *);
+void mv_copy (struct missing_values *, const struct missing_values *);
 void mv_clear (struct missing_values *);
 
-void mv_copy (struct missing_values *, const struct missing_values *);
+/* Changing width of a missing value set. */
+bool mv_is_resizable (const struct missing_values *, int width);
+void mv_resize (struct missing_values *, int width);
+
+/* Basic property inspection. */
+bool mv_is_acceptable (const union value *, int width);
 bool mv_is_empty (const struct missing_values *);
 int mv_get_width (const struct missing_values *);
 
-bool mv_add_value (struct missing_values *, const union value *);
-bool mv_add_str (struct missing_values *, const char[]);
-bool mv_add_num (struct missing_values *, double);
-bool mv_add_num_range (struct missing_values *, double low, double high);
-
+/* Inspecting discrete values. */
+int mv_n_values (const struct missing_values *);
 bool mv_has_value (const struct missing_values *);
-void mv_pop_value (struct missing_values *, union value *);
-void mv_peek_value (const struct missing_values *mv, union value *v, int idx);
-void mv_replace_value (struct missing_values *mv, const union value *v, int idx);
-
-int  mv_n_values (const struct missing_values *mv);
-
+const union value *mv_get_value (const struct missing_values *, int idx);
 
+/* Inspecting ranges. */
 bool mv_has_range (const struct missing_values *);
-void mv_pop_range (struct missing_values *, double *low, double *high);
-void mv_peek_range (const struct missing_values *, double *low, double *high);
-
-bool mv_is_resizable (const struct missing_values *, int width);
-void mv_resize (struct missing_values *, int width);
+void mv_get_range (const struct missing_values *, double *low, double *high);
 
-typedef bool mv_is_missing_func (const struct missing_values *,
-                                 const union value *);
+/* Adding and modifying discrete values. */
+bool mv_add_value (struct missing_values *, const union value *);
+bool mv_add_str (struct missing_values *, const uint8_t[]);
+bool mv_add_num (struct missing_values *, double);
+void mv_pop_value (struct missing_values *, union value *);
+bool mv_replace_value (struct missing_values *, const union value *, int idx);
 
-/* Is a value missing? */
-bool mv_is_value_missing (const struct missing_values *, const union value *,
-                          enum mv_class);
-bool mv_is_num_missing (const struct missing_values *, double, enum mv_class);
-bool mv_is_str_missing (const struct missing_values *, const char[],
-                        enum mv_class);
+/* Adding and modifying ranges. */
+bool mv_add_range (struct missing_values *, double low, double high);
+void mv_pop_range (struct missing_values *, double *low, double *high);
 
-#endif /* missing-values.h */
+#endif /* data/missing-values.h */