]> git.sesse.net Git - nageru/blob - futatabi/main.cpp
Make the MIDI play button blinking when something is ready to play, and solid when...
[nageru] / futatabi / main.cpp
1 #include <arpa/inet.h>
2 #include <assert.h>
3 #include <atomic>
4 #include <chrono>
5 #include <condition_variable>
6 #include <dirent.h>
7 #include <getopt.h>
8 #include <memory>
9 #include <mutex>
10 #include <stdint.h>
11 #include <stdio.h>
12 #include <string>
13 #include <sys/stat.h>
14 #include <sys/types.h>
15 #include <thread>
16 #include <unistd.h>
17 #include <vector>
18
19 extern "C" {
20 #include <libavformat/avformat.h>
21 }
22
23 #include "clip_list.h"
24 #include "defs.h"
25 #include "flags.h"
26 #include "frame.pb.h"
27 #include "frame_on_disk.h"
28 #include "mainwindow.h"
29 #include "player.h"
30 #include "shared/context.h"
31 #include "shared/disk_space_estimator.h"
32 #include "shared/ffmpeg_raii.h"
33 #include "shared/httpd.h"
34 #include "shared/metrics.h"
35 #include "shared/post_to_main_thread.h"
36 #include "shared/ref_counted_gl_sync.h"
37 #include "shared/timebase.h"
38 #include "ui_mainwindow.h"
39 #include "vaapi_jpeg_decoder.h"
40
41 #include <QApplication>
42 #include <QGLFormat>
43 #include <QProgressDialog>
44 #include <QSurfaceFormat>
45 #include <movit/init.h>
46 #include <movit/util.h>
47
48 using namespace std;
49 using namespace std::chrono;
50
51 constexpr char frame_magic[] = "Ftbifrm0";
52 constexpr size_t frame_magic_len = 8;
53
54 mutex RefCountedGLsync::fence_lock;
55 atomic<bool> should_quit{ false };
56
57 int64_t start_pts = -1;
58
59 // TODO: Replace by some sort of GUI control, I guess.
60 int64_t current_pts = 0;
61
62 struct FrameFile {
63         FILE *fp = nullptr;
64         unsigned filename_idx;
65         size_t frames_written_so_far = 0;
66 };
67 std::map<int, FrameFile> open_frame_files;
68
69 mutex frame_mu;
70 vector<FrameOnDisk> frames[MAX_STREAMS];  // Under frame_mu.
71 vector<string> frame_filenames;  // Under frame_mu.
72
73 atomic<int64_t> metric_received_frames[MAX_STREAMS]{ { 0 } };
74 Summary metric_received_frame_size_bytes;
75
76 namespace {
77
78 FrameOnDisk write_frame(int stream_idx, int64_t pts, const uint8_t *data, size_t size, DB *db)
79 {
80         if (open_frame_files.count(stream_idx) == 0) {
81                 char filename[256];
82                 snprintf(filename, sizeof(filename), "%s/frames/cam%d-pts%09ld.frames",
83                          global_flags.working_directory.c_str(), stream_idx, pts);
84                 FILE *fp = fopen(filename, "wb");
85                 if (fp == nullptr) {
86                         perror(filename);
87                         exit(1);
88                 }
89
90                 lock_guard<mutex> lock(frame_mu);
91                 unsigned filename_idx = frame_filenames.size();
92                 frame_filenames.push_back(filename);
93                 open_frame_files[stream_idx] = FrameFile{ fp, filename_idx, 0 };
94         }
95
96         FrameFile &file = open_frame_files[stream_idx];
97         unsigned filename_idx = file.filename_idx;
98         string filename;
99         {
100                 lock_guard<mutex> lock(frame_mu);
101                 filename = frame_filenames[filename_idx];
102         }
103
104         FrameHeaderProto hdr;
105         hdr.set_stream_idx(stream_idx);
106         hdr.set_pts(pts);
107         hdr.set_file_size(size);
108
109         string serialized;
110         if (!hdr.SerializeToString(&serialized)) {
111                 fprintf(stderr, "Frame header serialization failed.\n");
112                 exit(1);
113         }
114         uint32_t len = htonl(serialized.size());
115
116         if (fwrite(frame_magic, frame_magic_len, 1, file.fp) != 1) {
117                 perror("fwrite");
118                 exit(1);
119         }
120         if (fwrite(&len, sizeof(len), 1, file.fp) != 1) {
121                 perror("fwrite");
122                 exit(1);
123         }
124         if (fwrite(serialized.data(), serialized.size(), 1, file.fp) != 1) {
125                 perror("fwrite");
126                 exit(1);
127         }
128         off_t offset = ftell(file.fp);
129         if (fwrite(data, size, 1, file.fp) != 1) {
130                 perror("fwrite");
131                 exit(1);
132         }
133         fflush(file.fp);  // No fsync(), though. We can accept losing a few frames.
134         global_disk_space_estimator->report_write(filename, 8 + sizeof(len) + serialized.size() + size, pts);
135
136         FrameOnDisk frame;
137         frame.pts = pts;
138         frame.filename_idx = filename_idx;
139         frame.offset = offset;
140         frame.size = size;
141
142         {
143                 lock_guard<mutex> lock(frame_mu);
144                 assert(stream_idx < MAX_STREAMS);
145                 frames[stream_idx].push_back(frame);
146         }
147
148         if (++file.frames_written_so_far >= 1000) {
149                 size_t size = ftell(file.fp);
150
151                 // Start a new file next time.
152                 if (fclose(file.fp) != 0) {
153                         perror("fclose");
154                         exit(1);
155                 }
156                 open_frame_files.erase(stream_idx);
157
158                 // Write information about all frames in the finished file to SQLite.
159                 // (If we crash before getting to do this, we'll be scanning through
160                 // the file on next startup, and adding it to the database then.)
161                 // NOTE: Since we don't fsync(), we could in theory get broken data
162                 // but with the right size, but it would seem unlikely.
163                 vector<DB::FrameOnDiskAndStreamIdx> frames_this_file;
164                 {
165                         lock_guard<mutex> lock(frame_mu);
166                         for (size_t stream_idx = 0; stream_idx < MAX_STREAMS; ++stream_idx) {
167                                 for (const FrameOnDisk &frame : frames[stream_idx]) {
168                                         if (frame.filename_idx == filename_idx) {
169                                                 frames_this_file.emplace_back(DB::FrameOnDiskAndStreamIdx{ frame, unsigned(stream_idx) });
170                                         }
171                                 }
172                         }
173                 }
174
175                 const char *basename = filename.c_str();
176                 while (strchr(basename, '/') != nullptr) {
177                         basename = strchr(basename, '/') + 1;
178                 }
179                 db->store_frame_file(basename, size, frames_this_file);
180         }
181
182         return frame;
183 }
184
185 }  // namespace
186
187 HTTPD *global_httpd;
188
189 void load_existing_frames();
190 void record_thread_func();
191
192 int main(int argc, char **argv)
193 {
194         parse_flags(argc, argv);
195         if (optind == argc) {
196                 global_flags.stream_source = "multiangle.mp4";
197                 global_flags.slow_down_input = true;
198         } else if (optind + 1 == argc) {
199                 global_flags.stream_source = argv[optind];
200         } else {
201                 usage();
202                 exit(1);
203         }
204
205         string frame_dir = global_flags.working_directory + "/frames";
206
207         if (mkdir(frame_dir.c_str(), 0777) == 0) {
208                 fprintf(stderr, "%s does not exist, creating it.\n", frame_dir.c_str());
209         } else if (errno != EEXIST) {
210                 perror(global_flags.working_directory.c_str());
211                 exit(1);
212         }
213
214         avformat_network_init();
215         global_metrics.set_prefix("futatabi");
216         global_httpd = new HTTPD;
217         global_metrics.remove("num_connected_multicam_clients");
218
219         QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts, true);
220
221         QSurfaceFormat fmt;
222         fmt.setDepthBufferSize(0);
223         fmt.setStencilBufferSize(0);
224         fmt.setProfile(QSurfaceFormat::CoreProfile);
225         fmt.setMajorVersion(4);
226         fmt.setMinorVersion(5);
227
228         // Turn off vsync, since Qt generally gives us at most frame rate
229         // (display frequency) / (number of QGLWidgets active).
230         fmt.setSwapInterval(0);
231
232         QSurfaceFormat::setDefaultFormat(fmt);
233
234         QGLFormat::setDefaultFormat(QGLFormat::fromSurfaceFormat(fmt));
235
236         QApplication app(argc, argv);
237         global_share_widget = new QGLWidget();
238         if (!global_share_widget->isValid()) {
239                 fprintf(stderr, "Failed to initialize OpenGL. Futatabi needs at least OpenGL 4.5 to function properly.\n");
240                 exit(1);
241         }
242
243         // Initialize Movit.
244         {
245                 QSurface *surface = create_surface();
246                 QOpenGLContext *context = create_context(surface);
247                 if (!make_current(context, surface)) {
248                         printf("oops\n");
249                         exit(1);
250                 }
251                 CHECK(movit::init_movit(MOVIT_SHADER_DIR, movit::MOVIT_DEBUG_OFF));
252                 delete_context(context);
253                 // TODO: Delete the surface, too.
254         }
255
256         load_existing_frames();
257
258         MainWindow main_window;
259         main_window.show();
260
261         global_httpd->add_endpoint("/queue_status", bind(&MainWindow::get_queue_status, &main_window), HTTPD::NO_CORS_POLICY);
262         global_httpd->start(global_flags.http_port);
263
264         init_jpeg_vaapi();
265
266         thread record_thread(record_thread_func);
267
268         int ret = app.exec();
269
270         should_quit = true;
271         record_thread.join();
272         JPEGFrameView::shutdown();
273
274         return ret;
275 }
276
277 void load_frame_file(const char *filename, const string &basename, unsigned filename_idx, DB *db)
278 {
279         struct stat st;
280         if (stat(filename, &st) == -1) {
281                 perror(filename);
282                 exit(1);
283         }
284
285         vector<DB::FrameOnDiskAndStreamIdx> all_frames = db->load_frame_file(basename, st.st_size, filename_idx);
286         if (!all_frames.empty()) {
287                 // We already had this cached in the database, so no need to look in the file.
288                 for (const DB::FrameOnDiskAndStreamIdx &frame : all_frames) {
289                         if (frame.stream_idx < MAX_STREAMS) {
290                                 frames[frame.stream_idx].push_back(frame.frame);
291                                 start_pts = max(start_pts, frame.frame.pts);
292                         }
293                 }
294                 return;
295         }
296
297         FILE *fp = fopen(filename, "rb");
298         if (fp == nullptr) {
299                 perror(filename);
300                 exit(1);
301         }
302
303         size_t magic_offset = 0;
304         size_t skipped_bytes = 0;
305         while (!feof(fp) && !ferror(fp)) {
306                 int ch = getc(fp);
307                 if (ch == -1) {
308                         break;
309                 }
310                 if (ch != frame_magic[magic_offset++]) {
311                         skipped_bytes += magic_offset;
312                         magic_offset = 0;
313                         continue;
314                 }
315                 if (magic_offset < frame_magic_len) {
316                         // Still reading the magic (hopefully).
317                         continue;
318                 }
319
320                 // OK, found the magic. Try to parse the frame header.
321                 magic_offset = 0;
322
323                 if (skipped_bytes > 0) {
324                         fprintf(stderr, "WARNING: %s: Skipped %zu garbage bytes in the middle.\n",
325                                 filename, skipped_bytes);
326                         skipped_bytes = 0;
327                 }
328
329                 uint32_t len;
330                 if (fread(&len, sizeof(len), 1, fp) != 1) {
331                         fprintf(stderr, "WARNING: %s: Short read when getting length.\n", filename);
332                         break;
333                 }
334
335                 string serialized;
336                 serialized.resize(ntohl(len));
337                 if (fread(&serialized[0], serialized.size(), 1, fp) != 1) {
338                         fprintf(stderr, "WARNING: %s: Short read when reading frame header (%zu bytes).\n", filename, serialized.size());
339                         break;
340                 }
341
342                 FrameHeaderProto hdr;
343                 if (!hdr.ParseFromString(serialized)) {
344                         fprintf(stderr, "WARNING: %s: Corrupted frame header.\n", filename);
345                         continue;
346                 }
347
348                 FrameOnDisk frame;
349                 frame.pts = hdr.pts();
350                 frame.offset = ftell(fp);
351                 if (frame.offset == -1) {
352                         fprintf(stderr, "WARNING: %s: ftell() failed (%s).\n", filename, strerror(errno));
353                         break;
354                 }
355                 frame.filename_idx = filename_idx;
356                 frame.size = hdr.file_size();
357
358                 if (fseek(fp, frame.offset + frame.size, SEEK_SET) == -1) {
359                         fprintf(stderr, "WARNING: %s: Could not seek past frame (probably truncated).\n", filename);
360                         continue;
361                 }
362
363                 if (hdr.stream_idx() >= 0 && hdr.stream_idx() < MAX_STREAMS) {
364                         frames[hdr.stream_idx()].push_back(frame);
365                         start_pts = max(start_pts, hdr.pts());
366                 }
367                 all_frames.emplace_back(DB::FrameOnDiskAndStreamIdx{ frame, unsigned(hdr.stream_idx()) });
368         }
369
370         if (skipped_bytes > 0) {
371                 fprintf(stderr, "WARNING: %s: Skipped %zu garbage bytes at the end.\n",
372                         filename, skipped_bytes);
373         }
374
375         off_t size = ftell(fp);
376         fclose(fp);
377
378         if (size == -1) {
379                 fprintf(stderr, "WARNING: %s: ftell() failed (%s).\n", filename, strerror(errno));
380                 return;
381         }
382
383         db->store_frame_file(basename, size, all_frames);
384 }
385
386 void load_existing_frames()
387 {
388         QProgressDialog progress("Scanning frame directory...", "Abort", 0, 1);
389         progress.setWindowTitle("Futatabi");
390         progress.setWindowModality(Qt::WindowModal);
391         progress.setMinimumDuration(1000);
392         progress.setMaximum(1);
393         progress.setValue(0);
394
395         string frame_dir = global_flags.working_directory + "/frames";
396         DIR *dir = opendir(frame_dir.c_str());
397         if (dir == nullptr) {
398                 perror("frames/");
399                 start_pts = 0;
400                 return;
401         }
402
403         vector<string> frame_basenames;
404         for (;;) {
405                 errno = 0;
406                 dirent *de = readdir(dir);
407                 if (de == nullptr) {
408                         if (errno != 0) {
409                                 perror("readdir");
410                                 exit(1);
411                         }
412                         break;
413                 }
414
415                 if (de->d_type == DT_REG || de->d_type == DT_LNK) {
416                         string filename = frame_dir + "/" + de->d_name;
417                         frame_filenames.push_back(filename);
418                         frame_basenames.push_back(de->d_name);
419                 }
420
421                 if (progress.wasCanceled()) {
422                         exit(1);
423                 }
424         }
425         closedir(dir);
426
427         progress.setMaximum(frame_filenames.size() + 2);
428         progress.setValue(1);
429
430         progress.setLabelText("Opening database...");
431         DB db(global_flags.working_directory + "/futatabi.db");
432
433         progress.setLabelText("Reading frame files...");
434         progress.setValue(2);
435
436         for (size_t i = 0; i < frame_filenames.size(); ++i) {
437                 load_frame_file(frame_filenames[i].c_str(), frame_basenames[i], i, &db);
438                 progress.setValue(i + 3);
439                 if (progress.wasCanceled()) {
440                         exit(1);
441                 }
442         }
443
444         if (start_pts == -1) {
445                 start_pts = 0;
446         } else {
447                 // Add a gap of one second from the old frames to the new ones.
448                 start_pts += TIMEBASE;
449         }
450         current_pts = start_pts;
451
452         for (int stream_idx = 0; stream_idx < MAX_STREAMS; ++stream_idx) {
453                 sort(frames[stream_idx].begin(), frames[stream_idx].end(),
454                      [](const auto &a, const auto &b) { return a.pts < b.pts; });
455         }
456
457         db.clean_unused_frame_files(frame_basenames);
458 }
459
460 void record_thread_func()
461 {
462         for (unsigned i = 0; i < MAX_STREAMS; ++i) {
463                 global_metrics.add("received_frames", { { "stream", to_string(i) } }, &metric_received_frames[i]);
464         }
465         global_metrics.add("received_frame_size_bytes", &metric_received_frame_size_bytes);
466
467         if (global_flags.stream_source.empty() || global_flags.stream_source == "/dev/null") {
468                 // Save the user from some repetitive messages.
469                 return;
470         }
471
472         pthread_setname_np(pthread_self(), "ReceiveFrames");
473
474         int64_t pts_offset = 0;  // Needs to be initialized due to a spurious GCC warning.
475         DB db(global_flags.working_directory + "/futatabi.db");
476
477         while (!should_quit.load()) {
478                 auto format_ctx = avformat_open_input_unique(global_flags.stream_source.c_str(), nullptr, nullptr);
479                 if (format_ctx == nullptr) {
480                         fprintf(stderr, "%s: Error opening file. Waiting one second and trying again...\n", global_flags.stream_source.c_str());
481                         sleep(1);
482                         continue;
483                 }
484
485                 int64_t last_pts = -1;
486
487                 while (!should_quit.load()) {
488                         AVPacket pkt;
489                         unique_ptr<AVPacket, decltype(av_packet_unref) *> pkt_cleanup(
490                                 &pkt, av_packet_unref);
491                         av_init_packet(&pkt);
492                         pkt.data = nullptr;
493                         pkt.size = 0;
494
495                         // TODO: Make it possible to abort av_read_frame() (use an interrupt callback);
496                         // right now, should_quit will be ignored if it's hung on I/O.
497                         if (av_read_frame(format_ctx.get(), &pkt) != 0) {
498                                 break;
499                         }
500                         if (pkt.stream_index >= MAX_STREAMS) {
501                                 continue;
502                         }
503
504                         ++metric_received_frames[pkt.stream_index];
505                         metric_received_frame_size_bytes.count_event(pkt.size);
506
507                         // Convert pts to our own timebase.
508                         AVRational stream_timebase = format_ctx->streams[pkt.stream_index]->time_base;
509                         int64_t pts = av_rescale_q(pkt.pts, stream_timebase, AVRational{ 1, TIMEBASE });
510
511                         // Translate offset into our stream.
512                         if (last_pts == -1) {
513                                 pts_offset = start_pts - pts;
514                         }
515                         pts = std::max(pts + pts_offset, start_pts);
516
517                         //fprintf(stderr, "Got a frame from camera %d, pts = %ld, size = %d\n",
518                         //      pkt.stream_index, pts, pkt.size);
519                         FrameOnDisk frame = write_frame(pkt.stream_index, pts, pkt.data, pkt.size, &db);
520
521                         post_to_main_thread([pkt, frame] {
522                                 global_mainwindow->display_frame(pkt.stream_index, frame);
523                         });
524
525                         if (last_pts != -1 && global_flags.slow_down_input) {
526                                 this_thread::sleep_for(microseconds((pts - last_pts) * 1000000 / TIMEBASE));
527                         }
528                         last_pts = pts;
529                         current_pts = pts;
530                 }
531
532                 fprintf(stderr, "%s: Hit EOF. Waiting one second and trying again...\n", global_flags.stream_source.c_str());
533                 sleep(1);
534
535                 start_pts = last_pts + TIMEBASE;
536         }
537 }