mirror of
https://github.com/typesense/typesense.git
synced 2025-05-20 21:52:23 +08:00
Add skeleton HTTP server for serving the RESTish API.
This commit is contained in:
parent
a228d153a6
commit
4f10586d13
@ -4,8 +4,15 @@ project(search)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -stdlib=libc++ -std=gnu++11 -O2")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS_DEBUG} -std=c++11 -stdlib=libc++ -std=gnu++11 -O0")
|
||||
|
||||
# FIXME: Need to use find_package() to locate the correct openssl library
|
||||
# FIXME: build libfor as part of the build process
|
||||
|
||||
include_directories(include)
|
||||
include_directories(external/for)
|
||||
include_directories(/usr/local/opt/openssl/include)
|
||||
|
||||
add_executable(search src/art.cpp src/intersection.cpp src/main.cpp src/search_index.cpp)
|
||||
add_executable(typesense-server src/art.cpp src/intersection.cpp src/search_index.cpp src/search_server.cpp)
|
||||
|
||||
add_executable(search src/art.cpp src/intersection.cpp src/main.cpp src/search_index.cpp src/search_index.h)
|
||||
target_link_libraries(search ${CMAKE_SOURCE_DIR}/external/for/libfor.a boost_system)
|
||||
target_link_libraries(typesense-server ${CMAKE_SOURCE_DIR}/external/for/libfor.a boost_system curl h2o-evloop pthread /usr/local/opt/openssl/lib/libssl.a /usr/local/opt/openssl/lib/libcrypto.a)
|
184
src/search_server.cpp
Normal file
184
src/search_server.cpp
Normal file
@ -0,0 +1,184 @@
|
||||
#define H2O_USE_LIBUV 0
|
||||
|
||||
#include <errno.h>
|
||||
#include <limits.h>
|
||||
#include <netinet/in.h>
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/stat.h>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <regex>
|
||||
#include "string_utils.h"
|
||||
#include "search_index.h"
|
||||
|
||||
#include "h2o.h"
|
||||
#include "h2o/http1.h"
|
||||
#include "h2o/http2.h"
|
||||
#include "h2o/memcached.h"
|
||||
|
||||
static h2o_globalconf_t config;
|
||||
static h2o_context_t ctx;
|
||||
static h2o_accept_ctx_t accept_ctx;
|
||||
static SearchIndex *search_index = new SearchIndex();
|
||||
|
||||
|
||||
static h2o_pathconf_t *register_handler(h2o_hostconf_t *hostconf, const char *path,
|
||||
int (*on_req)(h2o_handler_t *, h2o_req_t *)) {
|
||||
h2o_pathconf_t *pathconf = h2o_config_register_path(hostconf, path, 0);
|
||||
h2o_handler_t *handler = h2o_create_handler(pathconf, sizeof(*handler));
|
||||
handler->on_req = on_req;
|
||||
return pathconf;
|
||||
}
|
||||
|
||||
std::map<std::string, std::string> parse_query(const std::string& query) {
|
||||
std::map<std::string, std::string> query_map;
|
||||
std::regex pattern("([\\w+%]+)=([^&]*)");
|
||||
|
||||
auto words_begin = std::sregex_iterator(query.begin(), query.end(), pattern);
|
||||
auto words_end = std::sregex_iterator();
|
||||
|
||||
for (std::sregex_iterator i = words_begin; i != words_end; i++) {
|
||||
std::string key = (*i)[1].str();
|
||||
std::string value = (*i)[2].str();
|
||||
query_map[key] = value;
|
||||
}
|
||||
|
||||
return query_map;
|
||||
}
|
||||
|
||||
|
||||
static int chunked_test(h2o_handler_t *self, h2o_req_t *req) {
|
||||
// auto begin = std::chrono::high_resolution_clock::now();
|
||||
// search_index->search("thei rserch", 100);
|
||||
// long long int timeMillis = std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::high_resolution_clock::now() - begin).count();
|
||||
// std::cout << "Time taken: " << timeMillis << "us" << std::endl;
|
||||
static h2o_generator_t generator = {NULL, NULL};
|
||||
|
||||
if (!h2o_memis(req->method.base, req->method.len, H2O_STRLIT("GET")))
|
||||
return -1;
|
||||
|
||||
h2o_iovec_t query = req->query_at != SIZE_MAX ?
|
||||
h2o_iovec_init(req->path.base + req->query_at, req->path.len - req->query_at) :
|
||||
h2o_iovec_init(H2O_STRLIT(""));
|
||||
|
||||
printf("Query: %.*s\n", (int) query.len, query.base);
|
||||
|
||||
std::string query_str(query.base, query.len);
|
||||
std::map<std::string, std::string> query_map = parse_query(query_str);
|
||||
|
||||
std::cout << "foo=" << query_map["foo"] << std::endl << std::flush;
|
||||
|
||||
h2o_iovec_t body = h2o_strdup(&req->pool, "hello world\n", SIZE_MAX);
|
||||
req->res.status = 200;
|
||||
req->res.reason = "OK";
|
||||
h2o_add_header(&req->pool, &req->res.headers, H2O_TOKEN_CONTENT_TYPE, H2O_STRLIT("text/plain"));
|
||||
h2o_start_response(req, &generator);
|
||||
h2o_send(req, &body, 1, 1);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int post_test(h2o_handler_t *self, h2o_req_t *req) {
|
||||
if (h2o_memis(req->method.base, req->method.len, H2O_STRLIT("POST")) &&
|
||||
h2o_memis(req->path_normalized.base, req->path_normalized.len, H2O_STRLIT("/post-test/"))) {
|
||||
static h2o_generator_t generator = {NULL, NULL};
|
||||
req->res.status = 200;
|
||||
req->res.reason = "OK";
|
||||
h2o_add_header(&req->pool, &req->res.headers, H2O_TOKEN_CONTENT_TYPE, H2O_STRLIT("text/plain; charset=utf-8"));
|
||||
h2o_start_response(req, &generator);
|
||||
h2o_send(req, &req->entity, 1, 1);
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
static void on_accept(h2o_socket_t *listener, const char *err) {
|
||||
h2o_socket_t *sock;
|
||||
|
||||
if (err != NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ((sock = h2o_evloop_socket_accept(listener)) == NULL)
|
||||
return;
|
||||
h2o_accept(&accept_ctx, sock);
|
||||
}
|
||||
|
||||
static int create_listener(void) {
|
||||
struct sockaddr_in addr;
|
||||
int fd, reuseaddr_flag = 1;
|
||||
h2o_socket_t *sock;
|
||||
|
||||
memset(&addr, 0, sizeof(addr));
|
||||
addr.sin_family = AF_INET;
|
||||
addr.sin_addr.s_addr = htonl(0x7f000001);
|
||||
addr.sin_port = htons(7890);
|
||||
|
||||
if ((fd = socket(AF_INET, SOCK_STREAM, 0)) == -1 ||
|
||||
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuseaddr_flag, sizeof(reuseaddr_flag)) != 0 ||
|
||||
bind(fd, (struct sockaddr *)&addr, sizeof(addr)) != 0 || listen(fd, SOMAXCONN) != 0) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
sock = h2o_evloop_socket_create(ctx.loop, fd, H2O_SOCKET_FLAG_DONT_READ);
|
||||
h2o_socket_read_start(sock, on_accept);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void index_documents() {
|
||||
//std::ifstream infile("/Users/kishore/others/wreally/typesense/test/documents.txt");
|
||||
std::ifstream infile("/Users/kishore/Downloads/hnstories.tsv");
|
||||
|
||||
std::string line;
|
||||
uint32_t doc_id = 1;
|
||||
|
||||
while (std::getline(infile, line)) {
|
||||
std::vector<std::string> parts;
|
||||
StringUtils::tokenize(line, parts, "\t", true);
|
||||
line = StringUtils::replace_all(line, "\"", "");
|
||||
|
||||
std::vector<std::string> tokens;
|
||||
StringUtils::tokenize(parts[0], tokens, " ", true);
|
||||
|
||||
if(parts.size() != 2) continue;
|
||||
search_index->add(doc_id, tokens, stoi(parts[1]));
|
||||
doc_id++;
|
||||
}
|
||||
|
||||
std::cout << "FINISHED INDEXING!" << std::endl << std::flush;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
|
||||
//index_documents();
|
||||
|
||||
h2o_config_init(&config);
|
||||
h2o_hostconf_t *hostconf = h2o_config_register_host(&config, h2o_iovec_init(H2O_STRLIT("default")), 65535);
|
||||
register_handler(hostconf, "/post-test", post_test);
|
||||
register_handler(hostconf, "/chunked-test", chunked_test);
|
||||
h2o_file_register(h2o_config_register_path(hostconf, "/", 0), "examples/doc_root", NULL, NULL, 0);
|
||||
|
||||
h2o_context_init(&ctx, h2o_evloop_create(), &config);
|
||||
|
||||
accept_ctx.ctx = &ctx;
|
||||
accept_ctx.hosts = config.hosts;
|
||||
|
||||
if (create_listener() != 0) {
|
||||
fprintf(stderr, "failed to listen to 127.0.0.1:7890:%s\n", strerror(errno));
|
||||
return 1;
|
||||
}
|
||||
|
||||
while (h2o_evloop_run(ctx.loop) == 0);
|
||||
|
||||
delete search_index;
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user