项目作者: jbrazda

项目描述 :
IICS Design Reporting Tools
高级语言: XQuery
项目地址: git://github.com/jbrazda/iics-reporting-tools.git
创建时间: 2019-10-03T18:50:50Z
项目社区:https://github.com/jbrazda/iics-reporting-tools

开源协议:MIT License

下载


IICS Design Reporting Tools

This project contains set of tools to provide reporting on exported assets packages from Informatica IICS
Tool is Installed and deployed by Apache Ant Script and set of XQuery modules based web application deployed on BaseX Database HTTP Server

Designs Report

See Other Screenshots

Features

  • Detailed IICS exported asset reports
  • Basic designs statistics
  • Dependency and Impact analysis
  • Detailed Design report
  • Supported IICS object types
    • Service Connectors
    • Connection
    • Process Objects
    • Processes
    • Guides
    • Task Flows
  • Support for MacOS, Windows, Linux

This tool is developed as web application on top of BaseX XQuery Database and HTTP Server provided by BaseX
Tool provides set of scripts to download, install and deploy custom application to BaseX Server.

It can be plugged-in into the automated Build process to Publish And make online reports available as shown in the
Fault Alert Service Implementation

Installation of the Tool

Pre-requisites

  • JAVA JRE 1.8 or newer
  • Apache Ant 1.9 or newer

Note: By default BaseX runtime would be installed in the /opt/java/library/basex folder on Mac or Linux you have to create java folder and grant permissions to it as follows. You can set location to a different folder if desired in step 2 of the installation guide

  1. mkdir /opt/java
  2. # set owner to your user and group
  3. chown jbrazda:jbrazda /opt/java

Note you can follow My guide to setup these here

Install Steps

  1. Clone this repository
  2. Run ant target

    1. ant basex.configure
  3. Run ant target ``

    1. ant basex.install
  4. Run ant target

    1. ant basex.deploy.webapps
  5. Run ant target

    1. ant basexhttp.start
  6. Create Database from IICS Exported Package Zip file

  7. Go tp Go to http://localhost:8984/iics

Upgrading from previous Version

  1. Update Repository From github

    1. git pull --rebase
  2. run ant ant basex.upgrade

Create Exported Objects Database

You can import unmodified Export package to BaseX Databases several ways

Using a command line as shown below or using BaseX Gui Application.

  1. basex -c "CREATE DATABASE [DB_NAME] [PATH TO EXPORTED zip]"

Example

  1. basex -c "CREATE DATABASE IICS_ICLAB_SRC_2019_07_08 /Users/jbrazda/git/icrt_common/com.informatica.ipd/target/drop/IICS_ICLAB_SRC_2019_07_08.zip"

Ant Target Parameters and Examples

  1. Buildfile: /home/jbrazda/git/github/jbrazda/iics-reporting-tools/build.xml
  2. IICS Reporting Tools Build Script
  3. Main targets:
  4. basex.configure Configure Reporting Tool
  5. basex.create.db Create new BaseX Database from Source file, archive or directory
  6. basex.deploy.webapps Deploys Custom Webapps to BaseX Http Server to basex_home/webapp
  7. basex.download Download BaseX
  8. basex.download.update Download BaseX Update
  9. basex.drop.db Drop Existing BaseX DB by name
  10. basex.gui Start BaseX GUI
  11. basex.install Installs BaseX DB and Tools
  12. basex.sample.db.create Create Sample DEMO_DB
  13. basex.sample.db.drop Drop Sample DEMO_DB
  14. basex.uninstall Stops and Uninstall BaseX Server and Tools
  15. basex.upgrade Upgrades BaseX Runtime to Latest Version
  16. basexhttp.start Run BaseX HTTP Server
  17. basexhttp.stop Stop BaseX HTTP Server
  18. help help - describes how to use this script
  19. install.all Installs BaseX Tools, Deploys IICS Reporting App and runs BaseX HTTP server
  20. project.update.from.basex Updates sources from basex http server webapp/iics dir

