/* Processed by ecpg (15.18 (Debian 15.18-0+deb12u1)) */ /* These include files are added by the preprocessor */ #include #include #include /* End of automatic include section */ #line 1 "app/batch/mg_bt_0009.pgc" /* @tier medium @module mg @transform msg-gateway-batch */ /* * mg_bt_0009.pgc - 전문 포맷 검증 배치 [tier=medium] * * 지정 영업일의 접수(R) 전문을 커서로 순회하며 금액 유효성, * 카드번호 길이(16~19), 영업일 형식을 검증한다. 위반 건은 경고 * 로그를 남기고 위반유형별 카운트와 정상/위반 건수를 리포트한다. * (검증만 수행, 원장 변경 없음) * * 실행: mg_bt_0009 [db@host] */ #include #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "mg_core.h" #line 1 "/usr/include/postgresql/sqlca.h" #ifndef POSTGRES_SQLCA_H #define POSTGRES_SQLCA_H #ifndef PGDLLIMPORT #if defined(WIN32) || defined(__CYGWIN__) #define PGDLLIMPORT __declspec (dllimport) #else #define PGDLLIMPORT #endif /* __CYGWIN__ */ #endif /* PGDLLIMPORT */ #define SQLERRMC_LEN 150 #ifdef __cplusplus extern "C" { #endif struct sqlca_t { char sqlcaid[8]; long sqlabc; long sqlcode; struct { int sqlerrml; char sqlerrmc[SQLERRMC_LEN]; } sqlerrm; char sqlerrp[8]; long sqlerrd[6]; /* Element 0: empty */ /* 1: OID of processed tuple if applicable */ /* 2: number of rows processed */ /* after an INSERT, UPDATE or */ /* DELETE statement */ /* 3: empty */ /* 4: empty */ /* 5: empty */ char sqlwarn[8]; /* Element 0: set to 'W' if at least one other is 'W' */ /* 1: if 'W' at least one character string */ /* value was truncated when it was */ /* stored into a host variable. */ /* * 2: if 'W' a (hopefully) non-fatal notice occurred */ /* 3: empty */ /* 4: empty */ /* 5: empty */ /* 6: empty */ /* 7: empty */ char sqlstate[5]; }; struct sqlca_t *ECPGget_sqlca(void); #ifndef POSTGRES_ECPG_INTERNAL #define sqlca (*ECPGget_sqlca()) #endif #ifdef __cplusplus } #endif #endif #line 21 "app/batch/mg_bt_0009.pgc" /* 카드번호 자릿수 유효성(16~19자리) */ static int mg_card_len_ok(const char *card) { size_t n = strlen(card); return (n >= 16 && n <= 19) ? 1 : 0; } static int run_mg_bt_0009(const char *biz_date) { /* exec sql begin declare section */ #line 33 "app/batch/mg_bt_0009.pgc" char h_biz_date [ 9 ] ; #line 34 "app/batch/mg_bt_0009.pgc" char h_key [ 16 ] ; #line 35 "app/batch/mg_bt_0009.pgc" char h_card_no [ 20 ] ; #line 36 "app/batch/mg_bt_0009.pgc" long h_amount ; #line 37 "app/batch/mg_bt_0009.pgc" char h_rec_date [ 9 ] ; /* exec sql end declare section */ #line 38 "app/batch/mg_bt_0009.pgc" long total = 0, ok = 0, bad = 0, errcnt = 0; long v_amount = 0, v_card = 0, v_date = 0; memset(h_biz_date, 0, sizeof(h_biz_date)); strncpy(h_biz_date, biz_date, sizeof(h_biz_date) - 1); ECPGset_var( 0, ( h_biz_date ), __LINE__);\ /* declare cur_mg_bt_0009 cursor for select key , card_no , amount , biz_date from mg_ledger where biz_date = $1 and status = 'R' order by key */ #line 51 "app/batch/mg_bt_0009.pgc" #line 51 "app/batch/mg_bt_0009.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "declare cur_mg_bt_0009 cursor for select key , card_no , amount , biz_date from mg_ledger where biz_date = $1 and status = 'R' order by key", ECPGt_char,(h_biz_date),(long)9,(long)1,(9)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT);} #line 53 "app/batch/mg_bt_0009.pgc" if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("OPEN cur_mg_bt_0009"); return TX_EDB; } for (;;) { int viol = 0; { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "fetch cur_mg_bt_0009", ECPGt_EOIT, ECPGt_char,(h_key),(long)16,(long)1,(16)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_card_no),(long)20,(long)1,(20)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_long,&(h_amount),(long)1,(long)1,sizeof(long), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_rec_date),(long)9,(long)1,(9)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);} #line 62 "app/batch/mg_bt_0009.pgc" if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("FETCH cur_mg_bt_0009"); errcnt++; break; } total++; if (!amount_is_valid(h_amount)) { v_amount++; viol = 1; tx_log(TX_LOG_WARN, "[mg_bt_0009] 금액위반 key=%s amt=%ld", h_key, h_amount); } if (!mg_card_len_ok(h_card_no)) { v_card++; viol = 1; tx_log(TX_LOG_WARN, "[mg_bt_0009] 카드길이위반 key=%s", h_key); } if (!date_is_valid(h_rec_date)) { v_date++; viol = 1; tx_log(TX_LOG_WARN, "[mg_bt_0009] 일자위반 key=%s date=%s", h_key, h_rec_date); } if (viol) bad++; else ok++; } { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "close cur_mg_bt_0009", ECPGt_EOIT, ECPGt_EORT);} #line 96 "app/batch/mg_bt_0009.pgc" tx_log(TX_LOG_INFO, "[mg_bt_0009] 검증 date=%s 정상=%ld 위반=%ld", biz_date, ok, bad); printf("========== 전문 포맷 검증 [mg_bt_0009] ==========\n"); printf(" 영업일 : %s\n", biz_date); printf(" 검증 건수 : %ld\n", total); printf(" 정상 건수 : %ld\n", ok); printf(" 위반 건수 : %ld\n", bad); printf(" - 금액위반 : %ld\n", v_amount); printf(" - 카드위반 : %ld\n", v_card); printf(" - 일자위반 : %ld\n", v_date); printf(" 조회 오류 : %ld\n", errcnt); printf("=============================================\n"); return (errcnt == 0) ? TX_OK : TX_FAIL; } int main(int argc, char **argv) { const char *biz_date; const char *target; int rc; tx_set_loglevel(TX_LOG_INFO); if (argc < 2) { fprintf(stderr, "사용법: %s [db@host]\n", argv[0]); return 2; } biz_date = argv[1]; target = (argc >= 3) ? argv[2] : NULL; if (!date_is_valid(biz_date)) { fprintf(stderr, "오류: 유효하지 않은 영업일 '%s'\n", biz_date); return 2; } tx_log(TX_LOG_INFO, "[mg_bt_0009] 포맷 검증 시작 date=%s", biz_date); rc = mg_dbio_connect(target); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[mg_bt_0009] DB 접속 실패 rc=%d", rc); return 1; } rc = run_mg_bt_0009(biz_date); mg_dbio_disconnect(); tx_log(TX_LOG_INFO, "[mg_bt_0009] 배치 종료 rc=%d(%s)", rc, tx_strerror(rc)); return (rc == TX_OK) ? 0 : 1; }