/* KLayout Layout Viewer Copyright (C) 2006-2020 Matthias Koefferlein This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include "gsiDecl.h" #include "dbLEFImporter.h" #include "dbDEFImporter.h" #include "dbLEFDEFImporter.h" namespace gsi { // --------------------------------------------------------------- // gsi Implementation of specific methods static db::LEFDEFReaderOptions &get_lefdef_config (db::LoadLayoutOptions *options) { return options->get_options (); } static void set_lefdef_config (db::LoadLayoutOptions *options, const db::LEFDEFReaderOptions &config) { options->set_options (config); } // extend lay::LoadLayoutOptions with the GDS2 options static gsi::ClassExt decl_ext_lefdef_reader_options ( gsi::method_ext ("lefdef_config", &get_lefdef_config, "@brief Gets a copy of the LEF/DEF reader configuration\n" "The LEF/DEF reader configuration is wrapped in a separate object of class \\LEFDEFReaderConfiguration. See there for details.\n" "This method will return a copy of the reader configuration. To modify the configuration, modify the copy and set the modified " "configuration with \\lefdef_config=.\n" "\n" "\nThis method has been added in version 0.25.\n" ) + gsi::method_ext ("lefdef_config=", &set_lefdef_config, gsi::arg ("config"), "@brief Sets the LEF/DEF reader configuration\n" "\n" "\nThis method has been added in version 0.25.\n" ) ); static tl::Variant get_net_property_name (const db::LEFDEFReaderOptions *config) { if (config->produce_net_names ()) { return config->net_property_name (); } else { return tl::Variant (); } } static void set_net_property_name (db::LEFDEFReaderOptions *config, const tl::Variant &name) { config->set_produce_net_names (! name.is_nil ()); config->set_net_property_name (name); } static tl::Variant get_instance_property_name (const db::LEFDEFReaderOptions *config) { if (config->produce_inst_names ()) { return config->inst_property_name (); } else { return tl::Variant (); } } static void set_instance_property_name (db::LEFDEFReaderOptions *config, const tl::Variant &name) { config->set_produce_inst_names (! name.is_nil ()); config->set_inst_property_name (name); } static tl::Variant get_pin_property_name (const db::LEFDEFReaderOptions *config) { if (config->produce_pin_names ()) { return config->pin_property_name (); } else { return tl::Variant (); } } static void set_pin_property_name (db::LEFDEFReaderOptions *config, const tl::Variant &name) { config->set_produce_pin_names (! name.is_nil ()); config->set_pin_property_name (name); } static gsi::Class decl_lefdef_config ("db", "LEFDEFReaderConfiguration", gsi::method ("layer_map", (db::LayerMap &(db::LEFDEFReaderOptions::*) ()) &db::LEFDEFReaderOptions::layer_map, "@brief Gets the layer map to be used for the LEF/DEF reader\n" "@return A reference to the layer map\n" "Because LEF/DEF layer mapping is substantially different than for normal layout files, the LEF/DEF reader " "employs a separate layer mapping table. The LEF/DEF specific layer mapping is stored within the " "LEF/DEF reader's configuration and can be accessed with this attribute. The layer mapping table of " "\\LoadLayoutOptions will be ignored for the LEF/DEF reader.\n" "\n" "The setter is \\layer_map=. \\create_other_layers= is available to control whether layers " "not specified in the layer mapping table shall be created automatically." ) + gsi::method ("layer_map=", &db::LEFDEFReaderOptions::set_layer_map, "@brief Sets the layer map to be used for the LEF/DEF reader\n" "See \\layer_map for details." ) + gsi::method ("create_other_layers", &db::LEFDEFReaderOptions::read_all_layers, "@brief Gets a value indicating whether layers not mapped in the layer map shall be created too\n" "See \\layer_map for details." ) + gsi::method ("create_other_layers=", &db::LEFDEFReaderOptions::set_read_all_layers, "@brief Sets a value indicating whether layers not mapped in the layer map shall be created too\n" "See \\layer_map for details." ) + gsi::method ("dbu", &db::LEFDEFReaderOptions::dbu, "@brief Gets the database unit to use for producing the layout.\n" "This value specifies the database to be used for the layout that is read. When a DEF file is specified with " "a different database unit, the layout is translated into this database unit.\n" ) + gsi::method ("dbu=", &db::LEFDEFReaderOptions::set_dbu, gsi::arg ("dbu"), "@brief Sets the database unit to use for producing the layout.\n" "See \\dbu for details." ) + gsi::method_ext ("net_property_name", &get_net_property_name, "@brief Gets a value indicating whether and how to produce net names as properties.\n" "If set to a value not nil, net names will be attached to the net shapes generated as user properties.\n" "This attribute then specifies the user property name to be used for attaching the net names.\n" "If set to nil, no net names will be produced.\n" "\n" "The corresponding setter is \\net_property_name=." ) + gsi::method_ext ("net_property_name=", &set_net_property_name, gsi::arg ("name"), "@brief Sets a value indicating whether and how to produce net names as properties.\n" "See \\net_property_name for details." ) + gsi::method_ext ("pin_property_name", &get_pin_property_name, "@brief Gets a value indicating whether and how to produce pin names as properties.\n" "If set to a value not nil, pin names will be attached to the pin shapes generated as user properties.\n" "This attribute then specifies the user property name to be used for attaching the pin names.\n" "If set to nil, no pin names will be produced.\n" "\n" "The corresponding setter is \\pin_property_name=.\n" "\n" "This method has been introduced in version 0.26.4." ) + gsi::method_ext ("pin_property_name=", &set_pin_property_name, gsi::arg ("name"), "@brief Sets a value indicating whether and how to produce pin names as properties.\n" "See \\pin_property_name for details.\n" "\n" "This method has been introduced in version 0.26.4." ) + gsi::method_ext ("instance_property_name", &get_instance_property_name, "@brief Gets a value indicating whether and how to produce instance names as properties.\n" "If set to a value not nil, instance names will be attached to the instances generated as user properties.\n" "This attribute then specifies the user property name to be used for attaching the instance names.\n" "If set to nil, no instance names will be produced.\n" "\n" "The corresponding setter is \\instance_property_name=.\n" "\n" "This method has been introduced in version 0.26.4." ) + gsi::method_ext ("instance_property_name=", &set_instance_property_name, gsi::arg ("name"), "@brief Sets a value indicating whether and how to produce instance names as properties.\n" "See \\instance_property_name for details.\n" "\n" "This method has been introduced in version 0.26.4." ) + gsi::method ("produce_cell_outlines", &db::LEFDEFReaderOptions::produce_cell_outlines, "@brief Gets a value indicating whether to produce cell outlines.\n" "If set to true, cell outlines will be produced on the layer given by \\cell_outline_layer. " ) + gsi::method ("produce_cell_outlines=", &db::LEFDEFReaderOptions::set_produce_cell_outlines, gsi::arg ("produce"), "@brief Sets a value indicating whether to produce cell outlines.\n" "See \\produce_cell_outlines for details.\n" ) + gsi::method ("cell_outline_layer", &db::LEFDEFReaderOptions::cell_outline_layer, "@brief Gets the layer on which to produce the cell outline.\n" "This attribute is a string correspondig to the string representation of \\LayerInfo. " "This string can be either a layer number, a layer/datatype pair, a name or a combination of both. See \\LayerInfo for details.\n" "The setter for this attribute is \\cell_outline_layer=. See also \\produce_cell_outlines." ) + gsi::method ("cell_outline_layer=", &db::LEFDEFReaderOptions::set_cell_outline_layer, gsi::arg ("spec"), "@brief Sets the layer on which to produce the cell outline.\n" "See \\cell_outline_layer for details.\n" ) + gsi::method ("produce_placement_blockages", &db::LEFDEFReaderOptions::produce_placement_blockages, "@brief Gets a value indicating whether to produce placement blockage regions.\n" "If set to true, polygons will be produced representing the placement blockage region on the layer given by \\placement_blockage_layer. " ) + gsi::method ("produce_placement_blockages=", &db::LEFDEFReaderOptions::set_produce_placement_blockages, gsi::arg ("produce"), "@brief Sets a value indicating whether to produce placement blockage regions.\n" "See \\produce_placement_blockages for details.\n" ) + gsi::method ("placement_blockage_layer", &db::LEFDEFReaderOptions::placement_blockage_layer, "@brief Gets the layer on which to produce the placement blockage.\n" "This attribute is a string correspondig to the string representation of \\LayerInfo. " "This string can be either a layer number, a layer/datatype pair, a name or a combination of both. See \\LayerInfo for details." "The setter for this attribute is \\placement_blockage_layer=. See also \\produce_placement_blockages." ) + gsi::method ("placement_blockage_layer=", &db::LEFDEFReaderOptions::set_placement_blockage_layer, "@brief Sets the layer on which to produce the placement blockage.\n" "See \\placement_blockage_layer for details.\n" ) + gsi::method ("produce_via_geometry", &db::LEFDEFReaderOptions::produce_via_geometry, "@brief Sets a value indicating whether via geometries shall be produced.\n" "\n" "If set to true, shapes will be produced for each via. The layer to be produced will be determined from the " "via layer's name using the suffix provided by \\via_geometry_suffix. If there is a specific mapping in the " "layer mapping table for the via layer including the suffix, the layer/datatype will be taken from the layer " "mapping table. If there is a mapping to the undecorated via layer, the datatype will be substituted with " "the \\via_geometry_datatype value. If no mapping is defined, a unique number will be assigned to the layer " "number and the datatype will be taken from the \\via_geometry_datatype value.\n" "\n" "For example: the via layer is 'V1', \\via_geometry_suffix is 'GEO' and \\via_geometry_datatype is 1. Then:\n" "\n" "@li\n" "@ul If there is a mapping for 'V1.GEO', the layer and datatype will be taken from there. @/ul\n" "@ul If there is a mapping for 'V1', the layer will be taken from there and the datatype will be taken from \\via_geometry_datatype. " " The name of the produced layer will be 'V1.GEO'. @/ul\n" "@ul If there is no mapping for both, the layer number will be a unique value, the datatype will be taken from \\via_geometry_datatype " " and the layer name will be 'V1.GEO'. @/ul" "@/li\n" ) + gsi::method ("produce_via_geometry=", &db::LEFDEFReaderOptions::set_produce_via_geometry, gsi::arg ("produce"), "@brief Sets a value indicating whether via geometries shall be produced.\n" "See \\produce_via_geometry for details.\n" ) + gsi::method ("via_geometry_suffix", &db::LEFDEFReaderOptions::via_geometry_suffix, "@brief Gets the via geometry layer name suffix.\n" "See \\produce_via_geometry for details about this property.\n" ) + gsi::method ("via_geometry_suffix=", &db::LEFDEFReaderOptions::set_via_geometry_suffix, gsi::arg ("suffix"), "@brief Sets the via geometry layer name suffix.\n" "See \\produce_via_geometry for details about this property.\n" ) + gsi::method ("via_geometry_datatype", &db::LEFDEFReaderOptions::via_geometry_datatype, "@brief Gets the via geometry layer datatype value.\n" "See \\produce_via_geometry for details about this property.\n" ) + gsi::method ("via_geometry_datatype=", &db::LEFDEFReaderOptions::set_via_geometry_datatype, gsi::arg ("datatype"), "@brief Sets the via geometry layer datatype value.\n" "See \\produce_via_geometry for details about this property.\n" ) + gsi::method ("via_cellname_prefix", &db::LEFDEFReaderOptions::via_cellname_prefix, "@brief Gets the via cellname prefix.\n" "Vias are represented by cells. The cell name is formed by combining the via cell name prefix and the via name.\n" "\n" "This property has been added in version 0.26.5.\n" ) + gsi::method ("via_cellname_prefix=", &db::LEFDEFReaderOptions::set_via_cellname_prefix, gsi::arg ("prefix"), "@brief Sets the via cellname prefix.\n" "See \\via_cellname_prefix for details about this property.\n" "\n" "This property has been added in version 0.26.5.\n" ) + gsi::method ("produce_pins", &db::LEFDEFReaderOptions::produce_pins, "@brief Gets a value indicating whether pin geometries shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_pins=", &db::LEFDEFReaderOptions::set_produce_pins, gsi::arg ("produce"), "@brief Sets a value indicating whether pin geometries shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("pins_suffix", &db::LEFDEFReaderOptions::pins_suffix, "@brief Gets the pin geometry layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("pins_suffix=", &db::LEFDEFReaderOptions::set_pins_suffix, gsi::arg ("suffix"), "@brief Sets the pin geometry layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("pins_datatype", &db::LEFDEFReaderOptions::pins_datatype, "@brief Gets the pin geometry layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("pins_datatype=", &db::LEFDEFReaderOptions::set_pins_datatype, gsi::arg ("datatype"), "@brief Sets the pin geometry layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_lef_pins", &db::LEFDEFReaderOptions::produce_lef_pins, "@brief Gets a value indicating whether LEF pin geometries shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_lef_pins=", &db::LEFDEFReaderOptions::set_produce_lef_pins, gsi::arg ("produce"), "@brief Sets a value indicating whether LEF pin geometries shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("lef_pins_suffix", &db::LEFDEFReaderOptions::lef_pins_suffix, "@brief Gets the LEF pin geometry layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("lef_pins_suffix=", &db::LEFDEFReaderOptions::set_lef_pins_suffix, gsi::arg ("suffix"), "@brief Sets the LEF pin geometry layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("lef_pins_datatype", &db::LEFDEFReaderOptions::lef_pins_datatype, "@brief Gets the LEF pin geometry layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("lef_pins_datatype=", &db::LEFDEFReaderOptions::set_lef_pins_datatype, gsi::arg ("datatype"), "@brief Sets the LEF pin geometry layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_obstructions", &db::LEFDEFReaderOptions::produce_obstructions, "@brief Gets a value indicating whether obstruction markers shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_obstructions=", &db::LEFDEFReaderOptions::set_produce_obstructions, gsi::arg ("produce"), "@brief Sets a value indicating whether obstruction markers shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("obstructions_suffix", &db::LEFDEFReaderOptions::obstructions_suffix, "@brief Gets the obstruction marker layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("obstructions_suffix=", &db::LEFDEFReaderOptions::set_obstructions_suffix, gsi::arg ("suffix"), "@brief Sets the obstruction marker layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("obstructions_datatype", &db::LEFDEFReaderOptions::obstructions_datatype, "@brief Gets the obstruction marker layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("obstructions_datatype=", &db::LEFDEFReaderOptions::set_obstructions_datatype, gsi::arg ("datatype"), "@brief Sets the obstruction marker layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_blockages", &db::LEFDEFReaderOptions::produce_blockages, "@brief Gets a value indicating whether routing blockage markers shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_blockages=", &db::LEFDEFReaderOptions::set_produce_blockages, gsi::arg ("produce"), "@brief Sets a value indicating whether routing blockage markers shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("blockages_suffix", &db::LEFDEFReaderOptions::blockages_suffix, "@brief Gets the blockage marker layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("blockages_suffix=", &db::LEFDEFReaderOptions::set_blockages_suffix, gsi::arg ("suffix"), "@brief Sets the blockage marker layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("blockages_datatype", &db::LEFDEFReaderOptions::blockages_datatype, "@brief Gets the blockage marker layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("blockages_datatype=", &db::LEFDEFReaderOptions::set_blockages_datatype, gsi::arg ("datatype"), "@brief Sets the blockage marker layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_labels", &db::LEFDEFReaderOptions::produce_labels, "@brief Gets a value indicating whether labels shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_labels=", &db::LEFDEFReaderOptions::set_produce_labels, gsi::arg ("produce"), "@brief Sets a value indicating whether labels shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("labels_suffix", &db::LEFDEFReaderOptions::labels_suffix, "@brief Gets the label layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("labels_suffix=", &db::LEFDEFReaderOptions::set_labels_suffix, gsi::arg ("suffix"), "@brief Sets the label layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("labels_datatype", &db::LEFDEFReaderOptions::labels_datatype, "@brief Gets the labels layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("labels_datatype=", &db::LEFDEFReaderOptions::set_labels_datatype, gsi::arg ("datatype"), "@brief Sets the labels layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_routing", &db::LEFDEFReaderOptions::produce_routing, "@brief Gets a value indicating whether routing geometry shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_routing=", &db::LEFDEFReaderOptions::set_produce_routing, gsi::arg ("produce"), "@brief Sets a value indicating whether routing geometry shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("routing_suffix", &db::LEFDEFReaderOptions::routing_suffix, "@brief Gets the routing layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("routing_suffix=", &db::LEFDEFReaderOptions::set_routing_suffix, gsi::arg ("suffix"), "@brief Sets the routing layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("routing_datatype", &db::LEFDEFReaderOptions::routing_datatype, "@brief Gets the routing layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("routing_datatype=", &db::LEFDEFReaderOptions::set_routing_datatype, gsi::arg ("datatype"), "@brief Sets the routing layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." ) + gsi::method ("produce_special_routing", &db::LEFDEFReaderOptions::produce_special_routing, "@brief Gets a value indicating whether special routing geometry shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules.\n" "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("produce_special_routing=", &db::LEFDEFReaderOptions::set_produce_special_routing, gsi::arg ("produce"), "@brief Sets a value indicating whether special routing geometry shall be produced.\n" "See \\produce_via_geometry for details about the layer production rules." "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("special_routing_suffix", &db::LEFDEFReaderOptions::special_routing_suffix, "@brief Gets the special routing layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("special_routing_suffix=", &db::LEFDEFReaderOptions::set_special_routing_suffix, gsi::arg ("suffix"), "@brief Sets the special routing layer name suffix.\n" "See \\produce_via_geometry for details about the layer production rules." "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("special_routing_datatype", &db::LEFDEFReaderOptions::special_routing_datatype, "@brief Gets the special routing layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("special_routing_datatype=", &db::LEFDEFReaderOptions::set_special_routing_datatype, gsi::arg ("datatype"), "@brief Sets the special routing layer datatype value.\n" "See \\produce_via_geometry for details about the layer production rules." "\n" "The differentiation between special and normal routing has been introduced in version 0.26.5." ) + gsi::method ("separate_groups", &db::LEFDEFReaderOptions::separate_groups, "@brief Gets a value indicating whether to create separate parent cells for individual groups.\n" "If this property is set to true, instances belonging to different groups are separated by putting them into " "individual parent cells. These parent cells are named after the groups and are put into the master top cell.\n" "If this property is set to false (the default), no such group parents will be formed." "\n" "This property has been added in version 0.26.5.\n" ) + gsi::method ("separate_groups=", &db::LEFDEFReaderOptions::set_separate_groups, gsi::arg ("flag"), "@brief Gets a value indicating whether to create separate parent cells for individual groups.\n" "See \\seperate_groups for details about this property.\n" "\n" "This property has been added in version 0.26.5.\n" ) + gsi::method ("lef_files", &db::LEFDEFReaderOptions::lef_files, "@brief Gets the list technology LEF files to additionally import\n" "Returns a list of path names for technology LEF files to read in addition to the primary file. " "Relative paths are resolved relative to the file to read.\n" "\n" "The setter for this property is \\lef_files=." ) + gsi::method ("lef_files=", &db::LEFDEFReaderOptions::set_lef_files, "@brief Sets the list technology LEF files to additionally import\n" "See \\lef_files for details." ), "@brief Detailed LEF/DEF reader options\n" "This class is a aggregate belonging to the \\LoadLayoutOptions class. It provides options for the LEF/DEF reader. " "These options have been placed into a separate class to account for their complexity." ); }