summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Meissner <marcus@jet.franken.de>2020-02-14 16:08:05 +0100
committerMarcus Meissner <marcus@jet.franken.de>2020-02-14 16:08:05 +0100
commiteb571bc7b55171318c7415bcb5f0b129b06def26 (patch)
tree01803aa99c2887c204afed6ef97c5fe7dfa3a09f
parentd6d4fd7683f6629d8233fa915fdf0ad2f78b1ee7 (diff)
downloadlibgphoto2-eb571bc7b55171318c7415bcb5f0b129b06def26.tar.gz
hook up gopro, currently largely copy / paste from lumix
-rw-r--r--camlibs/Makefile.am1
-rw-r--r--camlibs/gopro/Makefile-files12
-rw-r--r--camlibs/gopro/README.gopro1
-rw-r--r--camlibs/gopro/gopro.c1328
-rw-r--r--configure.ac1
5 files changed, 1343 insertions, 0 deletions
diff --git a/camlibs/Makefile.am b/camlibs/Makefile.am
index c6a6e257a..5cecea8e1 100644
--- a/camlibs/Makefile.am
+++ b/camlibs/Makefile.am
@@ -71,6 +71,7 @@ include dimera/Makefile-files
include directory/Makefile-files
include enigma13/Makefile-files
include fuji/Makefile-files
+include gopro/Makefile-files
include gsmart300/Makefile-files
include hp215/Makefile-files
include iclick/Makefile-files
diff --git a/camlibs/gopro/Makefile-files b/camlibs/gopro/Makefile-files
new file mode 100644
index 000000000..b9934232b
--- /dev/null
+++ b/camlibs/gopro/Makefile-files
@@ -0,0 +1,12 @@
+# -*- Makefile -*-
+
+EXTRA_DIST += gopro/README.gopro
+noinst_DATA += gopro/README.gopro
+
+EXTRA_LTLIBRARIES += gopro.la
+
+gopro_la_SOURCES = gopro/gopro.c
+gopro_la_CFLAGS = $(AM_CFLAGS) $(NO_UNUSED_CFLAGS) $(CFLAGS) $(LIBCURL_CFLAGS)
+gopro_la_LDFLAGS = $(camlib_ldflags)
+gopro_la_DEPENDENCIES = $(camlib_dependencies)
+gopro_la_LIBADD = $(camlib_libadd) $(LIBCURL_LIBS)
diff --git a/camlibs/gopro/README.gopro b/camlibs/gopro/README.gopro
new file mode 100644
index 000000000..ed065cfeb
--- /dev/null
+++ b/camlibs/gopro/README.gopro
@@ -0,0 +1 @@
+This is a small GoPro WIFI control library.
diff --git a/camlibs/gopro/gopro.c b/camlibs/gopro/gopro.c
new file mode 100644
index 000000000..7dcd0fbe2
--- /dev/null
+++ b/camlibs/gopro/gopro.c
@@ -0,0 +1,1328 @@
+/** \file gopro.c
+ *
+ * \author Copyright 2020 Marcus Meissner <marcus@jet.franken.de>
+ *
+ * \par
+ * 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 2 of the License, or (at your option) any later version.
+ *
+ * \par
+ * 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.
+ *
+ * \par
+ * 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 "config.h"
+
+
+#include <string.h>
+#include <errno.h>
+#ifdef HAVE_LIBCURL
+# include <curl/curl.h>
+#endif
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <sys/socket.h>
+#include <stdlib.h>
+#include <netinet/in.h>
+#include <arpa/inet.h>
+
+
+#include <gphoto2/gphoto2-library.h>
+#include <gphoto2/gphoto2-result.h>
+
+
+#define GP_MODULE "gopro"
+
+#define CHECK(result) \
+{ \
+ int res = (result); \
+ \
+ if (res < 0) { \
+ gp_log (GP_LOG_DEBUG, "gopro", "Operation failed in %s (%i)!", __FUNCTION__, res); \
+ return (res); \
+ } \
+}
+
+
+#ifdef ENABLE_NLS
+# include <libintl.h>
+# undef _
+/**
+* This define is the string translation macro used in
+* libgphoto2. It will resolve to a dcgettext() function call and
+* does both the translation itself and also marks up the string
+* for the collector (xgettext).
+*/
+# define _(String) dgettext (GETTEXT_PACKAGE, String)
+# ifdef gettext_noop
+/**
+* This is the noop translation macro, which does not translate the
+* string, but marks it up for the extraction of translatable strings.
+*/
+# define N_(String) gettext_noop (String)
+# else
+# define N_(String) (String)
+# endif
+#else
+# define _(String) (String)
+# define N_(String) (String)
+#endif
+
+#if defined(HAVE_LIBCURL)
+
+char* CDS_Control = ":60606/Server0/CDS_control";
+int ReadoutMode = 2; // this should be picked up from the settings.... 0-> JPG; 1->RAW; 2 -> Thumbnails
+char* cameraShutterSpeed = "B"; // //placeholder to store the value of the shutterspeed set in camera; "B" is for bulb.
+int captureDuration = 10; //placeholder to store the value of the bulb shot this should be taken as input. note that my primary goal is in fact to perform bulb captures. but this should be extended for sure to take Shutter Speed capture as set in camera
+
+static char* loadCmd (Camera *camera,char* cmd);
+static char* switchToRecMode(Camera *camera);
+static char* switchToPlayMode(Camera *camera);
+
+typedef struct {
+ char *data;
+ size_t size;
+} LumixMemoryBuffer;
+
+typedef struct {
+ char *id;
+ char *url_raw;
+ char *url_movie;
+ char *url_large;
+ char *url_medium;
+ char *url_thumb;
+} LumixPicture;
+
+struct _CameraPrivateLibrary {
+ /* all private data */
+
+ int numpics;
+ LumixPicture *pics;
+
+ int liveview;
+ int udpsocket;
+};
+
+
+static int
+camera_exit (Camera *camera, GPContext *context)
+{
+ if (camera->pl->udpsocket > 0) {
+ close (camera->pl->udpsocket);
+ camera->pl->udpsocket = 0;
+ }
+ return GP_OK;
+}
+
+static int
+camera_capture_preview (Camera *camera, CameraFile *file, GPContext *context)
+{
+ int valread;
+ struct sockaddr_in serv_addr;
+ unsigned char buffer[65536];
+ GPPortInfo info;
+ int i, start, end, tries;
+
+ switchToRecMode (camera);
+
+ if (!camera->pl->liveview) {
+ loadCmd(camera,"cam.cgi?mode=startstream&value=49199");
+ camera->pl->liveview = 1;
+ if (camera->pl->udpsocket <= 0) {
+ if ((camera->pl->udpsocket = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
+ GP_LOG_E("\n Socket creation error \n");
+ return GP_ERROR;
+ }
+
+ gp_port_get_info (camera->port, &info);
+
+ memset(&serv_addr, 0, sizeof(serv_addr));
+
+ serv_addr.sin_family = AF_INET;
+ serv_addr.sin_port = htons(49199);
+ serv_addr.sin_addr.s_addr = 0;
+
+ if (bind(camera->pl->udpsocket, (struct sockaddr *)&serv_addr, sizeof(serv_addr)) < 0) {
+ GP_LOG_E("bind Failed: %d", errno);
+ return GP_ERROR;
+ }
+ }
+ } else {
+ /* this reminds the camera we are still doing it */
+ loadCmd(camera,"cam.cgi?mode=getstate");
+ }
+ tries = 3;
+ while (tries--) {
+ valread = recv ( camera->pl->udpsocket, buffer, sizeof(buffer), 0);
+ if (valread == -1) {
+ GP_LOG_E("recv failed: %d", errno);
+ return GP_ERROR;
+ }
+
+ GP_LOG_DATA((char*)buffer,valread,"read from udp port");
+
+ if (valread == 0)
+ continue;
+
+ start = end = -1;
+ for (i = 0; i<valread-1; i++) {
+ if ((buffer[i] == 0xff) && (buffer[i+1] == 0xd8)) {
+ start = i;
+ }
+ if ((buffer[i] == 0xff) && (buffer[i+1] == 0xd9)) {
+ end = i+2;
+ }
+ }
+ //GP_LOG_DATA(buffer+start,end-start,"read from udp port");
+ gp_file_set_mime_type (file, GP_MIME_JPEG);
+ return gp_file_append (file, (char*)buffer+start, end-start);
+ }
+ return GP_ERROR;
+}
+
+static int camera_about (Camera *camera, CameraText *about, GPContext *context);
+
+
+/**
+ * Put a file onto the camera.
+ *
+ * This function is a CameraFilesystem method.
+ */
+int
+put_file_func (CameraFilesystem *fs, const char *folder, const char *name,
+ CameraFileType type, CameraFile *file, void *data, GPContext *context);
+int
+put_file_func (CameraFilesystem *fs, const char *folder, const char *name,
+ CameraFileType type, CameraFile *file, void *data, GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ /*
+ * Upload the file to the camera. Use gp_file_get_data_and_size, etc
+ */
+
+ return GP_OK;
+}
+
+
+/**
+ * Delete a file from the camera.
+ *
+ * This function is a CameraFilesystem method.
+ */
+int
+delete_file_func (CameraFilesystem *fs, const char *folder,
+ const char *filename, void *data, GPContext *context);
+int
+delete_file_func (CameraFilesystem *fs, const char *folder,
+ const char *filename, void *data, GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ /* Delete the file from the camera. */
+
+ return GP_OK;
+}
+
+
+/**
+ * Delete all files from the camera.
+ *
+ * This function is a CameraFilesystem method.
+ */
+int
+delete_all_func (CameraFilesystem *fs, const char *folder, void *data,
+ GPContext *context);
+int
+delete_all_func (CameraFilesystem *fs, const char *folder, void *data,
+ GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ /*
+ * Delete all files in the given folder. If your camera doesn't have
+ * such a functionality, just don't implement this function.
+ */
+
+ return GP_OK;
+}
+
+
+/**
+ * Get the file info here and write it to space provided by caller.
+ *
+ * \param info Space provided by caller in which file info is written.
+ *
+ * This function is a CameraFilesystem method.
+ */
+int
+get_info_func (CameraFilesystem *fs, const char *folder, const char *filename,
+ CameraFileInfo *info, void *data, GPContext *context);
+int
+get_info_func (CameraFilesystem *fs, const char *folder, const char *filename,
+ CameraFileInfo *info, void *data, GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ return GP_OK;
+}
+
+
+static int
+set_info_func (CameraFilesystem *fs, const char *folder, const char *file,
+ CameraFileInfo info, void *data, GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ /* Set the file info here from <info> */
+
+ return GP_OK;
+}
+
+
+static int
+folder_list_func (CameraFilesystem *fs, const char *folder, CameraList *list,
+ void *data, GPContext *context)
+{
+ /*Camera *camera = data;*/
+ /* currently no folders exposed */
+ return GP_OK;
+}
+
+
+/**
+ * List available files in the specified folder.
+ *
+ * This function is a CameraFilesystem method.
+ */
+static int
+file_list_func (CameraFilesystem *fs, const char *folder, CameraList *list,
+ void *data, GPContext *context)
+{
+ Camera *camera = data;
+ int i;
+
+ for (i=0;i<camera->pl->numpics;i++) {
+ if (camera->pl->pics[i].url_raw) {
+ char *s = strrchr(camera->pl->pics[i].url_raw, '/')+1;
+ gp_list_append (list, s, NULL);
+ continue;
+ }
+ if (camera->pl->pics[i].url_large) {
+ char *s = strrchr(camera->pl->pics[i].url_large, '/')+1;
+ gp_list_append (list, s, NULL);
+ continue;
+ }
+ if (camera->pl->pics[i].url_movie) {
+ char *s = strrchr(camera->pl->pics[i].url_movie, '/')+1;
+ gp_list_append (list, s, NULL);
+ continue;
+ }
+ }
+ return GP_OK;
+}
+
+/**
+ * Get information on all available storages in the camera.
+ *
+ * This function is a CameraFilesystem method.
+ */
+int
+storage_info_func (CameraFilesystem *fs,
+ CameraStorageInformation **storageinformations,
+ int *nrofstorageinformations, void *data,
+ GPContext *context);
+int
+storage_info_func (CameraFilesystem *fs,
+ CameraStorageInformation **storageinformations,
+ int *nrofstorageinformations, void *data,
+ GPContext *context)
+{
+ /*Camera *camera = data;*/
+
+ /* List your storages here */
+
+ return GP_ERROR_NOT_SUPPORTED;
+}
+
+/*@}*/
+
+
+/**********************************************************************/
+/**
+ * @name camlib API functions
+ *
+ * @{
+ */
+/**********************************************************************/
+
+
+static size_t
+write_callback(char *contents, size_t size, size_t nmemb, void *userp)
+{
+ size_t realsize = size * nmemb;
+ size_t oldsize;
+ LumixMemoryBuffer *lmb = userp;
+
+ oldsize = lmb->size;
+ /* 1 additionaly byte for 0x00 */
+ lmb->data = realloc(lmb->data, lmb->size+realsize+1);
+ lmb->size += realsize;
+ lmb->data[lmb->size] = 0x00;
+
+ GP_LOG_DATA(contents, realsize, "lumix read from url");
+
+ memcpy(lmb->data+oldsize,contents,realsize);
+ return realsize;
+}
+
+
+static char*
+loadCmd (Camera *camera,char* cmd) {
+ CURL *curl;
+ CURLcode res;
+ char URL[100];
+ GPPortInfo info;
+ char *xpath;
+ LumixMemoryBuffer lmb;
+
+ curl = curl_easy_init();
+ gp_port_get_info (camera->port, &info);
+ gp_port_info_get_path (info, &xpath); /* xpath now contains ip:192.168.1.1 */
+ snprintf( URL,100, "http://%s/%s", xpath+strlen("ip:"), cmd);
+ GP_LOG_D("cam url is %s", URL);
+
+ curl_easy_setopt(curl, CURLOPT_URL, URL);
+
+ lmb.size = 0;
+ lmb.data = malloc(0);
+ curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback);
+ curl_easy_setopt(curl, CURLOPT_WRITEDATA, &lmb);
+
+ res = curl_easy_perform(curl);
+ if(res != CURLE_OK) {
+ fprintf(stderr, "curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
+ return NULL;
+ } else {
+ /* read the XML that is now in Buffer*/
+ GP_LOG_D("result %s\n", lmb.data);
+
+ /* <?xml version="1.0" encoding="UTF-8"?> <camrply><result>ok</result></camrply> */
+ }
+ curl_easy_cleanup(curl);
+ return lmb.data;
+}
+
+static char*
+switchToRecMode(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=camcmd&value=recmode");
+}
+
+static char*
+switchToPlayMode(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=camcmd&value=playmode");
+}
+
+
+static void Set_ISO(Camera *camera,const char * ISOValue) {
+ char buf[200];
+ sprintf(buf, "?mode=setsetting&type=iso&value=%s",ISOValue);
+ loadCmd(camera,buf);
+}
+
+static char*
+generic_setting_getter(Camera *camera, char *type) {
+ char *result, *s;
+ char url[50];
+
+ sprintf(url,"cam.cgi?mode=getsetting&type=%s", type);
+ result = loadCmd(camera, url);
+ return result;
+}
+
+static char*
+Get_Clock(Camera *camera) {
+ return generic_setting_getter(camera,"clock");
+}
+
+static char*
+Get_Video_Quality(Camera *camera) {
+ return generic_setting_getter(camera,"videoquality");
+}
+
+static char*
+Get_ISO(Camera *camera) {
+ /* <?xml version="1.0" encoding="UTF-8"?>
+ * <camrply><result>ok</result><settingvalue iso="auto"></settingvalue></camrply>
+ */
+ return generic_setting_getter(camera,"iso");
+}
+
+static char*
+Get_ShutterSpeed(Camera *camera) {
+ /*<?xml version="1.0" encoding="UTF-8"?>
+ * <camrply><result>ok</result><settingvalue shtrspeed="2560/256"></settingvalue></camrply>
+ */
+ return generic_setting_getter(camera, "shtrspeed");
+}
+
+static char*
+Get_Aperture(Camera *camera) {
+ /* <?xml version="1.0" encoding="UTF-8"?>
+ * <camrply><result>ok</result><settingvalue focal="1366/256"></settingvalue></camrply>
+ */
+ return generic_setting_getter(camera, "focal");
+}
+
+static char*
+Get_AFMode(Camera *camera) {
+ return generic_setting_getter(camera,"afmode");
+}
+
+static char*
+Get_LiveViewSize(Camera *camera) {
+ return generic_setting_getter(camera,"liveviewsize");
+}
+
+static char*
+Get_DeviceName(Camera *camera) {
+ return generic_setting_getter(camera,"device_name");
+}
+
+static char*
+Get_FocusMode(Camera *camera) {
+ return generic_setting_getter(camera,"focusmode");
+}
+
+static char*
+Get_MFAssist(Camera *camera) {
+ return generic_setting_getter(camera,"mf_asst");
+}
+
+static char*
+Get_MFAssist_Mag(Camera *camera) {
+ return generic_setting_getter(camera,"mf_asst_mag");
+}
+
+static char*
+Get_ExTeleConv(Camera *camera) {
+ return generic_setting_getter(camera,"ex_tele_conv");
+}
+
+static char*
+Get_Capability(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=getinfo&type=capability");
+}
+
+static char*
+Get_Lens(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=getinfo&type=lens");
+}
+
+static char*
+Get_AllMenu(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=getinfo&type=allmenu");
+}
+
+static char*
+Get_CurMenu(Camera *camera) {
+ return loadCmd(camera,"cam.cgi?mode=getinfo&type=curmenu");
+}
+
+
+static void Set_ShutterSpeed(Camera *camera,const char* SpeedValue) {
+ char buf[200];
+ sprintf(buf, "cam.cgi?mode=setsetting&type=shtrspeed&value=%s",SpeedValue);
+ loadCmd(camera,buf);
+}
+
+static char*
+Get_Quality(Camera *camera) {
+ return generic_setting_getter(camera,"quality");
+}
+
+static void
+Set_quality(Camera *camera,const char* Quality) {
+ char buf[200];
+ sprintf(buf,"cam.cgi?mode=setsetting&type=quality&value=%s", Quality);
+ loadCmd(camera,buf);
+}
+
+
+static int
+startCapture(Camera *camera) {
+ char *result;
+
+ result = loadCmd(camera,"cam.cgi?mode=camcmd&value=capture");
+
+ if (strstr(result,"<result>ok</result>")) return GP_OK;
+ if (strstr(result,"<result>err_busy</result>")) return GP_ERROR_CAMERA_BUSY;
+ return GP_ERROR;
+}
+
+static int
+stopCapture(Camera *camera) {
+ char *result;
+
+ result = loadCmd(camera,"cam.cgi?mode=camcmd&value=capture_cancel");
+
+ if (strstr(result,"<result>ok</result>")) return GP_OK;
+ if (strstr(result,"<result>err_busy</result>")) return GP_ERROR_CAMERA_BUSY;
+ return GP_ERROR;
+}
+
+static void startMovie(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camcmd&value=video_recstart");
+}
+
+static void stopMovie(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camcmd&value=video_recstop");
+}
+
+static void zoomIn(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camcmd&value=tele-fast");
+}
+
+static void zoomOut(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camcmd&value=wide-fast");
+}
+
+static void zoomStop(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camcmd&value=zoomstop");
+}
+
+static void focusIn(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camctrl&type=focus&value=tele-fast");
+}
+
+static void focusOut(Camera *camera) {
+ loadCmd(camera,"cam.cgi?mode=camctrl&type=focus&value=wide-fast");
+}
+
+static int
+strend(const char *s, const char *t)
+{
+ size_t ls = strlen(s); // find length of s
+ size_t lt = strlen(t); // find length of t
+ if (ls >= lt) // check if t can fit in s
+ {
+ // point s to where t should start and compare the strings from there
+ return (0 == memcmp(t, s + (ls - lt), lt));
+ }
+ return 0; // t was longer than s
+}
+
+static struct shuttermap {
+ char *cameraspeed;
+ char *speed;
+} shutterspeeds[] = {
+ {"3328/256","8000"},
+ {"3243/256","6400"},
+ {"3158/256","5000"},
+ {"3072/256","4000"},
+ {"2987/256","3200"},
+ {"2902/256","2500"},
+ {"2816/256","2000"},
+ {"2731/256","1600"},
+ {"2646/256","1300"},
+ {"2560/256","1000"},
+ {"2475/256","800"},
+ {"2390/256","640"},
+ {"2304/256","500"},
+ {"2219/256","400"},
+ {"2134/256","320"},
+ {"2048/256","250"},
+ {"1963/256","200"},
+ {"1878/256","160"},
+ {"1792/256","125"},
+ {"1707/256","100"},
+ {"1622/256","80"},
+ {"1536/256","60"},
+ {"1451/256","50"},
+ {"1366/256","40"},
+ {"1280/256","30"},
+ {"1195/256","25"},
+ {"1110/256","20"},
+ {"1024/256","15"},
+ {"939/256","13"},
+ {"854/256","10"},
+ {"768/256","8"},
+ {"683/256","6"},
+ {"598/256","5"},
+ {"512/256","4"},
+ {"427/256","3.2"},
+ {"342/256","2.5"},
+ {"256/256","2"},
+ {"171/256","1.6"},
+ {"86/256","1.3"},
+ {"0/256","1"},
+ {"-85/256","1.3s"},
+ {"-170/256","1.6s"},
+ {"-256/256","2s"},
+ {"-341/256","2.5s"},
+ {"-426/256","3.2s"},
+ {"-512/256","4s"},
+ {"-682/256","5s"},
+ {"-768/256","6s"},
+ {"-853/256","8s"},
+ {"-938/256","10s"},
+ {"-1024/256","13s"},
+ {"-1109/256","15s"},
+ {"-1194/256","20s"},
+ {"-1280/256","25s"},
+ {"-1365/256","30s"},
+ {"-1450/256","40s"},
+ {"-1536/256","50s"},
+ {"16384/256","60s"},
+ {"256/256","B"},
+};
+
+static struct aperturemap {
+ char *cameraaperture;
+ char *aperture;
+} apertures[] = {
+ {"392/256","1.7"},
+ {"427/256","1.8"},
+ {"512/256","2"},
+ {"598/256","2.2"},
+ {"683/256","2.5"},
+ {"768/256","2.8"},
+ {"854/256","3.2"},
+ {"938/256","3.5"},
+ {"1024/256","4"},
+ {"1110/256","4.5"},
+ {"1195/256","5"},
+ {"1280/256","5.6"},
+ {"1366/256","6.3"},
+ {"1451/256","7.1"},
+ {"1536/256","8"},
+ {"1622/256","9"},
+ {"1707/256","10"},
+ {"1792/256","11"},
+ {"1878/256","13"},
+ {"1963/256","14"},
+ {"2048/256","16"},
+};
+
+static int
+camera_config_get (Camera *camera, CameraWidget **window, GPContext *context)
+{
+ CameraWidget *widget,*section;
+ int ret, i, valset;
+ char *val, *curval;
+
+ switchToRecMode (camera);
+
+ gp_widget_new (GP_WIDGET_WINDOW, _("Lumix Configuration"), window);
+ gp_widget_set_name (*window, "config");
+
+ gp_widget_new (GP_WIDGET_SECTION, _("Camera Settings"), &section);
+ gp_widget_set_name (section, "settings");
+ gp_widget_append (*window, section);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Clock"), &widget);
+ gp_widget_set_name (widget, "clock");
+ gp_widget_set_value (widget, Get_Clock(camera));
+ gp_widget_append (section, widget);
+
+
+ val = Get_ShutterSpeed(camera);
+ if (!val) val = "unknown";
+ gp_widget_new (GP_WIDGET_RADIO, _("Shutterspeed"), &widget);
+ gp_widget_set_name (widget, "shutterspeed");
+ valset = 0;
+ for (i=0;i<sizeof(shutterspeeds)/sizeof(shutterspeeds[0]);i++) {
+ gp_widget_add_choice (widget, shutterspeeds[i].speed);
+ if (!strcmp(val, shutterspeeds[i].cameraspeed)) {
+ valset = 1;
+ gp_widget_set_value (widget, shutterspeeds[i].speed);
+ }
+ }
+ if (!valset) gp_widget_set_value (widget, val);
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Quality"), &widget);
+ gp_widget_set_name (widget, "quality");
+ gp_widget_set_value (widget, Get_Quality(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Video Quality"), &widget);
+ gp_widget_set_name (widget, "videoquality");
+ gp_widget_set_value (widget, Get_Video_Quality(camera));
+ gp_widget_append (section, widget);
+
+
+ val = Get_Aperture(camera);
+ if (!val) val = "unknown";
+ gp_widget_new (GP_WIDGET_RADIO, _("Aperture"), &widget);
+ gp_widget_set_name (widget, "aperture");
+ valset = 0;
+ for (i=0;i<sizeof(apertures)/sizeof(apertures[0]);i++) {
+ gp_widget_add_choice (widget, apertures[i].aperture);
+ if (!strcmp(val, apertures[i].cameraaperture)) {
+ valset = 1;
+ gp_widget_set_value (widget, apertures[i].aperture);
+ }
+ }
+ if (!valset) gp_widget_set_value (widget, val);
+ gp_widget_append (section, widget);
+
+
+ gp_widget_new (GP_WIDGET_RADIO, _("ISO"), &widget);
+ gp_widget_set_name (widget, "iso");
+ gp_widget_set_value (widget, Get_ISO(camera));
+ gp_widget_add_choice (widget, "auto");
+ gp_widget_add_choice (widget, "80");
+ gp_widget_add_choice (widget, "100");
+ gp_widget_add_choice (widget, "200");
+ gp_widget_add_choice (widget, "400");
+ gp_widget_add_choice (widget, "800");
+ gp_widget_add_choice (widget, "1600");
+ gp_widget_add_choice (widget, "3200");
+ gp_widget_add_choice (widget, "6400");
+ gp_widget_add_choice (widget, "12800");
+ gp_widget_append (section, widget);
+
+ valset = 2;
+ gp_widget_new (GP_WIDGET_TOGGLE, _("Bulb"), &widget);
+ gp_widget_set_name (widget, "bulb");
+ gp_widget_set_value (widget, &valset);
+ gp_widget_append (section, widget);
+
+ valset = 2;
+ gp_widget_new (GP_WIDGET_TOGGLE, _("Movie"), &widget);
+ gp_widget_set_name (widget, "movie");
+ gp_widget_set_value (widget, &valset);
+ gp_widget_append (section, widget);
+
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Autofocus Mode"), &widget);
+ gp_widget_set_name (widget, "afmode");
+ gp_widget_set_value (widget, Get_AFMode(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Liveview Size"), &widget);
+ gp_widget_set_name (widget, "liveviewsize");
+ gp_widget_set_value (widget, Get_LiveViewSize(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Device Name"), &widget);
+ gp_widget_set_name (widget, "devicename");
+ gp_widget_set_value (widget, Get_DeviceName(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Focus Mode"), &widget);
+ gp_widget_set_name (widget, "focusmode");
+ gp_widget_set_value (widget, Get_FocusMode(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("MF Assist"), &widget);
+ gp_widget_set_name (widget, "mf_assist");
+ gp_widget_set_value (widget, Get_MFAssist(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("MF Assist Mag"), &widget);
+ gp_widget_set_name (widget, "mf_assist_mag");
+ gp_widget_set_value (widget, Get_MFAssist_Mag(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Ex Teleconv"), &widget);
+ gp_widget_set_name (widget, "ex_tele_conv");
+ gp_widget_set_value (widget, Get_ExTeleConv(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Lens"), &widget);
+ gp_widget_set_name (widget, "lens");
+ gp_widget_set_value (widget, Get_Lens(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_RADIO, _("Zoom"), &widget);
+ gp_widget_set_name (widget, "zoom");
+ gp_widget_set_value (widget, "none");
+ gp_widget_add_choice (widget, "wide-fast");
+ gp_widget_add_choice (widget, "wide-normal");
+ gp_widget_add_choice (widget, "tele-normal");
+ gp_widget_add_choice (widget, "tele-fast");
+ gp_widget_add_choice (widget, "stop");
+ gp_widget_append (section, widget);
+
+#if 0
+ gp_widget_new (GP_WIDGET_TEXT, _("Capability"), &widget);
+ gp_widget_set_name (widget, "capability");
+ gp_widget_set_value (widget, Get_Capability(camera));
+ gp_widget_append (section, widget);
+
+ /* lots of stuff ... lets see if we can use it */
+ gp_widget_new (GP_WIDGET_TEXT, _("All Menu"), &widget);
+ gp_widget_set_name (widget, "allmenu");
+ gp_widget_set_value (widget, Get_AllMenu(camera));
+ gp_widget_append (section, widget);
+
+ gp_widget_new (GP_WIDGET_TEXT, _("Cur Menu"), &widget);
+ gp_widget_set_name (widget, "curmenu");
+ gp_widget_set_value (widget, Get_CurMenu(camera));
+ gp_widget_append (section, widget);
+#endif
+
+ return GP_OK;
+}
+
+static int
+camera_config_set (Camera *camera, CameraWidget *window, GPContext *context)
+{
+ CameraWidget *widget;
+ char *val;
+ char buf[50];
+ int i, ret;
+
+ if ((GP_OK == gp_widget_get_child_by_name(window, "zoom", &widget)) && gp_widget_changed (widget)) {
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+
+ /* all valid values */
+ if ( strcmp(val, "wide-fast") &&
+ strcmp(val, "wide-normal") &&
+ strcmp(val, "tele-normal") &&
+ strcmp(val, "tele-fast") &&
+ strcmp(val, "stop")
+ )
+ return GP_ERROR_BAD_PARAMETERS;
+
+ if (!strcmp(val, "stop"))
+ val = "zoomstop";
+
+ sprintf(buf,"cam.cgi?mode=camcmd&value=%s", val);
+ loadCmd(camera,buf);
+ }
+
+ if ((GP_OK == gp_widget_get_child_by_name(window, "shutterspeed", &widget)) && gp_widget_changed (widget)) {
+ char *cameraspeed = NULL;
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+ for (i=0;i<sizeof(shutterspeeds)/sizeof(shutterspeeds[0]);i++) {
+ if (!strcmp(val, shutterspeeds[i].speed)) {
+ cameraspeed = shutterspeeds[i].cameraspeed;
+ break;
+ }
+ }
+ if (!cameraspeed) cameraspeed = val;
+ Set_ShutterSpeed (camera, cameraspeed);
+ }
+
+ if ((GP_OK == gp_widget_get_child_by_name(window, "aperture", &widget)) && gp_widget_changed (widget)) {
+ char *cameraaperture = NULL;
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+ for (i=0;i<sizeof(apertures)/sizeof(apertures[0]);i++) {
+ if (!strcmp(val, apertures[i].aperture)) {
+ cameraaperture = apertures[i].cameraaperture;
+ break;
+ }
+ }
+ if (!cameraaperture) cameraaperture = val;
+ sprintf(buf,"cam.cgi?mode=setsetting&type=focal&value=%s", cameraaperture);
+ loadCmd(camera,buf);
+ }
+ if ((GP_OK == gp_widget_get_child_by_name(window, "iso", &widget)) && gp_widget_changed (widget)) {
+ char buf[50];
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+ sprintf(buf,"cam.cgi?mode=setsetting&type=iso&value=%s", val);
+ loadCmd(camera,buf);
+ }
+ if ((GP_OK == gp_widget_get_child_by_name(window, "liveviewsize", &widget)) && gp_widget_changed (widget)) {
+ char buf[50];
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+ sprintf(buf,"cam.cgi?mode=setsetting&type=liveviewsize&value=%s", val);
+ loadCmd(camera,buf);
+ }
+ if ((GP_OK == gp_widget_get_child_by_name(window, "devicename", &widget)) && gp_widget_changed (widget)) {
+ char buf[50];
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+ sprintf(buf,"cam.cgi?mode=setsetting&type=device_name&value=%s", val);
+ loadCmd(camera,buf);
+ }
+ if ((GP_OK == gp_widget_get_child_by_name(window, "bulb", &widget)) && gp_widget_changed (widget)) {
+ int val;
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+
+ if (val) {
+ ret = startCapture (camera);
+ if (ret != GP_OK)
+ return ret;
+ } else {
+ stopCapture(camera);
+ }
+ }
+ if ((GP_OK == gp_widget_get_child_by_name(window, "movie", &widget)) && gp_widget_changed (widget)) {
+ int val;
+
+ if (GP_OK != (ret = gp_widget_get_value (widget, &val)))
+ return ret;
+
+ if (val) {
+ startMovie (camera);
+ } else {
+ stopMovie(camera);
+ }
+ }
+ return GP_OK;
+}
+
+static int
+add_objectid_and_upload (Camera *camera, CameraFilePath *path, GPContext *context, char *ximage, size_t size) {
+ int ret;
+ CameraFile *file = NULL;
+ CameraFileInfo info;
+
+ ret = gp_file_new(&file);
+ if (ret!=GP_OK) return ret;
+ gp_file_set_mtime (file, time(NULL));
+ strcpy(info.file.type, GP_MIME_JPEG);
+
+ GP_LOG_D ("setting size");
+ ret = gp_file_set_data_and_size(file, ximage, size);
+ if (ret != GP_OK) {
+ gp_file_free (file);
+ return ret;
+ }
+ GP_LOG_D ("append to fs");
+ ret = gp_filesystem_append(camera->fs, path->folder, path->name, context);
+ if (ret != GP_OK) {
+ gp_file_free (file);
+ return ret;
+ }
+ GP_LOG_D ("adding filedata to fs");
+ ret = gp_filesystem_set_file_noop(camera->fs, path->folder, path->name, GP_FILE_TYPE_NORMAL, file, context);
+ if (ret != GP_OK) {
+ gp_file_free (file);
+ return ret;
+ }
+
+ /* We have now handed over the file, disclaim responsibility by unref. */
+ gp_file_unref (file);
+
+ /* we also get the fs info for free, so just set it */
+ info.file.fields = GP_FILE_INFO_TYPE |
+ /*GP_FILE_INFO_WIDTH | GP_FILE_INFO_HEIGHT |*/
+ GP_FILE_INFO_SIZE /*| GP_FILE_INFO_MTIME */ ;
+ strcpy(info.file.type, GP_MIME_JPEG);
+
+ info.preview.fields = 0; /* so far none */
+/*
+ info.file.width = oi->ImagePixWidth;
+ info.file.height = oi->ImagePixHeight;
+ info.file.size = oi->ObjectCompressedSize;
+ info.file.mtime = time(NULL);
+
+ info.preview.fields = GP_FILE_INFO_TYPE |
+ GP_FILE_INFO_WIDTH | GP_FILE_INFO_HEIGHT |
+ GP_FILE_INFO_SIZE;
+ strcpy_mime (info.preview.type, params->deviceinfo.VendorExtensionID, oi->ThumbFormat);
+ info.preview.width = oi->ThumbPixWidth;
+ info.preview.height = oi->ThumbPixHeight;
+ info.preview.size = oi->ThumbCompressedSize;
+*/
+
+ GP_LOG_D ("setting fileinfo in fs");
+ return gp_filesystem_set_info_noop(camera->fs, path->folder, path->name, info, context);
+}
+
+/**
+* Capture an image and tell libgphoto2 where to find it by filling
+* out the path.
+*
+* This function is a method of the Camera object.
+*/
+static int
+camera_capture (Camera *camera, CameraCaptureType type, CameraFilePath *path, GPContext *context) {
+ int ret, tries, before, after;
+ char *s, *url;
+
+ switchToRecMode (camera);
+
+ sleep(2);
+
+ ret = startCapture (camera);
+ if (ret != GP_OK)
+ return ret;
+
+ if (strcmp(cameraShutterSpeed, "B")!=0) {
+ sleep(captureDuration); // Sleep for the duration to simulate exposure, if this is in Bulb mode
+ } else {
+ sleep(3);
+ }
+ stopCapture(camera);
+
+ strcpy(path->name, "name");
+ strcpy(path->folder, "/");
+ return GP_OK;
+}
+
+/**
+* Fill out the summary with textual information about the current
+* state of the camera (like pictures taken, etc.).
+*
+* This function is a method of the Camera object.
+*/
+static int
+camera_summary (Camera *camera, CameraText *summary, GPContext *context)
+{
+ return GP_OK;
+}
+
+
+/**
+* Return the camera drivers manual.
+* If you would like to tell the user some information about how
+* to use the camera or the driver, this is the place to do.
+*
+* This function is a method of the Camera object.
+*/
+static int camera_manual (Camera *camera, CameraText *manual, GPContext *context) {
+ return GP_OK;
+}
+
+
+/**
+* Return "About" content as textual description.
+* Will be translated.
+*
+* This function is a method of the Camera object.
+*/
+int camera_about (Camera *camera, CameraText *about, GPContext *context);
+int camera_about (Camera *camera, CameraText *about, GPContext *context) {
+ strcpy (about->text, _("Lumix WiFi Library\n"
+ "Robert Hasson <robert_hasson@yahoo.com>\n"
+ "Connects to Lumix Cameras over Wifi.\n"
+ "using the http GET commands."));
+ return GP_OK;
+}
+
+/*@}*/
+
+
+/**********************************************************************/
+/**
+* @name CameraFilesystem member functions
+*
+* @{
+*/
+/**********************************************************************/
+
+
+/**
+* Get the file from the camera.
+*
+* This function is a CameraFilesystem method.
+*/
+static int
+get_file_func (CameraFilesystem *fs, const char *folder, const char *filename, CameraFileType type, CameraFile *file, void *data, GPContext *context)
+{
+ Camera *camera = data;
+ int i;
+ CURLcode res;
+ CURL *imageUrl;
+ double bytesread = 0;
+ long http_response;
+ int ret_val = 0;
+ long nRead;
+ LumixMemoryBuffer lmb;
+ const char *url;
+
+ for (i=0;i<camera->pl->numpics;i++) {
+ char *s;
+
+ if (camera->pl->pics[i].url_movie) {
+ s = strrchr(camera->pl->pics[i].url_movie,'/')+1;
+ if (!strcmp(s,filename)) {
+ url = camera->pl->pics[i].url_movie;
+ break;
+ }
+ }
+ if (camera->pl->pics[i].url_raw) {
+ s = strrchr(camera->pl->pics[i].url_raw,'/')+1;
+ if (!strcmp(s,filename)) {
+ url = camera->pl->pics[i].url_raw;
+ break;
+ }
+ }
+ if (camera->pl->pics[i].url_large) {
+ s = strrchr(camera->pl->pics[i].url_large,'/')+1;
+ if (!strcmp(s,filename)) {
+ url = camera->pl->pics[i].url_large;
+ break;
+ }
+ }
+ }
+ if (i == camera->pl->numpics) /* not found */
+ return GP_ERROR;
+
+ switch (type) {
+ case GP_FILE_TYPE_PREVIEW:
+ if (camera->pl->pics[i].url_thumb)
+ url = camera->pl->pics[i].url_thumb;
+ break;
+ case GP_FILE_TYPE_NORMAL:
+ default:
+ /* just use regular url */
+ break;
+ }
+
+ switchToPlayMode (camera);
+
+ imageUrl = curl_easy_init();
+
+ while (ret_val != 2) {
+ GP_DEBUG("reading stream %s position %ld", url, nRead);
+
+ curl_easy_setopt(imageUrl, CURLOPT_URL, url);
+ //curl_easy_setopt(imageUrl,CURLOPT_TCP_KEEPALIVE,1L);
+ //curl_easy_setopt(imageUrl, CURLOPT_TCP_KEEPIDLE, 120L);
+ //curl_easy_setopt(imageUrl, CURLOPT_TCP_KEEPINTVL, 60L);
+
+#if 1
+ /* FIXME trick wont work anymore with new buffering code -Marcus */
+ if (nRead) {
+ curl_easy_setopt(imageUrl, CURLOPT_RESUME_FROM, nRead);
+ GP_DEBUG("continuing the read where it stopped %s position %ld", url, nRead);
+ }
+#endif
+ lmb.size = 0;
+ lmb.data = malloc(0);
+ curl_easy_setopt(imageUrl, CURLOPT_WRITEFUNCTION, write_callback);
+ curl_easy_setopt(imageUrl, CURLOPT_WRITEDATA, &lmb);
+
+ res = curl_easy_perform(imageUrl);
+
+ if (res != CURLE_OK) {
+ GP_LOG_E("curl_easy_perform() failed: %s", curl_easy_strerror(res));
+ GP_DEBUG("error in reading stream %s position %ld", url, nRead);
+ curl_easy_getinfo(imageUrl, CURLINFO_RESPONSE_CODE, &http_response);
+ GP_DEBUG("CURLINFO_RESPONSE_CODE:%ld\n", http_response);
+ return GP_ERROR_IO;
+ } else {
+ GP_DEBUG("read the whole file");
+ ret_val=2;
+ }
+ }
+ curl_easy_cleanup(imageUrl);
+
+ return gp_file_set_data_and_size (file, lmb.data, lmb.size);
+}
+
+
+int camera_abilities (CameraAbilitiesList *list) {
+ CameraAbilities a;
+
+ memset(&a, 0, sizeof(a));
+ strcpy(a.model, "Panasonic:LumixGSeries");
+ a.status = GP_DRIVER_STATUS_EXPERIMENTAL;
+ a.port = GP_PORT_IP;
+ a.operations = GP_CAPTURE_IMAGE| GP_OPERATION_CAPTURE_VIDEO | GP_OPERATION_CONFIG;
+ a.file_operations = GP_FILE_OPERATION_PREVIEW ;
+ /* it should be possible to browse and DL images the files using the ReadImageFromCamera() function but for now lets keep it simple*/
+ a.folder_operations = GP_FOLDER_OPERATION_NONE;
+ return gp_abilities_list_append(list, a);
+}
+
+/**
+* All filesystem accessor functions.
+*
+* This should contain all filesystem accessor functions
+* available in the camera library. Non-present fields
+* are NULL.
+*
+*/
+CameraFilesystemFuncs fsfuncs = {
+ .file_list_func = file_list_func,
+ .folder_list_func = folder_list_func,
+// .get_info_func = get_info_func,
+// .set_info_func = set_info_func,
+ .get_file_func = get_file_func,
+// .del_file_func = delete_file_func,
+// .put_file_func = put_file_func,
+// .delete_all_func = delete_all_func,
+// .storage_info_func = storage_info_func
+};
+
+/**
+* Initialize a Camera object.
+*
+* Sets up all the proper object function pointers, initialize camlib
+* internal data structures, and probably establish a connection to
+* the camera.
+*
+* This is a camlib API function.
+*/
+int
+camera_init (Camera *camera, GPContext *context)
+{
+ GPPortInfo info;
+ int ret;
+
+ camera->pl = calloc(sizeof(CameraPrivateLibrary),1);
+
+ /* First, set up all the function pointers */
+ camera->functions->exit = camera_exit;
+ camera->functions->get_config = camera_config_get;
+ camera->functions->set_config = camera_config_set;
+ camera->functions->capture = camera_capture;
+ camera->functions->capture_preview = camera_capture_preview;
+ camera->functions->summary = camera_summary;
+ camera->functions->manual = camera_manual;
+ camera->functions->about = camera_about;
+
+ curl_global_init(CURL_GLOBAL_ALL);
+
+ ret = gp_port_get_info (camera->port, &info);
+ if (ret != GP_OK) {
+ GP_LOG_E ("Failed to get port info?");
+ return ret;
+ }
+ gp_filesystem_set_funcs (camera->fs, &fsfuncs, camera);
+
+ return GP_OK;
+}
+
+#else
+/* No CURL -> no camera here */
+int
+camera_init (Camera *camera, GPContext *context)
+{
+ return GP_OK;
+}
+
+int camera_abilities (CameraAbilitiesList *list)
+{
+ return GP_OK;
+}
+#endif
+
+int
+camera_id (CameraText *id)
+{
+ strcpy(id->text, "GoPro Wifi");
+
+ return GP_OK;
+}
diff --git a/configure.ac b/configure.ac
index eb1ebd81a..5bec45066 100644
--- a/configure.ac
+++ b/configure.ac
@@ -497,6 +497,7 @@ GP_CAMLIB([dimera3500],[outdated])dnl
GP_CAMLIB([directory])dnl
GP_CAMLIB([enigma13],[outdated])dnl
GP_CAMLIB([fuji],[outdated])dnl
+GP_CAMLIB([gopro])dnl
GP_CAMLIB([gsmart300],[outdated])dnl
GP_CAMLIB([hp215],[outdated])dnl
GP_CAMLIB([iclick],[outdated])dnl