Release Notes in the README.md
A Ruby Extension for InterSystems Cache/IRIS and YottaDB.
Chris Munt cmunt@mgateway.com
23 June 2023, MGateway Ltd http://www.mgateway.com
Contents
mg_ruby is an Open Source Ruby extension developed for InterSystems Cache/IRIS and the YottaDB database. It will also work with the GT.M database and other M-like databases.
Ruby installation:
http://www.ruby-lang.org/
InterSystems Cache/IRIS or YottaDB (or similar M database):
https://www.intersystems.com/
https://yottadb.com/
There are three parts to mg_ruby installation and configuration.
mg_ruby is written in standard C. For Linux systems, the Ruby installation procedure can use the freely available GNU C compiler (gcc) which can be installed as follows.
Ubuntu:
apt-get install gcc
Red Hat and CentOS:
yum install gcc
Apple OS X can use the freely available Xcode development environment.
Under Windows, Ruby is built with the Open Source MSYS2 Development kit and if you plan to build mg_ruby from the provided source code it is recommended that you select the pre-built ‘Ruby+Devkit’ option when downloading Ruby for Windows. This package will install Ruby together with all the tools needed to build mg_ruby.
Alternatively, there are pre-built Windows x64 binaries available from:
The pre-built mg_ruby.so module should be copied to the appropriate location in the Ruby file system. For example, using an ‘out of the box’ Ruby 2.7 installation this will be:
C:\Ruby27-x64\lib\ruby\site_ruby\2.7.0\x64-msvcrt
Having done this, mg_ruby is ready for use.
Having created a suitable development environment, the Ruby Extension installer can be used to build and deploy mg_ruby. You will find the setup scripts in the /src directory of the distribution.
UNIX and Windows using the MSYS2 Development Toolkit (most installations):
The commands listed below are run from a command shell. For Windows, the MSYS2 command shell provided with the ‘Ruby+Devkit’ distribution should be used. For example, with the ‘out of the box’ Ruby 2.7 installation this will be found at: C:\Ruby27-x64\msys64\msys2.
ruby extconf.rb
make
make install
Windows using the Microsoft Development Toolkit:
ruby extconf.rb
nmake
nmake install
The DB Superserver is required for:
Two M routines need to be installed (%zmgsi and %zmgsis). These can be found in the Service Integration Gateway (mgsi) GitHub source code repository (https://github.com/chrisemunt/mgsi). Note that it is not necessary to install the whole Service Integration Gateway, just the two M routines held in that repository.
Log in to the %SYS Namespace and install the zmgsi routines held in /isc/zmgsi_isc.ro.
do $system.OBJ.Load("/isc/zmgsi_isc.ro","ck")
Change to your development Namespace and check the installation:
do ^%zmgsi
MGateway Ltd - Service Integration Gateway
Version: 4.5; Revision 28 (3 February 2023)
The instructions given here assume a standard ‘out of the box’ installation of YottaDB (version 1.30) deployed in the following location:
/usr/local/lib/yottadb/r130
The primary default location for routines:
/root/.yottadb/r1.30_x86_64/r
Copy all the routines (i.e. all files with an ‘m’ extension) held in the GitHub /yottadb directory to:
/root/.yottadb/r1.30_x86_64/r
Change directory to the following location and start a YottaDB command shell:
cd /usr/local/lib/yottadb/r130
./ydb
Link all the zmgsi routines and check the installation:
do ylink^%zmgsi
do ^%zmgsi
MGateway Ltd - Service Integration Gateway
Version: 4.5; Revision 28 (3 February 2023)
Note that the version of zmgsi is successfully displayed.
Finally, add the following lines to the interface file (zmgsi.ci in the example used in the db.open() method).
sqlemg: ydb_string_t * sqlemg^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t *)
sqlrow: ydb_string_t * sqlrow^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t *)
sqldel: ydb_string_t * sqldel^%zmgsis(I:ydb_string_t*, I:ydb_string_t *)
ifc_zmgsis: ydb_string_t * ifc^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t*)
A copy of this file can be downloaded from the /unix directory of the mgsi GitHub repository here
The default TCP server port for zmgsi is 7041. If you wish to use an alternative port then modify the following instructions accordingly.
Start the DB Superserver using the following command:
do start^%zmgsi(0)
To use a server TCP port other than 7041, specify it in the start-up command (as opposed to using zero to indicate the default port of 7041).
Ruby code using the mg_ruby functions will, by default, expect the database server to be listening on port 7041 of the local server (localhost). However, mg_ruby provides the functionality to modify these default settings at run-time. It is not necessary for the Ruby installation to reside on the same host as the database server.
The zmgsi server-side code will write to the following global:
Ruby programs may refer to, and load, the mg_ruby module using the following directive at the top of the script.
require 'mg_ruby'
mg_ruby = MG_RUBY.new()
Having added this line, all methods listed provided by the module can be invoked using the following syntax.
mg_ruby.<method>
It is not necessary to name your instance as ‘mg_ruby’. For example, you can have:
require 'mg_ruby'
<name> = MG_RUBY.new()
Then methods can be invoked as:
<name>.<method>
By default, mg_ruby will connect to the server over TCP - the default parameters for which being the database listening locally on port 7041. This can be modified using the following function.
mg_ruby.m_set_host(<netname>, <port>, <username>, <password>)
The embedded default are for mg_ruby to connect to ‘localhost’ listening on TCP Port 7041.
Example:
mg_ruby.m_set_host("localhost", 7041, "", "")
As an alternative to connecting to the database using TCP based connectivity, mg_ruby provides the option of high-performance embedded access to a local installation of the database via its API.
Use the following functions to bind to the database API.
mg_ruby.m_set_uci(<namespace>)
mg_ruby.m_bind_server_api(<dbtype>, <path>, <username>, <password>, <envvars>, <params>)
Where:
Example:
mg_ruby.m_set_uci("USER")
result = mg_ruby.m_bind_server_api("IRIS", "/usr/iris20191/mgr", "_SYSTEM", "SYS", "", "")
The bind function will return ‘1’ for success and ‘0’ for failure.
Before leaving your Ruby application, it is good practice to gracefully release the binding to the database:
mg_ruby.m_release_server_api()
Use the following function to bind to the database API.
mg_ruby.m_bind_server_api(<dbtype>, <path>, <username>, <password>, <envvars>, <params>)
Where:
Example:
This example assumes that the YottaDB installation is in: /usr/local/lib/yottadb/r130.
This is where the libyottadb.so library is found.
Also, in this directory, as indicated in the environment variables, the YottaDB routine interface file resides (zmgsi.ci in this example). The interface file must contain the following lines:
sqlemg: ydb_string_t * sqlemg^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t *)
sqlrow: ydb_string_t * sqlrow^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t *)
sqldel: ydb_string_t * sqldel^%zmgsis(I:ydb_string_t*, I:ydb_string_t *)
ifc_zmgsis: ydb_string_t * ifc^%zmgsis(I:ydb_string_t*, I:ydb_string_t *, I:ydb_string_t*)
Moving on to the Ruby code for binding to the YottaDB database. Modify the values of these environment variables in accordance with your own YottaDB installation. Note that each line is terminated with a linefeed character, with a double linefeed at the end of the list.
envvars = ""; envvars = envvars + "ydb_dir=/root/.yottadb\n" envvars = envvars + "ydb_rel=r1.30_x86_64\n" envvars = envvars + "ydb_gbldir=/root/.yottadb/r1.30_x86_64/g/yottadb.gld\n" envvars = envvars + "ydb_routines=/root/.yottadb/r1.30_x86_64/o*(/root/.yottadb/r1.30_x86_64/r root/.yottadb/r) /usr/local/lib/yottadb/r130/libyottadbutil.so\n" envvars = envvars + "ydb_ci=/usr/local/lib/yottadb/r130/zmgsi.ci\n" envvars = envvars + "\n"
result = mg_ruby.m_bind_server_api("YottaDB", "/usr/local/lib/yottadb/r130", "", "", envvars, "")
The bind function will return ‘1’ for success and ‘0’ for failure.
Before leaving your Ruby application, it is good practice to gracefully release the binding to the database:
mg_ruby.m_release_server_api()
Before invoking database functionality, the following simple script can be used to check that mg_ruby is successfully installed.
puts mg_ruby.m_ext_version()
This should return something like:
MGateway Ltd. - mg_ruby: Ruby Gateway to M - Version 2.3.44
Now consider the following database script:
Set ^Person(1)="Chris Munt"
Set name=$Get(^Person(1))
Equivalent Ruby code:
mg_ruby.m_set("^Person", 1, "Chris Munt")
name = mg_ruby.m_get("^Person", 1);
mg_ruby provides functions to invoke all database commands and functions.
result = mg_ruby.m_set(<global>, <key>, <data>)
Example:
result = mg_ruby.m_set("^Person", 1, "Chris Munt")
result = mg_ruby.m_get(<global>, <key>)
Example:
result = mg_ruby.m_get("^Person", 1)
result = mg_ruby.m_delete(<global>, <key>)
Example:
result = mg_ruby.m_delete("^Person", 1)
result = mg_ruby.m_defined(<global>, <key>)
Example:
result = mg_ruby.m_defined("^Person", 1)
result = mg_ruby.m_order(<global>, <key>)
Example:
key = ""
while ((key = mg_ruby.m_order("^Person", key)) != "")
puts key + " = " + mg_ruby.m_get("^Person", key)
end
result = mg_ruby.m_previous(<global>, <key>)
Example:
key = ""
while ((key = mg_ruby.m_previous("^Person", "")) != "")
puts key + " = " + mg_ruby.m_get("^Person", key)
end
result = mg_ruby.m_increment(<global>, <key>, <increment_value>)
Example:
result = mg_ruby.m_increment("^Global", "counter", 1)
result = mg_ruby.m_function(<function>, <parameters>)
Example:
M routine called ‘math’:
add(a, b) ; Add two numbers together
quit (a+b)
Ruby invocation:
result = mg_ruby.m_function("add^math", 2, 3)
M DB Servers implement Transaction Processing by means of the methods described in this section.
result = mg_ruby.m_tstart()
Example:
result = mg_ruby.m_tstart()
result = mg_ruby.m_tlevel()
Example:
tlevel = mg_ruby.m_tlevel()
result = mg_ruby.m_tcommit()
Example:
result = mg_ruby.m_tcommit()
result = mg_ruby.m_trollback()
Example:
result = mg_ruby.m_trollback()
result = mg_ruby.m_classmethod(<class_name>, <classmethod_name>, <parameters>)
Example (Encode a date to internal storage format):
result = mg_ruby.m_classmethod("%Library.Date", "DisplayToLogical", "10/10/2019")
The following simple class will be used to illustrate this facility.
Class User.Person Extends %Persistent
{
Property Number As %Integer;
Property Name As %String;
Property DateOfBirth As %Date;
Method Age(AtDate As %Integer) As %Integer
{
Quit (AtDate - ..DateOfBirth) \ 365.25
}
}
person = mg_ruby.m_classmethod("User.Person", "%New");
Add Data:
result = person.setproperty("Number", 1);
result = person.setproperty("Name", "John Smith");
result = person.setproperty("DateOfBirth", "12/8/1995");
Save the object record:
result = person.method("%Save");
Retrieve data for object %Id of 1.
person = mg_ruby.m_classmethod("User.Person", "%OpenId", 1);
Return properties:
var number = person.getproperty("Number");
var name = person.getproperty("Name");
var dob = person.getproperty("DateOfBirth");
Calculate person’s age at a particular date:
today = mg_ruby.m_classmethod("%Library.Date", "DisplayToLogical", "10/10/2019");
var age = person.method("Age", today);
Copyright (c) 2018-2023 MGateway Ltd,
Surrey UK.
All rights reserved.
http://www.mgateway.com
Email: cmunt@mgateway.com
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.