STDF
NAME
Parse::STDF - Module for parsing files in Standard Test Data Format
SYNOPSIS
use Parse::STDF;
try
{
my $s = Parse::STDF.new( stdf => $stdf );
while $s.get_record
{
given ( $s.recname )
{
when "MIR"
{
my $mir = $s.mir;
printf("Started At: %s\n", $mir.START_T.ctime);
printf("Station Number: %d\n", $mir.STAT_NUM);
printf("Station Mode: %s\n", $mir.MODE_COD.chr);
printf("Retst_Code: %s\n", $mir.RTST_COD.chr);
printf("Lot: %s\n", $mir.LOT_ID.cnstr);
printf("Part Type: %s\n", $mir.PART_TYP.cnstr);
printf("Node Name: %s\n", $mir.NODE_NAM.cnstr);
printf("Tester Type: %s\n", $mir.TSTR_TYP.cnstr);
printf("Program: %s\n", $mir.JOB_NAM.cnstr);
printf("Version: %s\n", $mir.JOB_REV.cnstr);
printf("Sublot: %s\n", $mir.SBLOT_ID.cnstr);
printf("Operator: %s\n", $mir.OPER_NAM.cnstr);
printf("Executive: %s\n", $mir.EXEC_TYP.cnstr);
printf("Test Code: %s\n", $mir.TEST_COD.cnstr);
printf("Test Temperature: %s\n", $mir.TST_TEMP.cnstr);
printf("Package Type: %s\n", $mir.PKG_TYP.cnstr);
printf("Facility ID: %s\n", $mir.FACIL_ID.cnstr);
printf("Design Revision: %s\n", $mir.DSGN_REV.cnstr);
printf("Flow ID: %s\n", $mir.FLOW_ID.cnstr);
last;
}
default {}
}
}
CATCH
{
when X::Parse::STDF { say $_.message; }
default { say $_; }
}
}
DESCRIPTION
Standard Test Data Format (STDF) is a widely used standard file format for semiconductor test information. It is a commonly used format produced by automatic test equipment (ATE) platforms from companies such as LTX-Credence, Roos Instruments, Teradyne, Advantest, and others.
A STDF file is compacted into a binary format according to a well defined specification originally designed by Teradyne. The record layouts, field definitions, and sizes are all described within the specification. Over the years, parser tools have been developed to decode this binary format in several scripting languages, but as of yet nothing has been released to CPAN for Perl.
Parse::STDF is a first attempt. It is an object oriented module containing methods which invoke APIs of
an underlying C library called libstdf
(see http://freestdf.sourceforge.net/). libstdf
performs
the grunt work of reading and parsing binary data into STDF records represented as C-structs. These
structs are in turn referenced as Perl objects.
SEE ALSO
For an intro to the Standard Test Data Format (along with references to detailed documentation) see http://en.wikipedia.org/wiki/Standard_Test_Data_Format.
AUTHOR
Erick Jordan <[email protected]>