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 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
|
/*
* browser.c - unix interface to web browser
*
* Copyright (C) 2000 Stephen F. White, 2003 J. "MUFTI" Scheurich
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any 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
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (see the file "COPYING" for details); if
* not, write to the Free Software Foundation, Inc., 675 Mass Ave,
* Cambridge, MA 02139, USA.
*/
#ifdef __sun
# define BSD_COMP
#endif
#include <fcntl.h>
#include <X11/Intrinsic.h>
#include <stdlib.h>
#include <stdio.h>
#include <signal.h>
#include <unistd.h>
#include <errno.h>
#include <sys/wait.h>
#include "config.h"
#ifdef HAS_MLOCK
# include <sys/mman.h>
#endif
#include "swt.h"
#include "mysnprintf.h"
#include "WriteFlags.h"
typedef struct SBrowser {
STABLE prefs;
char *command;
int vrmlLevel;
int useFork;
int useRemote;
char *remoteCommand;
pid_t pid;
} SBrowser;
extern XtAppContext TheAppContext;
static int console = 2;
static int browserLaunch(SBROWSER browser, const char *path, SWND wnd);
static int browserRemote(SBROWSER browser, const char *path);
static void childInput(XtPointer closure , int *source, XtInputId *id);
static int waitForProcess(pid_t pid);
static pid_t createProcess(const char *cmdline, SWND wnd);
static pid_t createSimpleProcess(const char *cmdline);
static int errorToConsole = 1;
/*******************/
/* browser preview */
/*******************/
SBROWSER
swBrowserInit(STABLE prefs)
{
SBrowser *browser = malloc(sizeof(SBrowser));
browser->prefs = prefs;
browser->command = mystrdup(swGetPreference(prefs, "PreviewCommand",
VRML_BROWSER));
browser->useFork = swGetIntPreference(prefs, "PreviewUseFork", FALSE);
browser->vrmlLevel = swGetIntPreference(prefs, "PreviewVrmlLevel", PURE_VRML97);
browser->useRemote = swGetIntPreference(prefs, "PreviewUseRemote", FALSE);
browser->remoteCommand = mystrdup(swGetPreference(prefs,
"PreviewRemoteCommand",
VRML_REMOTE_BROWSER));
browser->pid = 0;
errorToConsole = swGetIntPreference(prefs, "PreviewErrorToConsole", FALSE);
console = open("/dev/console", O_WRONLY | O_NONBLOCK);
if (console == -1)
console = 2;
return browser;
}
int
swBrowserGetVrmlLevel(SBROWSER browser)
{
return browser->vrmlLevel;
}
int
swBrowserGetUseFork(SBROWSER browser)
{
return browser->useFork;
}
void
swBrowserGetSettings(SBROWSER browser, const char **command,
int* vrmlLevel, int *useRemote, int *useFork,
const char **remoteCommand, const char **application,
const char **topic)
{
*command = browser->command;
*vrmlLevel = browser->vrmlLevel;
*useRemote = browser->useRemote;
*useFork = browser->useFork;
*remoteCommand = browser->remoteCommand;
*application = NULL;
*topic = NULL;
}
void
swBrowserSetSettings(SBROWSER browser, const char *command,
int vrmlLevel, int useRemote, int useFork,
const char *remoteCommand, const char *application,
const char *topic)
{
free(browser->command);
free(browser->remoteCommand);
browser->command = mystrdup(command);
browser->vrmlLevel = vrmlLevel;
browser->useRemote = useRemote;
browser->useFork = useFork;
browser->remoteCommand = mystrdup(remoteCommand);
swSetPreference(browser->prefs, "PreviewCommand", browser->command);
swSetIntPreference(browser->prefs, "PreviewUseRemote", browser->useRemote);
swSetIntPreference(browser->prefs, "PreviewVrmlLevel", browser->vrmlLevel);
swSetIntPreference(browser->prefs, "PreviewUseFork", browser->useFork);
swSetPreference(browser->prefs, "PreviewRemoteCommand", browser->remoteCommand);
}
int swBrowserGetSettingsErrorToConsole(SBROWSER browser)
{
return errorToConsole;
}
void swBrowserSetSettingsErrorToConsole(SBROWSER browser, int toConsole)
{
errorToConsole = toConsole;
swSetIntPreference(browser->prefs, "PreviewErrorToConsole", errorToConsole);
}
void
swBrowserSetDefault(SBROWSER browser)
{
browser->command = mystrdup(VRML_BROWSER);
#ifdef VRML_REMOTE
browser->useRemote = TRUE;
#else
browser->useRemote = FALSE;
#endif
browser->vrmlLevel = TRUE;
browser->useFork = TRUE;
browser->remoteCommand = mystrdup(VRML_REMOTE_BROWSER);
browser->pid = 0;
}
void
swBrowserPreview(SBROWSER browser, const char *path, SWND wnd)
{
if (browser->useRemote) {
if (!browserRemote(browser, path)) {
browserLaunch(browser, path, wnd);
}
} else {
browserLaunch(browser, path, wnd);
}
}
void
swBrowserShutdown(SBROWSER browser)
{
if (!browser) return;
if (browser->pid != 0) {
kill(browser->pid, SIGTERM);
waitForProcess(browser->pid);
}
free(browser->command);
free(browser->remoteCommand);
free(browser);
}
static int
browserLaunch(SBROWSER browser, const char *path, SWND wnd)
{
char arg[1024];
mysnprintf(arg, 1023, browser->command, path);
if (browser->useFork) {
browser->pid = createProcess(arg, wnd);
if (browser->pid != 0)
return TRUE;
else
return FALSE;
} else
return system(arg);
}
static int
browserRemote(SBROWSER browser, const char *path)
{
char url[1024];
char arg[1024];
pid_t pid;
mysnprintf(url, 1023, "file://%s", path);
mysnprintf(arg, 1023, browser->remoteCommand, url);
pid = createSimpleProcess(arg);
return waitForProcess(pid);
}
static pid_t
createProcess(const char *cmdline, SWND wnd)
{
pid_t pid;
int fd[2];
const char *argv[4];
if (!cmdline || !wnd) return 0;
argv[0] = "sh";
argv[1] = "-c";
argv[2] = cmdline;
argv[3] = NULL;
if (pipe(fd) != 0) return 0;
pid = fork();
switch(pid) {
case -1:
/* error */
close(fd[0]);
close(fd[1]);
return 0;
case 0:
/* child process */
if (fd[1] != STDERR_FILENO) {
dup2(fd[1], STDERR_FILENO); /* pipe output is now stderr */
close(fd[1]); /* close old pipe fds */
}
close(fd[0]);
execv("/bin/sh", (char * const *) argv);
swCleanup();
exit(1); /* if we get this far, it's an error */
default:
/* parent process */
/* add fd[0] to list of inputs, so we can watch the shell's output */
XtAppAddInput(TheAppContext, fd[0], (XtPointer) XtInputReadMask,
childInput, (XtPointer) wnd);
/* close(fd[1]); */
break;
}
return pid;
}
static pid_t
createSimpleProcess(const char *cmdline)
{
pid_t pid;
const char *argv[4];
if (!cmdline) return 0;
argv[0] = "sh";
argv[1] = "-c";
argv[2] = cmdline;
argv[3] = NULL;
pid = fork();
switch(pid) {
case -1:
/* error */
return 0;
case 0:
/* child process */
execv("/bin/sh", (char * const *) argv);
swCleanup();
exit(1); /* if we get this far, it's an error */
default:
/* parent process */
break;
}
return pid;
}
static void
childInput(XtPointer closure , int *source, XtInputId *id)
{
char buf[1024];
int bytes;
bytes = read(*source, buf, 1023);
buf[bytes] = '\0';
if (errorToConsole)
mywritestr(console, buf);
else
swMessageBox((SWND) closure, buf, "Preview", SW_MB_OK, SW_MB_WARNING);
}
static int
waitForProcess(pid_t pid)
{
int status;
for (;;) {
if (waitpid(pid, &status, 0) == -1) {
if (errno != EINTR)
return 0;
} else {
return WIFEXITED(status) && WEXITSTATUS(status) == 0;
}
}
}
void swRemoveFile(const char* filename)
{
unlink(filename);
}
/*****************/
/* help browser */
/*****************/
typedef struct SHelpBrowser {
STABLE prefs;
char *helpCommand;
char *helpUrl;
char *vrmlUrl;
char *x3dUrl;
pid_t pid;
} SHelpBrowser;
int helpBrowserRemote(SHBROWSER browser, const char *path, SWND wnd);
SHBROWSER
swHelpBrowserInit(STABLE prefs)
{
char *dunedocs = NULL;
SHelpBrowser *browser = malloc(sizeof(SHelpBrowser));
browser->prefs = prefs;
browser->helpCommand = mystrdup(swGetPreference(prefs,"HelpCommand",
WWW_BROWSER));
dunedocs = getenv("DUNEDOCS");
if (dunedocs != NULL) {
char *url;
url = (char *) malloc(strlen(dunedocs) + /* strlen(html) */ + 1);
strcpy(url, dunedocs);
browser->helpUrl = mystrdup(swGetPreference(prefs, "HelpURL", url));
free(url);
} else
browser->helpUrl = mystrdup(swGetPreference(prefs, "HelpURL",
HELP_URL));
browser->vrmlUrl = mystrdup(swGetPreference(prefs, "HelpVrml",
VRML_NODES_URL));
browser->x3dUrl = mystrdup(swGetPreference(prefs, "HelpX3D",
X3D_URL));
browser->pid = 0;
return browser;
}
void
swHelpBrowserSetDefaults(SHBROWSER browser)
{
char *dunedocs = NULL;
browser->helpCommand = mystrdup(WWW_BROWSER);
dunedocs = getenv("DUNEDOCS");
if (dunedocs != NULL) {
char *url;
url = (char *) malloc(strlen(dunedocs) + /* strlen(html) */ + 1);
strcpy(url, dunedocs);
browser->helpUrl = mystrdup(url);
free(url);
} else
browser->helpUrl = mystrdup(HELP_URL);
browser->vrmlUrl = mystrdup(VRML_NODES_URL);
browser->x3dUrl = mystrdup(X3D_URL);
browser->pid = 0;
}
void
swHelpBrowserGetSettings(SHBROWSER browser,
const char **helpCommand,
const char **helpRemoteCommand,
const char **helpUrl,
const char **vrmlUrl, const char **x3dUrl,
const char **application, const char **topic)
{
*helpCommand = browser->helpCommand;
*helpUrl = browser->helpUrl;
*vrmlUrl = browser->vrmlUrl;
*x3dUrl = browser->x3dUrl;
*application = NULL;
*topic = NULL;
}
void
swHelpBrowserSetSettings(SHBROWSER browser,
const char *helpCommand,
const char *helpRemoteCommand,
const char *helpUrl,
const char *vrmlUrl, const char *x3dUrl,
const char *application, const char *topic)
{
free(browser->helpCommand);
browser->helpCommand = mystrdup(helpCommand);
free(browser->helpUrl);
browser->helpUrl = mystrdup(helpUrl);
free(browser->vrmlUrl);
browser->vrmlUrl = mystrdup(vrmlUrl);
free(browser->x3dUrl);
browser->x3dUrl = mystrdup(vrmlUrl);
swSetPreference(browser->prefs, "HelpCommand", browser->helpCommand);
swSetPreference(browser->prefs, "HelpURL", browser->helpUrl);
swSetPreference(browser->prefs, "HelpVrml", browser->vrmlUrl);
swSetPreference(browser->prefs, "HelpX3d", browser->x3dUrl);
}
void
swHelpBrowserHTML(SHBROWSER browser, SWND wnd)
{
char* path=browser->helpUrl;
helpBrowserRemote(browser, path, wnd);
}
char *swGetHelpUrl(SHBROWSER browser)
{
return browser->helpUrl;
}
void
swHelpBrowserPath(SHBROWSER browser, const char *path, SWND wnd)
{
helpBrowserRemote(browser, path, wnd);
}
void
swHelpBrowserVRML(SHBROWSER browser, const char* selection_string,
int isCover, SWND wnd)
{
int pathLen=strlen(browser->vrmlUrl);
const char *coverFile="/coverNodes/nodesRef.html";
char* path;
if (isCover)
pathLen=strlen(browser->helpUrl)+strlen(coverFile)+1;
path=malloc(pathLen+strlen(selection_string)+2);
if (isCover) {
strcpy(path, browser->helpUrl);
strcat(path, coverFile);
} else
strcpy(path,browser->vrmlUrl);
strcat(path,"#");
strcat(path,selection_string);
helpBrowserRemote(browser, path , wnd);
free(path);
}
void
swHelpBrowserX3d(SHBROWSER browser, const char* string, SWND wnd)
{
int pathLen=strlen(browser->x3dUrl);
char *path=malloc(pathLen+strlen(string)+2);
strcpy(path,browser->x3dUrl);
strcat(path,string);
helpBrowserRemote(browser, path , wnd);
free(path);
}
void
swHelpBrowserShutdown(SHBROWSER browser)
{
if (!browser) return;
if (browser->pid != 0) {
kill(browser->pid, SIGTERM);
waitForProcess(browser->pid);
}
free(browser->helpCommand);
free(browser->helpUrl);
free(browser->vrmlUrl);
free(browser->x3dUrl);
free(browser);
}
int
helpBrowserRemote(SHBROWSER browser, const char *path, SWND wnd)
{
char url[1024];
char arg[1024];
char command[1024];
pid_t pid;
int i;
if (path[0] == '/')
mysnprintf(url, 1023, "file://%s", path);
else
mysnprintf(url, 1023, path);
mysnprintf(arg, 1023, browser->helpCommand, url);
pid = createSimpleProcess(arg);
/* if failed, search first string (till blank) as command */
if (waitForProcess(pid)==0) {
for (i=0;(i<strlen(browser->helpCommand)) && (i<1024-3);i++) {
command[i]=browser->helpCommand[i];
if ((browser->helpCommand[i] !=' ') &&
(browser->helpCommand[i+1]==' ')) {
i++;
break;
}
}
command[i]=0;
strcat(command," %s");
mysnprintf(arg, 1024, command, path);
browser->pid = createProcess(arg, wnd);
}
if (browser->pid != 0) {
return TRUE;
} else {
return FALSE;
}
}
/****************/
/* text editor */
/**************/
static int fdpipe_message[2];
static int fdpipe_close[2];
int
swCheckRunningProcess(void)
{
char message[2] = { 'l' , '\0' };
/* check if there is something in the pipe (process ended) */
int byteFromPipe = 0;
if (read(fdpipe_message[0],message,1) == 1)
byteFromPipe = 1;
if (byteFromPipe) {
write(fdpipe_close[1], message, 1);
/*
send notification to other process
(otherwise data possibly would die with close of pipe)
*/
close(fdpipe_close[1]);
close(fdpipe_message[0]);
}
return !byteFromPipe;
}
int
swCreateCheckableProcess(const char *cmdline)
{
char message[2] = { 'l' , '\0' };
pid_t pid;
if (pipe(fdpipe_message) != 0) return -1;
if (pipe(fdpipe_close) != 0) {
close(fdpipe_message[0]);
close(fdpipe_message[1]);
return -1;
}
/* switch to non blocking io for pipe of first message */
fcntl(fdpipe_message[0],F_SETFL,O_NONBLOCK);
fcntl(fdpipe_message[1],F_SETFL,O_NONBLOCK);
pid = fork();
switch(pid) {
case -1:
/* error */
close(fdpipe_message[0]);
close(fdpipe_message[1]);
close(fdpipe_close[0]);
close(fdpipe_close[1]);
return -1;
case 0:
/* child process */
close(fdpipe_message[0]);
close(fdpipe_close[1]);
system(cmdline);
/* send message to pipe */
write(fdpipe_message[1],message,1);
/* wait for notification */
read(fdpipe_close[0],message,1);
close(fdpipe_message[1]);
close(fdpipe_close[0]);
#ifdef EXIT_HANDLER
_exit(0);
#else
exit(0);
#endif
default:
/* parent process */
close(fdpipe_message[1]);
close(fdpipe_close[0]);
break;
}
return 0;
}
typedef struct STextedit {
STABLE prefs;
char *textEditCommand;
char *textEditLinenumberOption;
int textEditUseExtensionTxt;
char *imageEditCommand;
char *imageEdit4KidsCommand;
char *soundEditCommand;
char *movieEditCommand;
} STextedit;
STEXTEDIT
swTextEditInit(STABLE prefs)
{
STextedit *textEdit = malloc(sizeof(STextedit));
textEdit->prefs = prefs;
if (getenv("WINEDITOR") != NULL) {
textEdit->textEditCommand = mystrdup(swGetPreference(
prefs, "TextEditCommand", getenv("WINEDITOR")));
textEdit->textEditLinenumberOption = mystrdup(swGetPreference(
prefs, "TextEditLinenumberOption", "+"));
} else if (getenv("EDITOR") != NULL) {
const char *xterm = "xterm -e ";
char *editor;
char *command;
editor = getenv("EDITOR");
command = (char *) malloc(strlen(xterm) + strlen(editor) + 1);
strcpy(command, xterm);
strcat(command, editor);
textEdit->textEditCommand = mystrdup(swGetPreference(
prefs, "TextEditCommand", command));
textEdit->textEditLinenumberOption = mystrdup(swGetPreference(
prefs, "TextEditLinenumberOption", "+"));
} else {
#ifndef MACOSX
textEdit->textEditCommand = mystrdup(swGetPreference(
prefs, "TextEditCommand", "xterm -e vi"));
textEdit->textEditLinenumberOption = mystrdup(swGetPreference(
prefs, "TextEditLinenumberOption", "+"));
#else
/*
typical MacOS X users would die if they should use vi,
but the normal MacOS X textEditor:
"/usr/bin/open /Applications/TextEdit.app"
is useless here, cause it can not wait for the completion of editing
*/
textEdit->textEditCommand = mystrdup(swGetPreference(
prefs, "TextEditCommand", "/usr/X11R6/bin/xedit"));
textEdit->textEditLinenumberOption = mystrdup(swGetPreference(
prefs, "TextEditLinenumberOption", ""));
#endif
}
textEdit->textEditUseExtensionTxt = swGetIntPreference(
prefs, "TextEditUseExtensionTxt", 1);
textEdit->imageEditCommand = mystrdup(swGetPreference(
prefs, "ImageEditCommand", HAVE_IMAGE_EDITOR));
textEdit->imageEdit4KidsCommand = mystrdup(swGetPreference(
prefs, "ImageEdit4KidsCommand", HAVE_IMAGE_EDITOR4KIDS));
textEdit->soundEditCommand = mystrdup(swGetPreference(
prefs, "SoundEditCommand", HAVE_SOUND_EDITOR));
textEdit->movieEditCommand = mystrdup(swGetPreference(
prefs, "MovieEditCommand", HAVE_MOVIE_EDITOR));
return textEdit;
}
void swTextEditGetSettingsUseExtensionTxt(STEXTEDIT textEdit,
int *textEditUseExtensionTxt)
{
*textEditUseExtensionTxt = textEdit->textEditUseExtensionTxt;
}
void
swTextEditGetSettings(STEXTEDIT textEdit,
const char **textEditCommand,
const char **textEditLinenumberOption,
int *textEditUseExtensionTxt)
{
*textEditCommand = textEdit->textEditCommand;
*textEditLinenumberOption = textEdit->textEditLinenumberOption;
*textEditUseExtensionTxt = textEdit->textEditUseExtensionTxt;
}
char *swTextEditGetCommand(STEXTEDIT textEdit)
{
return textEdit->textEditCommand;
}
char *swImageEditGetSettings(STEXTEDIT textEdit)
{
return textEdit->imageEditCommand;
}
char *swImageEdit4KidsGetSettings(STEXTEDIT textEdit)
{
return textEdit->imageEdit4KidsCommand;
}
char *swSoundEditGetSettings(STEXTEDIT textEdit)
{
return textEdit->soundEditCommand;
}
char *swMovieEditGetSettings(STEXTEDIT textEdit)
{
return textEdit->movieEditCommand;
}
void
swTextEditSetSettings(STEXTEDIT textEdit,
const char *textEditCommand,
const char *textEditLinenumberOption,
int textEditUseExtensionTxt)
{
free(textEdit->textEditCommand);
textEdit->textEditCommand = mystrdup(textEditCommand);
free(textEdit->textEditLinenumberOption);
textEdit->textEditLinenumberOption = mystrdup(textEditLinenumberOption);
textEdit->textEditUseExtensionTxt = textEditUseExtensionTxt;
swSetPreference(textEdit->prefs, "TextEditCommand",
textEdit->textEditCommand);
swSetPreference(textEdit->prefs, "TextEditLinenumberOption",
textEdit->textEditLinenumberOption);
swSetIntPreference(textEdit->prefs, "TextEditUseExtensionTxt",
textEdit->textEditUseExtensionTxt);
}
void
swImageEditSetSettings(STEXTEDIT textEdit,
const char *imageEditCommand)
{
free(textEdit->imageEditCommand);
textEdit->imageEditCommand = mystrdup(imageEditCommand);
swSetPreference(textEdit->prefs, "ImageEditCommand",
textEdit->imageEditCommand);
}
void
swImageEdit4KidsSetSettings(STEXTEDIT textEdit,
const char *imageEditCommand)
{
free(textEdit->imageEdit4KidsCommand);
textEdit->imageEdit4KidsCommand = mystrdup(imageEditCommand);
swSetPreference(textEdit->prefs, "ImageEdit4KidsCommand",
textEdit->imageEdit4KidsCommand);
}
void
swSoundEditSetSettings(STEXTEDIT textEdit,
const char *soundEditCommand)
{
free(textEdit->soundEditCommand);
textEdit->soundEditCommand = mystrdup(soundEditCommand);
swSetPreference(textEdit->prefs, "SoundEditCommand",
textEdit->soundEditCommand);
}
void
swMovieEditSetSettings(STEXTEDIT textEdit,
const char *movieEditCommand)
{
free(textEdit->movieEditCommand);
textEdit->movieEditCommand = mystrdup(movieEditCommand);
swSetPreference(textEdit->prefs, "MovieEditCommand",
textEdit->movieEditCommand);
}
/**********/
/* upload */
/**********/
typedef struct SUpload {
STABLE prefs;
char *commandline;
char *htmlTag;
char *password;
} SUpload;
SUPLOAD
swUploadInit(STABLE prefs)
{
SUpload *upload = malloc(sizeof(SUpload));
upload->prefs = prefs;
upload->commandline = mystrdup(swGetPreference(prefs, "UploadCommandLine",
""));
upload->htmlTag = mystrdup(swGetPreference(prefs, "UploadHtmlTags",
""));
/* do not read/store password for security reasons */
upload->password = malloc(1024);
upload->password[0] = 0;
#ifdef HAS_MLOCK
mlock(upload->password, 1024);
#endif
return upload;
}
void
swUploadGetSettings(SUPLOAD upload,
const char **commandline,
const char **htmlTag,
const char **password)
{
*commandline = upload->commandline;
*htmlTag = upload->htmlTag;
*password = upload->password;
}
void
swUploadSetSettings(SUPLOAD upload,
const char *commandline,
const char *htmlTag,
const char *password)
{
free(upload->commandline);
free(upload->htmlTag);
upload->commandline = mystrdup(commandline);
upload->htmlTag = mystrdup(htmlTag);
if (password != NULL)
mystrncpy_secure(upload->password, password, 1023);
else
upload->password[0] = 0;
swSetPreference(upload->prefs, "UploadCommandLine", upload->commandline);
swSetPreference(upload->prefs, "UploadHtmlTags", upload->htmlTag);
/* do not read/store password for security reasons */
}
int
swHasUpload(SUPLOAD upload)
{
if (strlen(upload->commandline) > 0)
return 1;
else
return 0;
}
char*
swUpload(SUPLOAD upload, char *fileToUpload, SHBROWSER browser, SWND wnd)
{
static char uploadCommand[1024];
FILE *cmd;
int f = -1;
int i;
int needPassword = 0;
static char htmlTags[1024];
char *htmlpath = (char *) malloc(1024);
htmlpath[0] = 0;
if ((upload->password != NULL) && (strlen(upload->password) != 0))
if (strstr(upload->commandline, "%s") != NULL)
if (strstr(strstr(upload->commandline, "%s") + 2, "%s") != NULL)
needPassword = 1; /* if commandline has two %s */
#ifdef HAS_MLOCK
mlock(uploadCommand, 1024);
#endif
if (needPassword)
mysnprintf(uploadCommand, 1023, upload->commandline, upload->password,
fileToUpload);
else
mysnprintf(uploadCommand, 1023, upload->commandline, fileToUpload, "");
if ((cmd = popen(uploadCommand, "w")) != NULL) {
if ((upload->password != NULL) && (strlen(upload->password) != 0))
fputs(upload->password, cmd);
if (pclose(cmd) != 0) {
swMessageBox(wnd, "upload failed", "Upload failed",
SW_MB_OK, SW_MB_WARNING);
htmlpath[0] = 0;
return htmlpath;
}
}
swGetTempPath(htmlpath, ".dune_upload_reload", ".html", 1024);
f = open(htmlpath, O_WRONLY | O_CREAT, 00666);
if (f == -1) {
swMessageBox(wnd, "open of html file failed", "Upload reload error",
SW_MB_OK, SW_MB_WARNING);
htmlpath[0] = 0;
return htmlpath;
}
if ((upload->password != NULL) && (strlen(upload->password) != 0))
mysnprintf(htmlTags, 1023, upload->htmlTag, upload->password);
else
mysnprintf(htmlTags, 1023, upload->htmlTag, "");
if (write(f, htmlTags, sizeof(htmlTags)) != sizeof(htmlTags)) {
swMessageBox(wnd, "open of html file failed", "Upload reload error",
SW_MB_OK, SW_MB_WARNING);
return htmlpath;
}
close(f);
helpBrowserRemote(browser, htmlpath, wnd);
for (i = 0; i < 1024; i++)
uploadCommand[i] = (char) 0;
#ifdef HAS_MLOCK
munlock(uploadCommand, 1024);
#endif
return htmlpath;
}
void
swUploadCleanupPasswd(SUPLOAD upload)
{
int i;
for (i = 0; i < strlen(upload->password); i++)
upload->password[i] = (char) 0;
#ifdef HAS_MLOCK
munlock(upload->password, 1024);
#endif
}
|