Sunshine/sunshine/main.cpp

45 lines
809 B
C++
Raw Normal View History

//
// Created by loki on 5/30/19.
//
#include <thread>
#include <filesystem>
#include <iostream>
#include "nvhttp.h"
#include "stream.h"
#include "config.h"
#include "process.h"
extern "C" {
#include <rs.h>
}
using namespace std::literals;
int main(int argc, char *argv[]) {
2019-12-03 22:19:00 +00:00
if(argc > 1) {
if(!std::filesystem::exists(argv[1])) {
std::cout << "Error: Couldn't find configuration file ["sv << argv[1] << ']' << std::endl;
return 7;
}
2019-12-03 22:19:00 +00:00
config::parse_file(argv[1]);
}
2019-12-15 18:36:22 +00:00
auto proc_opt = proc::parse(SUNSHINE_ASSETS_DIR "/apps.json");
if(!proc_opt) {
return 7;
}
proc::proc = std::move(*proc_opt);
reed_solomon_init();
std::thread httpThread { nvhttp::start };
std::thread rtpThread { stream::rtpThread };
httpThread.join();
rtpThread.join();
return 0;
}