1ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo/* Copyright (c) 2011-2012, The Linux Foundation. All rights reserved.
2ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *
3ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * Redistribution and use in source and binary forms, with or without
4ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * modification, are permitted provided that the following conditions are
5ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * met:
6ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *     * Redistributions of source code must retain the above copyright
7ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       notice, this list of conditions and the following disclaimer.
8ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *     * Redistributions in binary form must reproduce the above
9ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       copyright notice, this list of conditions and the following
10ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       disclaimer in the documentation and/or other materials provided
11ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       with the distribution.
12ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *     * Neither the name of The Linux Foundation, nor the names of its
13ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       contributors may be used to endorse or promote products derived
14ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *       from this software without specific prior written permission.
15ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *
16ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
17ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
19ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
20ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
23ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
25ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
26ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo *
28ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo */
29ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
30ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#ifndef LOC_LOG_H
31ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#define LOC_LOG_H
32ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
33ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#ifdef __cplusplus
34ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoextern "C"
35ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo{
36ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#endif
37ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
38ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#include <ctype.h>
39ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#include "loc_target.h"
40ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
41ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russotypedef struct
42ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo{
43ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo   char                 name[128];
44ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo   long                 val;
45ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo} loc_name_val_s_type;
46ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
47ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#define NAME_VAL(x) {"" #x "", x }
48ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
49ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#define UNKNOWN_STR "UNKNOWN"
50ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
51ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#define CHECK_MASK(type, value, mask_var, mask) \
52ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo   ((mask_var & mask) ? (type) value : (type) (-1))
53ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
54ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo/* Get names from value */
55ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoconst char* loc_get_name_from_mask(loc_name_val_s_type table[], int table_size, long mask);
56ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoconst char* loc_get_name_from_val(loc_name_val_s_type table[], int table_size, long value);
57ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoconst char* loc_get_msg_q_status(int status);
58ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoconst char* loc_get_target_name(unsigned int target);
59ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
60ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoextern const char* log_succ_fail_string(int is_succ);
61ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
62ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russoextern char *loc_get_time(char *time_string, unsigned long buf_size);
63ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
64ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#ifdef __cplusplus
65ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo}
66ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#endif
67ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo
68ec6e5d3a2597d37d5b1d98911cb06218cdf19bf1Dante Russo#endif /* LOC_LOG_H */
69