server/core/config.c: Removed unused if..else block from config_get_valint. Changed it also to return value which indicates whether the operation succeed. Added config_get_valbool similar to config_get_valint. service.c:Added typelib-like struct and array of valid boolean values. Fixed parameter type test in service_set_param_value. Completed boolean type parameter handling. hintparser.c:Fixed error message for non-maxscale hints. readwritesplit.c:Added loading of configuration parameters from service to instance and from instance to each new session. Fixed routing condition in get_route_target. Modified get_route_target so that it takes also rw_read_sesvars_from_slaves and rw_write_sesvars_to_all as parameters. skygw_types.h: added array size counting macro.
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * This file is distributed as part of the SkySQL Gateway.  It is free
 | 
						|
 * software: you can redistribute it and/or modify it under the terms of the
 | 
						|
 * GNU General Public License as published by the Free Software Foundation,
 | 
						|
 * version 2.
 | 
						|
 *
 | 
						|
 * This program is distributed in the hope that it will be useful, but WITHOUT
 | 
						|
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 | 
						|
 * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 | 
						|
 * details.
 | 
						|
 *
 | 
						|
 * You should have received a copy of the GNU General Public License along with
 | 
						|
 * this program; if not, write to the Free Software Foundation, Inc., 51
 | 
						|
 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 | 
						|
 *
 | 
						|
 * Copyright SkySQL Ab 2013
 | 
						|
 */
 | 
						|
#if !defined(SKYGW_TYPES_H)
 | 
						|
#define SKYGW_TYPES_H
 | 
						|
 | 
						|
#include <math.h>
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
#define SECOND_USEC (1024*1024L)
 | 
						|
#define MSEC_USEC   (1024L)
 | 
						|
 | 
						|
#define KILOBYTE_BYTE (1024L)
 | 
						|
#define MEGABYTE_BYTE (1024*1024L)
 | 
						|
#define GIGABYTE_BYTE (1024*1024*1024L)
 | 
						|
 | 
						|
#define KB KILOBYTE_BYTE
 | 
						|
#define MB MEGABYTE_BYTE
 | 
						|
#define GB GIGABYTE_BYTE
 | 
						|
 | 
						|
#define CALCLEN(i) (floor(log10(abs(i))) + 1)
 | 
						|
 | 
						|
#define UINTLEN(i) (i<10 ? 1 : (i<100 ? 2 : (i<1000 ? 3 : CALCLEN(i))))
 | 
						|
 | 
						|
#if !defined(PATH_MAX)
 | 
						|
# if defined(__USE_POSIX)
 | 
						|
#   define PATH_MAX _POSIX_PATH_MAX
 | 
						|
# else
 | 
						|
#   define PATH_MAX 256
 | 
						|
# endif
 | 
						|
#endif
 | 
						|
 | 
						|
#define MAX_ERROR_MSG PATH_MAX
 | 
						|
#define array_nelems(a) ((uint)(sizeof(a)/sizeof(a[0])))
 | 
						|
 | 
						|
#endif /* SKYGW_TYPES_H */
 |