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 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234
|
/* Copyright (C) 2001-2008 Artifex Software, Inc.
All Rights Reserved.
This software is provided AS-IS with no warranty, either express or
implied.
This software is distributed under license and may not be copied, modified
or distributed except as expressly authorized under the terms of that
license. Refer to licensing information at http://www.artifex.com/
or contact Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134,
San Rafael, CA 94903, U.S.A., +1(415)492-9861, for further information.
*/
// $Id: dwsetup.cpp 9404 2009-01-27 00:18:29Z giles $
//
//
// This is the setup program for Win32 GPL Ghostscript
//
// The starting point is a self extracting zip archive
// with the following contents:
// setupgs.exe
// uninstgs.exe
// filelist.txt (contains list of program files)
// gs#.##\* (files listed in filelist.txt)
// This is the same as the zip file created by Aladdin Enterprises,
// with the addition of setupgs.exe, uninstgs.exe, and filelist.txt
//
// The first line of the file filelist.txt
// contains the uninstall name to be used.
// The second line contains name of the main directory where
// uninstall log files are to be placed.
// Subsequent lines contain files to be copied (but not directories).
// For example, filelist.txt might contain:
// GPL Ghostscript 8.55
// gs8.55
// gs8.55\bin\gsdll32.dll
// gs8.55\lib\gs_init.ps
//
// The default install directory is c:\gs.
// The default Start Menu Folder is Ghostscript.
// These are set in the resources.
// The setup program will create the following uninstall log files
// c:\gs\gs#.##\uninstal.txt
// The uninstall program (accessed through control panel) will not
// remove directories nor will it remove itself.
//
// If the install directory is the same as the current file
// location, no files will be copied, but the existence of each file
// will be checked. This allows the archive to be unzipped, then
// configured in its current location. Running the uninstall will not
// remove uninstgs.exe, setupgs.exe, or filelist.txt.
#define STRICT
#include <windows.h>
#include <shellapi.h>
#include <objbase.h>
#include <shlobj.h>
#include <stdio.h>
#include <direct.h>
#ifdef MAX_PATH
#define MAXSTR MAX_PATH
#else
#define MAXSTR 256
#endif
#include "dwsetup.h"
#include "dwinst.h"
extern "C" {
typedef HRESULT (WINAPI *PFN_SHGetFolderPath)(
HWND hwndOwner,
int nFolder,
HANDLE hToken,
DWORD dwFlags,
LPSTR pszPath);
typedef BOOL (WINAPI *PFN_SHGetSpecialFolderPath)(
HWND hwndOwner,
LPTSTR lpszPath,
int nFolder,
BOOL fCreate);
}
//#define DEBUG
#define UNINSTALLPROG "uninstgs.exe"
/////////////////////////////////
// Globals
CInstall cinst;
// TRUE = Place Start Menu items in All Users.
// FALSE = Current User
BOOL g_bUseCommon;
// TRUE = Destination is the same as Source, so don't copy files.
BOOL g_bNoCopy;
// Source directory, usually a temporary directory created by
// unzip self extractor.
CHAR g_szSourceDir[MAXSTR];
// Target directory for program.
// Default loaded from resources
CHAR g_szTargetDir[MAXSTR];
// Target Group for shortcut.
// Default loaded from resources
CHAR g_szTargetGroup[MAXSTR];
// Setup application name, loaded from resources
CHAR g_szAppName[MAXSTR];
BOOL g_bCJKFonts = FALSE;
BOOL g_bAllUsers = FALSE;
HWND g_hMain; // Main install dialog
HWND g_hWndText; // Install log dialog
HINSTANCE g_hInstance;
// If a directory is listed on the command line, g_bBatch will
// be TRUE and a silent install will occur.
BOOL g_bBatch = FALSE;
BOOL g_bQuit = FALSE; // TRUE = Get out of message loop.
BOOL g_bError = FALSE; // TRUE = Install was not successful
BOOL is_winnt = FALSE; // Disable "All Users" if not NT.
#ifdef _WIN64
#define DLGRETURN INT_PTR
#else
#define DLGRETURN BOOL
#endif
// Prototypes
DLGRETURN CALLBACK MainDlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam);
void gs_addmess_count(const char *str, int count);
void gs_addmess(const char *str);
void gs_addmess_update(void);
BOOL init();
BOOL install_all();
BOOL install_prog();
BOOL make_filelist(int argc, char *argv[]);
int get_font_path(char *path, unsigned int pathlen);
BOOL write_cidfmap(const char *gspath, const char *cidpath);
BOOL GetProgramFiles(LPTSTR path);
//////////////////////////////////////////////////////////////////////
// Entry point
//////////////////////////////////////////////////////////////////////
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
MSG msg;
g_hInstance = hInstance;
if (!init()) {
MessageBox(HWND_DESKTOP, "Initialisation failed",
g_szAppName, MB_OK);
return 1;
}
if (!g_bBatch) {
while (GetMessage(&msg, (HWND)NULL, 0, 0)) {
if (!IsDialogMessage(g_hWndText, &msg) &&
!IsDialogMessage(g_hMain, &msg)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
DestroyWindow(g_hMain);
}
return (g_bError ? 1 : 0);
}
//////////////////////////////////////////////////////////////////////
// Text log window
//////////////////////////////////////////////////////////////////////
#define TWLENGTH 32768
#define TWSCROLL 1024
char twbuf[TWLENGTH];
int twend;
// Modeless Dialog Box
DLGRETURN CALLBACK
TextWinDlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message) {
case WM_INITDIALOG:
EnableWindow(g_hMain, FALSE);
return TRUE;
case WM_COMMAND:
switch(LOWORD(wParam)) {
case IDC_TEXTWIN_COPY:
{HGLOBAL hglobal;
LPSTR p;
DWORD result;
int start, end;
result = SendDlgItemMessage(hwnd, IDC_TEXTWIN_MLE, EM_GETSEL, (WPARAM)0, (LPARAM)0);
start = LOWORD(result);
end = HIWORD(result);
if (start == end) {
start = 0;
end = twend;
}
hglobal = GlobalAlloc(GHND | GMEM_SHARE, end-start+1);
if (hglobal == (HGLOBAL)NULL) {
MessageBeep(-1);
return(FALSE);
}
p = (char *)GlobalLock(hglobal);
if (p == (LPSTR)NULL) {
MessageBeep(-1);
return(FALSE);
}
lstrcpyn(p, twbuf+start, end-start);
GlobalUnlock(hglobal);
OpenClipboard(hwnd);
EmptyClipboard();
SetClipboardData(CF_TEXT, hglobal);
CloseClipboard();
}
break;
case IDCANCEL:
g_bQuit = TRUE;
DestroyWindow(hwnd);
return TRUE;
}
break;
case WM_CLOSE:
DestroyWindow(hwnd);
return TRUE;
case WM_DESTROY:
g_bQuit = TRUE;
g_hWndText = (HWND)NULL;
EnableWindow(g_hMain, TRUE);
PostQuitMessage(0);
break;
}
return FALSE;
}
// Add string to log window
void
gs_addmess_count(const char *str, int count)
{
const char *s;
char *p;
int i, lfcount;
MSG msg;
// we need to add \r after each \n, so count the \n's
lfcount = 0;
s = str;
for (i=0; i<count; i++) {
if (*s == '\n')
lfcount++;
s++;
}
if (count + lfcount >= TWSCROLL)
return; // too large
if (count + lfcount + twend >= TWLENGTH-1) {
// scroll buffer
twend -= TWSCROLL;
memmove(twbuf, twbuf+TWSCROLL, twend);
}
p = twbuf+twend;
for (i=0; i<count; i++) {
if (*str == '\n') {
*p++ = '\r';
}
*p++ = *str++;
}
twend += (count + lfcount);
*(twbuf+twend) = '\0';
// Update the dialog box
if (g_bBatch)
return;
gs_addmess_update();
while (PeekMessage(&msg, (HWND)NULL, 0, 0, PM_REMOVE)) {
if (!IsDialogMessage(g_hWndText, &msg) &&
!IsDialogMessage(g_hMain, &msg)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}
}
void
gs_addmess(const char *str)
{
gs_addmess_count(str, lstrlen(str));
}
void
gs_addmess_update(void)
{
HWND hwndmess = g_hWndText;
if (g_bBatch)
return;
if (IsWindow(hwndmess)) {
HWND hwndtext = GetDlgItem(hwndmess, IDC_TEXTWIN_MLE);
DWORD linecount;
SendMessage(hwndtext, WM_SETREDRAW, FALSE, 0);
SetDlgItemText(hwndmess, IDC_TEXTWIN_MLE, twbuf);
linecount = SendDlgItemMessage(hwndmess, IDC_TEXTWIN_MLE, EM_GETLINECOUNT, (WPARAM)0, (LPARAM)0);
SendDlgItemMessage(hwndmess, IDC_TEXTWIN_MLE, EM_LINESCROLL, (WPARAM)0, (LPARAM)linecount-14);
SendMessage(hwndtext, WM_SETREDRAW, TRUE, 0);
InvalidateRect(hwndtext, (LPRECT)NULL, TRUE);
UpdateWindow(hwndtext);
}
}
//////////////////////////////////////////////////////////////////////
// Browse dialog box
//////////////////////////////////////////////////////////////////////
// nasty GLOBALS
char szFolderName[MAXSTR];
char szDirName[MAXSTR];
DLGRETURN CALLBACK
DirDlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
WORD notify_message;
switch(message) {
case WM_INITDIALOG:
DlgDirList(hwnd, szDirName, IDC_FILES, IDC_FOLDER,
DDL_DRIVES | DDL_DIRECTORY);
SetDlgItemText(hwnd, IDC_TARGET, szFolderName);
return FALSE;
case WM_COMMAND:
notify_message = HIWORD(wParam);
switch (LOWORD(wParam)) {
case IDC_FILES:
if (notify_message == LBN_DBLCLK) {
CHAR szPath[MAXSTR];
DlgDirSelectEx(hwnd, szPath, sizeof(szPath), IDC_FILES);
DlgDirList(hwnd, szPath, IDC_FILES, IDC_FOLDER,
DDL_DRIVES | DDL_DIRECTORY);
}
return FALSE;
case IDOK:
GetDlgItemText(hwnd, IDC_FOLDER, szDirName, sizeof(szDirName));
GetDlgItemText(hwnd, IDC_TARGET, szFolderName, sizeof(szFolderName));
EndDialog(hwnd, TRUE);
return TRUE;
case IDCANCEL:
EndDialog(hwnd, FALSE);
return TRUE;
}
return FALSE;
}
return FALSE;
}
//////////////////////////////////////////////////////////////////////
// Initialisation and Main dialog box
//////////////////////////////////////////////////////////////////////
void
message_box(const char *str)
{
MessageBox(HWND_DESKTOP, str, g_szAppName, MB_OK);
}
BOOL
init()
{
DWORD dwVersion = GetVersion();
// get source directory
GetCurrentDirectory(sizeof(g_szSourceDir), g_szSourceDir);
// load strings
LoadString(g_hInstance, IDS_APPNAME, g_szAppName, sizeof(g_szAppName));
LoadString(g_hInstance, IDS_TARGET_GROUP,
g_szTargetGroup, sizeof(g_szTargetGroup));
if (LOBYTE(LOWORD(dwVersion)) < 4) {
MessageBox(HWND_DESKTOP,
"This install program needs Windows 4.0 or later",
g_szAppName, MB_OK);
return FALSE;
}
if ( (HIWORD(dwVersion) & 0x8000) == 0)
is_winnt = TRUE;
cinst.SetMessageFunction(message_box);
#define MAXCMDTOKENS 128
int argc;
LPSTR argv[MAXCMDTOKENS];
LPSTR p;
char command[256];
char *args;
char *d, *e;
p = GetCommandLine();
argc = 0;
args = (char *)malloc(lstrlen(p)+1);
if (args == (char *)NULL)
return 1;
// Parse command line handling quotes.
d = args;
while (*p) {
// for each argument
if (argc >= MAXCMDTOKENS - 1)
break;
e = d;
while ((*p) && (*p != ' ')) {
if (*p == '\042') {
// Remove quotes, skipping over embedded spaces.
// Doesn't handle embedded quotes.
p++;
while ((*p) && (*p != '\042'))
*d++ =*p++;
}
else
*d++ = *p;
if (*p)
p++;
}
*d++ = '\0';
argv[argc++] = e;
while ((*p) && (*p == ' '))
p++; // Skip over trailing spaces
}
argv[argc] = NULL;
if (strlen(argv[0]) == 0) {
GetModuleFileName(g_hInstance, command, sizeof(command)-1);
argv[0] = command;
}
if (argc > 2) {
// Probably creating filelist.txt
return make_filelist(argc, argv);
}
// check if batch mode requested
// get location of target directory from command line as argv[1]
if (argc == 2) {
strncpy(g_szTargetDir, argv[1], sizeof(g_szTargetDir));
g_bBatch = TRUE;
if (is_winnt)
g_bAllUsers = TRUE;
}
if (g_bBatch) {
if (!install_all()) {
// display log showing error
g_bBatch = FALSE;
g_hWndText = CreateDialogParam(g_hInstance,
MAKEINTRESOURCE(IDD_TEXTWIN),
(HWND)HWND_DESKTOP, TextWinDlgProc,
(LPARAM)NULL);
gs_addmess_update();
}
return TRUE;
}
// Interactive setup
if (!GetProgramFiles(g_szTargetDir))
strcpy(g_szTargetDir, "C:\\Program Files");
strcat(g_szTargetDir, "\\");
LoadString(g_hInstance, IDS_TARGET_DIR,
g_szTargetDir+strlen(g_szTargetDir),
sizeof(g_szTargetDir)-strlen(g_szTargetDir));
// main dialog box
g_hMain = CreateDialogParam(g_hInstance, MAKEINTRESOURCE(IDD_MAIN), (HWND)NULL, MainDlgProc, (LPARAM)NULL);
// centre dialog on screen
int width = GetSystemMetrics(SM_CXFULLSCREEN);
int height = GetSystemMetrics(SM_CYFULLSCREEN);
RECT rect;
GetWindowRect(g_hMain, &rect);
MoveWindow(g_hMain, (width - (rect.right - rect.left))/2,
(height - (rect.bottom - rect.top))/2,
(rect.right - rect.left),
(rect.bottom - rect.top), FALSE);
// initialize targets
cinst.SetMessageFunction(message_box);
if (!cinst.Init(g_szSourceDir, "filelist.txt"))
return FALSE;
SetDlgItemText(g_hMain, IDC_TARGET_DIR, g_szTargetDir);
SetDlgItemText(g_hMain, IDC_TARGET_GROUP, g_szTargetGroup);
SetDlgItemText(g_hMain, IDC_PRODUCT_NAME, cinst.GetUninstallName());
ShowWindow(g_hMain, SW_SHOWNORMAL);
return (g_hMain != (HWND)NULL); /* success */
}
// Main Modeless Dialog Box
DLGRETURN CALLBACK
MainDlgProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message) {
case WM_INITDIALOG:
EnableWindow(GetDlgItem(hwnd, IDC_ALLUSERS), is_winnt);
return TRUE;
case WM_COMMAND:
switch(LOWORD(wParam)) {
case IDC_README:
{
char buf[MAXSTR];
sprintf(buf, "%s\\%s\\doc\\Readme.htm", g_szSourceDir,
cinst.GetMainDir());
ShellExecute(hwnd, NULL, buf, NULL, g_szSourceDir,
SW_SHOWNORMAL);
}
return TRUE;
case IDC_BROWSE_DIR:
{ char dir[MAXSTR];
char *p;
GetDlgItemText(hwnd, IDC_TARGET_DIR, dir, sizeof(dir));
strcpy(szDirName, dir);
if ( (p = strrchr(szDirName, '\\')) != (char *)NULL ) {
strcpy(szFolderName, p+1);
if (p == szDirName+2)
p++; // step over c:\ //
*p = '\0';
}
else {
strcpy(szDirName, "c:\\");
strcpy(szFolderName, dir);
}
if (DialogBox(g_hInstance, MAKEINTRESOURCE(IDD_DIRDLG),
hwnd, DirDlgProc)) {
strcpy(dir, szDirName);
if (strlen(dir) && (dir[strlen(dir)-1] != '\\'))
strcat(dir, "\\");
strcat(dir, szFolderName);
SetDlgItemText(hwnd, IDC_TARGET_DIR, dir);
}
}
return TRUE;
case IDC_BROWSE_GROUP:
{ char dir[MAXSTR];
char programs[MAXSTR];
char *p;
GetDlgItemText(hwnd, IDC_TARGET_GROUP, dir, sizeof(dir));
cinst.GetPrograms(
SendDlgItemMessage(hwnd, IDC_ALLUSERS,
BM_GETCHECK, 0, 0) == BST_CHECKED,
programs, sizeof(programs));
strcpy(szDirName, programs);
strcpy(szFolderName, dir);
if (DialogBox(g_hInstance, MAKEINTRESOURCE(IDD_DIRDLG),
hwnd, DirDlgProc)) {
strcpy(dir, szFolderName);
p = szDirName;
if (strnicmp(szDirName, programs,
strlen(programs)) == 0) {
p += strlen(programs);
if (*p == '\\')
p++;
strcpy(dir, p);
if (strlen(dir) &&
(dir[strlen(dir)-1] != '\\'))
strcat(dir, "\\");
strcat(dir, szFolderName);
}
SetDlgItemText(hwnd, IDC_TARGET_GROUP, dir);
}
}
return TRUE;
case IDCANCEL:
PostQuitMessage(0);
return TRUE;
case IDC_INSTALL:
GetDlgItemText(hwnd, IDC_TARGET_DIR,
g_szTargetDir, sizeof(g_szTargetDir));
GetDlgItemText(hwnd, IDC_TARGET_GROUP,
g_szTargetGroup, sizeof(g_szTargetGroup));
g_bCJKFonts = (SendDlgItemMessage(g_hMain,
IDC_CJK_FONTS, BM_GETCHECK, 0, 0)
== BST_CHECKED);
g_bAllUsers = (SendDlgItemMessage(hwnd,
IDC_ALLUSERS, BM_GETCHECK, 0, 0
) == BST_CHECKED);
// install log dialog box
g_hWndText = CreateDialogParam(g_hInstance,
MAKEINTRESOURCE(IDD_TEXTWIN),
(HWND)hwnd, TextWinDlgProc, (LPARAM)NULL);
EnableWindow(GetDlgItem(hwnd, IDC_INSTALL), FALSE);
if (install_all())
PostQuitMessage(0);
return TRUE;
default:
return(FALSE);
}
case WM_CLOSE:
PostQuitMessage(0);
return TRUE;
}
return FALSE;
}
// install program and files
BOOL
install_all()
{
gs_addmess("Source Directory=");
gs_addmess(g_szSourceDir);
gs_addmess("\n");
gs_addmess("Target Directory=");
gs_addmess(g_szTargetDir);
gs_addmess("\n");
gs_addmess("Target Shell Folder=");
gs_addmess(g_szTargetGroup);
gs_addmess("\n");
gs_addmess(g_bAllUsers ? " All users\n" : " Current user\n");
if (stricmp(g_szSourceDir, g_szTargetDir) == 0) {
// Don't copy files
if (!g_bBatch)
if (::MessageBox(g_hWndText, "Install location is the same as the current file location. No files will be copied.", g_szAppName, MB_OKCANCEL)
!= IDOK) {
return FALSE;
}
g_bNoCopy = TRUE;
}
if (g_bQuit)
return FALSE;
if (!install_prog()) {
cinst.CleanUp();
g_bError = TRUE;
return FALSE;
}
gs_addmess("Install successful\n");
// show start menu folder
if (!g_bBatch) {
char szFolder[MAXSTR];
szFolder[0] = '\0';
cinst.GetPrograms(g_bAllUsers, szFolder, sizeof(szFolder));
strcat(szFolder, "\\");
strcat(szFolder, g_szTargetGroup);
ShellExecute(HWND_DESKTOP, "open", szFolder,
NULL, NULL, SW_SHOWNORMAL);
}
#ifdef DEBUG
return FALSE;
#endif
return TRUE;
}
BOOL
install_prog()
{
char *regkey1 = "GPL Ghostscript";
char regkey2[16];
char szDLL[MAXSTR];
char szLIB[MAXSTR+MAXSTR];
char szProgram[MAXSTR];
char szArguments[MAXSTR];
char szDescription[MAXSTR];
char szDotVersion[MAXSTR];
char szPlatformSuffix[MAXSTR];
const char *pSuffix = "";
if (g_bQuit)
return FALSE;
cinst.SetMessageFunction(gs_addmess);
cinst.SetTargetDir(g_szTargetDir);
cinst.SetTargetGroup(g_szTargetGroup);
cinst.SetAllUsers(g_bAllUsers);
if (!cinst.Init(g_szSourceDir, "filelist.txt"))
return FALSE;
// Get GS version number
gs_addmess("Installing Program...\n");
int nGSversion = 0;
const char *p = cinst.GetMainDir();
while (*p && !isdigit(*p)) // skip over "gs" prefix
p++;
if (strlen(p) == 4)
nGSversion = (p[0]-'0')*100 + (p[2]-'0')*10 + (p[3]-'0');
else if (strlen(p) == 3)
nGSversion = (p[0]-'0')*100 + (p[2]-'0')*10;
strncpy(szDotVersion, p, sizeof(szDotVersion));
strncpy(regkey2, szDotVersion, sizeof(regkey2));
// copy files
if (!cinst.InstallFiles(g_bNoCopy, &g_bQuit)) {
gs_addmess("Program install failed\n");
return FALSE;
}
if (g_bQuit)
return FALSE;
// write registry entries
gs_addmess("Updating Registry\n");
if (!cinst.UpdateRegistryBegin()) {
gs_addmess("Failed to begin registry update\n");
return FALSE;
}
if (!cinst.UpdateRegistryKey(regkey1, regkey2)) {
gs_addmess("Failed to open/create registry application key\n");
return FALSE;
}
strcpy(szDLL, g_szTargetDir);
strcat(szDLL, "\\");
strcat(szDLL, cinst.GetMainDir());
strcat(szDLL, "\\bin\\gsdll32.dll");
if (!cinst.UpdateRegistryValue(regkey1, regkey2, "GS_DLL", szDLL)) {
gs_addmess("Failed to add registry value\n");
return FALSE;
}
strcpy(szLIB, g_szTargetDir);
strcat(szLIB, "\\");
strcat(szLIB, cinst.GetMainDir());
strcat(szLIB, "\\lib;");
strcat(szLIB, g_szTargetDir);
strcat(szLIB, "\\fonts");
if (g_bCJKFonts) {
strcat(szLIB, ";");
get_font_path(szLIB+strlen(szLIB), sizeof(szLIB)-strlen(szLIB)-1);
}
if (!cinst.UpdateRegistryValue(regkey1, regkey2, "GS_LIB", szLIB)) {
gs_addmess("Failed to add registry value\n");
return FALSE;
}
if (!cinst.UpdateRegistryEnd()) {
gs_addmess("Failed to end registry update\n");
return FALSE;
}
if (g_bQuit)
return FALSE;
// Add Start Menu items
gs_addmess("Adding Start Menu items\n");
memset(szPlatformSuffix, 0, sizeof(szPlatformSuffix));
if (GetProgramFiles(szPlatformSuffix)) {
/* If ProgramFiles has a suffix like " (x86)" then use
* it for Start menu entries to distinguish between
* 32-bit and 64-bit programs.
*/
for (pSuffix = szPlatformSuffix; *pSuffix; pSuffix++)
if ((pSuffix[0] == ' ') && (pSuffix[1] == '('))
break;
}
else {
pSuffix = "";
}
if (!cinst.StartMenuBegin()) {
gs_addmess("Failed to begin Start Menu update\n");
return FALSE;
}
strcpy(szProgram, g_szTargetDir);
strcat(szProgram, "\\");
strcat(szProgram, cinst.GetMainDir());
strcat(szProgram, "\\bin\\gswin32.exe");
strcpy(szArguments, "\042-I");
strcat(szArguments, szLIB);
strcat(szArguments, "\042");
sprintf(szDescription, "Ghostscript %s%s", szDotVersion, pSuffix);
if (!cinst.StartMenuAdd(szDescription, szProgram, szArguments)) {
gs_addmess("Failed to add Start Menu item\n");
return FALSE;
}
strcpy(szProgram, g_szTargetDir);
strcat(szProgram, "\\");
strcat(szProgram, cinst.GetMainDir());
strcat(szProgram, "\\doc\\Readme.htm");
sprintf(szDescription, "Ghostscript Readme %s%s",
szDotVersion, pSuffix);
if (!cinst.StartMenuAdd(szDescription, szProgram, NULL)) {
gs_addmess("Failed to add Start Menu item\n");
return FALSE;
}
if (!cinst.StartMenuEnd()) {
gs_addmess("Failed to end Start Menu update\n");
return FALSE;
}
/* Create lib/cidfmap */
if (g_bCJKFonts) {
char szCIDFmap[MAXSTR];
char szCIDFmap_bak[MAXSTR];
char szGSPATH[MAXSTR];
/* backup old cidfmap */
strcpy(szCIDFmap, g_szTargetDir);
strcat(szCIDFmap, "\\");
strcat(szCIDFmap, cinst.GetMainDir());
strcat(szCIDFmap, "\\lib\\cidfmap");
strcpy(szCIDFmap_bak, szCIDFmap);
strcat(szCIDFmap_bak, ".bak");
gs_addmess("Backing up\n ");
gs_addmess(szCIDFmap);
gs_addmess("\nto\n ");
gs_addmess(szCIDFmap_bak);
gs_addmess("\n");
rename(szCIDFmap, szCIDFmap_bak);
/* mark backup for uninstall */
cinst.AppendFileNew(szCIDFmap_bak);
/* write new cidfmap */
gs_addmess("Writing cidfmap\n ");
gs_addmess(szCIDFmap);
gs_addmess("\n");
strcpy(szGSPATH, g_szTargetDir);
strcat(szGSPATH, "\\");
strcat(szGSPATH, cinst.GetMainDir());
if (!write_cidfmap(szGSPATH, szCIDFmap)) {
gs_addmess("Failed to write cidfmap\n");
return FALSE;
}
}
// consolidate logs into one uninstall file
if (cinst.MakeLog()) {
// add uninstall entry for "Add/Remove Programs"
gs_addmess("Adding uninstall program\n");
if (!cinst.WriteUninstall(UNINSTALLPROG, g_bNoCopy)) {
gs_addmess("Failed to write uninstall entry\n");
return FALSE;
}
}
else {
gs_addmess("Failed to write uninstall log\n");
// If batch install, files might be on a server
// in a write protected directory.
// Don't return an error for batch install.
if (g_bBatch)
return TRUE;
return FALSE;
}
gs_addmess("Program install successful\n");
return TRUE;
}
//////////////////////////////////////////////////////////////////////
// Create lib/cidfmap based on installed fonts
//////////////////////////////////////////////////////////////////////
/* Get the path to enumerate for fonts */
int
get_font_path(char *path, unsigned int pathlen)
{
int i;
int len = GetWindowsDirectory(path, pathlen);
if (len == 0)
return -1;
if (pathlen - strlen(path) < 8)
return -1;
strncat(path, "/fonts", pathlen - strlen(path) - 7);
for (i = strlen(path)-1; i >= 0; i--)
if (path[i] == '\\')
path[i] = '/';
return len;
}
BOOL write_cidfmap(const char *gspath, const char *cidpath)
{
char fontpath[MAXSTR];
char buf[4*MAXSTR];
STARTUPINFO siStartInfo;
PROCESS_INFORMATION piProcInfo;
get_font_path(fontpath, sizeof(fontpath)-1);
strcpy(buf, "\042");
strcat(buf, gspath);
strcat(buf, "\\bin\\gswin32c.exe\042 -q -dBATCH \042-sFONTDIR=");
strcat(buf, fontpath);
strcat(buf, "\042 \042");
strcat(buf, "-sCIDFMAP=");
strcat(buf, cidpath);
strcat(buf, "\042 \042");
strcat(buf, gspath);
strcat(buf, "\\lib\\mkcidfm.ps\042");
siStartInfo.cb = sizeof(STARTUPINFO);
siStartInfo.lpReserved = NULL;
siStartInfo.lpDesktop = NULL;
siStartInfo.lpTitle = NULL; /* use executable name as title */
siStartInfo.dwX = siStartInfo.dwY = CW_USEDEFAULT; /* ignored */
siStartInfo.dwXSize = siStartInfo.dwYSize = CW_USEDEFAULT; /* ignored */
siStartInfo.dwXCountChars = 80;
siStartInfo.dwYCountChars = 25;
siStartInfo.dwFillAttribute = 0; /* ignored */
siStartInfo.dwFlags = STARTF_USESHOWWINDOW;
siStartInfo.wShowWindow = SW_HIDE;
siStartInfo.cbReserved2 = 0;
siStartInfo.lpReserved2 = NULL;
siStartInfo.hStdInput = NULL;
siStartInfo.hStdOutput = NULL;
siStartInfo.hStdError = NULL;
/* Create the child process. */
if (!CreateProcess(NULL,
(char *)buf, /* command line */
NULL, /* process security attributes */
NULL, /* primary thread security attributes */
FALSE, /* handles are not inherited */
0, /* creation flags */
NULL, /* environment */
NULL, /* use parent's current directory */
&siStartInfo, /* STARTUPINFO pointer */
&piProcInfo)) /* receives PROCESS_INFORMATION */
return FALSE;
/* We don't care if ghostscript fails, so just return */
CloseHandle(piProcInfo.hProcess);
CloseHandle(piProcInfo.hThread);
return TRUE;
}
//////////////////////////////////////////////////////////////////////
// Create file list
//////////////////////////////////////////////////////////////////////
FILE *fList;
typedef int (*PFN_dodir)(const char *name);
/* Called once for each directory */
int
dodir(const char *filename)
{
return 0;
}
/* Called once for each file */
int
dofile(const char *filename)
{
if (fList != (FILE *)NULL) {
fputs(filename, fList);
fputs("\n", fList);
}
return 0;
}
/* Walk through directory 'path', calling dodir() for given directory
* and dofile() for each file.
* If recurse=1, recurse into subdirectories, calling dodir() for
* each directory.
*/
int
dirwalk(char *path, int recurse, PFN_dodir dodir, PFN_dodir dofile)
{
WIN32_FIND_DATA find_data;
HANDLE find_handle;
char pattern[MAXSTR]; /* orig pattern + modified pattern */
char base[MAXSTR];
char name[MAXSTR];
BOOL bMore = TRUE;
char *p;
if (path) {
strcpy(pattern, path);
if (strlen(pattern) != 0) {
p = pattern + strlen(pattern) -1;
if (*p == '\\')
*p = '\0'; // truncate trailing backslash
}
strcpy(base, pattern);
if (strchr(base, '*') != NULL) {
// wildcard already included
// truncate it from the base path
if ( (p = strrchr(base, '\\')) != NULL )
*(++p) = '\0';
}
else if (isalpha(pattern[0]) &&
pattern[1]==':' && pattern[2]=='\0') {
strcat(pattern, "\\*"); // search entire disk
strcat(base, "\\");
}
else {
// wildcard NOT included
// check to see if path is a directory
find_handle = FindFirstFile(pattern, &find_data);
if (find_handle != INVALID_HANDLE_VALUE) {
FindClose(find_handle);
if (find_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
strcat(pattern, "\\*"); // yes, search files
strcat(base, "\\");
}
else {
dofile(path); // no, return just this file
return 0;
}
}
else
return 1; // path invalid
}
}
else {
base[0] = '\0';
strcpy(pattern, "*");
}
find_handle = FindFirstFile(pattern, &find_data);
if (find_handle == INVALID_HANDLE_VALUE)
return 1;
while (bMore) {
strcpy(name, base);
strcat(name, find_data.cFileName);
if (find_data.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
if ( strcmp(find_data.cFileName, ".") &&
strcmp(find_data.cFileName, "..") ) {
dodir(name);
if (recurse)
dirwalk(name, recurse, dodir, dofile);
}
}
else {
dofile(name);
}
bMore = FindNextFile(find_handle, &find_data);
}
FindClose(find_handle);
return 0;
}
// This is used when creating a file list.
BOOL make_filelist(int argc, char *argv[])
{
char *title = NULL;
char *dir = NULL;
char *list = NULL;
int i;
g_bBatch = TRUE; // Don't run message loop
for (i=1; i<argc; i++) {
if (strcmp(argv[i], "-title") == 0) {
i++;
title = argv[i];
}
else if (strcmp(argv[i], "-dir") == 0) {
i++;
dir = argv[i];
}
else if (strcmp(argv[i], "-list") == 0) {
i++;
list = argv[i];
}
else {
if ((title == NULL) || (strlen(title) == 0) ||
(dir == NULL) || (strlen(dir) == 0) ||
(list == NULL) || (strlen(list) == 0)) {
message_box("Usage: setupgs -title \042GPL Ghostscript #.##\042 -dir \042gs#.##\042 -list \042filelist.txt\042 spec1 spec2 specn\n");
return FALSE;
}
if (fList == (FILE *)NULL) {
if ( (fList = fopen(list, "w")) == (FILE *)NULL ) {
message_box("Can't write list file\n");
return FALSE;
}
fputs(title, fList);
fputs("\n", fList);
fputs(dir, fList);
fputs("\n", fList);
}
if (argv[i][0] == '@') {
// Use @filename with list of files/directories
// to avoid DOS command line limit
FILE *f;
char buf[MAXSTR];
int j;
if ( (f = fopen(&(argv[i][1]), "r")) != (FILE *)NULL) {
while (fgets(buf, sizeof(buf), f)) {
// remove trailing newline and spaces
while ( ((j = strlen(buf)-1) >= 0) &&
((buf[j] == '\n') || (buf[j] == ' ')) )
buf[j] = '\0';
dirwalk(buf, TRUE, &dodir, &dofile);
}
fclose(f);
}
else {
wsprintf(buf, "Can't open @ file \042%s\042",
&argv[i][1]);
message_box(buf);
}
}
else
dirwalk(argv[i], TRUE, &dodir, &dofile);
}
}
if (fList != (FILE *)NULL) {
fclose(fList);
fList = NULL;
}
return TRUE;
}
//////////////////////////////////////////////////////////////////////
#ifndef CSIDL_PROGRAM_FILES
#define CSIDL_PROGRAM_FILES 0x0026
#endif
#ifndef CSIDL_FLAG_CREATE
#define CSIDL_FLAG_CREATE 0x8000
#endif
#ifndef SHGFP_TYPE_CURRENT
#define SHGFP_TYPE_CURRENT 0
#endif
BOOL
GetProgramFiles(LPTSTR path)
{
PFN_SHGetSpecialFolderPath PSHGetSpecialFolderPath = NULL;
PFN_SHGetFolderPath PSHGetFolderPath = NULL;
HMODULE hModuleShell32 = NULL;
HMODULE hModuleShfolder = NULL;
BOOL fOk = FALSE;
hModuleShfolder = LoadLibrary("shfolder.dll");
hModuleShell32 = LoadLibrary("shell32.dll");
if (hModuleShfolder) {
PSHGetFolderPath = (PFN_SHGetFolderPath)
GetProcAddress(hModuleShfolder, "SHGetFolderPathA");
if (PSHGetFolderPath) {
fOk = (PSHGetFolderPath(HWND_DESKTOP,
CSIDL_PROGRAM_FILES | CSIDL_FLAG_CREATE,
NULL, SHGFP_TYPE_CURRENT, path) == S_OK);
}
}
if (!fOk && hModuleShell32) {
PSHGetFolderPath = (PFN_SHGetFolderPath)
GetProcAddress(hModuleShell32, "SHGetFolderPathA");
if (PSHGetFolderPath) {
fOk = (PSHGetFolderPath(HWND_DESKTOP,
CSIDL_PROGRAM_FILES | CSIDL_FLAG_CREATE,
NULL, SHGFP_TYPE_CURRENT, path) == S_OK);
}
}
if (!fOk && hModuleShell32) {
PSHGetSpecialFolderPath = (PFN_SHGetSpecialFolderPath)
GetProcAddress(hModuleShell32, "SHGetSpecialFolderPathA");
if (PSHGetSpecialFolderPath) {
fOk = PSHGetSpecialFolderPath(HWND_DESKTOP, path,
CSIDL_PROGRAM_FILES, TRUE);
}
}
if (!fOk) {
/* If all else fails (probably Win95), try the registry */
LONG rc;
HKEY hkey;
DWORD cbData;
DWORD keytype;
rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE,
"SOFTWARE\\Microsoft\\Windows\\CurrentVersion", 0, KEY_READ, &hkey);
if (rc == ERROR_SUCCESS) {
cbData = MAX_PATH;
keytype = REG_SZ;
if (rc == ERROR_SUCCESS)
rc = RegQueryValueEx(hkey, "ProgramFilesDir", 0, &keytype,
(LPBYTE)path, &cbData);
RegCloseKey(hkey);
}
fOk = (rc == ERROR_SUCCESS);
}
return fOk;
}
//////////////////////////////////////////////////////////////////////
|