108 lines
2.7 KiB
C
108 lines
2.7 KiB
C
|
/*
|
||
|
droid vnc server - Android VNC server
|
||
|
Copyright (C) 2011 Jose Pereira <onaips@gmail.com>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Lesser General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 3 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
Lesser General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Lesser General Public
|
||
|
License along with this library; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#include <dlfcn.h>
|
||
|
|
||
|
#include "flinger.h"
|
||
|
#include "common.h"
|
||
|
|
||
|
void *flinger_lib = NULL;
|
||
|
|
||
|
close_fn_type close_flinger = NULL;
|
||
|
readfb_fn_type readfb_flinger = NULL;
|
||
|
getscreenformat_fn_type getscreenformat_flinger = NULL;
|
||
|
|
||
|
int initFlinger(void)
|
||
|
{
|
||
|
L("--Loading flinger native lib--\n");
|
||
|
|
||
|
flinger_lib = dlopen("/data/libdvnc_flinger_sdk14.so", RTLD_NOW);
|
||
|
if(flinger_lib == NULL) {
|
||
|
L("Couldnt load library! Error string: %s\n",dlerror());
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
init_fn_type init_flinger = dlsym(flinger_lib,"init_flinger");
|
||
|
if(init_flinger == NULL) {
|
||
|
L("Couldn't load init_flinger! Error string: %s\n",dlerror());
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
close_flinger = dlsym(flinger_lib,"close_flinger");
|
||
|
if(close_flinger == NULL) {
|
||
|
L("Couldn't load close_flinger! Error string: %s\n",dlerror());
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
readfb_flinger = dlsym(flinger_lib,"readfb_flinger");
|
||
|
if(readfb_flinger == NULL) {
|
||
|
L("Couldn't load readfb_flinger! Error string: %s\n",dlerror());
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
getscreenformat_flinger = dlsym(flinger_lib,"getscreenformat_flinger");
|
||
|
if(getscreenformat_flinger == NULL) {
|
||
|
L("Couldn't load get_screenformat! Error string: %s\n",dlerror());
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
int ret = init_flinger();
|
||
|
if (ret == -1) {
|
||
|
L("flinger method not supported by this device!\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
screenformat = getScreenFormatFlinger();
|
||
|
if ( screenformat.width <= 0 ) {
|
||
|
L("Error: I have received a bad screen size from flinger.\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
if ( readBufferFlinger() == NULL) {
|
||
|
L("Error: Could not read surfaceflinger buffer!\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
screenFormat getScreenFormatFlinger(void)
|
||
|
{
|
||
|
screenFormat f;
|
||
|
if (getscreenformat_flinger)
|
||
|
f = getscreenformat_flinger();
|
||
|
return f;
|
||
|
}
|
||
|
|
||
|
void closeFlinger(void)
|
||
|
{
|
||
|
if (close_flinger)
|
||
|
close_flinger();
|
||
|
if (flinger_lib)
|
||
|
dlclose(flinger_lib);
|
||
|
}
|
||
|
|
||
|
unsigned char *readBufferFlinger(void)
|
||
|
{
|
||
|
if (readfb_flinger)
|
||
|
return readfb_flinger();
|
||
|
return NULL;
|
||
|
}
|
||
|
|