File: op_fnzsyslog.c

package info (click to toggle)
fis-gtm 6.3-007-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,284 kB
  • sloc: ansic: 328,861; asm: 5,182; csh: 5,102; sh: 1,918; awk: 291; makefile: 69; sed: 13
file content (50 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
 /****************************************************************
 *								*
 * Copyright (c) 2014-2015 Fidelity National Information	*
 * Services, Inc. and/or its subsidiaries. All rights reserved.	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/

#include "mdef.h"

#include "gtm_string.h"

#include "gtm_multi_thread.h"
#include "min_max.h"
#include "op.h"
#include "util.h"

LITREF mval literal_one;

void op_fnzsyslog(mval* src, mval* dst)
{
	char		rebuff[OUT_BUFF_SIZE];
	int		len;
	char		*save_util_outptr;
	va_list		save_last_va_list_ptr;
	boolean_t	util_copy_saved = FALSE;
	DCL_THREADGBL_ACCESS;

	SETUP_THREADGBL_ACCESS;
	MV_FORCE_STR(src);
	len = MIN(src->str.len, OUT_BUFF_SIZE - 1);
	if (0 < len)
	{
		ASSERT_SAFE_TO_UPDATE_THREAD_GBLS;
		if ((NULL != TREF(util_outptr)) && (TREF(util_outptr) != TREF(util_outbuff_ptr)))
		{
			SAVE_UTIL_OUT_BUFFER(save_util_outptr, save_last_va_list_ptr, util_copy_saved);
		}
		memcpy(rebuff, src->str.addr, len);	/* Rebuffer to add null terminator */
		rebuff[len] = '\0';			/* Add null terminator */
		util_out_print(NULL, RESET);
		util_out_print(rebuff, OPER);
		RESTORE_UTIL_OUT_BUFFER(save_util_outptr, save_last_va_list_ptr, util_copy_saved);
	}
	memcpy(dst, &literal_one, SIZEOF(mval));
}