MiniM. Saving time.


| About | Download | Tools | Knowledge Base | How to Buy |

MiniM Overview

Getting Started

Download

Documentation

Tools

Cache Tools

GT.M Tools

Knowledge Base

FAQ

Licensing

Contacts

Copyrights

MiniM Technology Overview | Feb 10, 2010

MiniM Overview
Client GUI Utilities
MiniM Debugger
Macro Preprocessor
MiniM Server Connect
MiniM Web Access
External ZDLL Call
MiniM Embedded Edition
Devices
Transactional Database
Language Extensions
Telnet
Console
Licensing
StealthTrace
Macro Preprocessor

MiniM Database Server since version 1.6 supports macroses in macro routines. Developer can use preprocessor directives and macros substitution.

While traditional routines, what was defined in the MUMPS language, does not supports preprocessor directives such as #include, #ifdef, #define and others, macro preprocessor implements this.

Preprocessor allow to automatically check macros existence, generate MUMPS code in dependence of current environment and MUMPS version, write much more readable code and hide many magic conjurations.

Macros are the one of power tools for developers to improve project scalability, reduce number of misprints and in pair with debugger help to develop much complex modules and decrease development time.

Routines have the following types:

INT
INTermediate routine, or standatd MUMPS routines
MAC
MACro routine, which are the macro source code to get INT routines
INC
INClude routine, used to include common definitions into MAC or other INC routines

Example of preprocessor usage:

Routine defines.INC:
 #; application definitions
#ifndef incDEFINESINCLUDED
#define incDEFINESINCLUDED
 
 #define APPDATA(%id)  ^APP("data",%id)
 #define APPIND(%n,%v) ^APP("ind",%n,%v)
 
#endif

After including this routine

#include defines

in macro routine developer can use defined macros $$APPDATA and $$$APPIND.

In the case of macro definitions changed, routine recompilation automatically use new definitions. If developer make a misprint in the macros name, preprocessor show the place of the error. Macro definition can contain long substitution string and macro routines seems much more readable for developers.

Macro routines exports and imports using extended routine file format RSA (Routine Save Archive) in which are stored routine types. This format can be used to interchange code between InterSystems Cache and MiniM Database Server.

For more information see this site topics, use search, or query additional info.


Copyright (C) Eugene Karataev
Info Support