aboutsummaryrefslogtreecommitdiffstats
path: root/src/pluto/library.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pluto/library.c')
-rw-r--r--src/pluto/library.c109
1 files changed, 0 insertions, 109 deletions
diff --git a/src/pluto/library.c b/src/pluto/library.c
deleted file mode 100644
index e2fee60f7..000000000
--- a/src/pluto/library.c
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright (C) 2009 Tobias Brunner
- * Copyright (C) 2008 Martin Willi
- * Hochschule fuer Technik Rapperswil
- *
- * This program 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; either version 2 of the License, or (at your
- * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
- *
- * 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.
- *
- * $Id: library.c 4936 2009-03-12 18:07:32Z tobias $
- */
-
-#include "library.h"
-
-#include <stdlib.h>
-
-#include <utils.h>
-#include <chunk.h>
-#ifdef LEAK_DETECTIVE
-#include <utils/leak_detective.h>
-#endif
-
-typedef struct private_library_t private_library_t;
-
-/**
- * private data of library
- */
-struct private_library_t {
-
- /**
- * public functions
- */
- library_t public;
-
-#ifdef LEAK_DETECTIVE
- /**
- * Memory leak detective, if enabled
- */
- leak_detective_t *detective;
-#endif /* LEAK_DETECTIVE */
-};
-
-/**
- * library instance
- */
-library_t *lib;
-
-/**
- * Implementation of library_t.destroy
- */
-void library_deinit()
-{
- private_library_t *this = (private_library_t*)lib;
-
- this->public.settings->destroy(this->public.settings);
- this->public.printf_hook->destroy(this->public.printf_hook);
-
-#ifdef LEAK_DETECTIVE
- if (this->detective)
- {
- this->detective->destroy(this->detective);
- }
-#endif /* LEAK_DETECTIVE */
- free(this);
- lib = NULL;
-}
-
-/*
- * see header file
- */
-void library_init(char *settings)
-{
- printf_hook_t *pfh;
- private_library_t *this = malloc_thing(private_library_t);
- lib = &this->public;
-
- lib->leak_detective = FALSE;
-
-#ifdef LEAK_DETECTIVE
- this->detective = leak_detective_create();
-#endif /* LEAK_DETECTIVE */
-
- pfh = printf_hook_create();
- this->public.printf_hook = pfh;
-
- pfh->add_handler(pfh, 'b', mem_printf_hook,
- PRINTF_HOOK_ARGTYPE_POINTER, PRINTF_HOOK_ARGTYPE_INT,
- PRINTF_HOOK_ARGTYPE_END);
- pfh->add_handler(pfh, 'B', chunk_printf_hook,
- PRINTF_HOOK_ARGTYPE_POINTER, PRINTF_HOOK_ARGTYPE_END);
- pfh->add_handler(pfh, 'N', enum_printf_hook,
- PRINTF_HOOK_ARGTYPE_POINTER, PRINTF_HOOK_ARGTYPE_INT,
- PRINTF_HOOK_ARGTYPE_END);
- pfh->add_handler(pfh, 'T', time_printf_hook,
- PRINTF_HOOK_ARGTYPE_POINTER, PRINTF_HOOK_ARGTYPE_INT,
- PRINTF_HOOK_ARGTYPE_END);
- pfh->add_handler(pfh, 'V', time_delta_printf_hook,
- PRINTF_HOOK_ARGTYPE_POINTER, PRINTF_HOOK_ARGTYPE_POINTER,
- PRINTF_HOOK_ARGTYPE_END);
-
- this->public.settings = settings_create(settings);
-}
-