core17Example_main.c

Simple example which creates/inserts and reads a single record type with a single field which is designated as a key. This shows inserting duplicate keys in a field that is not defined as a unique key. This example needs a compiled schema, core17Example.sdl.

/*
* DUPLICATE KEY
* -------------
*
* This document describes the process to create a simple database containing
* a key, insert records, and read data through the key.
*
* For a full description of RDM keys, see Database Design in the Users
* Guide.
*
* This example contains a single record type with a single field which is
* designated as a key. An insertion with a key field value that already
* exists in the database will not be rejected as an error from the d_fillnew
* function. Multiple records with the same key value can be stored in the
* database when the key is not designated as unique.
*/
#include "rdm.h"
#include "rdmapi.h"
#include "rdmtfsapi.h"
#include "core17Example_structs.h"
#include "core17Example_cat.h"
#include "rdmstartupapi.h"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
static INFO infoData[] = {
{"John", RDM_COL_HAS_VALUE}, {"James", RDM_COL_HAS_VALUE},
{"Duncan", RDM_COL_HAS_VALUE}, {"Bill", RDM_COL_HAS_VALUE},
{"John", RDM_COL_HAS_VALUE}, {"Paul", RDM_COL_HAS_VALUE},
{"David", RDM_COL_HAS_VALUE}};
int32_t main_core17ExampleTutorial (int32_t argc, const char *const *argv)
{
RDM_TFS tfs;
RDM_UNREF (argc);
RDM_UNREF (argv);
/* Allocate a TFS Handle */
rc = rdm_rdmAllocTFS (&tfs);
if (rc == sOKAY)
{
rc = rdm_tfsInitialize (tfs);
if (rc == sOKAY)
{
RDM_DB db;
/* Allocate a database hande */
rc = rdm_tfsAllocDatabase (tfs, &db);
if (rc == sOKAY)
{
/* Override default DURABLE setting to CONSISTENT */
rc = rdm_dbSetOptions (db, "durability=consistent");
}
if (rc == sOKAY)
{
INFO sInfo;
RDM_TABLE_ID tables[] = {TABLE_INFO};
/* Set the catalog */
rc = rdm_dbSetCatalog (db, core17Example_cat);
/* Open the database. */
if (rc == sOKAY)
{
rc = rdm_dbOpen (db, "core17Example", RDM_OPEN_SHARED);
if (rc != sOKAY)
{
printf ("I can't open the unique_key database.");
}
}
/* Start an update transaction and lock the table */
if (rc == sOKAY)
{
db, tables, RDM_LEN (tables), NULL, 0, NULL);
}
if (rc == sOKAY)
{
/* Remove all of the rows from the database */
if (rc == sOKAY)
{
/* Commit a transaction */
rc = rdm_dbEnd (db);
}
else
{
/* Abort the transaction */
}
}
if (rc == sOKAY)
{
/* Start an update transaction and lock the table */
db, tables, RDM_LEN (tables), NULL, 0, NULL);
}
if (rc == sOKAY)
{
uint32_t ii;
/* Add rows to the info table */
for (ii = 0; ii < RDM_LEN (infoData) && rc == sOKAY; ii++)
{
db, TABLE_INFO, &infoData[ii], sizeof (INFO), NULL);
if (rc == sDUPLICATE)
{
/* We expect duplicates, re-set error code. */
printf (
"%s is a duplicate record.\n", sInfo.mychar);
rc = sOKAY;
}
}
if (rc == sOKAY)
{
/* Commit a transaction */
rc = rdm_dbEnd (db);
}
else
{
/* Abort the transaction */
}
}
if (rc == sOKAY)
{
/* Start a read transaction and lock the table */
rc = rdm_dbStartRead (db, tables, RDM_LEN (tables), NULL);
}
if (rc == sOKAY)
{
RDM_CURSOR cursor = NULL;
INFO_MYCHAR_KEY keyValue;
/* Get a key cursor positioned to the first row with the
* request key value */
strcpy (keyValue.mychar, infoData[3].mychar);
keyValue._mychar_has_value = RDM_COL_HAS_VALUE;
db, KEY_INFO_MYCHAR, &keyValue, sizeof (keyValue),
&cursor);
if (rc == sOKAY)
{
cursor, &sInfo, sizeof (sInfo), NULL);
if (rc == sOKAY)
{
printf (
"Row found doing a key lookup: %s\n",
sInfo.mychar);
}
/* Do a closest key match lookup, and return the rest in
* key order. */
if (rc == sOKAY)
{
char keyVal[34] = "Jim";
cursor, KEY_INFO_MYCHAR, keyVal,
sizeof (keyVal));
}
/* If we didn't get en exact match move to the next
* close key value */
if (rc == sNOTFOUND)
{
rc = rdm_cursorMoveToNext (cursor);
}
while (rc == sOKAY)
{
cursor, &sInfo, sizeof (sInfo), NULL);
if (rc == sOKAY)
{
printf (
"Row found doing a key scan lookup: %s\n",
sInfo.mychar);
rc = rdm_cursorMoveToNext (cursor);
}
}
/* We expect to break out of the loop with a
* sENDOFCURSOR return code */
if (rc == sENDOFCURSOR)
{
rc = sOKAY;
}
/* Free the cursor allocated by rdm_dbGetRowsByKeyAt Key
*/
rdm_cursorFree (cursor);
}
/* End The read */
rdm_dbEnd (db);
}
/* Free the Database Handle */
}
}
}
if (rc != sOKAY)
{
printf (
"There was an error in this Tutorial (%s - %s)\n",
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
RDM_STARTUP_EXAMPLE (core17ExampleTutorial)
const char * rdm_retcodeGetName(RDM_RETCODE retcode)
Get the mnemonic name for an error or status code.
RDM_RETCODE rdm_cursorMoveToNext(RDM_CURSOR cursor)
Position a cursor to the next row in the collection.
RDM_RETCODE rdm_dbSetOptions(RDM_DB db, const char *optString)
Set RDM options.
Header for the native RDM Runtime API.
RDM_RETCODE rdm_rdmAllocTFS(RDM_TFS *phTFS)
Allocate a TFS handle.
Header for the RDM Core API.
RDM_RETCODE rdm_dbEnd(RDM_DB db)
End a transactional operation.
RDM_RETCODE rdm_dbDeleteAllRowsFromDatabase(RDM_DB db)
Remove all rows from a database.
struct RDM_CURSOR_S * RDM_CURSOR
Definition: rdmtypes.h:306
RDM_RETCODE rdm_dbStartRead(RDM_DB db, const RDM_TABLE_ID *tableIds, uint32_t numTableIds, RDM_TRANS *pTrans)
Get read locks.
RDM_RETCODE rdm_cursorReadRow(RDM_CURSOR cursor, void *colValues, size_t bytesIn, size_t *bytesOut)
Read all columns from a row.
RDM_RETCODE rdm_dbSetCatalog(RDM_DB db, const char *catalog)
Associate a catalog with an allocated database.
@ sDUPLICATE
Definition: rdmretcodetypes.h:49
@ sNOTFOUND
Definition: rdmretcodetypes.h:48
uint32_t RDM_TABLE_ID
Definition: rdmtypes.h:27
RDM_RETCODE rdm_dbFree(RDM_DB db)
Free a database handle.
RDM_RETCODE rdm_dbOpen(RDM_DB db, const char *dbNameSpec, RDM_OPEN_MODE mode)
Open an existing RDM database using the specified database handle.
@ sOKAY
Definition: rdmretcodetypes.h:97
RDM_RETCODE rdm_dbGetRowsByKeyAtKey(RDM_DB db, RDM_KEY_ID keyId, const void *keyValue, size_t len, RDM_CURSOR *pCursor)
Associate an RDM_CURSOR with a row set that is ordered by key value and is initially positioned at th...
RDM_RETCODE rdm_cursorFree(RDM_CURSOR cursor)
Free an RDM_CURSOR.
RDM_RETCODE rdm_tfsAllocDatabase(RDM_TFS tfs, RDM_DB *pDb)
Allocate memory for a new RDM db.
Header for the Transactional File Server (TFS) API.
#define RDM_STARTUP_EXAMPLE(name)
Definition: rdmstartuptypes.h:73
const char * rdm_retcodeGetDescription(RDM_RETCODE retcode)
Invoke RDM error handler.
RDM_RETCODE rdm_dbEndRollback(RDM_DB db)
End and rollback a transactional operation.
#define RDM_UNREF(a)
Definition: psptypes.h:45
@ RDM_OPEN_SHARED
Definition: rdmtypes.h:253
RDM_RETCODE rdm_dbInsertRow(RDM_DB db, RDM_TABLE_ID tableId, const void *colValues, size_t bytesIn, RDM_CURSOR *pCursor)
Insert a new row into a table at the specified rowId.
RDM_RETCODE rdm_cursorMoveToKey(RDM_CURSOR cursor, RDM_KEY_ID keyId, const void *keyValue, size_t bytesIn)
Position a cursor based on a key value.
struct RDM_TFS_S * RDM_TFS
RDM TFS Handle.
Definition: rdmtfstypes.h:21
struct RDM_DB_S * RDM_DB
Definition: rdmtypes.h:305
RDM_RETCODE rdm_tfsFree(RDM_TFS hTFS)
Terminate a TFS service.
RDM_RETCODE rdm_dbStartUpdate(RDM_DB db, const RDM_TABLE_ID *writeTableIds, uint32_t numWriteTableIds, const RDM_TABLE_ID *readTableIds, uint32_t numReadTableIds, RDM_TRANS *pTrans)
Get write locks.
#define RDM_COL_HAS_VALUE
Definition: rdmtypes.h:189
#define RDM_LEN(x)
Definition: psptypes.h:78
@ sENDOFCURSOR
Definition: rdmretcodetypes.h:58
Internal RDM Startup API used by startup macros.
RDM_RETCODE
RDM status and error return codes.
Definition: rdmretcodetypes.h:43
RDM_RETCODE rdm_tfsInitialize(RDM_TFS tfs)
Initialize a RDM_TFS instance.