45#include "match_string.h"
58static char *option[N_OPTIONS] = {
66 "tek2sdds <inputfile> <outputfile>\n"
67 " -signalname=<name>\n"
68 " [-description=<text>,<contents>]\n"
69 " [-mpllabels=<title>,<topline>]\n"
70 " [-majorOrder=row|column]\n"
72 " -signalname=<name> (required) Name of the signal\n"
73 " -description=<text>,<contents> (optional) Description text and contents\n"
74 " -mpllabels=<title>,<topline> (optional) MPL labels: title and topline\n"
75 " -majorOrder=row|column (optional) Major order of data\n"
77 "This program converts Tektronix ASCII format waveforms to SDDS format.\n"
79 "Program by Michael Borland (" __DATE__
" " __TIME__
", SVN revision: " SVN_VERSION
")\n";
83 char *TEK_name, *SDDS_name, *value_string;
87#define TEK_PARAMETERS 23
104 {
"BYT/NR",
"TEKBytesPerNumber", NULL,
SDDS_LONG},
106 {NULL, NULL, NULL, 0},
109char *TEK_PreambleString =
"WFMPRE ";
110char *TEK_DataMarker =
"CURVE ";
111char *TEK_PointsName =
"NR.PT";
112char *TEK_XIncrementName =
"XINCR";
113char *TEK_XZeroName =
"XZERO";
114char *TEK_XUnitsName =
"XUNIT";
115char *TEK_YUnitsName =
"YUNIT";
116char *TEK_YZeroName =
"YZERO";
117char *TEK_YMultiplierName =
"YMULT";
118char *TEK_EncodingName =
"ENCDG";
119char *TEK_BytesPerNumberName =
"BYT/NR";
120char *TEK_ByteOrderName =
"BYT.OR";
124long GetNextItem(
char *buffer,
long bufsize, FILE *fpi);
126int main(
int argc,
char **argv) {
128 SCANNED_ARG *scanned;
129 long i, i_arg, index, points, bytes_per_number;
131 char *input, *output, buffer[BUFSIZE];
132 char *signal_name, *ptr, *parameter_name;
133 char *mpl_title, *mpl_topline, *descrip_text, *descrip_contents;
136 double xIncrement, xZero, yMultiplier, yZero;
137 char *xUnits, *yUnits;
139 short columnMajorOrder = 0;
140 unsigned long majorOrderFlag;
143 xUnits = yUnits = NULL;
145 argc =
scanargs(&scanned, argc, argv);
150 input = output = signal_name = NULL;
151 mpl_title = mpl_topline = descrip_text = descrip_contents = NULL;
154 for (i_arg = 1; i_arg < argc; i_arg++) {
155 if (scanned[i_arg].arg_type == OPTION) {
158 switch (
match_string(scanned[i_arg].list[0], option, N_OPTIONS, 0)) {
159 case SET_MAJOR_ORDER:
161 scanned[i_arg].n_items--;
162 if (scanned[i_arg].n_items > 0 &&
163 (!
scanItemList(&majorOrderFlag, scanned[i_arg].list + 1, &scanned[i_arg].n_items, 0,
164 "row", -1, NULL, 0, SDDS_ROW_MAJOR_ORDER,
165 "column", -1, NULL, 0, SDDS_COLUMN_MAJOR_ORDER, NULL)))
166 SDDS_Bomb(
"invalid -majorOrder syntax/values");
167 if (majorOrderFlag & SDDS_COLUMN_MAJOR_ORDER)
168 columnMajorOrder = 1;
169 else if (majorOrderFlag & SDDS_ROW_MAJOR_ORDER)
170 columnMajorOrder = 0;
172 case SET_SIGNAL_NAME:
173 if (scanned[i_arg].n_items != 2) {
174 bomb(
"invalid -signalname syntax", USAGE);
176 signal_name = scanned[i_arg].list[1];
178 case SET_DESCRIPTION:
179 if (scanned[i_arg].n_items != 3) {
180 bomb(
"invalid -description syntax", USAGE);
182 descrip_text = scanned[i_arg].list[1];
183 descrip_contents = scanned[i_arg].list[2];
186 if (scanned[i_arg].n_items != 3) {
187 bomb(
"invalid -mpllabels syntax", USAGE);
189 mpl_title = scanned[i_arg].list[1];
190 mpl_topline = scanned[i_arg].list[2];
193 bomb(
"invalid option seen", USAGE);
198 input = scanned[i_arg].list[0];
200 output = scanned[i_arg].list[0];
202 bomb(
"too many filenames", USAGE);
213 if (fread(buffer, 1, strlen(TEK_PreambleString), fpi) != strlen(TEK_PreambleString) ||
214 strncmp(TEK_PreambleString, buffer, strlen(TEK_PreambleString)) != 0)
215 SDDS_Bomb(
"file does not appear to be in Tektronix format");
217 parameter_name = buffer;
218 while ((code = GetNextItem(buffer, BUFSIZE, fpi)) < 3) {
219 if (!(ptr = strchr(buffer,
':')))
220 SDDS_Bomb(
"error parsing input file--missing colon on parameter tag");
222 if (strcmp(TEK_DataMarker, parameter_name) == 0)
225 while (TEK_parameter[index].TEK_name) {
226 if (strcmp(TEK_parameter[index].TEK_name, parameter_name) == 0)
230 if (!TEK_parameter[index].TEK_name) {
231 fprintf(stderr,
"warning: parameter %s is not recognized\n", parameter_name);
234 if (TEK_parameter[index].value_string) {
235 fprintf(stderr,
"error: duplicate entries for parameter %s\n", parameter_name);
240 if (code == 2 || code == 3)
246 if (fread(buffer, 1, strlen(TEK_DataMarker), fpi) != strlen(TEK_DataMarker) ||
247 strncmp(TEK_DataMarker, buffer, strlen(TEK_DataMarker)) != 0)
248 SDDS_Bomb(
"CURVE item missing or not in right place");
252 SDDS_table.layout.data_mode.column_major = columnMajorOrder;
255 while (TEK_parameter[index].TEK_name) {
256 if (!TEK_parameter[index].value_string) {
260 if (strcmp(TEK_parameter[index].TEK_name, TEK_XIncrementName) == 0) {
261 if (sscanf(TEK_parameter[index].value_string,
"%lf", &xIncrement) != 1)
262 SDDS_Bomb(
"unable to scan value for x increment");
263 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_XZeroName) == 0) {
264 if (sscanf(TEK_parameter[index].value_string,
"%lf", &xZero) != 1)
265 SDDS_Bomb(
"unable to scan value for x zero");
266 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_YZeroName) == 0) {
267 if (sscanf(TEK_parameter[index].value_string,
"%lf", &yZero) != 1)
268 SDDS_Bomb(
"unable to scan value for y zero");
269 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_YMultiplierName) == 0) {
270 if (sscanf(TEK_parameter[index].value_string,
"%lf", &yMultiplier) != 1)
271 SDDS_Bomb(
"unable to scan value for y multiplier");
272 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_XUnitsName) == 0) {
273 xUnits = TEK_parameter[index].value_string;
275 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_YUnitsName) == 0) {
276 yUnits = TEK_parameter[index].value_string;
278 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_PointsName) == 0) {
279 if (sscanf(TEK_parameter[index].value_string,
"%ld", &points) != 1)
280 SDDS_Bomb(
"unable to scan value for number of points");
281 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_EncodingName) == 0) {
282 if (strcmp(TEK_parameter[index].value_string,
"ASCII") == 0)
284 else if (strcmp(TEK_parameter[index].value_string,
"BINARY") == 0)
287 SDDS_Bomb(
"data encoding is neither ASCII nor BINARY");
288 }
else if (strcmp(TEK_parameter[index].TEK_name, TEK_BytesPerNumberName) == 0) {
289 if (sscanf(TEK_parameter[index].value_string,
"%ld", &bytes_per_number) != 1)
290 SDDS_Bomb(
"unable to scan value bytes per number");
291 }
else if (strcmp(TEK_parameter[index].value_string, TEK_ByteOrderName) == 0) {
293 if (strcmp(TEK_parameter[index].value_string,
"LSB") != 0) {
297 if (
SDDS_DefineParameter(&SDDS_table, TEK_parameter[index].SDDS_name, NULL, NULL, TEK_parameter[index].TEK_name,
298 NULL, TEK_parameter[index].type, TEK_parameter[index].value_string) < 0)
313 data =
tmalloc(
sizeof(*data) * points);
314 time =
tmalloc(
sizeof(*time) * points);
316 for (i = 0; i < points; i++) {
318 if (!(code = GetNextItem(buffer, BUFSIZE, fpi)))
319 SDDS_Bomb(
"insufficient data in input file");
324 time[i] = xZero + i * xIncrement;
325 if (sscanf(buffer,
"%lf", data + i) != 1)
327 data[i] = yZero + data[i] * yMultiplier;
331 bytesRead = fread(buffer,
sizeof(
char), 4, fpi);
333 for (i = 0; i < points; i++) {
334 if (fread(&sdata,
sizeof(sdata), 1, fpi) != 1) {
335 fprintf(stderr,
"file ends unexpectedly\n");
339 time[i] = xZero + i * xIncrement;
341 data[i] = yZero + data[i] * yMultiplier;
345 if (!
SDDS_SetColumn(&SDDS_table, SDDS_SET_BY_NAME, time, points,
"t") ||
346 !
SDDS_SetColumn(&SDDS_table, SDDS_SET_BY_NAME, data, points, signal_name) ||
347 !SDDS_WriteTable(&SDDS_table) ||
353long GetNextItem(
char *buffer,
long bufsize, FILE *fpi) {
358 while (i < bufsize && (c = getc(fpi)) != EOF) {
359 if (c ==
',' || c ==
';' || c ==
'%')
363 if (c == EOF && i == 0)
372 fprintf(stderr,
"warning: invalid data seen--ignoring\n");
SDDS (Self Describing Data Set) Data Types Definitions and Function Prototypes.
int32_t SDDS_SetColumn(SDDS_DATASET *SDDS_dataset, int32_t mode, void *data, int64_t rows,...)
Sets the values for one data column in the current data table of an SDDS dataset.
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_DefineColumn(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, int32_t field_length)
Defines a data column within the SDDS dataset.
int32_t SDDS_WriteLayout(SDDS_DATASET *SDDS_dataset)
Writes the SDDS layout header to the output file.
int32_t SDDS_DefineParameter(SDDS_DATASET *SDDS_dataset, const char *name, const char *symbol, const char *units, const char *description, const char *format_string, int32_t type, char *fixed_value)
Defines a data parameter with a fixed string value.
void SDDS_PrintErrors(FILE *fp, int32_t mode)
Prints recorded error messages to a specified file stream.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
int32_t SDDS_CopyString(char **target, const char *source)
Copies a source string to a target string with memory allocation.
void SDDS_RemovePadding(char *s)
Removes leading and trailing whitespace from a string.
#define SDDS_STRING
Identifier for the string data type.
#define SDDS_LONG
Identifier for the signed 32-bit integer data type.
#define SDDS_DOUBLE
Identifier for the double data type.
void * tmalloc(uint64_t size_of_block)
Allocates a memory block of the specified size with zero initialization.
void bomb(char *error, char *usage)
Reports error messages to the terminal and aborts the program.
char * delete_chars(char *s, char *t)
Removes all occurrences of characters found in string t from string s.
FILE * fopen_e(char *file, char *open_mode, long mode)
Opens a file with error checking, messages, and aborts.
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.
int scanargs(SCANNED_ARG **scanned, int argc, char **argv)
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.
char * str_tolower(char *s)
Convert a string to lower case.