- 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>
88 lines
2.2 KiB
Text
88 lines
2.2 KiB
Text
/* @tier hard @module cm @transform common-dbio */
|
|
/*
|
|
* cm_io_0011.pgc - 공통 보조 DBIO (ECPG) [tier=hard]
|
|
*/
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#include "txcore.h"
|
|
#include "txcore_dbio.h"
|
|
#include "cm_io_0011.h"
|
|
|
|
EXEC SQL INCLUDE sqlca;
|
|
|
|
int cm_io_0011_fetch(const char *key, long *out_amount)
|
|
{
|
|
EXEC SQL BEGIN DECLARE SECTION;
|
|
char h_key[20];
|
|
long h_amt;
|
|
EXEC SQL END DECLARE SECTION;
|
|
|
|
if (!key || !out_amount)
|
|
return TX_EINVAL;
|
|
strncpy(h_key, key, sizeof(h_key) - 1);
|
|
h_key[sizeof(h_key) - 1] = '\0';
|
|
|
|
EXEC SQL SELECT coalesce(m.level_no, 0)
|
|
- (SELECT coalesce(sum(h.level_no), 0)
|
|
FROM com_param h WHERE h.branch_cd = m.branch_cd)
|
|
INTO :h_amt
|
|
FROM com_dept m
|
|
WHERE m.branch_cd = :h_key;
|
|
if (sqlca.sqlcode == TX_SQL_NOTFOUND)
|
|
return TX_ENOENT;
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("cm_io_0011_fetch");
|
|
return TX_EDB;
|
|
}
|
|
*out_amount = h_amt;
|
|
return TX_OK;
|
|
}
|
|
|
|
int cm_io_0011_touch(const char *key, long amount)
|
|
{
|
|
EXEC SQL BEGIN DECLARE SECTION;
|
|
char h_key[20];
|
|
long h_amt;
|
|
EXEC SQL END DECLARE SECTION;
|
|
|
|
if (!key)
|
|
return TX_EINVAL;
|
|
strncpy(h_key, key, sizeof(h_key) - 1);
|
|
h_key[sizeof(h_key) - 1] = '\0';
|
|
h_amt = amount;
|
|
|
|
EXEC SQL INSERT INTO com_param
|
|
(branch_cd, level_no, apply_dt, reg_ts)
|
|
VALUES (:h_key, :h_amt, to_char(now(), 'YYYYMMDD'), now());
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("cm_io_0011_touch");
|
|
return TX_EDB;
|
|
}
|
|
return TX_OK;
|
|
}
|
|
|
|
long cm_io_0011_total(const char *biz_date)
|
|
{
|
|
EXEC SQL BEGIN DECLARE SECTION;
|
|
char h_bd[9];
|
|
long h_sum;
|
|
EXEC SQL END DECLARE SECTION;
|
|
|
|
if (!biz_date)
|
|
return -1;
|
|
strncpy(h_bd, biz_date, sizeof(h_bd) - 1);
|
|
h_bd[sizeof(h_bd) - 1] = '\0';
|
|
|
|
EXEC SQL SELECT coalesce(sum(d.level_no), 0)
|
|
INTO :h_sum
|
|
FROM com_param d
|
|
JOIN com_dept m ON d.branch_cd = m.branch_cd
|
|
WHERE d.apply_dt = :h_bd
|
|
AND m.del_yn = 'A';
|
|
if (sqlca.sqlcode != TX_SQL_OK) {
|
|
TX_DBIO_LOG_ERR("cm_io_0011_total");
|
|
return -1;
|
|
}
|
|
return h_sum;
|
|
}
|