KiBot/kibot/out_bom.py

461 lines
19 KiB
Python

# -*- coding: utf-8 -*-
# Copyright (c) 2020 Salvador E. Tropea
# Copyright (c) 2020 Instituto Nacional de Tecnología Industrial
# License: MIT
# Project: KiBot (formerly KiPlot)
"""
Internal BoM (Bill of Materials) output for KiBot.
This is somehow compatible with KiBoM.
"""
import os
from re import compile, IGNORECASE
from .gs import GS
from .optionable import Optionable, BaseOptions
from .registrable import RegOutput
from .error import KiPlotConfigurationError
from .macros import macros, document, output_class # noqa: F401
from .bom.columnlist import ColumnList, BoMError
from .bom.bom import do_bom
from .var_kibom import KiBoM
from . import log
logger = log.get_logger(__name__)
VALID_STYLES = {'modern-blue': 1, 'modern-green': 1, 'modern-red': 1, 'classic': 1}
DEFAULT_ALIASES = [['r', 'r_small', 'res', 'resistor'],
['l', 'l_small', 'inductor'],
['c', 'c_small', 'cap', 'capacitor'],
['sw', 'switch'],
['zener', 'zenersmall'],
['d', 'diode', 'd_small'],
]
# String matches for marking a component as "do not fit"
class BoMRegex(Optionable):
""" Implements the pair column/regex """
def __init__(self):
super().__init__()
self._unkown_is_error = True
with document:
self.column = ''
""" Name of the column to apply the regular expression """
self.regex = ''
""" Regular expression to match """
self.field = None
""" {column} """
self.regexp = None
""" {regex} """
# def __str__(self):
# return self.column+'\t'+self.regex
class BoMColumns(Optionable):
""" Information for the BoM columns """
def __init__(self):
super().__init__()
self._unkown_is_error = True
with document:
self.field = ''
""" Name of the field to use for this column """
self.name = ''
""" Name to display in the header. The field is used when empty """
self.join = Optionable
""" [list(string)|string=''] List of fields to join to this column """
def config(self):
super().config()
if not self.field:
raise KiPlotConfigurationError("Missing or empty `field` in columns list ({})".format(str(self._tree)))
# Ensure this is None or a list
# Also arrange it as field, cols...
field = self.field.lower()
if isinstance(self.join, type):
self.join = None
elif isinstance(self.join, str):
if self.join:
self.join = [field, self.join.lower()]
else:
self.join = None
else:
self.join = [field]+[c.lower() for c in self.join]
class BoMLinkable(Optionable):
""" Base class for HTML and XLSX formats """
def __init__(self):
super().__init__()
with document:
self.col_colors = True
""" Use colors to show the field type """
self.datasheet_as_link = ''
""" Column with links to the datasheet """
self.digikey_link = Optionable
""" [string|list(string)=''] Column/s containing Digi-Key part numbers, will be linked to web page """
self.generate_dnf = True
""" Generate a separated section for DNF (Do Not Fit) components """
self.hide_pcb_info = False
""" Hide project information """
self.hide_stats_info = False
""" Hide statistics information """
self.highlight_empty = True
""" Use a color for empty cells. Applies only when `col_colors` is `true` """
self.logo = Optionable
""" [string|boolean=''] PNG file to use as logo, use false to remove """
self.title = 'KiBot Bill of Materials'
""" BoM title """
def config(self):
super().config()
# digikey_link
if isinstance(self.digikey_link, type):
self.digikey_link = []
elif isinstance(self.digikey_link, list):
self.digikey_link = [c.lower() for c in self.digikey_link]
# Logo
if isinstance(self.logo, type):
self.logo = ''
elif isinstance(self.logo, bool):
self.logo = '' if self.logo else None
elif self.logo:
self.logo = os.path.abspath(self.logo)
if not os.path.isfile(self.logo):
raise KiPlotConfigurationError('Missing logo file `{}`'.format(self.logo))
# Datasheet as link
self.datasheet_as_link = self.datasheet_as_link.lower()
class BoMHTML(BoMLinkable):
""" HTML options """
def __init__(self):
super().__init__()
with document:
self.style = 'modern-blue'
""" Page style. Internal styles: modern-blue, modern-green, modern-red and classic.
Or you can provide a CSS file name. Please use .css as file extension. """
def config(self):
super().config()
# Style
if not self.style:
self.style = 'modern-blue'
if self.style not in VALID_STYLES:
self.style = os.path.abspath(self.style)
if not os.path.isfile(self.style):
raise KiPlotConfigurationError('Missing style file `{}`'.format(self.style))
class BoMCSV(Optionable):
""" CSV options """
def __init__(self):
super().__init__()
with document:
self.separator = ','
""" CSV Separator. TXT and TSV always use tab as delimiter """
self.hide_pcb_info = False
""" Hide project information """
self.hide_stats_info = False
""" Hide statistics information """
self.quote_all = False
""" Enclose all values using double quotes """
class BoMXLSX(BoMLinkable):
""" XLSX options """
def __init__(self):
super().__init__()
with document:
self.max_col_width = 60
""" [20,999] Maximum column width (characters) """
self.style = 'modern-blue'
""" Head style: modern-blue, modern-green, modern-red and classic. """
def config(self):
super().config()
# Style
if not self.style:
self.style = 'modern-blue'
if self.style not in VALID_STYLES:
raise KiPlotConfigurationError('Unknown style `{}`'.format(self.style))
class ComponentAliases(Optionable):
_default = DEFAULT_ALIASES
def __init__(self):
super().__init__()
class GroupFields(Optionable):
_default = ColumnList.DEFAULT_GROUPING
def __init__(self):
super().__init__()
class BoMOptions(BaseOptions):
DEFAULT_EXCLUDE = [[ColumnList.COL_REFERENCE, '^TP[0-9]*'],
[ColumnList.COL_REFERENCE, '^FID'],
[ColumnList.COL_PART, 'mount.*hole'],
[ColumnList.COL_PART, 'solder.*bridge'],
[ColumnList.COL_PART, 'solder.*jump'],
[ColumnList.COL_PART, 'test.*point'],
[ColumnList.COL_FP, 'test.*point'],
[ColumnList.COL_FP, 'mount.*hole'],
[ColumnList.COL_FP, 'fiducial'],
]
def __init__(self):
with document:
self.number = 1
""" Number of boards to build (components multiplier) """
self.variant = ''
""" Board variant(s), used to determine which components
are output to the BoM. """
self.output = GS.def_global_output
""" filename for the output (%i=bom)"""
self.format = ''
""" [HTML,CSV,TXT,TSV,XML,XLSX] format for the BoM.
If empty defaults to CSV or a guess according to the options. """
# Equivalent to KiBoM INI:
self.ignore_dnf = True
""" Exclude DNF (Do Not Fit) components """
self.use_alt = False
""" Print grouped references in the alternate compressed style eg: R1-R7,R18 """
self.group_connectors = True
""" Connectors with the same footprints will be grouped together, independent of the name of the connector """
self.test_regex = True
""" Each component group will be tested against a number of regular-expressions
(see `include_only` and `exclude_any`) """
self.merge_blank_fields = True
""" Component groups with blank fields will be merged into the most compatible group, where possible """
self.fit_field = 'Config'
""" Field name used to determine if a particular part is to be fitted (also DNC, not for variants).
This value is used only when no variants are specified """
self.group_fields = GroupFields
""" [list(string)] List of fields used for sorting individual components into groups.
Components which match (comparing *all* fields) will be grouped together.
Field names are case-insensitive.
If empty: ['Part', 'Part Lib', 'Value', 'Footprint', 'Footprint Lib'] is used """
self.component_aliases = ComponentAliases
""" [list(list(string))] A series of values which are considered to be equivalent for the part name.
Each entry is a list of equivalen names. Example: ['c', 'c_small', 'cap' ]
will ensure the equivalent capacitor symbols can be grouped together.
If empty the following aliases are used:
- ['r', 'r_small', 'res', 'resistor']
- ['l', 'l_small', 'inductor']
- ['c', 'c_small', 'cap', 'capacitor']
- ['sw', 'switch']
- ['zener', 'zenersmall']
- ['d', 'diode', 'd_small'] """
self.include_only = BoMRegex
""" [list(dict)] A series of regular expressions used to select included parts.
If there are any regex defined here, only components that match against ANY of them will be included.
Column names are case-insensitive.
If empty all the components are included """
self.exclude_any = BoMRegex
""" [list(dict)] A series of regular expressions used to exclude parts.
If a component matches ANY of these, it will be excluded.
Column names are case-insensitive.
If empty the following list is used:
- column: References
..regex: '^TP[0-9]*'
- column: References
..regex: '^FID'
- column: Part
..regex: 'mount.*hole'
- column: Part
..regex: 'solder.*bridge'
- column: Part
..regex: 'solder.*jump'
- column: Part
..regex: 'test.*point'
- column: Footprint
..regex: 'test.*point'
- column: Footprint
..regex: 'mount.*hole'
- column: Footprint
..regex: 'fiducial' """
self.columns = BoMColumns
""" [list(dict)|list(string)] List of columns to display.
Can be just the name of the field """
self.normalize_values = False
""" Try to normalize the R, L and C values, producing uniform units and prefixes """
self.normalize_locale = False
""" When normalizing values use the locale decimal point """
self.html = BoMHTML
""" [dict] Options for the HTML format """
self.xlsx = BoMXLSX
""" [dict] Options for the XLSX format """
self.csv = BoMCSV
""" [dict] Options for the CSV, TXT and TSV formats """
super().__init__()
@staticmethod
def _get_columns():
""" Create a list of valid columns """
if GS.sch:
return GS.sch.get_field_names(ColumnList.COLUMNS_DEFAULT)
def _guess_format(self):
""" Figure out the format """
if not self.format:
# If we have HTML options generate an HTML
if not isinstance(self.html, type):
return 'html'
# Same for XLSX
if not isinstance(self.xlsx, type):
return 'xlsx'
# Default to a simple and common format: CSV
return 'csv'
# Explicit selection
return self.format.lower()
@staticmethod
def _fix_ref_field(field):
""" References -> Reference """
col = field.lower()
if col == ColumnList.COL_REFERENCE_L:
col = col[:-1]
return col
def _normalize_variant(self):
""" Replaces the name of the variant by an object handling it. """
if self.variant:
if self.variant not in RegOutput._def_variants:
raise KiPlotConfigurationError("Unknown variant name `{}`".format(self.variant))
self.variant = RegOutput._def_variants[self.variant]
else:
# If no variant is specified use the KiBoM variant class with basic functionality
self.variant = KiBoM()
self.variant.config_field = self.fit_field
self.variant.variant = []
self.variant.name = 'default'
def config(self):
super().config()
self.format = self._guess_format()
# HTML options
if self.format == 'html' and isinstance(self.html, type):
# If no options get the defaults
self.html = BoMHTML()
self.html.config()
# CSV options
if self.format in ['csv', 'tsv', 'txt'] and isinstance(self.csv, type):
# If no options get the defaults
self.csv = BoMCSV()
self.csv.config()
# XLSX options
if self.format == 'xlsx' and isinstance(self.xlsx, type):
# If no options get the defaults
self.xlsx = BoMXLSX()
self.xlsx.config()
# group_fields
if isinstance(self.group_fields, type):
self.group_fields = ColumnList.DEFAULT_GROUPING
else:
# Make the grouping fields lowercase
self.group_fields = [f.lower() for f in self.group_fields]
# component_aliases
if isinstance(self.component_aliases, type):
self.component_aliases = DEFAULT_ALIASES
# include_only
if isinstance(self.include_only, type):
self.include_only = None
else:
for r in self.include_only:
r.regex = compile(r.regex, flags=IGNORECASE)
# exclude_any
if isinstance(self.exclude_any, type):
self.exclude_any = []
for r in BoMOptions.DEFAULT_EXCLUDE:
o = BoMRegex()
o.column = self._fix_ref_field(r[0])
o.regex = compile(r[1], flags=IGNORECASE)
self.exclude_any.append(o)
else:
for r in self.exclude_any:
r.column = self._fix_ref_field(r.column)
r.regex = compile(r.regex, flags=IGNORECASE)
# Make the config field name lowercase
self.fit_field = self.fit_field.lower()
# Variants, make it an object
self._normalize_variant()
# Columns
self.column_rename = {}
self.join = []
valid_columns = self._get_columns()
if isinstance(self.columns, type):
# If none specified make a list with all the possible columns.
# Here are some exceptions:
# Ignore the part and footprint library, also sheetpath and the Reference in singular
ignore = [ColumnList.COL_PART_LIB_L, ColumnList.COL_FP_LIB_L, ColumnList.COL_SHEETPATH_L,
ColumnList.COL_REFERENCE_L[:-1]]
if self.number <= 1:
# For one board avoid COL_GRP_BUILD_QUANTITY
ignore.append(ColumnList.COL_GRP_BUILD_QUANTITY_L)
# Exclude the particular columns
self.columns = [h for h in valid_columns if not h.lower() in ignore]
else:
# Ensure the column names are valid.
# Also create the rename and join lists.
# Lower case available columns (to check if valid)
valid_columns_l = {c.lower(): c for c in valid_columns}
logger.debug("Valid columns: {} ({})".format(valid_columns, len(valid_columns)))
# Create the different lists
columns = []
for col in self.columns:
if isinstance(col, str):
# Just a string, add to the list of used
new_col = col
else:
# A complete entry
new_col = col.field
# A column rename
if col.name:
self.column_rename[col.field.lower()] = col.name
# Attach other columns
if col.join:
self.join.append(col.join)
# Check this is a valid column
if new_col.lower() not in valid_columns_l:
raise KiPlotConfigurationError('Invalid column name `{}`'.format(new_col))
columns.append(new_col)
# This is the ordered list with the case style defined by the user
self.columns = columns
def run(self, output_dir, board):
format = self.format.lower()
output = self.expand_filename_sch(output_dir, self.output, 'bom', format)
# Add some info needed for the output to the config object.
# So all the configuration is contained in one object.
self.source = GS.sch_basename
self.date = GS.sch_date
self.revision = GS.sch_rev
self.debug_level = GS.debug_level
self.kicad_version = GS.kicad_version
# Get the components list from the schematic
comps = GS.sch.get_components()
try:
do_bom(output, format, comps, self)
except BoMError as e:
raise KiPlotConfigurationError(str(e))
@output_class
class BoM(BaseOutput): # noqa: F821
""" BoM (Bill of Materials)
Used to generate the BoM in CSV, HTML, TSV, TXT, XML or XLSX format using the internal BoM.
Is compatible with KiBoM, but doesn't need to update the XML netlist because the components
are loaded from the schematic.
Important differences with KiBoM output:
- All options are in the main `options` section, not in `conf` subsection.
- The `Component` column is named `Row` and works just like any other column.
This output is what you get from the 'Tools/Generate Bill of Materials' menu in eeschema. """
def __init__(self):
super().__init__()
with document:
self.options = BoMOptions
""" [dict] Options for the `bom` output """
self._sch_related = True