Skip to content

Commit 52927ce

Browse files
committed
Allow single log file with fixed name rather than starting a new one each day.
1 parent 647d698 commit 52927ce

File tree

8 files changed

+240
-94
lines changed

8 files changed

+240
-94
lines changed

CHANGES.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ This is a snapshot of ongoing development towards version of 1.5. Some features
99

1010
- Time slots for beaconing.
1111

12-
- V20 configuration item for listing stations known not to understaand AX.25 v2.2. This will speed up connection by going right to SABM and not trying SABME first and failing.
13-
1412
- Documentation updates describing cheap SDR frequency inaccuracy and how to compensate for it.
1513

14+
- Allow single log file with fixed name rather than starting a new one each day.
15+
16+
1617
### Bugs Fixed: ###
1718

1819
- PACLEN configuration item no longer restricts length of received frames.
@@ -31,7 +32,7 @@ This is a snapshot of ongoing development towards version of 1.5. Some features
3132

3233
- decode_aprs utility can now accept KISS frames and AX.25 frames as series of two digit hexadecimal numbers.
3334

34-
- New configuration option, V20, for listing stations known to not understand AX.25 v2.2.
35+
- New configuration option, V20, for listing stations known to not understand AX.25 v2.2. This will speed up connection by going right to SABM and not trying SABME first and failing.
3536

3637

3738
### Bugs Fixed: ###

config.c

+34-3
Original file line numberDiff line numberDiff line change
@@ -877,7 +877,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
877877
strlcpy (p_misc_config->gpsnmea_port, "", sizeof(p_misc_config->gpsnmea_port));
878878
strlcpy (p_misc_config->waypoint_port, "", sizeof(p_misc_config->waypoint_port));
879879

880-
strlcpy (p_misc_config->logdir, "", sizeof(p_misc_config->logdir));
880+
p_misc_config->log_daily_names = 0;
881+
strlcpy (p_misc_config->log_path, "", sizeof(p_misc_config->log_path));
881882

882883
/* connected mode. */
883884

@@ -4283,7 +4284,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
42834284
}
42844285

42854286
/*
4286-
* LOGDIR - Directory name for storing log files. Use "." for current working directory.
4287+
* LOGDIR - Directory name for automatically named daily log files. Use "." for current working directory.
42874288
*/
42884289
else if (strcasecmp(t, "logdir") == 0) {
42894290
t = split(NULL,0);
@@ -4293,7 +4294,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
42934294
continue;
42944295
}
42954296
else {
4296-
strlcpy (p_misc_config->logdir, t, sizeof(p_misc_config->logdir));
4297+
if (strlen(p_misc_config->log_path) > 0) {
4298+
text_color_set(DW_COLOR_ERROR);
4299+
dw_printf ("Config file: LOGDIR on line %d is replacing an earlier LOGDIR or LOGFILE.\n", line);
4300+
}
4301+
p_misc_config->log_daily_names = 1;
4302+
strlcpy (p_misc_config->log_path, t, sizeof(p_misc_config->log_path));
42974303
}
42984304
t = split(NULL,0);
42994305
if (t != NULL) {
@@ -4302,6 +4308,31 @@ void config_init (char *fname, struct audio_s *p_audio_config,
43024308
}
43034309
}
43044310

4311+
/*
4312+
* LOGFILE - Log file name, including any directory part.
4313+
*/
4314+
else if (strcasecmp(t, "logfile") == 0) {
4315+
t = split(NULL,0);
4316+
if (t == NULL) {
4317+
text_color_set(DW_COLOR_ERROR);
4318+
dw_printf ("Config file: Missing file name for LOGFILE on line %d.\n", line);
4319+
continue;
4320+
}
4321+
else {
4322+
if (strlen(p_misc_config->log_path) > 0) {
4323+
text_color_set(DW_COLOR_ERROR);
4324+
dw_printf ("Config file: LOGFILE on line %d is replacing an earlier LOGDIR or LOGFILE.\n", line);
4325+
}
4326+
p_misc_config->log_daily_names = 0;
4327+
strlcpy (p_misc_config->log_path, t, sizeof(p_misc_config->log_path));
4328+
}
4329+
t = split(NULL,0);
4330+
if (t != NULL) {
4331+
text_color_set(DW_COLOR_ERROR);
4332+
dw_printf ("Config file: LOGFILE on line %d should have file name and nothing more.\n", line);
4333+
}
4334+
}
4335+
43054336
/*
43064337
* BEACON channel delay every message
43074338
*

config.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ struct misc_config_s {
7777
#define WPT_FORMAT_KENWOOD 0x08 /* K $PKWDWPL */
7878

