]>
Commit | Line | Data |
---|---|---|
a553f267 | 1 | //----------------------------------------------------------------------------- |
212ef3a0 | 2 | // Copyright (C) 2009 Michael Gernoth <michael at gernoth.net> |
a553f267 | 3 | // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> |
4 | // | |
5 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, | |
6 | // at your option, any later version. See the LICENSE.txt file for the text of | |
7 | // the license. | |
8 | //----------------------------------------------------------------------------- | |
9 | // UI utilities | |
10 | //----------------------------------------------------------------------------- | |
11 | ||
7fe9b0b7 | 12 | #include <stdarg.h> |
51969283 | 13 | #include <stdlib.h> |
7fe9b0b7 | 14 | #include <stdio.h> |
0f321d63 | 15 | #include <stdbool.h> |
51969283 | 16 | #include <readline/readline.h> |
9492e0b0 | 17 | #include <pthread.h> |
7fe9b0b7 | 18 | |
19 | #include "ui.h" | |
20 | ||
3fe71039 | 21 | double CursorScaleFactor = 1; |
b8fdac9e | 22 | int PlotGridX=0, PlotGridY=0, PlotGridXdefault= 64, PlotGridYdefault= 64, CursorCPos= 0, CursorDPos= 0; |
7fe9b0b7 | 23 | int offline; |
ed77aabe | 24 | int flushAfterWrite = 0; //buzzy |
0f321d63 | 25 | int GridOffset = 0; |
3fe71039 | 26 | bool GridLocked = false; |
b8fdac9e | 27 | bool showDemod = true; |
0f321d63 | 28 | |
9492e0b0 | 29 | extern pthread_mutex_t print_lock; |
30 | ||
7fe9b0b7 | 31 | static char *logfilename = "proxmark3.log"; |
32 | ||
33 | void PrintAndLog(char *fmt, ...) | |
34 | { | |
51969283 M |
35 | char *saved_line; |
36 | int saved_point; | |
9492e0b0 | 37 | va_list argptr, argptr2; |
38 | static FILE *logfile = NULL; | |
39 | static int logging=1; | |
7fe9b0b7 | 40 | |
acf0582d | 41 | // lock this section to avoid interlacing prints from different threads |
9492e0b0 | 42 | pthread_mutex_lock(&print_lock); |
43 | ||
44 | if (logging && !logfile) { | |
45 | logfile=fopen(logfilename, "a"); | |
46 | if (!logfile) { | |
47 | fprintf(stderr, "Can't open logfile, logging disabled!\n"); | |
48 | logging=0; | |
49 | } | |
50 | } | |
51969283 M |
51 | |
52 | int need_hack = (rl_readline_state & RL_STATE_READCMD) > 0; | |
7fe9b0b7 | 53 | |
51969283 M |
54 | if (need_hack) { |
55 | saved_point = rl_point; | |
56 | saved_line = rl_copy_text(0, rl_end); | |
57 | rl_save_prompt(); | |
58 | rl_replace_line("", 0); | |
59 | rl_redisplay(); | |
60 | } | |
61 | ||
9492e0b0 | 62 | va_start(argptr, fmt); |
63 | va_copy(argptr2, argptr); | |
64 | vprintf(fmt, argptr); | |
65 | printf(" "); // cleaning prompt | |
66 | va_end(argptr); | |
67 | printf("\n"); | |
51969283 M |
68 | |
69 | if (need_hack) { | |
70 | rl_restore_prompt(); | |
71 | rl_replace_line(saved_line, 0); | |
72 | rl_point = saved_point; | |
73 | rl_redisplay(); | |
74 | free(saved_line); | |
75 | } | |
76 | ||
9492e0b0 | 77 | if (logging && logfile) { |
78 | vfprintf(logfile, fmt, argptr2); | |
79 | fprintf(logfile,"\n"); | |
80 | fflush(logfile); | |
81 | } | |
82 | va_end(argptr2); | |
83 | ||
ed77aabe | 84 | if (flushAfterWrite == 1) //buzzy |
85 | { | |
86 | fflush(NULL); | |
87 | } | |
9492e0b0 | 88 | //release lock |
89 | pthread_mutex_unlock(&print_lock); | |
7fe9b0b7 | 90 | } |
91 | ||
9492e0b0 | 92 | |
7fe9b0b7 | 93 | void SetLogFilename(char *fn) |
94 | { | |
95 | logfilename = fn; | |
96 | } |