Skip to content

mfkiwl/OpenOrCadParser

 
 

Repository files navigation

OpenOrCadParser

Purpose of this project is to provide a C++17 library for parsing Cadence's OrCAD Capture binary file formats. This library can be linked to other software for reading/modifying?/writing? OrCAD binary files.

See also the complementary project OpenAllegroParser.

The focus lies on schematics (*.DSN/*.DBK) and symbol libraries (*.OLB/*.OBK), the second file format is just the extension for its corresponding backup file. Backups should be identical, just with a different file extension.

OrCAD allows exporting its designs to XML files which are easy to read and verify the interpretation of bytes in the DSN/OLB-files. E.g. enums are stored as a numeric value which should be the same that is used in the binary formats. However, it seems like not all information is stored in the XML.

The following two XSD files provide a good overview of the XML file structure, types and much more. They can be used as a reference what features are actually stored in the binary file and which we do already parse and which not.

C:\Cadence\SPB_17.4\tools\capture\tclscripts\capDB\dsn.xsd

C:\Cadence\SPB_17.4\tools\capture\tclscripts\capDB\olb.xsd


Documentation

  1. File Container
    1. Container Structure
  2. File Format Changes
  3. Tests
  4. Parser Implementation

Current State — January 2023

  • I plan on implementing a very basic XML exporter for Package
    • This allows to generate images by importing into KiCad via pyorlib2ki
  • It's planned to finish the Package parser around spring 2023
  • A PoC KiCad importer should follow in summer 2023

Build

# Set path to vcpkg
VCPKG_DIR=../vcpkg

# Build
cmake -B build -DCMAKE_BUILD_TYPE=Release -S . -DCMAKE_TOOLCHAIN_FILE=$VCPKG_DIR/scripts/buildsystems/vcpkg.cmake
cmake --build build

Dependencies


Usage

./cli/OpenOrCadParser-cli --help
Allowed options:
  -h [ --help ]               produce help message
  -t [ --print_tree ]         print container tree
  -e [ --extract ]            extract binary files from CFBF container
  -i [ --input ] arg          input file to parse
  -o [ --output ] arg         output path (required iff extract is set)
  -v [ --verbosity ] arg (=4) verbosity level (0 = off, 6 = highest)
  -s [ --stop ]               stop parsing on low severity errors

./cli/OpenOrCadParser-cli --input file.DSN --extract --output out/
./cli/OpenOrCadParser-cli --input file.DSN --print_tree
./cli/OpenOrCadParser-cli --input file.OLB --verbosity 6 >> file.txt

Unit Tests

Test Documentation


Related Projects

orlib2ki (C based OrCAD XML Library to KiCad Converter)

pyorlib2ki (Python based OrCAD XML Library to KiCad Converter)


How to Contribute?

There are different ways to help this project forward. Some are

  • provide test files (manually created or automated via Tcl/Tk),
  • help reverse engineering/documenting the file format, or
  • implement some unit tests.

In case you don't have access to OrCAD you can get

What about OrCAD Lite? It was was replaced with OrCAD Viewer/Trial [1].


Cadence Terms and Conditions

Terms and Conditions

Terms of Use Agreement

About

OpenOrCadParser - FOSS Parser for Cadence OrCAD designs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • C++ 93.4%
  • Python 3.2%
  • CMake 2.9%
  • Shell 0.5%