7979

80-
char logdir[80]; /* Directory for saving activity logs. */
80+
int log_daily_names; /* True to generate new log file each day. */
81+
82+
char log_path[80]; /* Either directory or full file name depending on above. */
8183

8284
int sb_configured; /* TRUE if SmartBeaconing is configured. */
8385
int sb_fast_speed; /* MPH */

direwolf.c

+27-8
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,8 @@ int main (int argc, char *argv[])
194194
struct igate_config_s igate_config;
195195
int r_opt = 0, n_opt = 0, b_opt = 0, B_opt = 0, D_opt = 0; /* Command line options. */
196196
char P_opt[16];
197-
char l_opt[80];
197+
char l_opt_logdir[80];
198+
char L_opt_logfile[80];
198199
char input_file[80];
199200
// char timestamp[16];
200201

@@ -215,7 +216,8 @@ int main (int argc, char *argv[])
215216
int E_tx_opt = 0; /* "-E n" Error rate % for clobbering trasmit frames. */
216217
int E_rx_opt = 0; /* "-E Rn" Error rate % for clobbering receive frames. */
217218

218-
strlcpy(l_opt, "", sizeof(l_opt));
219+
strlcpy(l_opt_logdir, "", sizeof(l_opt_logdir));
220+
strlcpy(L_opt_logfile, "", sizeof(L_opt_logfile));
219221
strlcpy(P_opt, "", sizeof(P_opt));
220222

221223
#if __WIN32__
@@ -356,7 +358,7 @@ int main (int argc, char *argv[])
356358

357359
/* ':' following option character means arg is required. */
358360

359-
c = getopt_long(argc, argv, "P:B:D:c:pxr:b:n:d:q:t:Ul:Sa:E:",
361+
c = getopt_long(argc, argv, "P:B:D:c:pxr:b:n:d:q:t:Ul:L:Sa:E:",
360362
long_options, &option_index);
361363
if (c == -1)
362364
break;
@@ -532,11 +534,17 @@ int main (int argc, char *argv[])
532534
exit (0);
533535
break;
534536

535-
case 'l': /* -l for log file directory name */
537+
case 'l': /* -l for log directory with daily files */
536538

537-
strlcpy (l_opt, optarg, sizeof(l_opt));
539+
strlcpy (l_opt_logdir, optarg, sizeof(l_opt_logdir));
538540
break;
539541

542+
case 'L': /* -L for log file name with full path */
543+
544+
strlcpy (L_opt_logfile, optarg, sizeof(L_opt_logfile));
545+
break;
546+
547+
540548
case 'S': /* Print symbol tables and exit. */
541549

542550
symbols_init ();
@@ -674,8 +682,19 @@ int main (int argc, char *argv[])
674682
audio_config.recv_error_rate = E_rx_opt;
675683

676684

677-
if (strlen(l_opt) > 0) {
678-
strlcpy (misc_config.logdir, l_opt, sizeof(misc_config.logdir));
685+
if (strlen(l_opt_logdir) > 0 && strlen(L_opt_logfile) > 0) {
686+
text_color_set(DW_COLOR_ERROR);
687+
dw_printf ("Logging options -l and -L can't be used together. Pick one or the other.\n");
688+
exit(1);
689+
}
690+
691+
if (strlen(L_opt_logfile) > 0) {
692+
misc_config.log_daily_names = 0;
693+
strlcpy (misc_config.log_path, L_opt_logfile, sizeof(misc_config.log_path));
694+
}
695+
else if (strlen(l_opt_logdir) > 0) {
696+
misc_config.log_daily_names = 1;
697+
strlcpy (misc_config.log_path, l_opt_logdir, sizeof(misc_config.log_path));
679698
}
680699

681700
misc_config.enable_kiss_pt = enable_pseudo_terminal;
@@ -794,7 +813,7 @@ int main (int argc, char *argv[])
794813
* log the tracker beacon transmissions with fake channel 999.
795814
*/
796815

797-
log_init(misc_config.logdir);
816+
log_init(misc_config.log_daily_names, misc_config.log_path);
798817
mheard_init (d_m_opt);
799818
beacon_init (&audio_config, &misc_config, &igate_config);
800819

doc/User-Guide.pdf

7.94 KB
Binary file not shown.

0 commit comments

Comments
 (0)