2 * Copyright (C) 2008-2009 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file afh.c Paraslash's standalone audio format handler tool. */
15 #include "afh.cmdline.h"
20 static struct afh_args_info conf
;
21 /** The list of all status items */
22 const char *status_item_list
[] = {STATUS_ITEM_ARRAY
};
27 INIT_STDERR_LOGGING(loglevel
)
29 static void print_info(int audio_format_num
, struct afh_info
*afhi
)
31 printf("%s: %dkbit/s\n" /* bitrate */
32 "%s: %s\n" /* format */
33 "%s: %dHz\n" /* frequency */
34 "%s: %d\n" /* channels */
35 "%s: %lu\n" /* seconds total */
36 "%s: %lu: %lu\n" /* chunk time */
37 "%s: %lu\n" /* num chunks */
38 "%s: %s\n" /* techinfo */
39 "%s: %s\n" /* artist */
40 "%s: %s\n" /* title */
42 "%s: %s\n" /* album */
43 "%s: %s\n", /* comment */
44 status_item_list
[SI_BITRATE
], afhi
->bitrate
,
45 status_item_list
[SI_FORMAT
], audio_format_name(audio_format_num
),
46 status_item_list
[SI_FREQUENCY
], afhi
->frequency
,
47 status_item_list
[SI_CHANNELS
], afhi
->channels
,
48 status_item_list
[SI_SECONDS_TOTAL
], afhi
->seconds_total
,
49 status_item_list
[SI_CHUNK_TIME
], (long unsigned)afhi
->chunk_tv
.tv_sec
,
50 (long unsigned)afhi
->chunk_tv
.tv_usec
,
51 status_item_list
[SI_NUM_CHUNKS
], afhi
->chunks_total
,
52 status_item_list
[SI_TECHINFO
], afhi
->techinfo
? afhi
->techinfo
: "",
53 status_item_list
[SI_ARTIST
], afhi
->tags
.artist
? afhi
->tags
.artist
: "",
54 status_item_list
[SI_TITLE
], afhi
->tags
.title
? afhi
->tags
.title
: "",
55 status_item_list
[SI_YEAR
], afhi
->tags
.year
? afhi
->tags
.year
: "",
56 status_item_list
[SI_ALBUM
], afhi
->tags
.album
? afhi
->tags
.album
: "",
57 status_item_list
[SI_COMMENT
], afhi
->tags
.comment
? afhi
->tags
.comment
: ""
61 static void print_chunk_table(struct afh_info
*afhi
)
65 printf("chunk_table: ");
66 for (i
= 0; i
<= afhi
->chunks_total
; i
++)
67 printf("%u ", afhi
->chunk_table
[i
]);
71 static int cat_file(void *audio_file_data
, struct afh_info
*afhi
)
74 struct timeval stream_start
;
75 long unsigned i
, first_chunk
, last_chunk
;
80 if (conf
.begin_chunk_arg
< 0) {
81 if (-conf
.begin_chunk_arg
> afhi
->chunks_total
)
82 return -ERRNO_TO_PARA_ERROR(EINVAL
);
83 first_chunk
= afhi
->chunks_total
+ conf
.begin_chunk_arg
;
85 first_chunk
= conf
.begin_chunk_arg
;
86 if (conf
.end_chunk_given
) {
87 if (conf
.end_chunk_arg
< 0) {
88 if (-conf
.end_chunk_arg
> afhi
->chunks_total
)
89 return -ERRNO_TO_PARA_ERROR(EINVAL
);
90 last_chunk
= afhi
->chunks_total
+ conf
.end_chunk_arg
;
92 if (conf
.end_chunk_arg
>= afhi
->chunks_total
)
93 return -ERRNO_TO_PARA_ERROR(EINVAL
);
94 last_chunk
= conf
.end_chunk_arg
;
97 last_chunk
= afhi
->chunks_total
- 1;
98 if (first_chunk
>= last_chunk
)
99 return -ERRNO_TO_PARA_ERROR(EINVAL
);
100 if (!afhi
->chunks_total
)
102 afh_get_header(afhi
, audio_file_data
, &buf
, &size
);
103 if (size
&& first_chunk
&& !conf
.no_header_given
) {
104 PARA_INFO_LOG("writing audio file header (%zu bytes)\n", size
);
105 ret
= write(STDOUT_FILENO
, buf
, size
);
109 return -E_AFH_SHORT_WRITE
;
111 PARA_NOTICE_LOG("writing chunks %lu - %lu\n", first_chunk
, last_chunk
);
112 gettimeofday(&stream_start
, NULL
);
113 for (i
= first_chunk
; i
<= last_chunk
; i
++) {
114 struct timeval now
, diff
, next_chunk
;
115 afh_get_chunk(i
, afhi
, audio_file_data
, &buf
, &size
);
116 PARA_DEBUG_LOG("chunk %lu: size %zu\n", i
, size
);
117 if (conf
.just_in_time_given
) {
118 compute_chunk_time(i
- first_chunk
, &afhi
->chunk_tv
,
119 &stream_start
, &next_chunk
);
120 gettimeofday(&now
, NULL
);
121 ret
= tv_diff(&next_chunk
, &now
, &diff
);
123 ret
= para_select(1, NULL
, NULL
, &diff
);
130 PARA_INFO_LOG("writing chunk %lu\n", i
);
131 ret
= write_all(STDOUT_FILENO
, buf
, &size
);
139 * The main function of para_afh.
141 * \param argc Usual argument count.
142 * \param argv Usual argument vector.
144 * \return \p EXIT_FAILURE or \p EXIT_SUCCESS.
146 int main(int argc
, char **argv
)
148 int i
, ret
, audio_format_num
, fd
;
149 void *audio_file_data
;
150 size_t audio_file_size
;
151 struct afh_info afhi
;
153 afh_cmdline_parser(argc
, argv
, &conf
);
154 HANDLE_VERSION_FLAG("afh", conf
);
155 loglevel
= get_loglevel_by_name(conf
.loglevel_arg
);
157 if (conf
.inputs_num
== 0)
159 if (conf
.stream_given
&& conf
.inputs_num
!= 1)
162 for (i
= 0; i
< conf
.inputs_num
; i
++) {
164 ret
= mmap_full_file(conf
.inputs
[i
], O_RDONLY
, &audio_file_data
,
165 &audio_file_size
, &fd
);
168 ret
= compute_afhi(conf
.inputs
[i
], audio_file_data
, audio_file_size
,
172 audio_format_num
= ret
;
173 if (conf
.stream_given
)
174 ret
= cat_file(audio_file_data
, &afhi
);
176 printf("File %d: %s\n", i
+ 1, conf
.inputs
[i
]);
177 print_info(audio_format_num
, &afhi
);
178 if (conf
.chunk_table_given
)
179 print_chunk_table(&afhi
);
181 free(afhi
.tags
.artist
);
182 free(afhi
.tags
.title
);
183 free(afhi
.tags
.year
);
184 free(afhi
.tags
.album
);
185 free(afhi
.tags
.comment
);
186 free(afhi
.chunk_table
);
189 ret2
= para_munmap(audio_file_data
, audio_file_size
);
190 if (ret2
< 0 && ret
>= 0)
197 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));
198 return ret
< 0? EXIT_FAILURE
: EXIT_SUCCESS
;