metaonly interface xdc.tools.product.IProduct

Interface specifying product details

This interface allows products describe themselves for the benefit of development tools such as IDE's. For example, a tool can read the information provided by a product that implements this interface and generate an eclipse plugin that leverages the product's "resources". [ more ... ]
XDCspec summary sourced in xdc/tools/product/IProduct.xdc
metaonly interface IProduct {  ...
XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
 
metaonly interface IProduct {
module-wide constants & types
        String label// Help element description;
        String filePath// Path to help doc;
    };
 
        String name// Macro name;
        String desc// Macro description;
    };
 
        String id// Plugin id;
        String version// Plugin version;
        String path// Plugin path;
    };
 
    };
 
    metaonly struct UrlDescriptor// URL Descriptor structure {
        String url// Uniform Resource Locator(URL);
        String text// Summary text for the URL;
    };
module-wide config parameters
    config String bundleName// Product bundle name;
    config Bool exclusive// This product is a singlton = false;
    config String id// A unique product id;
    config String name// Product name;
    config String version// Product version;
}
DETAILS
This interface allows products describe themselves for the benefit of development tools such as IDE's. For example, a tool can read the information provided by a product that implements this interface and generate an eclipse plugin that leverages the product's "resources".
By expressing the product's information in this interface, a product can be delivered into multiple development tools without explicit knowledge of these tools. For example, an online "product repository" can extract sufficient information from this interface to enable it to provide a searchable catalog of interesting products.
This is an experimental interface and is subject to change
 
struct IProduct.HelpToc

Help table of contents (TOC) element

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
metaonly struct HelpToc {
    String label;
    // Help element description
    String filePath;
    // Path to help doc
    Bool tocFile;
    // Indicates whether element is a TOC file
};
 
FIELDS
label — Summary description of help element
filePath — Path to help documentation relative to directory specified in docsLoc
tocFile — Flag indicates whether the element is a table of content(TOC) file. Tools may process TOC files in a special way. For example a tool to generate eclipse plugins may want to copy the TOC file in the plugin folder for integrating with eclipse help.
DETAILS
A help element is a file inside the product that can be referenced from a global table of contents.
 
struct IProduct.MacroDescriptor

Macro Descriptor structure

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
metaonly struct MacroDescriptor {
    String name;
    // Macro name
    String desc;
    // Macro description
};
 
 
struct IProduct.PluginDescriptor

Plugin Descriptor structure

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
metaonly struct PluginDescriptor {
    String id;
    // Plugin id
    String version;
    // Plugin version
    String path;
    // Plugin path
};
 
FIELDS
id — Plugin id
version — Plugin version
path — Path to plugin relative to IProduct implementation
 
struct IProduct.Target

Structure containing information on RTSC targets

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
metaonly struct Target {
    String deviceNamePattern;
    // Device name regex eg. MSP430*
    String deviceFamilyPattern;
    // Device family regex eg. C6*
    String packageName;
    // Package containing RTSC target
    String baseTargetName;
    // Name of RTSC target module
};
 
FIELDS
deviceNamePattern — A regular expression for device names
deviceFamilyPattern — A regular expression for device families
packageName — The name of a package containing a target module that can be used with the devices that match the device name and family patterns
baseTargetName — The name of the module (without the package prefix) in the package named by packageName.
DETAILS
Products may specify RTSC target modules by associating them with device name and family regular expressions. This information is leveraged by tools to derive the RTSC target given a device name and family. Devices implement the xdc.platform.ICpuDataSheet interface. Devices can be grouped in a family and delivered as a package.
For example, the device module TMS320DA830 in the package ti.catalog.C6000 is associated with a RTSC target ti.targets.C674 by setting deviceNamePattern to TMS320DA8*, deviceFamilyPattern to C6*, packageName to ti.targets, and baseTargetName to C674.
 
struct IProduct.UrlDescriptor

URL Descriptor structure

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
metaonly struct UrlDescriptor {
    String url;
    // Uniform Resource Locator(URL)
    String text;
    // Summary text for the URL
    String targetText;
    // (optional) Summary for target portion
};
 
FIELDS
url — Uniform Resource Locator(URL)
text — Summary text for the URL
targetText — Optional summary text for any target content portion
 
config IProduct.bundleName  // module-wide

Product bundle name

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String bundleName;
 
DETAILS
Product bundle name is embedded in the top level folder name of the product. Example: The top level folder for XDCtools version 3.16.02.31-eng is xdctools_3_16_02_31-eng. In this case the bundle name is xdctools. The bundle name is used by tools to discover the product installed on a filesystem.
 
config IProduct.companyName  // module-wide

Name of company releasing product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String companyName;
 
DETAILS
Example : "Texas Instruments"
 
