99 {
101 char tmpName[1024];
102 long i_arg, tmpfile_used = 0, j, column_major;
103 SCANNED_ARG *s_arg;
104 int32_t page, numCols, columns, columnType;
105 int64_t i, rows, outputRows, outputRow;
106 char *inputfile, *outputfile;
107 char *rowColName, *dataColName, *rootnameColName, **rowName, **columnName;
108 double data;
109 unsigned long pipeFlags, majorOrderFlag;
110
111 inputfile = outputfile = rowColName = dataColName = rootnameColName = NULL;
112 pipeFlags = 0;
113 rowName = columnName = NULL;
114 majorOrderFlag = 0;
115 column_major = 1;
116
118 argc =
scanargs(&s_arg, argc, argv);
119 if (argc < 2) {
120 fprintf(stderr, "%s\n", USAGE);
121 return 1;
122 }
123
124 for (i_arg = 1; i_arg < argc; i_arg++) {
125 if (s_arg[i_arg].arg_type == OPTION) {
126 switch (
match_string(s_arg[i_arg].list[0], option, N_OPTIONS, 0)) {
127 case SET_MAJOR_ORDER:
128 s_arg[i_arg].n_items -= 1;
129 if (s_arg[i_arg].n_items > 0 &&
130 (!
scanItemList(&majorOrderFlag, s_arg[i_arg].list + 1, &s_arg[i_arg].n_items, 0,
131 "row", -1, NULL, 0, SDDS_ROW_MAJOR_ORDER,
132 "column", -1, NULL, 0, SDDS_COLUMN_MAJOR_ORDER, NULL)))
133 SDDS_Bomb(
"invalid -majorOrder syntax/values");
134 if (majorOrderFlag & SDDS_COLUMN_MAJOR_ORDER)
135 column_major = 1;
136 if (majorOrderFlag & SDDS_ROW_MAJOR_ORDER)
137 column_major = 0;
138 break;
139 case SET_ROW_COLUMN_NAME:
140 if (s_arg[i_arg].n_items != 2) {
141 fprintf(stderr, "Error (%s): invalid -rowNameColumn syntax\n", argv[0]);
142 return 1;
143 }
144 rowColName = s_arg[i_arg].list[1];
145 break;
146 case SET_DATA_COLUMN_NAME:
147 if (s_arg[i_arg].n_items != 2) {
148 fprintf(stderr, "Error (%s): invalid -dataColumnName syntax\n", argv[0]);
149 return 1;
150 }
151 dataColName = s_arg[i_arg].list[1];
152 break;
153 case SET_ROOTNAME_COLUMN_NAME:
154 if (s_arg[i_arg].n_items != 2) {
155 fprintf(stderr, "Error (%s): invalid -rootnameColumnName syntax\n", argv[0]);
156 return 1;
157 }
158 rootnameColName = s_arg[i_arg].list[1];
159 break;
160 case SET_PIPE:
161 if (!
processPipeOption(s_arg[i_arg].list + 1, s_arg[i_arg].n_items - 1, &pipeFlags)) {
162 fprintf(stderr, "Error (%s): invalid -pipe syntax\n", argv[0]);
163 return 1;
164 }
165 break;
166 default:
167 fprintf(stderr, "Error: unknown option -- %s provided.\n", s_arg[i_arg].list[0]);
168 return 1;
169 }
170 } else {
171 if (inputfile == NULL)
172 inputfile = s_arg[i_arg].list[0];
173 else if (outputfile == NULL)
174 outputfile = s_arg[i_arg].list[0];
175 else {
176 fprintf(stderr, "Error (%s): too many filenames\n", argv[0]);
177 return 1;
178 }
179 }
180 }
181
182 if ((!pipeFlags && !outputfile)) {
183 fprintf(stderr, "Error: output file not provided.\n");
184 return 1;
185 }
186 processFilenames(
"sddsmatrix2column", &inputfile, &outputfile, pipeFlags, 0, &tmpfile_used);
187
188 numCols = 0;
191 return 1;
192 }
193 if (!
SDDS_InitializeOutput(&SDDS_dataset, SDDS_orig.layout.data_mode.mode, 1, NULL, NULL, outputfile) ||
199 return 1;
200 }
203 return 1;
204 }
205 numCols = 0;
206 for (i = 0; i < columns; i++) {
208 numCols++;
209 }
210 }
211
214 fprintf(stderr, "Error: problem counting rows in input page\n");
216 return 1;
217 }
218 outputRows = rows * numCols;
220 fprintf(stderr, "Error: problem starting output page\n");
222 return 1;
223 }
224 if (rows > 0) {
225 if (rowColName) {
228 } else {
229 fprintf(stderr, "Error %s column does not exist or not string type in input file %s\n", rowColName, inputfile);
230 return 1;
231 }
232 }
233 outputRow = 0;
234 if (!column_major) {
235 for (i = 0; i < rows; i++) {
236 for (j = 0; j < columns; j++) {
238 if (rowColName) {
239 snprintf(tmpName, sizeof(tmpName), "%s%s", rowName[i], SDDS_orig.layout.column_definition[j].name);
240 } else {
241 snprintf(tmpName, sizeof(tmpName), "Row%" PRId64 "%s", i, SDDS_orig.layout.column_definition[j].name);
242 }
243 switch (columnType) {
245 data = ((long double *)SDDS_orig.data[j])[i];
246 break;
248 data = ((double *)SDDS_orig.data[j])[i];
249 break;
251 data = ((float *)SDDS_orig.data[j])[i];
252 break;
254 data = ((int64_t *)SDDS_orig.data[j])[i];
255 break;
257 data = ((uint64_t *)SDDS_orig.data[j])[i];
258 break;
260 data = ((int32_t *)SDDS_orig.data[j])[i];
261 break;
263 data = ((uint32_t *)SDDS_orig.data[j])[i];
264 break;
266 data = ((short *)SDDS_orig.data[j])[i];
267 break;
269 data = ((unsigned short *)SDDS_orig.data[j])[i];
270 break;
271 default:
272 data = 0.0;
273 }
274
275 if (!
SDDS_SetRowValues(&SDDS_dataset, SDDS_SET_BY_INDEX | SDDS_PASS_BY_VALUE, outputRow, 0, tmpName, 1, data, -1)) {
277 return 1;
278 }
279 outputRow++;
280 }
281 }
282 }
283 } else {
284 for (j = 0; j < columns; j++) {
286 continue;
287 for (i = 0; i < rows; i++) {
288 if (rowColName) {
289 snprintf(tmpName, sizeof(tmpName), "%s%s", SDDS_orig.layout.column_definition[j].name, rowName[i]);
290 } else {
291 snprintf(tmpName, sizeof(tmpName), "%sRow%" PRId64, SDDS_orig.layout.column_definition[j].name, i);
292 }
293 switch (columnType) {
295 data = ((long double *)SDDS_orig.data[j])[i];
296 break;
298 data = ((double *)SDDS_orig.data[j])[i];
299 break;
301 data = ((float *)SDDS_orig.data[j])[i];
302 break;
304 data = ((int64_t *)SDDS_orig.data[j])[i];
305 break;
307 data = ((uint64_t *)SDDS_orig.data[j])[i];
308 break;
310 data = ((int32_t *)SDDS_orig.data[j])[i];
311 break;
313 data = ((uint32_t *)SDDS_orig.data[j])[i];
314 break;
316 data = ((short *)SDDS_orig.data[j])[i];
317 break;
319 data = ((unsigned short *)SDDS_orig.data[j])[i];
320 break;
321 default:
322 data = 0.0;
323 }
324
325 if (!
SDDS_SetRowValues(&SDDS_dataset, SDDS_SET_BY_INDEX | SDDS_PASS_BY_VALUE, outputRow, 0, tmpName, 1, data, -1)) {
327 return 1;
328 }
329 outputRow++;
330 }
331 }
332 }
333 }
334 if (!
SDDS_SetParameters(&SDDS_dataset, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE,
"InputFile", inputfile ? inputfile :
"pipe", NULL) ||
336 fprintf(stderr, "Error: problem writing page to file %s\n", outputfile);
338 return 1;
339 }
340 if (rowColName) {
342 rowName = NULL;
343 }
344 }
347 return 1;
348 }
350 return 1;
351 }
352
354 return 0;
355}
int32_t SDDS_SetRowValues(SDDS_DATASET *SDDS_dataset, int32_t mode, int64_t row,...)
int32_t SDDS_StartPage(SDDS_DATASET *SDDS_dataset, int64_t expected_n_rows)
int32_t SDDS_SetParameters(SDDS_DATASET *SDDS_dataset, int32_t mode,...)
int32_t SDDS_InitializeOutput(SDDS_DATASET *SDDS_dataset, int32_t data_mode, int32_t lines_per_row, const char *description, const char *contents, const char *filename)
Initializes the SDDS output dataset.
int32_t SDDS_DefineSimpleColumn(SDDS_DATASET *SDDS_dataset, const char *name, const char *unit, int32_t type)
Defines a simple data column within the SDDS dataset.
int32_t SDDS_DefineSimpleParameter(SDDS_DATASET *SDDS_dataset, const char *name, const char *unit, int32_t type)
Defines a simple data parameter within the SDDS dataset.
int32_t SDDS_WritePage(SDDS_DATASET *SDDS_dataset)
Writes the current data table to the output file.
int32_t SDDS_WriteLayout(SDDS_DATASET *SDDS_dataset)
Writes the SDDS layout header to the output file.
int32_t SDDS_FreeStringArray(char **string, int64_t strings)
Frees an array of strings by deallocating each individual string.
int32_t SDDS_CheckColumn(SDDS_DATASET *SDDS_dataset, char *name, char *units, int32_t type, FILE *fp_message)
Checks if a column exists in the SDDS dataset with the specified name, units, and type.
char ** SDDS_GetColumnNames(SDDS_DATASET *SDDS_dataset, int32_t *number)
Retrieves the names of all columns in the SDDS dataset.
void SDDS_PrintErrors(FILE *fp, int32_t mode)
Prints recorded error messages to a specified file stream.
void SDDS_RegisterProgramName(const char *name)
Registers the executable program name for use in error messages.
int32_t SDDS_GetColumnType(SDDS_DATASET *SDDS_dataset, int32_t index)
Retrieves the data type of a column in the SDDS dataset by its index.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
#define SDDS_ULONG
Identifier for the unsigned 32-bit integer data type.
#define SDDS_FLOAT
Identifier for the float data type.
#define SDDS_STRING
Identifier for the string data type.
#define SDDS_ULONG64
Identifier for the unsigned 64-bit integer data type.
#define SDDS_LONG
Identifier for the signed 32-bit integer data type.
#define SDDS_SHORT
Identifier for the signed short integer data type.
#define SDDS_USHORT
Identifier for the unsigned short integer data type.
#define SDDS_DOUBLE
Identifier for the double data type.
#define SDDS_NUMERIC_TYPE(type)
Checks if the given type identifier corresponds to any numeric type.
#define SDDS_LONGDOUBLE
Identifier for the long double data type.
#define SDDS_LONG64
Identifier for the signed 64-bit integer data type.
long match_string(char *string, char **option, long n_options, long mode)
Matches a given string against an array of option strings based on specified modes.
long replaceFileAndBackUp(char *file, char *replacement)
Replaces a file with a replacement file and creates a backup of the original.
int scanargs(SCANNED_ARG **scanned, int argc, char **argv)
long processPipeOption(char **item, long items, unsigned long *flags)
void processFilenames(char *programName, char **input, char **output, unsigned long pipeFlags, long noWarnings, long *tmpOutputUsed)
void free_scanargs(SCANNED_ARG **scanned, int argc)
long scanItemList(unsigned long *flags, char **item, long *items, unsigned long mode,...)
Scans a list of items and assigns values based on provided keywords and types.