1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
|
/*********************************************************
* Copyright (C) 2008 VMware, Inc. All rights reserved.
*
* This program 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 version 2.1 and no later version.
*
* This program 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 Lesser GNU General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
*********************************************************/
/*
* toolboxInt.c --
*
* Internal, shared functions for the GTK toolbox.
*/
#include <errno.h>
#include <glib.h>
#include <glib/gprintf.h>
#include <glib/gstdio.h>
#include "conf.h"
#include "debug.h"
#include "guestApp.h"
#include "util.h"
#include "vmtools.h"
/*
*-----------------------------------------------------------------------------
*
* Toolbox_GetScriptPath --
*
* Returns the absolute path to the given script. Relative paths
* given as input to this function are considered to be relative
* to the Tools "install" path.
*
* Results:
* The absolute path of the script.
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
#if defined(_WIN32)
gchar *
Toolbox_GetScriptPath(const wchar_t *scriptUtf16) // IN
#else
gchar *
Toolbox_GetScriptPath(const gchar *script) // IN
#endif
{
gchar *ret;
#if defined(_WIN32)
gchar *script;
GError *err = NULL;
script = g_utf16_to_utf8(scriptUtf16, -1, NULL, NULL, &err);
if (err != NULL) {
g_error("Error converting to UTF8: %s\n", err->message);
}
#endif
if (!g_path_is_absolute(script)) {
char *toolsPath = GuestApp_GetInstallPath();
ASSERT_MEM_ALLOC(toolsPath);
ret = g_strdup_printf("%s%c%s", toolsPath, DIRSEPC, script);
free(toolsPath);
} else {
ret = g_strdup(script);
}
#if defined(_WIN32)
g_free(script);
#endif
return ret;
}
/*
*-----------------------------------------------------------------------------
*
* Toolbox_LoadToolsConf --
*
* Load the Tools configuration file from the default location.
*
* XXX: This function is temporary until the GTK toolbox is refactored
* to be able to use vmtoolslib.
*
* Results:
* The config object. If loading the data fails, returns an empty conf object.
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
GKeyFile *
Toolbox_LoadToolsConf(void)
{
gchar *path = VMTools_GetToolsConfFile();
GKeyFile *config;
config = VMTools_LoadConfig(path,
G_KEY_FILE_KEEP_COMMENTS | G_KEY_FILE_KEEP_TRANSLATIONS,
TRUE);
if (config == NULL) {
Debug("Unable to load config file.\n");
config = g_key_file_new();
}
g_free(path);
return config;
}
/*
*-----------------------------------------------------------------------------
*
* Toolbox_SaveToolsConf --
*
* Saves the given config data to the default tools config file location.
*
* XXX: This function is temporary until the GTK toolbox is refactored
* to be able to use vmtoolslib.
*
* Results:
* Whether saving was successful.
*
* Side effects:
* None.
*
*-----------------------------------------------------------------------------
*/
gboolean
Toolbox_SaveToolsConf(GKeyFile *config) // IN
{
gboolean ret = FALSE;
gchar *path = NULL;
GError *err = NULL;
path = VMTools_GetToolsConfFile();
ret = VMTools_WriteConfig(path, config, &err);
if (!ret) {
Warning("Error saving conf data: %s\n", err->message);
g_clear_error(&err);
}
g_free(path);
return ret;
}
|