#include <glib/gstdio.h>
+#include "utils.h"
#include "ooo.h"
static void solipa_ooo_class_init (SolipaOOOClass *class);
gchar *ooo_path;
gchar *ooo_soffice;
guint ooo_port;
+ gchar *ooo_version;
gboolean dialog_response;
priv->search = NULL;
priv->ooo_port = 8100;
+ priv->ooo_version = NULL;
priv->with_search = FALSE;
}
return solipa_ooo;
}
+/**
+ * solipa_ooo_set_version:
+ * @ooo:
+ * @version:
+ *
+ */
+void
+solipa_ooo_set_version (SolipaOOO *ooo, const gchar *version)
+{
+ SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
+
+ priv->ooo_version = g_strdup (version);
+}
+
/**
* solipa_ooo_exec:
* @ooo:
gchar *ret;
+ guint part;
+
SolipaOOOPrivate *priv = SOLIPA_OOO_GET_PRIVATE (ooo);
_search = g_strdup (search);
ret = g_strdup_printf ("%s"
"search.SearchString = u\"%s\"\n"
"found = document.findFirst(search)\n"
- "found.String = str.replace(found.String, u\"%s\", \"%s\")\n",
+ "found.String = %s.replace(found.String, u\"%s\", u\"%s\")\n",
!priv->with_search ? "search = document.createSearchDescriptor()\n" : "",
_search,
+ priv->ooo_version == NULL || solipa_compare_version (priv->ooo_version, "3.0.0", NULL, &part) > 0 ? "str" : "unicode",
_search,
_replace);
priv->with_search = TRUE;
}
/* apro openoffice in ascolto */
+ gchar *dash;
+ gchar *command;
+ guint part;
+
+ if (priv->ooo_version == NULL
+ || solipa_compare_version (priv->ooo_version, "3.0.0", NULL, &part) > 0)
+ {
+ dash = g_strdup ("-");
+ }
+ else
+ {
+ dash = g_strdup ("");
+ }
+
#ifdef G_OS_WIN32
- pipa = popen (g_strconcat ("\"",
- priv->ooo_soffice,
- g_strdup_printf (" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore %s\"", priv->ooo_port, priv->visible ? "-invisible" : "-headless"),
- NULL),
- "r");
+ command = g_strconcat ("\"",
+ priv->ooo_soffice,
+ g_strdup_printf (" -accept=\"socket,host=localhost,port=%d;urp;\" %s-norestore %s\"",
+ priv->ooo_port,
+ dash,
+ g_strdup_printf ("%s%s",
+ dash,
+ priv->visible ? "-invisible" : "-headless")),
+ NULL);
#else
- pipa = popen (g_strconcat ("\"",
- priv->ooo_soffice,
- g_strdup_printf ("\" -accept=\"socket,host=localhost,port=%d;urp;\" -norestore %s", priv->ooo_port, priv->visible ? "-invisible" : "-headless"),
- NULL),
- "r");
+ command = g_strconcat ("\"",
+ priv->ooo_soffice,
+ g_strdup_printf ("\" -accept=\"socket,host=localhost,port=%d;urp;\" %s-norestore %s",
+ priv->ooo_port,
+ dash,
+ g_strdup_printf ("%s%s",
+ dash,
+ priv->visible ? "-invisible" : "-headless")),
+ NULL);
#endif
+ pipa = popen (command, "r");
+ g_free (command);
+
g_string_append_printf (str,
"context = resolver.resolve(\"uno:socket,host=localhost,port=%d;urp;StarOffice.ComponentContext\")\n"
"desktop = context.ServiceManager.createInstanceWithContext(\"com.sun.star.frame.Desktop\", context)\n",
gchar *strtmp;
GError *error;
-
+
gchar *python_path;
gchar *model;
gchar *new_file;
gchar *new_file_pdf;
-
- GOptionEntry entries[] =
+ gchar *ooo_version;
+
+ GOptionEntry entries[] =
{
{ "python_path", 'y', 0, G_OPTION_ARG_STRING, &python_path, "Python path", NULL },
{ "model", 'm', 0, G_OPTION_ARG_STRING, &model, "OpenDocument model", NULL },
{ "new", 'n', 0, G_OPTION_ARG_STRING, &new_file, "Save as", NULL },
{ "new_pdf", 'p', 0, G_OPTION_ARG_STRING, &new_file_pdf, "Export to pdf", NULL },
+ { "ooo_version", 'v', 0, G_OPTION_ARG_STRING, &ooo_version, "*Office version", NULL },
{ NULL }
};
model = NULL;
new_file = NULL;
new_file_pdf = NULL;
-
+ ooo_version = NULL;
+
/* gestione degli argomenti della riga di comando */
context = g_option_context_new ("");
g_option_context_add_main_entries (context, entries, NULL);
g_error ("Unable to create SolipaOOO.");
}
+ if (ooo_version != NULL)
+ {
+ solipa_ooo_set_version (ooo, ooo_version);
+ }
+
str = g_string_new ("");
strtmp = solipa_ooo_pycmd_apri_documento (ooo, model);
strtmp = solipa_ooo_pycmd_chiudi_documento (ooo);
g_string_append (str, strtmp);
g_free (strtmp);
-
+
solipa_ooo_pycmd_exec_script (ooo, str->str);
g_message("%s", str->str);
g_string_free (str, TRUE);