Exploit your assets in Adabas by using the Go Adabas-API
Introduction
This is the Adabas API for the programming language Go. It supports data access to the Software AG Adabas database. You can find detailed overview about the design and technical implementation here
For details have a look at the API documentation. It can be referenced here: https://godoc.org/github.com/SoftwareAG/adabas-go-api/adabas
Usage
Adabas Go API can be downloaded using the go get
command:
go get -u github.com/softwareag/adabas-go-api/adabas
You can compile it with the Adabas TCP/IP interface only or using Adabas local access with Adabas Client native libraries. By default the Adabas TCP/IP interface is compiled only. To enable Adabas Client native link to Adabas you need to provide the Go build tag adalnk
and the CGO compile flags defining build flags for the Adabas Client library. If the Adabas environment is sourced, you can define CGO compile flags as follow:
On Unix
CGO_CFLAGS=-I${ACLDIR}/inc
CGO_LDFLAGS=-L${ACLDIR}/lib -ladalnkx -lsagsmp2 -lsagxts3 -ladazbuf
On Windows
CGO_CFLAGS=-I%ACLDIR%\..\inc
CGO_LDFLAGS=-L%ACLDIR%\..\bin -L%ACLDIR%\..\lib -ladalnkx
The application is build with Adabas Go API like follow (please note that the tag adalnk
is needed to enable local IPC access):
go build -tags adalnk application.go
Adabas Go API example
Standard usage
A quick example to read data from a database file 11 of Adabas database with database id 23 is here
// Create new connection handler to database
connection, err := adabas.NewConnection("acj;target=23")
if err!=nil {
return
}
defer connection.Close()
connection.Open()
// To work on file 11 create corresponding read request
request, rErr := connection.CreateFileReadRequest(11)
// Define the result records content
request.QueryFields("AA,AB")
request.Limit = 0
// Read in the database using search query
result,err := request.ReadLogicalWith("AA=60010001")
var aa,ac,ad,ae string
// Read given AA(alpha) and all entries of group AB to string variables
result.Values[0].Scan(&aa,&ac,&ad,&ae)
The example code is referenced here. See detailed documentation here
Using a Go struct
The Adabas API can handle simple Go struct definitions to map them to a Adabas Map definition.
For example if the structure is defined like
type Employees struct {
ID string
Birth int64
Name string `adabas:"Name"`
FirstName string `adabas:"FirstName"`
}
The struct can be used to read or store data directly. The store of the whole structure will be done
To store the struct record do
storeRequest, err := NewStoreRequest(Employees{}, ada, repository)
e:= &Employees{ID: "ID3", Birth: 456, Name: "Name3", FirstName: "First name3"}
err = storeRequest.StoreData(e)
err = storeRequest.EndTransaction()
The read of struct data will be done with
request, err := NewReadRequest(Employees{}, adabas, mapRepository)
defer request.Close()
result, err := request.ReadLogicalWith("ID>'ID'")
e := result.Data[0].(*Employees)
All fields of the struct are mapped to a Adabas Map field name. The adabas
tag of the struct definition change the mapped name.
New Map repository
The logical view to the data can be defined using Adabas maps. A detailed description of Adabas maps is here
For creating Adabas maps the infrastructure of the Java API for Adabas (Adabas Client for Java) can be used. The Adabas Data Designer rich client or Eclipse plugin can be used to define Adabas map definitions. A programmatical approach to create Adabas maps is part of the Adabas Go API.
In the next example a logical read on the database file is using Adabas maps
// Create new connection handler
connection, cerr := NewConnection("acj;map;config=[24,4]")
if cerr != nil {
return
}
defer connection.Close()
// Create a read request using the Map definition
request, err := connection.CreateMapReadRequest("EMPLOYEES-NAT-DDM")
// Define the result records content
request.QueryFields("NAME,PERSONNEL-ID")
request.Limit = 2
// Read logical using a range search query
result,rerr := request.ReadLogicalWith("PERSONNEL-ID=[11100301:11100303]")
result.DumpValues()
See detailed documentation here
First step
A detailed description how to do the first steps using the Adabas Docker community edition is provided here.
Independent of the used environment of Docker (like Kubernetes or others), it describe how to call Adabas.
Log output
To enable logging output in example executables, please set ENABLE_DEBUG
environment variable to 1. This will enable the logging.
To use logging in your code with the Adabas API, you can enable logging by setting the log instance with your logger
instances with
adatypes.Central.Log = logger
Summary
The Go Adabas-API offers easy access to store or read data in or out of Adabas. The Go API should help developers to work with data in Adabas without having the need of being an Adabas expert knowing special Adabas Database features.
Go functions enable developers to use Go as a programming language to access Adabas in the same way as other data sources are embedded in a Go project.
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.
Contact us at TECHcommunity if you have any questions.