From 6c701b58a24d96e37c323412f3d2aa334cd2ded1 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Sun, 6 Mar 2011 20:46:29 +0000 Subject: La gestion minimaliste des évènements de modification des slices est faite. Un dump à chaque event a été codé dans le main pour tester cet aspect. C'est ok. Go go go ncurses :D MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///var/svn/2011-ddhardrescue/trunk@11 d3078510-dda0-49f1-841c-895ef4b7ec81 --- inc/recover.h | 4 ++-- inc/slices_evt.h | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 inc/slices_evt.h (limited to 'inc') diff --git a/inc/recover.h b/inc/recover.h index 2af7f3f..eee8141 100755 --- a/inc/recover.h +++ b/inc/recover.h @@ -1,11 +1,11 @@ #ifndef RECOVER_H #define RECOVER_H -#include "slices.h" +#include "slices_evt.h" extern int end; -void recover(slices_t *slices, char *src, char *dst, char*ddOpts); +void recover(slices_evt_t *slicesEvt, char *src, char *dst, char*ddOpts); int tryRecoverUntilError(slice_t *sliceToRead, address_t *firstError, char *src, char *dst, char *ddOpts); #endif /*RECOVER_H*/ diff --git a/inc/slices_evt.h b/inc/slices_evt.h new file mode 100644 index 0000000..e7d44fe --- /dev/null +++ b/inc/slices_evt.h @@ -0,0 +1,17 @@ +#ifndef SLICES_EVT_H +#define SLICES_EVT_H + +#include "slices.h" + +//typedef enum { EV_BOUNDARY, EV_TYPE } sliceEvtKind_t; + +typedef struct _slices_evt_t { + slices_t *data; + pthread_mutex_t mutex; + void (*eventListener)(/*sliceEvtKind_t evtKind,*/ struct _slices_evt_t *slicesEvt, slice_t *slice); +} slices_evt_t; + +int sliceSplitEvt(slices_evt_t *slicesEvt, slice_t *initialSlice, address_t splitAt, sliceStatus_t statusBefore, sliceStatus_t statusAt, sliceStatus_t statusAfter); + +#endif /*SLICES_EVT_H */ + -- cgit v1.2.3