| 1 | /* |
|---|
| 2 | * This file is part of libtrace |
|---|
| 3 | * |
|---|
| 4 | * Copyright (c) 2004 The University of Waikato, Hamilton, New Zealand. |
|---|
| 5 | * Authors: Daniel Lawson |
|---|
| 6 | * Perry Lorier |
|---|
| 7 | * |
|---|
| 8 | * All rights reserved. |
|---|
| 9 | * |
|---|
| 10 | * This code has been developed by the University of Waikato WAND |
|---|
| 11 | * research group. For further information please see http://www.wand.net.nz/ |
|---|
| 12 | * |
|---|
| 13 | * libtrace is free software; you can redistribute it and/or modify |
|---|
| 14 | * it under the terms of the GNU General Public License as published by |
|---|
| 15 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 16 | * (at your option) any later version. |
|---|
| 17 | * |
|---|
| 18 | * libtrace is distributed in the hope that it will be useful, |
|---|
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 21 | * GNU General Public License for more details. |
|---|
| 22 | * |
|---|
| 23 | * You should have received a copy of the GNU General Public License |
|---|
| 24 | * along with libtrace; if not, write to the Free Software |
|---|
| 25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 26 | * |
|---|
| 27 | * $Id$ |
|---|
| 28 | * |
|---|
| 29 | */ |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | #ifndef _FIFO_H_ |
|---|
| 33 | #define _FIFO_H_ |
|---|
| 34 | |
|---|
| 35 | struct tracefifo_t; |
|---|
| 36 | |
|---|
| 37 | typedef struct tracefifo_state { |
|---|
| 38 | uint64_t in; |
|---|
| 39 | uint64_t out; |
|---|
| 40 | uint64_t ack; |
|---|
| 41 | uint64_t length; |
|---|
| 42 | uint64_t used; |
|---|
| 43 | } tracefifo_state_t; |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | struct tracefifo_t *create_tracefifo(size_t size); |
|---|
| 47 | void destroy_tracefifo(struct tracefifo_t *fifo); |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | void tracefifo_stat(struct tracefifo_t *fifo, char *desc, int delta); |
|---|
| 51 | char *tracefifo_stat_str(struct tracefifo_t *fifo, char *desc, int delta); |
|---|
| 52 | void tracefifo_stat_int(struct tracefifo_t *fifo, tracefifo_state_t *state); |
|---|
| 53 | |
|---|
| 54 | size_t tracefifo_out_available(struct tracefifo_t *fifo); |
|---|
| 55 | size_t tracefifo_ack_available(struct tracefifo_t *fifo); |
|---|
| 56 | size_t tracefifo_free(struct tracefifo_t *fifo); |
|---|
| 57 | size_t tracefifo_length(struct tracefifo_t *fifo); |
|---|
| 58 | |
|---|
| 59 | int tracefifo_write(struct tracefifo_t *fifo, void *buffer, size_t len); |
|---|
| 60 | |
|---|
| 61 | int tracefifo_out_read(struct tracefifo_t *fifo, void *buffer, size_t len); |
|---|
| 62 | int tracefifo_ack_read(struct tracefifo_t *fifo, void *buffer, size_t len); |
|---|
| 63 | int tracefifo_out_update(struct tracefifo_t *fifo, size_t len); |
|---|
| 64 | int tracefifo_ack_update(struct tracefifo_t *fifo, size_t len); |
|---|
| 65 | |
|---|
| 66 | void tracefifo_out_reset(struct tracefifo_t *fifo); |
|---|
| 67 | |
|---|
| 68 | void tracefifo_flush(struct tracefifo_t *fifo); |
|---|
| 69 | |
|---|
| 70 | |
|---|
| 71 | |
|---|
| 72 | #endif /* _FIFO_H_ */ |
|---|