/* * $Id$ */ // XXX: This file is made of large pieces of src/tools.cc // with only a few minor modifications. TODO: redesign or delete. #include "squid-old.h" void xassert(const char *msg, const char *file, int line) { std::cout << "Assertion failed: (" << msg << ") at " << file << ":" << line << std::endl; exit (1); } void fatal_dump(const char *message) { fprintf(stderr, "Fatal: %s",message); exit (1); } void fatal(const char *message) { fprintf(stderr, "Fatal: %s", message); exit (1); } /* used by fatalf */ static void fatalvf(const char *fmt, va_list args) { static char fatal_str[BUFSIZ]; vsnprintf(fatal_str, sizeof(fatal_str), fmt, args); fatal(fatal_str); } /* printf-style interface for fatal */ void fatalf(const char *fmt,...) { va_list args; va_start(args, fmt); fatalvf(fmt, args); va_end(args); } void debug_trap(const char *message) { fatal(message); } dlink_node * dlinkNodeNew() { return new dlink_node; } /* the node needs to be unlinked FIRST */ void dlinkNodeDelete(dlink_node * m) { if (m == NULL) return; delete m; } void dlinkAdd(void *data, dlink_node * m, dlink_list * list) { m->data = data; m->prev = NULL; m->next = list->head; if (list->head) list->head->prev = m; list->head = m; if (list->tail == NULL) list->tail = m; } void dlinkAddAfter(void *data, dlink_node * m, dlink_node * n, dlink_list * list) { m->data = data; m->prev = n; m->next = n->next; if (n->next) n->next->prev = m; else { assert(list->tail == n); list->tail = m; } n->next = m; } void dlinkAddTail(void *data, dlink_node * m, dlink_list * list) { m->data = data; m->next = NULL; m->prev = list->tail; if (list->tail) list->tail->next = m; list->tail = m; if (list->head == NULL) list->head = m; } void dlinkDelete(dlink_node * m, dlink_list * list) { if (m->next) m->next->prev = m->prev; if (m->prev) m->prev->next = m->next; if (m == list->head) list->head = m->next; if (m == list->tail) list->tail = m->prev; m->next = m->prev = NULL; }