blob: 18f127e17eac5f9efa585b0a405d0e3debbe1b38 [file] [log] [blame]
/** @file
A brief file description
@section license License
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
/*****************************************************************************
*
* HostSelection.h - Interface to Host Selection System
*
*
****************************************************************************/
#pragma once
#include "ControlBase.h"
#include "ControlMatcher.h"
#include "records/P_RecProcess.h"
enum HostStatus_t {
HOST_STATUS_INIT,
HOST_STATUS_DOWN,
HOST_STATUS_UP,
};
struct HostStatRec_t {
HostStatus_t status;
time_t marked_down; // the time that this host was marked down.
unsigned int down_time; // number of seconds that the host should be down, 0 is indefinately
};
const std::string stat_prefix = "host_status.";
/**
* Singleton placeholder for next hop status.
*/
struct HostStatus {
~HostStatus();
static HostStatus &
instance()
{
static HostStatus instance;
return instance;
}
void setHostStatus(const char *name, const HostStatus_t status, const unsigned int down_time);
HostStatus_t getHostStatus(const char *name);
void createHostStat(const char *name);
private:
int next_stat_id = 1;
HostStatus();
HostStatus(const HostStatus &obj) = delete;
HostStatus &operator=(HostStatus const &) = delete;
int getHostStatId(const char *name);
InkHashTable *hosts_statuses; // next hop status, key is hostname or ip string, data is bool (available).
InkHashTable *hosts_stats_ids; // next hop stat ids, key is hostname or ip string, data is int stat id.
ink_rwlock host_status_rwlock;
ink_rwlock host_statids_rwlock;
};