#include <stdio.h>
#include "libshun.h"
/* 指定された検索条件に該当するレコードを取得して編集を行ったあと
* そのデータを上書きします。
*/
int main()
{
/* ハンドル変数群 */
SHUNHCON connectionHandle;
SHUNHSTMT statementHandle_search;
SHUNHSTMT statementHandle_update;
/* 作業用変数群 */
int status;
/* 入力パラメタ群 */
char *hostName;
int portNo;
char *ShunFileName;
int startNo;
int returnRequestCount;
char *queryForm;
char *returnForm;
char *sortForm;
/* 出力パラメタ群*/
int hitCount;
int returnCount;
int returnableCount;
SHUNRECID *recID;
SHUNDATA *dataInfo;
SHUNPOS *firstPosition, *lastPosition;
/* エラー用変数群 */
SHUNHANDLE errorHandle;
int errorLevel;
char *errorMessage;
/* 変数の初期化 */
connectionHandle = NULL;
statementHandle_search = NULL;
statementHandle_update = NULL;
/* コネクションハンドルの割当て */
status = ShunAllocHandle( NULL, &connectionHandle );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
/* ホスト名・ポート番号、Shunsakuファイル名を指定してコネクションを確立 */
hostName = "DirSvr1";
portNo = 33101;
ShunFileName = "shunsakuFile1";
status = ShunConnect( connectionHandle, hostName, portNo, ShunFileName );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
/* データ操作ハンドルの割当て */
status = ShunAllocHandle( connectionHandle, &statementHandle_search );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
/* 検索件数、検索式などの指定*/
startNo = 1;
returnRequestCount = 30;
queryForm = "/document {/base/prefecture == '大阪' "
"AND /information/date == '2006年07月18日'}";
returnForm = "/";
sortForm = NULL;
/* API呼出し データ検索 */
status = ShunSearch(
statementHandle_search,
startNo,
NULL,
0,
returnRequestCount,
queryForm,
returnForm,
sortForm,
&hitCount,
&returnCount,
&returnableCount,
&recID,
&dataInfo,
&firstPosition,
&lastPosition );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)statementHandle_search;
goto ErrorEnd;
}
/* ヒット件数の取出し */
printf( "ヒット件数 = %d\n", hitCount );
printf( "応答件数 = %d\n", returnCount );
/* データ操作ハンドルの割当て */
status = ShunAllocHandle( connectionHandle, &statementHandle_update );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
/* 検索したデータの表示 */
if ( hitCount > 0 ) {
/* ここでdataInfoに対しデータの処理をします */
status = ShunUpdateRecId(
statementHandle_update,
returnCount,
recID,
dataInfo );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)statementHandle_update;
goto ErrorEnd;
}
}
printf( "更新成功\n" );
/* データ操作ハンドルの解放 */
status = ShunFreeHandle( statementHandle_update );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)statementHandle_update;
goto ErrorEnd;
}
/* データ操作ハンドルの解放 */
status = ShunFreeHandle( statementHandle_search );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)statementHandle_search;
goto ErrorEnd;
}
/* コネクションの切断 */
status = ShunDisconnect( connectionHandle );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
/* コネクションハンドルの解放 */
status = ShunFreeHandle( connectionHandle );
if ( status != SHUN_SUCCESS ) {
errorHandle = (SHUNHANDLE)connectionHandle;
goto ErrorEnd;
}
return 0;
ErrorEnd: /* エラーが発生した際のエラー処理 */
/* エラー情報の取得 */
status = ShunGetErrorMessage(errorHandle,
&errorLevel, &errorMessage);
if ( status == SHUN_SUCCESS ) {
switch ( errorLevel ) {
case SHUN_ERROR_CONNECTION:
printf("エラーレベル = SHUN_ERROR_CONNECTION\n");
break;
case SHUN_ERROR_DATA:
printf("エラーレベル = SHUN_ERROR_DATA\n");
break;
}
printf("エラーメッセージ = %s\n", errorMessage);
}
else {
printf("エラーメッセージ取得エラー : %d\n", status);
}
/* データ操作ハンドルの解放 */
if ( statementHandle_update != NULL ) {
status = ShunFreeHandle( statementHandle_update );
if ( status != SHUN_SUCCESS ) {
printf("データ操作ハンドル解放エラー : %d\n", status);
}
}
/* データ操作ハンドルの解放 */
if ( statementHandle_search != NULL ) {
status = ShunFreeHandle( statementHandle_search );
if ( status != SHUN_SUCCESS ) {
printf("データ操作ハンドル解放エラー : %d\n", status);
}
}
/* コネクションの切断 */
if ( connectionHandle != NULL) {
status = ShunDisconnect( connectionHandle );
if ( status != SHUN_SUCCESS ) {
printf("コネクション切断エラー : %d\n", status);
}
}
/* コネクションハンドルの解放 */
if ( connectionHandle != NULL) {
status = ShunFreeHandle( connectionHandle );
if ( status != SHUN_SUCCESS ) {
printf("コネクションハンドル解放エラー : %d\n", status);
}
}
return 1;
} |