- dbio io(289): fetch/touch/total 시그니처 유지, SQL 바디를 JOIN/집계/커서/ upsert/DELETE 등 구조로 고유화 → 289/289 고유 - common cu(120): 유틸 시그니처 유지, Luhn/CRC/Zeller/BIN레인지/amortization/ netting 등 실 알고리즘으로 고유화 → 120/120 고유 - 심화: 실제 EXEC SQL 없던 프로그램에 SELECT/INSERT/UPDATE/커서+tx 추가 → online+batch 530/530 전부 실제 SQL 보유 - 전 코퍼스 프로그램 939/939 고유, 전체 docker make -j4 = EXIT 0, 958 오브젝트 - 임시 생성기 제거, inventory.json loc 실측 갱신 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
89 lines
2.9 KiB
Text
89 lines
2.9 KiB
Text
/* @tier easy @module mm @transform master-online */
|
|
/*
|
|
* mm_ol_0026.pgc - 공통코드 캐시조회 서비스 (MM_OL_0026) [tier=easy]
|
|
*
|
|
* 코드그룹(grp_cd)을 키로 공통코드(mm_common_code) 중 사용중(use_yn='Y')
|
|
* 인 대표 코드 건수와 그룹 내 최신 변경일을 집계 조회한다. 캐시 갱신
|
|
* 판단용 메타(건수/최신변경일)를 응답한다. 조회 전용(읽기) 서비스.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "txcore.h"
|
|
#include "txcore_dbio.h"
|
|
#include "acq_util.h"
|
|
#include "mm_core.h"
|
|
|
|
EXEC SQL INCLUDE sqlca;
|
|
|
|
TX_SERVICE(MM_OL_0026, ctx)
|
|
{
|
|
EXEC SQL BEGIN DECLARE SECTION;
|
|
char h_grp_cd[16];
|
|
char h_grp_nm[32];
|
|
char h_last_chg[9];
|
|
long h_use_cnt;
|
|
EXEC SQL END DECLARE SECTION;
|
|
|
|
char grp_cd[16];
|
|
|
|
tx_log(TX_LOG_INFO, "[MM_OL_0026] 공통코드 캐시조회 서비스 진입");
|
|
|
|
if (tx_buf_get(ctx->in, "GRPCD", grp_cd, sizeof(grp_cd)) != TX_OK) {
|
|
tx_log(TX_LOG_ERROR, "[MM_OL_0026] GRPCD 누락");
|
|
tx_buf_sets(ctx->out, "ERRCODE", "MM2600");
|
|
tx_return(ctx, TX_EINVAL, ctx->out);
|
|
return;
|
|
}
|
|
|
|
strncpy(h_grp_cd, grp_cd, sizeof(h_grp_cd) - 1);
|
|
h_grp_cd[sizeof(h_grp_cd) - 1] = '\0';
|
|
|
|
/* 1) 코드그룹 명칭 확인 */
|
|
EXEC SQL SELECT grp_nm INTO :h_grp_nm
|
|
FROM mm_code_group
|
|
WHERE grp_cd = :h_grp_cd;
|
|
|
|
if (sqlca.sqlcode == TX_SQL_NOTFOUND) {
|
|
tx_log(TX_LOG_WARN, "[MM_OL_0026] 코드그룹 없음 grp=%s", grp_cd);
|
|
tx_buf_sets(ctx->out, "ERRCODE", "MM2601");
|
|
tx_return(ctx, TX_ENOENT, ctx->out);
|
|
return;
|
|
}
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("SELECT mm_code_group");
|
|
tx_buf_sets(ctx->out, "ERRCODE", "MM2609");
|
|
tx_return(ctx, TX_EDB, ctx->out);
|
|
return;
|
|
}
|
|
|
|
/* 2) 사용중 코드 건수 + 최신 변경일 집계 */
|
|
h_use_cnt = 0;
|
|
strncpy(h_last_chg, "00000000", sizeof(h_last_chg));
|
|
EXEC SQL SELECT COUNT(*), COALESCE(MAX(chg_date), '00000000')
|
|
INTO :h_use_cnt, :h_last_chg
|
|
FROM mm_common_code
|
|
WHERE grp_cd = :h_grp_cd
|
|
AND use_yn = 'Y';
|
|
|
|
if (sqlca.sqlcode != TX_SQL_OK && sqlca.sqlcode != TX_SQL_NOTFOUND) {
|
|
TX_DBIO_LOG_ERR("SELECT mm_common_code agg");
|
|
tx_buf_sets(ctx->out, "ERRCODE", "MM2609");
|
|
tx_return(ctx, TX_EDB, ctx->out);
|
|
return;
|
|
}
|
|
|
|
if (h_use_cnt <= 0)
|
|
tx_log(TX_LOG_WARN, "[MM_OL_0026] 사용중 코드 없음 grp=%s", grp_cd);
|
|
|
|
tx_buf_reset(ctx->out);
|
|
tx_buf_sets(ctx->out, "GRPCD", grp_cd);
|
|
tx_buf_sets(ctx->out, "GRPNM", h_grp_nm);
|
|
tx_buf_setlong(ctx->out, "USECNT", h_use_cnt);
|
|
tx_buf_sets(ctx->out, "LASTCHG", h_last_chg);
|
|
tx_buf_sets(ctx->out, "ERRCODE", RESP_OK);
|
|
tx_log(TX_LOG_INFO, "[MM_OL_0026] 캐시조회 완료 grp=%s 건수=%ld 최신=%s",
|
|
grp_cd, h_use_cnt, h_last_chg);
|
|
tx_return(ctx, TX_OK, ctx->out);
|
|
}
|