123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394 |
- /*************************************************************************
- * Copyright (c) 2011 AT&T Intellectual Property
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * https://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors: Details at https://graphviz.org
- *************************************************************************/
- #include "builddate.h"
- #include "config.h"
- // windows.h for win machines
- #if defined(_WIN32) && !defined(__CYGWIN__)
- #include <windows.h>
- #include <windowsx.h>
- #endif
- #include "frmobjectui.h"
- #include "gltemplate.h"
- #include "gui.h"
- #include "gvprpipe.h"
- #include "menucallbacks.h"
- #include "support.h"
- #include "viewport.h"
- #include <glade/glade.h>
- #include <gtk/gtk.h>
- #include <gtk/gtkgl.h>
- #ifdef ENABLE_NLS
- #include "libintl.h"
- #endif
- #include "glexpose.h"
- #include "glutrender.h"
- #include <assert.h>
- #include <getopt.h>
- #include <stdbool.h>
- #include <stdint.h>
- #include <stdlib.h>
- #include <string.h>
- #include <util/alloc.h>
- #include <util/exit.h>
- #ifdef __APPLE__
- #include <mach-o/dyld.h>
- #endif
- #ifdef __FreeBSD__
- #include <sys/sysctl.h>
- #include <sys/types.h>
- #endif
- #if !defined(_WIN32)
- #include <unistd.h>
- #endif
- static char *smyrnaDir; /* path to directory containin smyrna data files */
- static char *smyrnaGlade;
- /* smyrnaPath:
- * Construct pathname for smyrna data file.
- * Base file name is given as suffix.
- * The function resolves the directory containing the data files,
- * and constructs a complete pathname.
- * The returned string is malloced, so the application should free
- * it later.
- * Returns NULL on error.
- */
- char *smyrnaPath(char *suffix) {
- static size_t baselen;
- #ifdef _WIN32
- char *pathSep = "\\";
- #else
- char *pathSep = "/";
- #endif
- assert(smyrnaDir);
- if (baselen == 0) {
- baselen = strlen(smyrnaDir) + 2;
- }
- size_t len = baselen + strlen(suffix);
- char *buf = gv_calloc(len, sizeof(char));
- snprintf(buf, len, "%s%s%s", smyrnaDir, pathSep, suffix);
- return buf;
- }
- static char *useString = "Usage: smyrna [-v?] <file>\n\
- -f<WxH:bits@rate> - full-screen mode\n\
- -e - draw edges as splines if available\n\
- -v - verbose\n\
- -? - print usage\n";
- static void usage(int v) {
- fputs(useString, stdout);
- graphviz_exit(v);
- }
- static char *Info[] = {
- "smyrna", /* Program */
- PACKAGE_VERSION, /* Version */
- BUILDDATE /* Build Date */
- };
- static char *parseArgs(int argc, char *argv[], ViewInfo *viewinfo) {
- int c;
- while ((c = getopt(argc, argv, ":eKf:txvV?")) != -1) {
- switch (c) {
- case 'e':
- viewinfo->drawSplines = 1;
- break;
- case 'v': // FIXME: deprecate and remove -v in future
- break;
- case 'f':
- viewinfo->guiMode = GUI_FULLSCREEN;
- viewinfo->optArg = optarg;
- break;
- case 'V':
- fprintf(stderr, "%s version %s (%s)\n", Info[0], Info[1], Info[2]);
- graphviz_exit(0);
- break;
- case '?':
- if (optopt == '\0' || optopt == '?')
- usage(0);
- else {
- fprintf(stderr, "smyrna: option -%c unrecognized\n", optopt);
- usage(1);
- }
- break;
- }
- }
- if (optind < argc)
- return argv[optind];
- else
- return NULL;
- }
- static void windowedMode(int argc, char *argv[]) {
- GdkGLConfig *glconfig;
- /*combo box to show loaded graphs */
- GtkComboBox *graphComboBox;
- gtk_set_locale();
- gtk_init(&argc, &argv);
- if (!(smyrnaGlade))
- smyrnaGlade = smyrnaPath("smyrna.glade");
- xml = glade_xml_new(smyrnaGlade, NULL, NULL);
- GtkWidget *gladewidget = glade_xml_get_widget(xml, "frmMain");
- gtk_widget_show(gladewidget);
- g_signal_connect(gladewidget, "destroy", G_CALLBACK(mQuitSlot), NULL);
- glade_xml_signal_autoconnect(xml);
- gtk_gl_init(0, 0);
- /* Configure OpenGL framebuffer. */
- glconfig = configure_gl();
- gladewidget = glade_xml_get_widget(xml, "hbox11");
- gtk_widget_hide(glade_xml_get_widget(xml, "vbox13"));
- gtk_window_set_deletable(
- (GtkWindow *)glade_xml_get_widget(xml, "dlgSettings"), 0);
- gtk_window_set_deletable((GtkWindow *)glade_xml_get_widget(xml, "frmTVNodes"),
- 0);
- create_window(glconfig, gladewidget);
- change_cursor(GDK_TOP_LEFT_ARROW);
- #ifndef _WIN32
- glutInit(&argc, argv);
- #endif
- gladewidget = glade_xml_get_widget(xml, "hbox13");
- graphComboBox = (GtkComboBox *)gtk_combo_box_new_text();
- gtk_box_pack_end((GtkBox *)gladewidget, (GtkWidget *)graphComboBox, 1, 1, 10);
- gtk_widget_show((GtkWidget *)graphComboBox);
- view->graphComboBox = graphComboBox;
- if (view->guiMode != GUI_FULLSCREEN)
- gtk_main();
- }
- #if !defined(__APPLE__) && !defined(_WIN32)
- /// `readlink`-alike but dynamically allocates
- static char *readln(const char *path) {
- char *resolved = NULL;
- size_t size = 0;
- while (true) {
- // expand target buffer
- resolved = gv_realloc(resolved, size, size == 0 ? 1024 : (size * 2));
- size = size == 0 ? 1024 : (size * 2);
- // attempt to resolve
- {
- ssize_t written = readlink(path, resolved, size);
- if (written < 0) {
- break;
- }
- if ((size_t)written < size) {
- // success
- resolved[written] = '\0';
- return resolved;
- }
- }
- }
- // failed
- free(resolved);
- return NULL;
- }
- #endif
- /// find an absolute path to the current executable
- static char *find_me(void) {
- // macOS
- #ifdef __APPLE__
- {
- // determine how many bytes we will need to allocate
- uint32_t buf_size = 0;
- int rc = _NSGetExecutablePath(NULL, &buf_size);
- assert(rc != 0);
- assert(buf_size > 0);
- char *path = gv_alloc(buf_size);
- // retrieve the actual path
- if (_NSGetExecutablePath(path, &buf_size) < 0) {
- fprintf(stderr, "failed to get path for executable.\n");
- graphviz_exit(EXIT_FAILURE);
- }
- // try to resolve any levels of symlinks if possible
- while (true) {
- char *buf = readln(path);
- if (buf == NULL)
- return path;
- free(path);
- path = buf;
- }
- }
- #elif defined(_WIN32)
- {
- char *path = NULL;
- size_t path_size = 0;
- int rc = 0;
- do {
- size_t size = path_size == 0 ? 1024 : (path_size * 2);
- path = gv_realloc(path, path_size, size);
- path_size = size;
- rc = GetModuleFileName(NULL, path, path_size);
- if (rc == 0) {
- fprintf(stderr, "failed to get path for executable.\n");
- graphviz_exit(EXIT_FAILURE);
- }
- } while (rc == path_size);
- return path;
- }
- #else
- // Linux
- char *path = readln("/proc/self/exe");
- if (path != NULL)
- return path;
- // DragonFly BSD, FreeBSD
- path = readln("/proc/curproc/file");
- if (path != NULL)
- return path;
- // NetBSD
- path = readln("/proc/curproc/exe");
- if (path != NULL)
- return path;
- // /proc-less FreeBSD
- #ifdef __FreeBSD__
- {
- int mib[] = {CTL_KERN, KERN_PROC, KERN_PROC_PATHNAME, -1};
- static const size_t MIB_LENGTH = sizeof(mib) / sizeof(mib[0]);
- do {
- // determine how long the path is
- size_t buf_size = 0;
- if (sysctl(mib, MIB_LENGTH, NULL, &buf_size, NULL, 0) < 0) {
- break;
- }
- assert(buf_size > 0);
- // make enough space for the target path
- char *buf = gv_alloc(buf_size);
- // resolve it
- if (sysctl(mib, MIB_LENGTH, buf, &buf_size, NULL, 0) == 0) {
- return buf;
- }
- free(buf);
- } while (0);
- }
- #endif
- #endif
- fprintf(stderr, "failed to get path for executable.\n");
- graphviz_exit(EXIT_FAILURE);
- }
- /// find an absolute path to where Smyrna auxiliary files are stored
- static char *find_share(void) {
- #ifdef _WIN32
- const char PATH_SEPARATOR = '\\';
- #else
- const char PATH_SEPARATOR = '/';
- #endif
- // find the path to the `smyrna` binary
- char *smyrna_exe = find_me();
- // assume it is of the form …/bin/smyrna[.exe] and construct
- // …/share/graphviz/smyrna
- char *slash = strrchr(smyrna_exe, PATH_SEPARATOR);
- if (slash == NULL) {
- fprintf(stderr, "no path separator in path to self, %s\n", smyrna_exe);
- free(smyrna_exe);
- graphviz_exit(EXIT_FAILURE);
- }
- *slash = '\0';
- slash = strrchr(smyrna_exe, PATH_SEPARATOR);
- if (slash == NULL) {
- fprintf(stderr, "no path separator in directory containing self, %s\n",
- smyrna_exe);
- free(smyrna_exe);
- graphviz_exit(EXIT_FAILURE);
- }
- *slash = '\0';
- size_t share_len = strlen(smyrna_exe) + strlen("/share/graphviz/smyrna") + 1;
- char *share = gv_alloc(share_len);
- snprintf(share, share_len, "%s%cshare%cgraphviz%csmyrna", smyrna_exe,
- PATH_SEPARATOR, PATH_SEPARATOR, PATH_SEPARATOR);
- free(smyrna_exe);
- return share;
- }
- int main(int argc, char *argv[]) {
- smyrnaDir = getenv("SMYRNA_PATH");
- if (!smyrnaDir) {
- smyrnaDir = find_share();
- }
- char *package_locale_dir;
- #ifdef G_OS_WIN32
- {
- char *package_prefix =
- g_win32_get_package_installation_directory(NULL, NULL);
- package_locale_dir =
- g_build_filename(package_prefix, "share", "locale", NULL);
- g_free(package_prefix);
- }
- #else
- package_locale_dir = g_build_filename(smyrnaDir, "locale", NULL);
- #endif /* # */
- #ifdef ENABLE_NLS
- bindtextdomain(GETTEXT_PACKAGE, package_locale_dir);
- bind_textdomain_codeset(GETTEXT_PACKAGE, "UTF-8");
- textdomain(GETTEXT_PACKAGE);
- #endif
- view = gv_alloc(sizeof(ViewInfo));
- init_viewport(view);
- view->initFileName = parseArgs(argc, argv, view);
- if (view->initFileName)
- view->initFile = 1;
- if (view->guiMode == GUI_FULLSCREEN)
- cb_glutinit(800, 600, &argc, argv, view->optArg);
- else
- windowedMode(argc, argv);
- g_free(package_locale_dir);
- graphviz_exit(0);
- }
- /**
- * @dir .
- * @brief interactive graph viewer
- */
|