/* 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/mm_bt_0011.pgc" /* @tier hard @module mm @transform master-batch */ /* * mm_bt_0011.pgc - 가맹점 상태 일괄전이 배치 (MM_BT_0011) [tier=hard] * * 접수(status='R') 상태의 가맹점을 심사결과(mm_review) 와 조인하여 커서로 * 순회한다. 심사 통과(result='P') 이고 심사점수가 기준 이상이면 처리완료 * ('M') 로, 부결이면 실패('U') 로 전이한다. 심사행이 없으면 보류하여 * 접수 상태를 유지한다. 배치 main 엔트리 포함. * * 실행: mm_bt_0011 [db@host] */ #include #include #include #include "txcore.h" #include "txcore_dbio.h" #include "acq_util.h" #include "mm_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/mm_bt_0011.pgc" /* 심사 합격 최소 점수 */ #define MM_PASS_SCORE 60 static int run_mm_bt_0011(const char *biz_date) { /* exec sql begin declare section */ #line 29 "app/batch/mm_bt_0011.pgc" char h_biz_date [ 9 ] ; #line 30 "app/batch/mm_bt_0011.pgc" char h_merch_id [ 16 ] ; #line 31 "app/batch/mm_bt_0011.pgc" char h_result [ 2 ] ; #line 32 "app/batch/mm_bt_0011.pgc" char h_new_status [ 2 ] ; #line 33 "app/batch/mm_bt_0011.pgc" int h_score ; /* exec sql end declare section */ #line 34 "app/batch/mm_bt_0011.pgc" long total = 0, approved = 0, rejected = 0, held = 0, errcnt = 0; strncpy(h_biz_date, biz_date, sizeof(h_biz_date) - 1); h_biz_date[sizeof(h_biz_date) - 1] = '\0'; /* declare cur_mm_bt_0011 cursor for select m . merch_id , r . result , r . score from mm_merchant m join mm_review r on r . merch_id = m . merch_id where m . status = 'R' order by m . merch_id */ #line 46 "app/batch/mm_bt_0011.pgc" { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "declare cur_mm_bt_0011 cursor for select m . merch_id , r . result , r . score from mm_merchant m join mm_review r on r . merch_id = m . merch_id where m . status = 'R' order by m . merch_id", ECPGt_EOIT, ECPGt_EORT);} #line 48 "app/batch/mm_bt_0011.pgc" if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("OPEN cur_mm_bt_0011"); return TX_EDB; } if (tx_begin() != TX_OK) tx_log(TX_LOG_WARN, "[mm_bt_0011] tx_begin 경고"); for (;;) { { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "fetch cur_mm_bt_0011", ECPGt_EOIT, ECPGt_char,(h_merch_id),(long)16,(long)1,(16)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_result),(long)2,(long)1,(2)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_int,&(h_score),(long)1,(long)1,sizeof(int), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EORT);} #line 59 "app/batch/mm_bt_0011.pgc" if (sqlca.sqlcode == TX_SQL_NOTFOUND) break; if (sqlca.sqlcode != TX_SQL_OK) { TX_DBIO_LOG_ERR("FETCH cur_mm_bt_0011"); errcnt++; break; } total++; /* 심사완료 규칙: 통과 + 기준점수 이상 → 처리완료, 부결 → 실패 */ if (strcmp(h_result, "P") == 0 && h_score >= MM_PASS_SCORE) { strncpy(h_new_status, MM_ST_DONE, sizeof(h_new_status)); } else if (strcmp(h_result, "F") == 0) { strncpy(h_new_status, MM_ST_FAIL, sizeof(h_new_status)); } else { /* 보류: 상태 유지 */ held++; continue; } { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "update mm_merchant set status = $1 , status_date = $2 where merch_id = $3 ", ECPGt_char,(h_new_status),(long)2,(long)1,(2)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_biz_date),(long)9,(long)1,(9)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_merch_id),(long)16,(long)1,(16)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT);} #line 85 "app/batch/mm_bt_0011.pgc" if (sqlca.sqlcode != TX_SQL_OK) { tx_log(TX_LOG_ERROR, "[mm_bt_0011] 상태전이 실패 merch=%s", h_merch_id); errcnt++; continue; } { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "insert into mm_status_hist ( merch_id , old_status , new_status , reason , chg_date ) values ( $1 , 'R' , $2 , 'REVIEW' , $3 )", ECPGt_char,(h_merch_id),(long)16,(long)1,(16)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_new_status),(long)2,(long)1,(2)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_char,(h_biz_date),(long)9,(long)1,(9)*sizeof(char), ECPGt_NO_INDICATOR, NULL , 0L, 0L, 0L, ECPGt_EOIT, ECPGt_EORT);} #line 96 "app/batch/mm_bt_0011.pgc" if (strcmp(h_new_status, MM_ST_DONE) == 0) approved++; else rejected++; } { ECPGdo(__LINE__, 0, 1, NULL, 0, ECPGst_normal, "close cur_mm_bt_0011", ECPGt_EOIT, ECPGt_EORT);} #line 104 "app/batch/mm_bt_0011.pgc" if (errcnt == 0) tx_commit(); else tx_abort(); tx_log(TX_LOG_INFO, "[mm_bt_0011] 요약 date=%s 대상=%ld 승인=%ld 부결=%ld 보류=%ld 오류=%ld", biz_date, total, approved, rejected, held, errcnt); printf("========== 가맹점 상태 일괄전이 [mm_bt_0011] ==========\n"); printf(" 기준일 : %s\n", biz_date); printf(" 심사 대상 : %ld\n", total); printf(" 승인(M) : %ld\n", approved); printf(" 부결(U) : %ld\n", rejected); printf(" 보류(R유지) : %ld\n", held); 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, "[mm_bt_0011] 배치 시작 date=%s", biz_date); rc = mm_dbio_connect(target); if (rc != TX_OK) { tx_log(TX_LOG_ERROR, "[mm_bt_0011] DB 접속 실패 rc=%d", rc); return 1; } rc = run_mm_bt_0011(biz_date); mm_dbio_disconnect(); tx_log(TX_LOG_INFO, "[mm_bt_0011] 배치 종료 rc=%d(%s)", rc, tx_strerror(rc)); return (rc == TX_OK) ? 0 : 1; }