Ant Script main Properties File

  1. # Tool Defaults
  2. default.iics.reporting.basex.home=/opt/java/library/basex
  3. default.iics.reporting.downloads.dir=${user.home}/Downloads
  4. iics.reporting.config=${user.home}/.iics.reporting.properties
  5. iics.reporting.sample.file=FaultAlertService_InitialInstall_All_Designs.zip
  6. iics.reporting.sample.url=https://raw.githubusercontent.com/jbrazda/icai-fault-alert-service/master/dist/FaultAlertService_InitialInstall_All_Designs.zip
  7. # BaseX Distribution Properties
  8. basex.download.file=BaseX924.zip
  9. basex.download.url=http://files.basex.org/releases/9.2.4/${basex.download.file}
  10. basex.http.base_url=http://localhost:8984
  11. basex.java_home=/Library/Java/JavaVirtualMachines/jdk1.8.0_162.jdk/Contents/Home
  12. ## Configure your IICS org region. For example, us, eu, ap
  13. iics.region=us

Target basex.create.db

This target Will create New database Typically from zip archive as a part of the build process

Parameters

Property Description Example Value
basex.create.db.name Database name FaultAlertService_iclab-dev_all_designs
basex.create.db.source Database source Can be Directory containing XML files, single XML File or zip archive which is the most common scenario in our case FaultAlertService_iclab-dev_all_designs.zip
env.info.displayed Suppress print of environment Info true

Example Use in Ant Script

You can run the tools from a parent Ant script using an ant target Assuming that the ${tools.package.reporting} is pointing to build.xml file of this project

  1. <ant antfile="${tools.package.reporting}" target="basex.create.db" inheritall="false" inheritrefs="false">
  2. <property name="basex.create.db.name" value="${release.package.label}"></property>
  3. <property name="basex.create.db.source" location="${iics.import.dir}/${release.package.label}.zip"></property>
  4. <property name="env.info.displayed" value="true"></property>
  5. </ant>

Target basex.create.db

This target Will create New database Typically from zip archive as a part of the build process

Parameters

Property Description Example Value
basex.drop.db.name Database name FaultAlertService_iclab-dev_all_designs
env.info.displayed Suppress print of environment Info true

Example Use in Ant Script

  1. <ant antfile="${tools.package.reporting}" target="basex.drop.db" inheritall="false" inheritrefs="false">
  2. <property name="basex.drop.db.name" value="DB_NAME"></property>
  3. <property name="env.info.displayed" value="true"></property>
  4. </ant>

Release Notes

Release Feb 2022

This version brings range of changes toi installation and maintenance of the reporting tool

  • upgraded BaseX Runtime to Version 9.6
  • Refactored build.xml to Install and manage
  • Added new ant targets to Self update and automated upgrade of the basex to latest available version
  • some previous target names have changed see current targets
  1. Buildfile: build.xml
  2. IICS Reporting Tools Build Script
  3. Main targets:
  4. basex.configure Configure Reporting Tool
  5. basex.create.db Create new BaseX Database from Source file, archive or directory
  6. basex.deploy.webapps Deploys Custom Webapps to BaseX Http Server to basex_home/webapp
  7. basex.download Download BaseX
  8. basex.download.update Download BaseX Update
  9. basex.drop.db Drop Existing BaseX DB by name
  10. basex.gui Start BaseX GUI
  11. basex.install Installs BaseX DB and Tools
  12. basex.sample.db.create Create Sample DEMO_DB
  13. basex.sample.db.drop Drop Sample DEMO_DB
  14. basex.uninstall Stops and Uninstall BaseX Server and Tools
  15. basex.upgrade Upgrades BaseX Runtime to Latest Version
  16. basexhttp.start Run BaseX HTTP Server
  17. basexhttp.stop Stop BaseX HTTP Server
  18. help help - describes how to use this script
  19. install.all Installs BaseX Tools, Deploys IICS Reporting App and runs BaseX HTTP server
  20. project.update.from.basex Updates sources from basex http server webapp/iics dir

Release 2019-12-0

  • Upgraded BaseX Runtime to Version 9.3

To update your BaseX Installation Pull changes from this repository and run following Commands

NOTE: This will completely remove previous installation including any previously imported Databases (If you want to preserve your existing databases, backup your basex_home/data before you proceed)

  1. ant basex.stop
  2. ant basex.uninstall
  3. ant basex.install
  4. ant basex.deploy.iics
  5. ant basex.run