Scroll to navigation

lepton-xyrs(1) 1.9.7.20181211 lepton-xyrs(1)

NAME

lepton-xyrs - is a program to batch process XYRS files.

SYNOPSIS

lepton-xyrs file [OPTIONS]

DESCRIPTION

XYRS files are usually generated by PCB design programs, and are used by board assemblers.

Format of XYRS files is discussed in FILES section.

Processing of these files is often needed by board assemblers or designers to suit their process and tools flows.

lepton-xyrs helps batch-processing these files. Rules and commands can be defined to make batch-processing easy.

lepton-xyrs consists on a perl library providing the core functions, and a perl script providing some basic functionality.

It takes some arguments from the command line: input and output files, some modifiers, and an action-file or an action-string.

The action-file or action-script contains some commands. For every line of the input file, lepton-xyrs executes those commands, which can modify the contents of the line, and then writes the resulting line to the output file.

Since lepton-xyrs is written in perl, actions are also written in this language.

OPTIONS

Display a usage message on standard output and exit successfully. --verbose Display more information messages when processing files.
By default, lepton-xyrs doesn't process lines starting with '*' and '#' characters.

It just copies these lines to the output, without further processing.

With this option, it processes these lines as well.

Give each field in the output file a fixed length, enough to contain the longest string. Using this option make the output file easier to read by humans.
Ignore case distinctions when comparing patterns.
File with the commands to process the input file.
Interpret PATTERN as the commands to process the input file.
Save the output to the specified FILE.

If FILE string is "-" (without double quotes), then output is redirected to standard output STDOUT.

Use the given CHAR as an output field delimiter.

PREDEFINED VARIABLES

lepton-xyrs defines automatically the following variables:

column number (starting at 0) where the component reference is.
column number (starting at 0) where the component footprint is.
column number (starting at 0) where the component's X location coordinate is.
column number (starting at 0) where the component's Y location coordinate is.
column number (starting at 0) where the component rotation angle is.
column number (starting at 0) where the component's layer side location is.
column number (starting at 0) where the component's value is. Usually this is the component's part number.
this is the line number of the input file that is being currently processed.
array where each array element is a field or column of the input file's line being processed.

BUILTIN COMMANDS

All the following commands accept a checklist parameter. A checklist is a list of one or more check_items. A checkitem is a list of two single elements:

is the data index number 'n' of the global variable LINE to be checked. The first element of the data has the number 1.
is the regular expression to be matched.

The commands will only be executed on those lines that match all the checkitems in the checklist.

Delete the line (global variable LINE) if checklist is matched.

Returns -1 if error, 0 if not match, 1 if match and changed.

rotate the component the degrees given in angle parameter, if checklist is matched.

The angle column number is angle_col.

Returns 1 if match and changed, 0 if not match, -1 if error.

Replace a column value by the new value value, if checklist is matched.

Returns 1 if match and changed, 0 if not match, -1 if error.

Change units of a given column number. More than one column number can be specified.

Units is a string with the desired units. Only "mm" (milimeters), "in" (inches) and "mil" (thousands of an inch) are supported.

It is required that numbers to be converted are followed their units (see supported units above). Otherwise, the number is not changed.

Adds a number to the value in a given column number. Note: offset and the value to be changed can be in different units.

Returns -1 if error, -2 if warning, and 1 if success.

Translate a string in the column col_number if checklist is matched.

Substitution is an expression with the new string. Old column value can be used here.

Returns -1 if error, 0 if not match, 1 if match and changed.

Example:
translate 2, '^([0-9]+)n$','sprintf("%dnF",$1)', 3, 'C[0-9]+';
if the value in column 3 is C followed by a number, then
if the value in column 2 is a number followed by 'n', translate it to the same value followed by 'nF'.
If there is 'C10' in column 3 and '10n' in column 2,
change '10n' to '10nF'.

Multiply the number in the specified column number col_number by the given factor, if checklist is matched.

The number in the specified column number may have units at the end.

Returns -1 if error, 0 if not match, 1 if match and changed.

Swap columns col_number1 and col_number2 if checklist is matched.

Returns -1 if error, 0 if not match, 1 if match and changed.

