ObjexxFCL: Objexx Fortran Compatibility Library
The ObjexxFCL is a C++ library that provides Fortran-compatible array, string, formatted i/o, and intrinsic function support for Fortran-to-C++ migrations and some additional components and capabilities to support reengineering and modernization of technical C++ applications.
Fortran Migration
The core components of the ObjexxFCL provide the array, string, and intrinsic function support for Objexx Fortran-to-C++ conversions and Fortran—C++ integration.
FArray
FArrays have the attributes of Fortran 77 arrays, including:
- Each dimension can have an arbitrary index range.
- Column major element ordering: Nested loops ordered to provide efficient contiguous element access are still efficient in the C++.
- Array passing "tricks": Arrays and array elements can be passed to functions where they are declared with a different rank or dimensions.
- Assumed size array arguments.
Fstring
Fstrings have the attributes of Fortran 77 strings, including:
- Fixed length.
- Characters are indexed starting from 1.
- "Live" substrings.
- Concatenation support.
- Trailing space ignored by comparison operations.
Formatted I/O
The ObjexxFCL provides a Fortran-like formatted read and write system that works within C++ stream-based i/o. This is designed to work in-line within stream-based i/o rather than with the separate format descriptor of Fortran 77 and C to avoid the unsafe C-style i/o and to provide a starting point for subsequent i/o evolution within the preferred C++ i/o model.
Byte
The byte type is a C++ equivalent of Fortran's INTEGER*1.
Intrinsic Functions
The ObjexxFCL provides Fortran 77 intrinsic functions.
C++ Evolution
The ObjexxFCL contains components that support the evolution of technical applications after conversion from Fortran to C++ or as part of a modernization process. There are also components and functions that provide useful services for technical computing that C++ and its standard library are missing.
FArray
Technical applications often depend on fast, safe arrays and the ObjexxFCL provides some powerful array support, such as the ability to migrate to dynamic array sizing via explicit calls or a de-centralized automatic mechanism for the common situation where the sizes for different parts of the array dimensions are determined in locations scattered throughout the code.
The FArray arrays provide these capabilities that Fortran 77 arrays lack (some of which are provided by Fortran 95):
- Copy construction
- Constant arrays
- Initializer values/functions (more powerful than DATA statements)
- Optional element initialization
- Whole-array value and array assignment
- Index range and size accessors
- Linear index subscripting for fast inner loop operations
- Dynamic (run-time) (re)sizing
- Automatic dynamic allocation and sizing via Dimension objects
- Optional run-time size reporting
- Bounds checking in debug builds
ChunkVector: Very Large Vectors
ChunkVector is similar in interface to std::vector but uses multiple contiguous "chunks" of user-specified size to avoid allocation failures for very large vectors in a fragmented memory environment and to greatly reduce the performance cost of resizing operations. In typical use there is no performance degradation for ChunkVector element access compared to std::vector.
CArray & Cstring: Safe C-Style Array and String Wrappers
These are lightweight wrappers around C-style arrays and strings that catch memory errors such as leaks and buffer overflows. This allows the safe use of functions requiring those C-style types.
Byte Types
The byte and ubyte types are signed and unsigned single byte numeric types. Beyond emulating Fortran's INTEGER*1 the byte types support C++ bit operations and avoid unwanted conversions to/from the char type.
Numeric, String, and Character Functions
In addition to the Fortran 77 intrinsic support there are numeric, string, and character functions that extend and fill holes in the C++ standard library.
Licensing
The ObjexxFCL is included with our Fortran-to-C++ conversion projects and can be licensed separately. The ObjexxFCL is provided in C++ source form with a perpetual, royalty-free license that allows client modification.
Platforms/Pricing
The ObjexxFCL is written in ISO Standard C++ and is known to be compatible with the current releases of the major 32 and 64-bit C++ compilers on mainstream platforms and should be compatible with all standard compliant C++ compilers.
Contact Objexx for current ObjexxFCL pricing information.
|