| 1 |
/* |
|---|
| 2 |
* Copyright (c) 2007, OmniTI Computer Consulting, Inc. |
|---|
| 3 |
* All rights reserved. |
|---|
| 4 |
* |
|---|
| 5 |
* Redistribution and use in source and binary forms, with or without |
|---|
| 6 |
* modification, are permitted provided that the following conditions are |
|---|
| 7 |
* met: |
|---|
| 8 |
* |
|---|
| 9 |
* * Redistributions of source code must retain the above copyright |
|---|
| 10 |
* notice, this list of conditions and the following disclaimer. |
|---|
| 11 |
* * Redistributions in binary form must reproduce the above |
|---|
| 12 |
* copyright notice, this list of conditions and the following |
|---|
| 13 |
* disclaimer in the documentation and/or other materials provided |
|---|
| 14 |
* with the distribution. |
|---|
| 15 |
* * Neither the name OmniTI Computer Consulting, Inc. nor the names |
|---|
| 16 |
* of its contributors may be used to endorse or promote products |
|---|
| 17 |
* derived from this software without specific prior written |
|---|
| 18 |
* permission. |
|---|
| 19 |
* |
|---|
| 20 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|---|
| 21 |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|---|
| 22 |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|---|
| 23 |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|---|
| 24 |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|---|
| 25 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|---|
| 26 |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|---|
| 27 |
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|---|
| 28 |
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|---|
| 29 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|---|
| 30 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 31 |
*/ |
|---|
| 32 |
|
|---|
| 33 |
#ifndef _NOIT_CHECK_TOOLS_H |
|---|
| 34 |
#define _NOIT_CHECK_TOOLS_H |
|---|
| 35 |
|
|---|
| 36 |
#include "noit_defines.h" |
|---|
| 37 |
#include "eventer/eventer.h" |
|---|
| 38 |
#include "noit_module.h" |
|---|
| 39 |
#include "noit_check.h" |
|---|
| 40 |
#include "utils/noit_hash.h" |
|---|
| 41 |
|
|---|
| 42 |
typedef int (*dispatch_func_t)(noit_module_t *, noit_check_t *); |
|---|
| 43 |
|
|---|
| 44 |
typedef int (*intperpolate_oper_fn)(char *, int len, const char *replacement); |
|---|
| 45 |
|
|---|
| 46 |
API_EXPORT(void) |
|---|
| 47 |
noit_check_tools_init(); |
|---|
| 48 |
|
|---|
| 49 |
API_EXPORT(int) |
|---|
| 50 |
noit_check_interpolate_register_oper_fn(const char *name, |
|---|
| 51 |
intperpolate_oper_fn f); |
|---|
| 52 |
|
|---|
| 53 |
API_EXPORT(int) |
|---|
| 54 |
noit_check_interpolate(char *buff, int len, const char *fmt, |
|---|
| 55 |
noit_hash_table *attrs, |
|---|
| 56 |
noit_hash_table *config); |
|---|
| 57 |
|
|---|
| 58 |
API_EXPORT(int) |
|---|
| 59 |
noit_check_schedule_next(noit_module_t *self, |
|---|
| 60 |
struct timeval *last_check, noit_check_t *check, |
|---|
| 61 |
struct timeval *now, dispatch_func_t recur); |
|---|
| 62 |
|
|---|
| 63 |
API_EXPORT(void) |
|---|
| 64 |
noit_check_run_full_asynch(noit_check_t *check, eventer_func_t callback); |
|---|
| 65 |
|
|---|
| 66 |
#define INITIATE_CHECK(func, self, check) do { \ |
|---|
| 67 |
if(once) { \ |
|---|
| 68 |
func(self, check); \ |
|---|
| 69 |
} \ |
|---|
| 70 |
else if(!check->fire_event) { \ |
|---|
| 71 |
struct timeval epoch = { 0L, 0L }; \ |
|---|
| 72 |
noit_check_fake_last_check(check, &epoch, NULL); \ |
|---|
| 73 |
noit_check_schedule_next(self, &epoch, check, NULL, func); \ |
|---|
| 74 |
} \ |
|---|
| 75 |
} while(0) |
|---|
| 76 |
|
|---|
| 77 |
API_EXPORT(void) |
|---|
| 78 |
noit_check_make_attrs(noit_check_t *check, noit_hash_table *attrs); |
|---|
| 79 |
API_EXPORT(void) |
|---|
| 80 |
noit_check_release_attrs(noit_hash_table *attrs); |
|---|
| 81 |
|
|---|
| 82 |
#endif |
|---|
| 83 |
|
|---|