Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /********************************************************************************************************* |
| 2 | * Software License Agreement (BSD License) * |
| 3 | * Author: Sebastien Decugis <sdecugis@freediameter.net> * |
| 4 | * * |
| 5 | * Copyright (c) 2013, WIDE Project and NICT * |
| 6 | * All rights reserved. * |
| 7 | * * |
| 8 | * Redistribution and use of this software in source and binary forms, with or without modification, are * |
| 9 | * permitted provided that the following conditions are met: * |
| 10 | * * |
| 11 | * * Redistributions of source code must retain the above * |
| 12 | * copyright notice, this list of conditions and the * |
| 13 | * following disclaimer. * |
| 14 | * * |
| 15 | * * Redistributions in binary form must reproduce the above * |
| 16 | * copyright notice, this list of conditions and the * |
| 17 | * following disclaimer in the documentation and/or other * |
| 18 | * materials provided with the distribution. * |
| 19 | * * |
| 20 | * * Neither the name of the WIDE Project or NICT nor the * |
| 21 | * names of its contributors may be used to endorse or * |
| 22 | * promote products derived from this software without * |
| 23 | * specific prior written permission of WIDE Project and * |
| 24 | * NICT. * |
| 25 | * * |
| 26 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED * |
| 27 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * |
| 28 | * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR * |
| 29 | * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * |
| 30 | * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * |
| 31 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR * |
| 32 | * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF * |
| 33 | * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * |
| 34 | *********************************************************************************************************/ |
| 35 | |
| 36 | /* Do not include this directly, use dbg_interactive.i instead */ |
| 37 | |
| 38 | /****** LISTS *********/ |
| 39 | |
| 40 | %extend fd_list { |
| 41 | /* allow a parameter in the constructor, and perform the fd_list_init operation */ |
| 42 | fd_list(void * o = NULL) { |
| 43 | struct fd_list * li; |
| 44 | li = (struct fd_list *) malloc(sizeof(struct fd_list)); |
| 45 | if (!li) { |
| 46 | DI_ERROR_MALLOC; |
| 47 | return NULL; |
| 48 | } |
| 49 | fd_list_init(li, o); |
| 50 | return li; |
| 51 | } |
| 52 | /* Unlink before freeing */ |
| 53 | ~fd_list() { |
| 54 | fd_list_unlink($self); |
| 55 | free($self); |
| 56 | } |
| 57 | /* For debug, show the values of the list */ |
| 58 | void dump() { |
| 59 | fd_log_debug("list: %p", $self); |
| 60 | fd_log_debug(" - next: %p", $self->next); |
| 61 | fd_log_debug(" - prev: %p", $self->prev); |
| 62 | fd_log_debug(" - head: %p", $self->head); |
| 63 | fd_log_debug(" - o : %p", $self->o); |
| 64 | } |
| 65 | /* Insert before/after wrapper */ |
| 66 | void insert_prev(struct fd_list * li) { |
| 67 | fd_list_insert_before($self, li); |
| 68 | } |
| 69 | void insert_next(struct fd_list * li) { |
| 70 | fd_list_insert_after($self, li); |
| 71 | } |
| 72 | /* Test for emptyness */ |
| 73 | PyObject * isempty() { |
| 74 | PyObject * ret; |
| 75 | if (FD_IS_LIST_EMPTY($self)) |
| 76 | ret = Py_True; |
| 77 | else |
| 78 | ret = Py_False; |
| 79 | Py_XINCREF(ret); |
| 80 | return ret; |
| 81 | } |
| 82 | /* Concatenate two lists */ |
| 83 | void concat(struct fd_list * li) { |
| 84 | fd_list_move_end($self, li); |
| 85 | } |
| 86 | /* Unlink without freeing */ |
| 87 | void detach() { |
| 88 | fd_list_unlink($self); |
| 89 | } |
| 90 | |
| 91 | /* Return the list as python list of elements */ |
| 92 | PyObject * enum_as(char * type = NULL, int dont_use_o = 0) { |
| 93 | struct fd_list *li; |
| 94 | swig_type_info * desttype = NULL; |
| 95 | PyObject * rl; |
| 96 | |
| 97 | if ($self->head != $self) { |
| 98 | DI_ERROR(EINVAL, NULL, "This method can only be called on the list sentinel."); |
| 99 | return NULL; |
| 100 | } |
| 101 | |
| 102 | if (type) { |
| 103 | desttype = SWIG_TypeQuery(type); |
| 104 | if (!desttype) { |
| 105 | DI_ERROR(EINVAL, NULL, "Unable to resolve this type. Please check the form: 'struct blahbla *'"); |
| 106 | return NULL; |
| 107 | } |
| 108 | } |
| 109 | if (desttype == NULL) { |
| 110 | /* fallback to fd_list */ |
| 111 | desttype = SWIGTYPE_p_fd_list; |
| 112 | /* in this case, don't follow the 'o' link */ |
| 113 | dont_use_o = 1; |
| 114 | } |
| 115 | |
| 116 | rl = PyList_New(0); |
| 117 | SWIG_PYTHON_THREAD_BEGIN_BLOCK; |
| 118 | for (li = $self->next; li != $self; li = li->next) { |
| 119 | void * obj = NULL; |
| 120 | if (dont_use_o || li->o == NULL) |
| 121 | obj = li; |
| 122 | else |
| 123 | obj = li->o; |
| 124 | PyList_Append(rl, SWIG_NewPointerObj(obj, desttype, 0 )); |
| 125 | } |
| 126 | Py_XINCREF(rl); |
| 127 | SWIG_PYTHON_THREAD_END_BLOCK; |
| 128 | |
| 129 | return rl; |
| 130 | } |
| 131 | }; |
| 132 | |