Insert a new column in the given col_number position (0 if it's going to be the first column), with the value new_column_value.

Returns -1 if error, 1 if the new column was inserted.

RETURN VALUE

The return value of lepton-xyrs is an integer with the following possible values:

1 if the command found a match and the execution was successful

0 if there was no match

-1 if there was an error

-2 if there was a warning

FILES

The format of these files is not standard, and depends on the application used to generate it.

The data stored in these files is usually a header, and one line per component of the board.

For each component, at least the following information is needed by assemblers:

- Reference

- Coordinates (X and Y)

- Rotation angle

- Side where the component is located (top or bottom)

There can be more information, such as description, footprint, but this depends on the design program an its configuration.

This information is organized in lines, one line per component, and each line is divided in as much fields or columns as needed. Field delimiters are used between columns, but field delimiters are not standardized and they depend on the program used to generate the XYRS file.

The program that generates the XYRS file usually write a header (usually the first two or thre lines in the file) with a column title.

lepton-xyrs tries to guess the file format, and column numbers, based on this header. Thus, the known column titles are the following:

- for reference designator: Designator, RefDesignator, RefDes.

- for footprint: Footprint, TopCell, Description (only if there is no other "TopCell" column title).

- for X coordinate: Mid X, X.

- for Y coordinate: Mid Y, Y.

- for rotation angle: Rotation, rotation, Rot.

- for location side: TB, Side, top/bottom.

- for value: Comment, PartNumber, Value.

An action file contains a list of commands, using perl language, that can include any call to a built-in function or use any variable defined by lepton-xyrs.

Each action file should end with the following line (with a carrier return at the end of the line):

1;

EXAMPLES

Run the action file your_comands.txt with the XYRS file your_xyrs_file.txt and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --adjust your_commands.txt --output output_file.txt

Run the commands your_commands wiith the XYRS file your_xyrs_file.txt and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "your_commands" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, delete all lines having a R followed by a number in column number 2, and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "del 2, 'R[0-9]+';" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, delete all lines having a R followed by a number in reference designator column, and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "del \$REF_COL, 'R[0-9]+';" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, rotate by 90º all lines having a R followed by a number in reference designator column, and write the output result to the file output_file.txt. Use the rotation and reference column number guessed by lepton-xyrs:

lepton-xyrs your_xyrs_file.txt --eval "rotate \$ANGLE_COL, 90, \$REF_COL, 'R[0-9]+';" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, convert all numbers in column 3 and 5 to its equivalent in mm, and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "change_units 'mm', 3, 5;" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, if the value in column 3 is "0.1u", then replace it with "100nF", and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "subst 3 , '100nF', 3, '0.1u'" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, if the value in value column is "1n4148", then replace reference column with "D1", and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "subst \$REF_COL , 'D1', \$VALUE_COL, '1n4148';" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, if the text in reference column is R followed by a number, then adds 102.5mm to the value in X coordinate column, and write the output result to the file output_file.txt.

Value in column 3 can be in other units (for example: '640mil'):

lepton-xyrs your_xyrs_file.txt --eval "offset \$X_COL, '102.5mm', \$REF_COL, 'R[0-9]+' ;" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, if the text in reference column is R followed by a number, then multiply the value in X coordinate column by 2.5, and write the output result to the file output_file.txt.

Value in column 3 can be in other units (for example: '640mil'):

lepton-xyrs your_xyrs_file.txt --eval "mul_col_val \$X_COL, 2.5, \$REF_COL, 'R[0-9]+' ;" --output output_file.txt

Parse the XYRS file your_xyrs_file.txt, swap columns 3 and 4 if the text in column number 4 is R followed by a number, and write the output result to the file output_file.txt:

lepton-xyrs your_xyrs_file.txt --eval "swap_columns 3, 4, 4, 'R[0-9]+' ;" --output output_file.txt

Insert a column in the first position, displacing all existing columns to the right. Column value is 'new_column_value':

lepton-xyrs your_xyrs_file.txt --eval "insert_column 0, 'new_column_value';" --output output_file.txt

SEE ALSO

regex(7), GNU regular expression manual
December 11, 2018 Lepton EDA