diff options
author | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2011-03-05 16:45:22 +0000 |
---|---|---|
committer | Ludovic Pouzenc <ludovic@pouzenc.fr> | 2011-03-05 16:45:22 +0000 |
commit | 7db6f09bbf06dfc15cd9aef486229637514d607a (patch) | |
tree | 08484db98dc4ab47bda6255122c457d7082c901e | |
parent | a5f35dfa2aac7c1040022d0cfb475c9b1fdcf32e (diff) | |
download | 2011-ddhardrescue-7db6f09bbf06dfc15cd9aef486229637514d607a.tar.gz 2011-ddhardrescue-7db6f09bbf06dfc15cd9aef486229637514d607a.tar.bz2 2011-ddhardrescue-7db6f09bbf06dfc15cd9aef486229637514d607a.zip |
Restructuration du code.
Création d'un Makefile avec génération automatique des dépendances. J'ai pomé 3 heures de boulot en écrasant tous mes .c par des fichiers vides, dégouté.
git-svn-id: file:///var/svn/2011-ddhardrescue/trunk@6 d3078510-dda0-49f1-841c-895ef4b7ec81
-rwxr-xr-x | inc/recover.h (renamed from src/recover.h) | 2 | ||||
-rwxr-xr-x | inc/slices.h (renamed from src/slices.h) | 11 | ||||
-rwxr-xr-x | src/essais/compil.sh | 2 | ||||
-rw-r--r-- | src/essais/test.c | 32 | ||||
-rw-r--r-- | todo.txt (renamed from src/todo.txt) | 0 |
5 files changed, 35 insertions, 12 deletions
diff --git a/src/recover.h b/inc/recover.h index 84c7286..85f1738 100755 --- a/src/recover.h +++ b/inc/recover.h @@ -6,6 +6,6 @@ extern int end; slices_t *recover(char *src, char *dst, char*ddOpts, address_t beginSector, address_t endSector/*, int depth*/); -int tryRecoverUntilError(slice_t *sliceToRead, address_t *firstError, 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/src/slices.h b/inc/slices.h index 85cb621..4b60ebc 100755 --- a/src/slices.h +++ b/inc/slices.h @@ -24,12 +24,21 @@ typedef struct { } slices_t; slice_t *sliceNew(address_t begin, address_t end, sliceStatus_t status, slice_t *next); + +// Return the numbers of slices after split (3 in the general case, 2 or 1 in particular cases. -1 is memory error) int sliceSplit(slices_t *slices, slice_t *initialSlice, address_t splitAt, sliceStatus_t statusBefore, sliceStatus_t statusAt, sliceStatus_t statusAfter); -slices_t *slicesNew(); + +slices_t *slicesNewEmpty(); + +slices_t *sliceNewSingleton(begin, end, sliceStatus_t status); + void slicesAppend(slices_t *slices, slice_t *slice); + slice_t *slicesFindLargest(slices_t *slices, sliceStatus_t status); + slice_t *slicesFindLargestFast(slices_t *slices, address_t *foundMax, sliceStatus_t status, address_t knownMax, slice_t *firstToTry); + char *slicesDump(slices_t *slices, address_t *blockSize, unsigned int charCount, address_t begin, address_t end); #endif /*SLICES_H*/ diff --git a/src/essais/compil.sh b/src/essais/compil.sh index 0b2eda7..1581e9d 100755 --- a/src/essais/compil.sh +++ b/src/essais/compil.sh @@ -1 +1 @@ -gcc -Wall -lncurses test.c +gcc -Wall -g -lncurses test.c diff --git a/src/essais/test.c b/src/essais/test.c index 5e3a185..f8ce2b7 100644 --- a/src/essais/test.c +++ b/src/essais/test.c @@ -5,11 +5,9 @@ WINDOW *create_newwin(int height, int width, int starty, int startx) { WINDOW *local_win; local_win = newwin(height, width, starty, startx); - box(local_win, 0 , 0); /* 0, 0 gives default characters - * for the vertical and horizontal - * lines */ - wrefresh(local_win); /* Show that box */ - + wborder(local_win, '|', '|', '-', '-', '+', '+', '+', '+'); +// box(local_win,0,0); + wrefresh(local_win); return local_win; } @@ -33,23 +31,40 @@ int main() { int row,col; char msg[256]; WINDOW *w1; + MEVENT event; initscr(); getmaxyx(stdscr,row,col); raw(); keypad(stdscr, TRUE); noecho(); + + start_color(); + init_pair(1, COLOR_WHITE, COLOR_BLUE); + mousemask(ALL_MOUSE_EVENTS, NULL); +//http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/windows.html + //w1 = create_newwin(row/2, col/2, row/4, col/4); + w1 = create_newwin(10, 10, 10, 10); + attron(COLOR_PAIR(1) | A_BOLD); mvprintw(row-2,0,"This screen has %d rows and %d columns\n",row,col); + attroff(COLOR_PAIR(1) | A_BOLD); move(0,0); - -//http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/windows.html - w1 = create_newwin(row/2, col/2, row/4, col/4); + end=0; while (!end) { + refresh(); ch=getch(); switch(ch) { + case KEY_MOUSE: + if(getmouse(&event) == OK) { /* When the user clicks left mouse button */ + if(event.bstate & BUTTON1_PRESSED) { + attrset(A_NORMAL); + printw("mouse button1\n"); + } + } + break; case KEY_F(2): attrset(A_NORMAL); printw("F2 key\n"); @@ -65,7 +80,6 @@ int main() { wattrset(w1,A_BOLD | A_UNDERLINE); wprintw(w1, msg); } - refresh(); } endwin(); |