109 {
110 SCANNED_ARG *s_arg;
111 double *output_col;
112 char *input_col_name, *match_col_name, *inputfile, *outputfile;
113 long i, i_arg, delay, tmp_file_used;
114 unsigned long pipe_flags, major_order_flag;
115 char actual_name[256], actual_desc[256], delay_name[256];
116 double sim_delay, lower, upper, final_mse;
118 short column_major_order = -1;
119 char **input_col_names = NULL;
120 int32_t n_input_col_names = 0;
121
123 argc =
scanargs(&s_arg, argc, argv);
124 if (argc < 2) {
126 }
127
128
129 tmp_file_used = 0;
130 pipe_flags = 0;
131 inputfile = outputfile = input_col_name = match_col_name = NULL;
132 delay = 0;
133 sim_delay = 0.0;
134 zero = circular = 0;
135 input_col = match_col = output_col = working = NULL;
136
137
138 for (i_arg = 1; i_arg < argc; i_arg++) {
139 if (s_arg[i_arg].arg_type == OPTION) {
141 switch (
match_string(s_arg[i_arg].list[0], option, N_OPTIONS, 0)) {
142 case CLO_MAJOR_ORDER:
143 major_order_flag = 0;
144 s_arg[i_arg].n_items--;
145 if (s_arg[i_arg].n_items > 0 &&
146 (!
scanItemList(&major_order_flag, s_arg[i_arg].list + 1, &s_arg[i_arg].n_items, 0,
147 "row", -1, NULL, 0, SDDS_ROW_MAJOR_ORDER,
148 "column", -1, NULL, 0, SDDS_COLUMN_MAJOR_ORDER, NULL))) {
149 SDDS_Bomb(
"Invalid -majorOrder syntax/values");
150 }
151 if (major_order_flag & SDDS_COLUMN_MAJOR_ORDER) {
152 column_major_order = 1;
153 } else if (major_order_flag & SDDS_ROW_MAJOR_ORDER) {
154 column_major_order = 0;
155 }
156 break;
157 case CLO_PIPE:
158 if (!
processPipeOption(s_arg[i_arg].list + 1, s_arg[i_arg].n_items - 1, &pipe_flags)) {
160 }
161 break;
162 case CLO_COLUMNS:
163 if (s_arg[i_arg].n_items < 2) {
165 }
166 if (n_input_col_names) {
167 SDDS_Bomb(
"Invalid syntax: specify -columns once only");
168 }
169 input_col_names =
tmalloc(
sizeof(*input_col_names) * (s_arg[i_arg].n_items - 1));
170 for (i = 1; i < s_arg[i_arg].n_items; i++) {
171 input_col_names[i - 1] = s_arg[i_arg].list[i];
172 }
173 n_input_col_names = s_arg[i_arg].n_items - 1;
174 break;
175 case CLO_DELAY:
176 if (s_arg[i_arg].n_items != 2) {
178 }
179 if (!
get_long(&delay, s_arg[i_arg].list[1])) {
180 SDDS_Bomb(
"Invalid delay value provided.");
181 }
182 break;
183 case CLO_MATCH:
184 if (s_arg[i_arg].n_items != 2) {
186 }
187 match_col_name = s_arg[i_arg].list[1];
188 break;
189 case CLO_ZERO:
190 zero = 1;
191 break;
192 case CLO_CIRCULAR:
193 circular = 1;
194 break;
195 default:
196 fprintf(stderr, "Error (%s): unknown switch: %s\n", argv[0], s_arg[i_arg].list[0]);
197 exit(EXIT_FAILURE);
198 }
199 } else {
200 if (!inputfile) {
201 inputfile = s_arg[i_arg].list[0];
202 } else if (!outputfile) {
203 outputfile = s_arg[i_arg].list[0];
204 } else {
206 }
207 }
208 }
209
210 processFilenames(
"sddsshift", &inputfile, &outputfile, pipe_flags, 1, &tmp_file_used);
211
212 if (zero && circular) {
213 SDDS_Bomb(
"The -zero and -circular options are mutually exclusive.");
214 }
215
216 if (n_input_col_names == 0) {
217 SDDS_Bomb(
"A shift column is not given!");
218 }
219 if (!match_col_name && !delay) {
220 SDDS_Bomb(
"Either match column or shift should be provided.");
221 }
222 if (match_col_name && delay) {
223 SDDS_Bomb(
"-match column option and -shift option are incompatible.");
224 }
225
226
229 }
230
231 if (!resolve_column_names(&SDDS_input, &input_col_names, &n_input_col_names)) {
233 }
234
237 exit(EXIT_FAILURE);
238 }
239
240 SDDS_output.layout.data_mode.column_major = column_major_order != -1 ? column_major_order : SDDS_input.layout.data_mode.column_major;
241
242 for (i = 0; i < n_input_col_names; i++) {
243 snprintf(actual_name, sizeof(actual_name), "Shifted%s", input_col_names[i]);
244 snprintf(actual_desc, sizeof(actual_desc), "Shifted %s", input_col_names[i]);
245 snprintf(delay_name, sizeof(delay_name), "%sShift", input_col_names[i]);
249 exit(EXIT_FAILURE);
250 }
251 }
252
255 exit(EXIT_FAILURE);
256 }
257
261 }
262
264 if (npoints < 0) {
266 }
267
268 for (i = 0; i < n_input_col_names; i++) {
269 snprintf(actual_name, sizeof(actual_name), "Shifted%s", input_col_names[i]);
270 snprintf(delay_name, sizeof(delay_name), "%sShift", input_col_names[i]);
272 if (!input_col) {
274 }
275
276 output_col = calloc(npoints, sizeof(*output_col));
277 if (!output_col) {
279 }
280
281 if (match_col_name) {
283 if (!match_col) {
285 }
286 working = calloc(npoints, sizeof(*working));
287 if (!working) {
289 }
290 lower = -((double)npoints - 1);
291 upper = (double)npoints - 1;
292 simplexMin(&final_mse, &sim_delay, NULL, &lower, &upper, NULL, 1, 1e-6, 1e-12, simplex_driver, NULL, 2 * npoints, 6, 12, 3, 1.0, 0);
293 delay = (long)sim_delay;
294 free(working);
295 free(match_col);
296 match_col = working = NULL;
297 }
298
299 shift(input_col, output_col, npoints, delay, zero, circular);
300 if (!
SDDS_SetParameters(&SDDS_output, SDDS_SET_BY_NAME | SDDS_PASS_BY_VALUE, delay_name, delay, NULL) ||
301 !
SDDS_SetColumn(&SDDS_output, SDDS_SET_BY_NAME, output_col, npoints, actual_name)) {
303 }
304
305 free(output_col);
306 free(input_col);
307 output_col = input_col = NULL;
308 }
309
312 }
313 }
314
317 }
318
320 return EXIT_SUCCESS;
321}
int32_t SDDS_InitializeCopy(SDDS_DATASET *SDDS_target, SDDS_DATASET *SDDS_source, char *filename, char *filemode)
int32_t SDDS_CopyPage(SDDS_DATASET *SDDS_target, SDDS_DATASET *SDDS_source)
int32_t SDDS_SetParameters(SDDS_DATASET *SDDS_dataset, int32_t mode,...)
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_WritePage(SDDS_DATASET *SDDS_dataset)
Writes the current data table to the output file.
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_RegisterProgramName(const char *name)
Registers the executable program name for use in error messages.
void SDDS_Bomb(char *message)
Terminates the program after printing an error message and recorded errors.
#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.
int get_long(long *iptr, char *s)
Parses a long integer value from the given string.
char * delete_chars(char *s, char *t)
Removes all occurrences of characters found in string t from string s.
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 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.
long simplexMin(double *yReturn, double *xGuess, double *dxGuess, double *xLowerLimit, double *xUpperLimit, short *disable, long dimensions, double target, double tolerance, double(*func)(double *x, long *invalid), void(*report)(double ymin, double *xmin, long pass, long evals, long dims), long maxEvaluations, long maxPasses, long maxDivisions, double divisorFactor, double passRangeFactor, unsigned long flags)
Top-level convenience function for simplex-based minimization.