bark.cpp/examples/server/server.cpp

177 lines
5.4 KiB
C++

#include <cmath>
#include <cstdio>
#include <cstring>
#include <fstream>
#include <string>
#include <thread>
#include <vector>
#include "bark.h"
#include "httplib.h"
#include "json.hpp"
#if defined(_MSC_VER)
#pragma warning(disable : 4244 4267) // possible loss of data
#endif
#ifndef SERVER_VERBOSE
#define SERVER_VERBOSE 1
#endif
using namespace httplib;
using json = nlohmann::json;
struct server_params {
std::string hostname = "127.0.0.1";
std::string public_path = "examples/server/public";
int32_t port = 1337;
int32_t read_timeout = 600;
int32_t write_timeout = 600;
};
struct bark_params {
int32_t n_threads = std::min(1, static_cast<int32_t>(std::thread::hardware_concurrency()));
// user prompt
std::string prompt = "this is an audio";
// paths
std::string model_path = "./ggml_weights";
int32_t seed = 0;
server_params sparams;
};
void bark_print_usage(char **argv, const bark_params &params) {
fprintf(stderr, "usage: %s [options]\n", argv[0]);
fprintf(stderr, "\n");
fprintf(stderr, "options:\n");
fprintf(stderr, " -h, --help show this help message and exit\n");
fprintf(stderr, " -m MODEL, --model MODEL path to model\n");
fprintf(stderr, " -t N, --threads N number of threads to use during computation (default: %d)\n", params.n_threads);
fprintf(stderr, " -p PORT, --port PORT port number\n");
fprintf(stderr, " -a IP, --adress IP ip adress\n");
fprintf(stderr, "\n");
}
void bark_params_parse(int argc, char **argv, bark_params &params) {
bool model_req = false;
for (int i = 1; i < argc; i++) {
std::string arg = argv[i];
if (arg == "-t" || arg == "--threads") {
params.n_threads = std::stoi(argv[++i]);
} else if (arg == "-m" || arg == "--model") {
params.model_path = argv[++i];
model_req = true;
} else if (arg == "-t" || arg == "--thread") {
params.n_threads = std::stoi(argv[++i]);
} else if (arg == "-p" || arg == "--port") {
params.sparams.port = std::stoi(argv[++i]);
} else if (arg == "-a" || arg == "--address") {
params.sparams.hostname = argv[++i];
} else if (arg == "-h" || arg == "--help") {
bark_print_usage(argv, params);
exit(0);
} else {
fprintf(stderr, "error: unknown argument: %s\n", arg.c_str());
bark_print_usage(argv, params);
exit(1);
}
}
if (!model_req) {
fprintf(stderr, "error: no model path specified\n");
bark_print_usage(argv, params);
exit(1);
}
}
int main(int argc, char **argv) {
ggml_time_init();
const int64_t t_main_start_us = ggml_time_us();
bark_params params;
bark_params_parse(argc, argv, params);
struct bark_context *bctx = bark_load_model(params.model_path.c_str(), bark_verbosity_level::LOW, params.seed);
if (!bctx) {
fprintf(stderr, "%s: Could not load model\n", __func__);
return 1;
}
// bark_seed_rng(bctx, params.seed);
std::mutex bark_mutex;
Server svr;
std::string default_content = "<html>hello</html>";
// this is only called if no index.html is found in the public --path
svr.Get("/", [&default_content](const Request &, Response &res) {
res.set_content(default_content.c_str(), default_content.size(), "text/html");
return false;
});
svr.Post("/bark", [&](const Request &req, Response &res) {
// aquire bark model mutex lock
bark_mutex.lock();
json jreq = json::parse(req.body);
std::string text = jreq.at("text");
// generate audio
std::string dest_wav_path = "/tmp/bark_tmp.wav";
bark_generate_audio(bctx, text, params.n_threads);
// read audio as binary
std::ifstream wav_file("/tmp/bark_tmp.wav", std::ios::binary);
if (wav_file.is_open()) {
// Read the contents of the WAV file
std::string wav_contents((std::istreambuf_iterator<char>(wav_file)),
std::istreambuf_iterator<char>());
// Set the response content type to audio/wav
res.set_header("Content-Type", "audio/wav");
// Set the response body to the WAV file contents
res.set_content(wav_contents, "audio/wav");
} else {
// If the file cannot be opened, set a 500 Internal Server Error response
res.status = 500;
res.set_content("Internal Server Error", "text/plain");
}
// clean up
std::remove("/tmp/bark_tmp.wav");
// return bark model mutex lock
bark_mutex.unlock();
});
svr.set_read_timeout(params.sparams.read_timeout);
svr.set_write_timeout(params.sparams.write_timeout);
if (!svr.bind_to_port(params.sparams.hostname, params.sparams.port)) {
fprintf(stderr, "\ncouldn't bind to server socket: hostname=%s port=%d\n\n",
params.sparams.hostname.c_str(), params.sparams.port);
return 1;
}
// Set the base directory for serving static files
svr.set_base_dir(params.sparams.public_path);
// to make it ctrl+clickable:
printf("\nbark server listening at http://%s:%d\n\n",
params.sparams.hostname.c_str(), params.sparams.port);
if (!svr.listen_after_bind()) {
return 1;
}
bark_free(bctx);
return 0;
}