mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 04:57:54 +00:00
[arbiter] initial arbiter program for porthole communications
This commit is contained in:
parent
67ddb70932
commit
f4ad730cc4
4 changed files with 121 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
B1-29-g27c3a93d15+1
|
B1-30-g67ddb70932+1
|
3
arbiter/.gitignore
vendored
Normal file
3
arbiter/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
bin/
|
||||||
|
build/
|
||||||
|
*.swp
|
62
arbiter/CMakeLists.txt
Normal file
62
arbiter/CMakeLists.txt
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
cmake_minimum_required(VERSION 3.0)
|
||||||
|
project(looking-glass-arbiter C)
|
||||||
|
|
||||||
|
set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/")
|
||||||
|
|
||||||
|
include(GNUInstallDirs)
|
||||||
|
include(CheckCCompilerFlag)
|
||||||
|
include(FeatureSummary)
|
||||||
|
|
||||||
|
option(OPTIMIZE_FOR_NATIVE "Build with -march=native" ON)
|
||||||
|
if(OPTIMIZE_FOR_NATIVE)
|
||||||
|
CHECK_C_COMPILER_FLAG("-march=native" COMPILER_SUPPORTS_MARCH_NATIVE)
|
||||||
|
if(COMPILER_SUPPORTS_MARCH_NATIVE)
|
||||||
|
add_compile_options("-march=native")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_compile_options(
|
||||||
|
"-Wall"
|
||||||
|
"-Werror"
|
||||||
|
"-Wfatal-errors"
|
||||||
|
"-ffast-math"
|
||||||
|
"-fdata-sections"
|
||||||
|
"-ffunction-sections"
|
||||||
|
"$<$<CONFIG:DEBUG>:-O0;-g3;-ggdb>"
|
||||||
|
)
|
||||||
|
|
||||||
|
set(EXE_FLAGS "-Wl,--gc-sections")
|
||||||
|
set(CMAKE_C_STANDARD 11)
|
||||||
|
|
||||||
|
execute_process(
|
||||||
|
COMMAND cat ../VERSION
|
||||||
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
||||||
|
OUTPUT_VARIABLE BUILD_VERSION
|
||||||
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
||||||
|
)
|
||||||
|
|
||||||
|
add_definitions(-D BUILD_VERSION='"${BUILD_VERSION}"')
|
||||||
|
get_filename_component(PROJECT_TOP "${PROJECT_SOURCE_DIR}/.." ABSOLUTE)
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${PROJECT_SOURCE_DIR}/include
|
||||||
|
${CMAKE_BINARY_DIR}/include
|
||||||
|
)
|
||||||
|
|
||||||
|
set(SOURCES
|
||||||
|
src/main.c
|
||||||
|
)
|
||||||
|
|
||||||
|
add_subdirectory("${PROJECT_TOP}/common" "${CMAKE_BINARY_DIR}/common")
|
||||||
|
add_subdirectory("${PROJECT_TOP}/porthole" "${CMAKE_BINARY_DIR}/porthole")
|
||||||
|
|
||||||
|
add_executable(looking-glass-arbiter ${SOURCES})
|
||||||
|
target_link_libraries(looking-glass-arbiter
|
||||||
|
${EXE_FLAGS}
|
||||||
|
lg_common
|
||||||
|
porthole
|
||||||
|
)
|
||||||
|
|
||||||
|
install(PROGRAMS ${CMAKE_BINARY_DIR}/looking-glass-arbiter DESTINATION bin/ COMPONENT binary)
|
||||||
|
|
||||||
|
feature_summary(WHAT ENABLED_FEATURES DISABLED_FEATURES)
|
55
arbiter/src/main.c
Normal file
55
arbiter/src/main.c
Normal file
|
@ -0,0 +1,55 @@
|
||||||
|
#include "common/debug.h"
|
||||||
|
#include "common/option.h"
|
||||||
|
#include "porthole/client.h"
|
||||||
|
|
||||||
|
static struct Option options[] =
|
||||||
|
{
|
||||||
|
// app options
|
||||||
|
{
|
||||||
|
.module = "host",
|
||||||
|
.name = "socket",
|
||||||
|
.description = "The porthole host socket",
|
||||||
|
.type = OPTION_TYPE_STRING,
|
||||||
|
.value.x_string = "/var/tmp/porthole",
|
||||||
|
},
|
||||||
|
{0}
|
||||||
|
};
|
||||||
|
|
||||||
|
static void map_event(uint32_t type, PortholeMap * map)
|
||||||
|
{
|
||||||
|
DEBUG_INFO("map_event: %u, %u, %u", type, map->id, map->size);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void unmap_event(uint32_t id)
|
||||||
|
{
|
||||||
|
DEBUG_INFO("unmap_event: %u", id);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void discon_event()
|
||||||
|
{
|
||||||
|
DEBUG_INFO("discon_event");
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(int argc, char * argv[])
|
||||||
|
{
|
||||||
|
option_register(options);
|
||||||
|
if (!option_parse(argc, argv))
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
if (!option_validate())
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
PortholeClient phc;
|
||||||
|
if (!porthole_client_open(
|
||||||
|
&phc,
|
||||||
|
option_get_string("host", "socket"),
|
||||||
|
map_event,
|
||||||
|
unmap_event,
|
||||||
|
discon_event))
|
||||||
|
{
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
porthole_client_close(&phc);
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in a new issue