This repository has been archived on 2026-07-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
acquire-core-full/app/online/cm_ol_0019.pgc
forge-bot 93c3cb74af 다양화 Wave2: dbio 289 + common 120 고유화 + 프로그램 206개 EXEC SQL 심화
- 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>
2026-07-19 04:54:59 +00:00

93 lines
3.1 KiB
Text

/* @tier easy @module cm @transform common-online */
/*
* cm_ol_0019.pgc - 요일 계산 서비스 (CM_OL_0019) [tier=easy]
*
* 요청의 일자(DATE, YYYYMMDD)에 대해 date_weekday 로 요일 인덱스
* (0=일 ~ 6=토)를 구하고 한글 요일명(일~토)으로 매핑하여 요일 인덱스/
* 요일명/주말여부를 응답한다. 추가로 영업일 달력(cm_biz_calendar)을
* 조회하여 해당일이 영업일(BIZDAY=Y/N)인지와 비고를 응답한다.
* (ATMI void SVC(TPSVCINFO*) 대응)
*/
#include <stdio.h>
#include <string.h>
#include "txcore.h"
#include "txcore_dbio.h"
#include "acq_util.h"
#include "cm_core.h"
EXEC SQL INCLUDE sqlca;
TX_SERVICE(CM_OL_0019, ctx)
{
static const char *WDAY_SHORT[7] = {
"일", "월", "화", "수", "목", "금", "토"
};
EXEC SQL BEGIN DECLARE SECTION;
char h_date[9];
char h_biz_yn[2];
char h_remark[64];
EXEC SQL END DECLARE SECTION;
char date[16];
char label[8];
int wd;
int weekend;
int biz_day;
tx_log(TX_LOG_INFO, "[CM_OL_0019] 요일 계산 서비스 진입");
if (tx_buf_get(ctx->in, "DATE", date, sizeof(date)) != TX_OK) {
tx_log(TX_LOG_ERROR, "[CM_OL_0019] DATE 누락");
tx_return(ctx, TX_EINVAL, ctx->out);
return;
}
if (!date_is_valid(date)) {
tx_log(TX_LOG_WARN, "[CM_OL_0019] 유효하지 않은 일자 date=%s", date);
tx_return(ctx, TX_EINVAL, ctx->out);
return;
}
wd = date_weekday(date);
if (wd < 0 || wd > 6) {
tx_log(TX_LOG_ERROR, "[CM_OL_0019] 요일 계산 실패 date=%s wd=%d", date, wd);
tx_return(ctx, TX_FAIL, ctx->out);
return;
}
/* 주말 = 일(0) 또는 토(6) */
weekend = (wd == 0 || wd == 6) ? 1 : 0;
snprintf(label, sizeof(label), "%s요일", WDAY_SHORT[wd]);
/* 영업일 달력 조회 : 등록이 있으면 그 값을 우선, 없으면 주말 반대로 */
strncpy(h_date, date, sizeof(h_date) - 1);
h_date[sizeof(h_date) - 1] = '\0';
strncpy(h_biz_yn, weekend ? "N" : "Y", sizeof(h_biz_yn));
h_remark[0] = '\0';
EXEC SQL SELECT biz_yn, coalesce(remark, '')
INTO :h_biz_yn, :h_remark
FROM cm_biz_calendar
WHERE cal_date = :h_date;
if (sqlca.sqlcode == TX_SQL_NOTFOUND) {
tx_log(TX_LOG_DEBUG, "[CM_OL_0019] 달력 미등록 date=%s (요일기준 판정)", date);
} else if (sqlca.sqlcode != TX_SQL_OK) {
TX_DBIO_LOG_ERR("CM_OL_0019 SELECT cm_biz_calendar");
}
biz_day = (strcmp(h_biz_yn, "Y") == 0) ? 1 : 0;
tx_buf_reset(ctx->out);
tx_buf_sets(ctx->out, "DATE", date);
tx_buf_setlong(ctx->out, "WDAY", (long)wd);
tx_buf_sets(ctx->out, "WDAYNM", WDAY_SHORT[wd]);
tx_buf_sets(ctx->out, "WDAYLABEL", label);
tx_buf_sets(ctx->out, "WEEKEND", weekend ? "Y" : "N");
tx_buf_sets(ctx->out, "BIZDAY", biz_day ? "Y" : "N");
tx_buf_sets(ctx->out, "REMARK", h_remark);
tx_log(TX_LOG_INFO, "[CM_OL_0019] 계산완료 date=%s 요일=%s 주말=%s 영업일=%s",
date, label, weekend ? "Y" : "N", biz_day ? "Y" : "N");
tx_return(ctx, TX_OK, ctx->out);
}