config IProduct.copyRightNotice  // module-wide

Copyright notice for product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String copyRightNotice;
 
 
config IProduct.docsLocArr  // module-wide

Directories containing documents in the product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String docsLocArr[];
 
DETAILS
Directories are specified relative to the product installation directory. These directories are searched when resolving URI links to specific pages within the docs.
 
config IProduct.exclusive  // module-wide

This product is a singlton

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config Bool exclusive = false;
 
DETAILS
This flag indicates whether multiple versions of this product are accessable within the IDE or whether only the latest version is available.
When flag is set to true it indicates that only one version of the product can be active in the system. Otherwise the system can handle multiple versions of the same product.
 
config IProduct.externalPlugins  // module-wide

External plugins delivered with the product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.PluginDescriptor externalPlugins[];
 
 
config IProduct.externalRequirements  // module-wide

External plugins required by this product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String externalRequirements[];
 
 
config IProduct.helpTocArr  // module-wide

Array of table of contents elements in product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.HelpToc helpTocArr[];
 
DETAILS
Tools generating table of contents are required to preserve the order of elements specified in this array
 
config IProduct.id  // module-wide

A unique product id

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String id;
 
DETAILS
For example, product developers may choose to follow namespace conventions for Java packages or Eclipse plugins to specify a unique id like org.eclipse.rtsc.xdctools.product.
 
config IProduct.licenseDescriptor  // module-wide

License information for product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.UrlDescriptor licenseDescriptor;
 
VALUES
url — field should contain the URL containing the license text.
text — field should contain a summary description of the license
 
config IProduct.macro  // module-wide

Macro associated with the product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.MacroDescriptor macro;
 
DETAILS
Product macros are often used in IDEs for providing portable build environments. A unique macro name should be selected for the product.
 
config IProduct.name  // module-wide

Product name

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String name;
 
DETAILS
String containing product name eg. System BIOS
 
config IProduct.otherFiles  // module-wide

Array of paths to files that describe the product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String otherFiles[];
 
DETAILS
A product may wish to supply files that describing certain aspects of itself. For example a product may provide text, images and video files that provide branding information for the product. These files may then be consumed by tools like IDE's via hooks defined in the IDE framework.
The source file path is defined relative to the directory containing the implementation of IProduct. All files are copied to the base directory of the plugin; e.g., "../branding/about.ini" is copied to "about.ini" at the top of the plugin.
File names that begin with the prefix "tc:" are copied into "target content" plugin whereas file names with any other prefix (such as "ui:" or no prefix) are copied into the "IDE plugin".
 
config IProduct.productDescriptor  // module-wide

Product description

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.UrlDescriptor productDescriptor;
 
VALUES
url — the url field should contain the URL of the organization releasing the product.
text — the text field should contain summary description of the target content portion of the product. Alternate text for the UI portion can be specified via productUIDescription`.
 
config IProduct.productViewModule  // module-wide

Name of module implementing xdc.tools.product.IProductView

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String productViewModule;
 
DETAILS
Products must provide a module that implements the xdc.tools.product.IProductView interface. This module defines the "top-level" modules that are visible to the user and must be delivered in the repositories defined in repositoryArr.
 
config IProduct.repositoryArr  // module-wide

Repositories contained in product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String repositoryArr[];
 
DETAILS
Repositories are specified relative to the product installation directory.
 
config IProduct.targetArr  // module-wide

RTSC target modules contained in product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.Target targetArr[];
 
DETAILS
The RTSC target modules should be delivered in the repositories defined in repositoryArr
 
config IProduct.templateModule  // module-wide

Name of module implementing xdc.tools.product.IProductTemplate

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String templateModule;
 
DETAILS
Products that deliver examples provide a module that implements the xdc.tools.product.IProductTemplate interface. This module must be delivered in one of the repositories defined in repositoryArr.
 
config IProduct.tocIndexFile  // module-wide

Top level index file referred in table of contents

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String tocIndexFile;
 
 
config IProduct.updateSite  // module-wide

Update site for product

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config IProduct.UrlDescriptor updateSite;
 
VALUES
url — the url field should contain the URL containing product upgrades.
text — the text field should contain summary description of the update site
 
config IProduct.version  // module-wide

Product version

XDCspec declarations sourced in xdc/tools/product/IProduct.xdc
config String version;
 
DETAILS
The product version should follow the format -major.minor.service.qualifier where major,minor and service are integers and qualifier is a string. Example - 3.16.02.31-eng.
Products may specify their own guidelines for updating major,minor,service and qualifier portions of the version number as long as they are unique for the product. Products may also choose to follow popular versioning conventions like those followed for versioning Eclipse plugins.
generated on Thu, 17 Nov 2011 02:03:04 GMT