LCOV - code coverage report
Current view: top level - src/backend/utils/mb/conversion_procs/utf8_and_euc_kr - utf8_and_euc_kr.c (source / functions) Hit Total Coverage
Test: PostgreSQL 17devel Lines: 19 19 100.0 %
Date: 2024-03-29 07:11:49 Functions: 5 5 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*-------------------------------------------------------------------------
       2             :  *
       3             :  *    EUC_KR <--> UTF8
       4             :  *
       5             :  * Portions Copyright (c) 1996-2024, PostgreSQL Global Development Group
       6             :  * Portions Copyright (c) 1994, Regents of the University of California
       7             :  *
       8             :  * IDENTIFICATION
       9             :  *    src/backend/utils/mb/conversion_procs/utf8_and_euc_kr/utf8_and_euc_kr.c
      10             :  *
      11             :  *-------------------------------------------------------------------------
      12             :  */
      13             : 
      14             : #include "postgres.h"
      15             : #include "fmgr.h"
      16             : #include "mb/pg_wchar.h"
      17             : #include "../../Unicode/euc_kr_to_utf8.map"
      18             : #include "../../Unicode/utf8_to_euc_kr.map"
      19             : 
      20           6 : PG_MODULE_MAGIC;
      21             : 
      22           6 : PG_FUNCTION_INFO_V1(euc_kr_to_utf8);
      23           6 : PG_FUNCTION_INFO_V1(utf8_to_euc_kr);
      24             : 
      25             : /* ----------
      26             :  * conv_proc(
      27             :  *      INTEGER,    -- source encoding id
      28             :  *      INTEGER,    -- destination encoding id
      29             :  *      CSTRING,    -- source string (null terminated C string)
      30             :  *      CSTRING,    -- destination string (null terminated C string)
      31             :  *      INTEGER,    -- source string length
      32             :  *      BOOL        -- if true, don't throw an error if conversion fails
      33             :  * ) returns INTEGER;
      34             :  *
      35             :  * Returns the number of bytes successfully converted.
      36             :  * ----------
      37             :  */
      38             : Datum
      39           6 : euc_kr_to_utf8(PG_FUNCTION_ARGS)
      40             : {
      41           6 :     unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
      42           6 :     unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
      43           6 :     int         len = PG_GETARG_INT32(4);
      44           6 :     bool        noError = PG_GETARG_BOOL(5);
      45             :     int         converted;
      46             : 
      47           6 :     CHECK_ENCODING_CONVERSION_ARGS(PG_EUC_KR, PG_UTF8);
      48             : 
      49           6 :     converted = LocalToUtf(src, len, dest,
      50             :                            &euc_kr_to_unicode_tree,
      51             :                            NULL, 0,
      52             :                            NULL,
      53             :                            PG_EUC_KR,
      54             :                            noError);
      55             : 
      56           6 :     PG_RETURN_INT32(converted);
      57             : }
      58             : 
      59             : Datum
      60           6 : utf8_to_euc_kr(PG_FUNCTION_ARGS)
      61             : {
      62           6 :     unsigned char *src = (unsigned char *) PG_GETARG_CSTRING(2);
      63           6 :     unsigned char *dest = (unsigned char *) PG_GETARG_CSTRING(3);
      64           6 :     int         len = PG_GETARG_INT32(4);
      65           6 :     bool        noError = PG_GETARG_BOOL(5);
      66             :     int         converted;
      67             : 
      68           6 :     CHECK_ENCODING_CONVERSION_ARGS(PG_UTF8, PG_EUC_KR);
      69             : 
      70           6 :     converted = UtfToLocal(src, len, dest,
      71             :                            &euc_kr_from_unicode_tree,
      72             :                            NULL, 0,
      73             :                            NULL,
      74             :                            PG_EUC_KR,
      75             :                            noError);
      76             : 
      77           6 :     PG_RETURN_INT32(converted);
      78             : }

Generated by: LCOV version 1.14