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 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgAdmin3.cpp - The application
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/app.h>
#include <wx/cmdline.h>
#include <wx/dir.h>
#include <wx/file.h>
#include <wx/xrc/xmlres.h>
#include <wx/image.h>
#include <wx/imagjpeg.h>
#include <wx/imaggif.h>
#include <wx/imagpng.h>
#include <wx/fs_zip.h>
#include <wx/socket.h>
#include <wx/stdpaths.h>
#include <wx/clipbrd.h>
#include <wx/sysopt.h>
// wxOGL
#include <ogl/ogl.h>
// Windows headers
#ifdef __WXMSW__
#include <winsock.h>
#endif
// Linux headers
#ifdef __LINUX__
#include <signal.h>
#endif
#ifdef __WXGTK__
#include <wx/renderer.h>
#endif
// App headers
#include "copyright.h"
#include "version.h"
#include "utils/misc.h"
#include "utils/sysSettings.h"
#include "schema/pgServer.h"
#include "frm/frmMain.h"
#include "frm/frmConfig.h"
#include "frm/frmQuery.h"
#include "frm/frmStatus.h"
#ifdef DATABASEDESIGNER
#include "frm/frmDatabaseDesigner.h"
#endif
#include "frm/frmSplash.h"
#include "dlg/dlgSelectConnection.h"
#include "db/pgConn.h"
#include "utils/sysLogger.h"
#include "utils/registry.h"
#include "frm/frmHint.h"
#include "ctl/xh_calb.h"
#include "ctl/xh_timespin.h"
#include "ctl/xh_sqlbox.h"
#include "ctl/xh_ctlcombo.h"
#include "ctl/xh_ctltree.h"
#include "ctl/xh_ctlchecktreeview.h"
#include "ctl/xh_ctlcolourpicker.h"
#define DOC_DIR wxT("/docs")
#define UI_DIR wxT("/ui")
#define I18N_DIR wxT("/i18n")
#define BRANDING_DIR wxT("/branding")
#define PLUGINS_DIR wxT("/plugins.d")
#define SETTINGS_INI wxT("/settings.ini")
// Globals
frmMain *winMain = 0;
wxThread *updateThread = 0;
#if defined(HAVE_OPENSSL_CRYPTO) || defined(HAVE_GCRYPT)
#include "utils/sshTunnel.h"
CSSHTunnelThread *pgadminTunnelThread = 0;
#endif
sysSettings *settings;
wxArrayInt existingLangs;
wxArrayString existingLangNames;
wxLocale *locale = 0;
pgAppearanceFactory *appearanceFactory = 0;
wxString pgBackupExecutable; // complete filename of PostgreSQL's pg_dump, pg_dumpall and pg_restore, if available
wxString pgBackupAllExecutable;
wxString pgRestoreExecutable;
wxString edbBackupExecutable; // complete filename of EnterpriseDB's pg_dump, pg_dumpall and pg_restore, if available
wxString edbBackupAllExecutable;
wxString edbRestoreExecutable;
wxString gpBackupExecutable; // complete filename of Greenplum's pg_dump, pg_dumpall and pg_restore, if available
wxString gpBackupAllExecutable;
wxString gpRestoreExecutable;
wxString loadPath; // Where the program is loaded from
wxString dataDir; // The program data directory
wxString docPath; // Where docs are stored
wxString uiPath; // Where ui data is stored
wxString i18nPath; // Where i18n data is stored
wxString brandingPath; // Where branding data is stored
wxString pluginsDir; // The plugins ini file directory
wxString settingsIni; // The settings.ini file
wxLog *logger;
bool dialogTestMode = false;
#define LANG_FILE wxT("pgadmin3.lng")
IMPLEMENT_APP(pgAdmin3)
#ifdef __WXMSW__
// Dynamically loaded EDB functions
PQGETOUTRESULT PQiGetOutResult;
PQPREPAREOUT PQiPrepareOut;
PQSENDQUERYPREPAREDOUT PQiSendQueryPreparedOut;
#endif
#ifdef __WXGTK__
class pgRendererNative : public wxDelegateRendererNative
{
public:
pgRendererNative() : wxDelegateRendererNative(wxRendererNative::GetDefault()) {}
void DrawTreeItemButton(wxWindow *win, wxDC &dc, const wxRect &rect, int flags)
{
GetGeneric().DrawTreeItemButton(win, dc, rect, flags);
}
};
#endif
#define CTL_LB 100
class frmDlgTest : public wxFrame
{
public:
frmDlgTest();
private:
void OnSelect(wxCommandEvent &ev);
wxListBox *dlgList;
DECLARE_EVENT_TABLE()
};
BEGIN_EVENT_TABLE(frmDlgTest, wxFrame)
EVT_LISTBOX_DCLICK(CTL_LB, frmDlgTest::OnSelect)
END_EVENT_TABLE();
frmDlgTest::frmDlgTest() : wxFrame(0, -1, wxT("pgAdmin III Translation test mode"))
{
dlgList = new wxListBox(this, CTL_LB, wxDefaultPosition, wxDefaultSize, 0, NULL, wxLB_SORT);
// unfortunately, the MemoryFS has no search functions implemented
// so we can't extract the names in the EMBED_XRC case
wxDir dir(uiPath);
wxString filename;
bool found = dir.GetFirst(&filename, wxT("*.xrc"));
while (found)
{
dlgList->Append(filename.Left(filename.Length() - 4));
found = dir.GetNext(&filename);
}
if (!dlgList->GetCount())
{
dlgList->Append(wxT("No xrc files in directory"));
dlgList->Append(uiPath);
dlgList->Disable();
}
}
void frmDlgTest::OnSelect(wxCommandEvent &ev)
{
wxString dlgName = dlgList->GetStringSelection();
if (!dlgName.IsEmpty())
{
pgDialog *dlg = new pgDialog;
dlg->SetFont(settings->GetSystemFont());
dlg->LoadResource(this, dlgName);
dlg->SetTitle(dlgName);
dlg->Show();
}
}
// The Application!
bool pgAdmin3::OnInit()
{
// Force logging off until we're ready
wxLog *seLog = new wxLogStderr();
wxLog::SetActiveTarget(seLog);
// Setup the basic paths for the app installation. Required by settings!
InitAppPaths();
// Load the Settings
#ifdef __WXMSW__
settings = new sysSettings(wxT("pgAdmin III"));
#else
settings = new sysSettings(wxT("pgadmin3"));
#endif
// Setup additional helper paths etc. Requires settings!
InitXtraPaths();
locale = new wxLocale();
locale->AddCatalogLookupPathPrefix(i18nPath);
wxLanguage langId = (wxLanguage)settings->Read(wxT("LanguageId"), wxLANGUAGE_DEFAULT);
if (locale->Init(langId))
{
#ifdef __LINUX__
{
wxLogNull noLog;
locale->AddCatalog(wxT("fileutils"));
}
#endif
locale->AddCatalog(wxT("pgadmin3"));
}
#ifdef DATABASEDESIGNER
//Initialize Font
hdFontAttribute::InitFont();
#endif
long langCount = 0;
const wxLanguageInfo *langInfo;
wxString langfile = FileRead(i18nPath + wxT("/") LANG_FILE, 1);
if (!langfile.IsEmpty())
{
wxStringTokenizer tk(langfile, wxT("\n\r"));
while (tk.HasMoreTokens())
{
wxString line = tk.GetNextToken().Strip(wxString::both);
if (line.IsEmpty() || line.StartsWith(wxT("#")))
continue;
wxString englishName = line.BeforeFirst(',').Trim(true);
wxString translatedName = line.AfterFirst(',').Trim(false);
langInfo = wxLocale::FindLanguageInfo(englishName);
if (langInfo)
{
if (langInfo->CanonicalName == wxT("en_US") ||
(!langInfo->CanonicalName.IsEmpty() &&
wxDir::Exists(i18nPath + wxT("/") + langInfo->CanonicalName)))
{
existingLangs.Add(langInfo->Language);
existingLangNames.Add(translatedName);
langCount++;
}
}
}
}
static const wxCmdLineEntryDesc cmdLineDesc[] =
{
#if wxCHECK_VERSION(2, 9, 0)
// wxCmdLineEntryDesc is one of the few places in 2.9 where wxT()s have any effect...they break the build
{wxCMD_LINE_SWITCH, "v", "version", _("show the version, and quit"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_SWITCH, "h", "help", _("show this help message, and quit"), wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{wxCMD_LINE_OPTION, "s", "server", _("auto-connect to specified server"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_SWITCH, "S", "serverstatus", _("open server status window"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, "Sc", "serverstatusconnect", _("connect server status window to database"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_SWITCH, "q", "query", _("open query tool"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, "qc", "queryconnect", _("connect query tool to database"), wxCMD_LINE_VAL_STRING},
#ifdef DATABASEDESIGNER
{wxCMD_LINE_SWITCH, "d", "designer", _("open designer window"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, "dc", "designerconnectconnect", _("connect designer window to database"), wxCMD_LINE_VAL_STRING},
#endif
{wxCMD_LINE_OPTION, "f", "file", _("file to load into the query tool in -q or -qc mode"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_OPTION, "cm", NULL, _("edit main configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, "ch", NULL, _("edit HBA configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, "cp", NULL, _("edit pgpass configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, "c", NULL, _("edit configuration files in cluster directory"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_SWITCH, "t", NULL, _("dialog translation test mode"), wxCMD_LINE_VAL_NONE},
#else
{wxCMD_LINE_SWITCH, wxT("v"), wxT("version"), _("show the version, and quit"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_SWITCH, wxT("h"), wxT("help"), _("show the help message, and quit"), wxCMD_LINE_VAL_NONE, wxCMD_LINE_OPTION_HELP },
{wxCMD_LINE_OPTION, wxT("s"), wxT("server"), _("auto-connect to specified server"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_SWITCH, wxT("S"), wxT("serverstatus"), _("open server status window"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, wxT("Sc"), wxT("serverstatusconnect"), _("connect server status window to database"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_SWITCH, wxT("q"), wxT("query"), _("open query tool"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, wxT("qc"), wxT("queryconnect"), _("connect query tool to database"), wxCMD_LINE_VAL_STRING},
#ifdef DATABASEDESIGNER
{wxCMD_LINE_SWITCH, wxT("d"), wxT("designer"), _("open designer window"), wxCMD_LINE_VAL_NONE},
{wxCMD_LINE_OPTION, wxT("dc"), wxT("designerconnectconnect"), _("connect designer window to database"), wxCMD_LINE_VAL_STRING},
#endif
{wxCMD_LINE_OPTION, wxT("f"), wxT("file"), _("file to load into the query tool in -q or -qc mode"), wxCMD_LINE_VAL_STRING},
{wxCMD_LINE_OPTION, wxT("cm"), NULL, _("edit main configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, wxT("ch"), NULL, _("edit HBA configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, wxT("cp"), NULL, _("edit pgpass configuration file"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_OPTION, wxT("c"), NULL, _("edit configuration files in cluster directory"), wxCMD_LINE_VAL_STRING, wxCMD_LINE_PARAM_MULTIPLE},
{wxCMD_LINE_SWITCH, wxT("t"), NULL, _("dialog translation test mode"), wxCMD_LINE_VAL_NONE},
#endif
{wxCMD_LINE_NONE}
};
frmConfig::tryMode configMode = frmConfig::NONE;
wxString configFile;
wxCmdLineParser cmdParser(cmdLineDesc, argc, argv);
if (cmdParser.Parse() != 0)
return false;
if (
(cmdParser.Found(wxT("q")) && cmdParser.Found(wxT("qc")))
|| (cmdParser.Found(wxT("S")) && cmdParser.Found(wxT("Sc")))
#ifdef DATABASEDESIGNER
|| (cmdParser.Found(wxT("d")) && cmdParser.Found(wxT("dc")))
#endif
)
{
cmdParser.Usage();
return false;
}
if (cmdParser.Found(wxT("cm"), &configFile))
configMode = frmConfig::MAINFILE;
else if (cmdParser.Found(wxT("ch"), &configFile))
configMode = frmConfig::HBAFILE;
else if (cmdParser.Found(wxT("cp"), &configFile))
configMode = frmConfig::PGPASSFILE;
else if (cmdParser.Found(wxT("c"), &configFile))
configMode = frmConfig::ANYFILE;
if (cmdParser.Found(wxT("t")))
dialogTestMode = true;
// Setup the image handlers and appearance factory before we do any GUI or config stuff
::wxInitAllImageHandlers();
appearanceFactory = new pgAppearanceFactory();
if (cmdParser.Found(wxT("v")))
{
wxPrintf(wxT("%s %s\n"), appearanceFactory->GetLongAppName().c_str(), VERSION_STR);
return false;
}
// Setup logging
InitLogger();
wxString msg;
msg << wxT("# ") << appearanceFactory->GetLongAppName() << wxT(" Version ") << VERSION_STR << wxT(" Startup");
wxLogInfo(wxT("##############################################################"));
wxLogInfo(wxT("%s"), msg.c_str());
wxLogInfo(wxT("##############################################################"));
#ifdef PG_SSL
wxLogInfo(wxT("Compiled with dynamically linked SSL support"));
#endif
#ifdef __WXDEBUG__
wxLogInfo(wxT("Running a DEBUG build."));
#else
wxLogInfo(wxT("Running a RELEASE build."));
#endif
// Log the path info
wxLogInfo(wxT("i18n path : %s"), i18nPath.c_str());
wxLogInfo(wxT("UI path : %s"), uiPath.c_str());
wxLogInfo(wxT("Doc path : %s"), docPath.c_str());
wxLogInfo(wxT("Branding path : %s"), brandingPath.c_str());
wxLogInfo(wxT("Plugins path : %s"), pluginsDir.c_str());
wxLogInfo(wxT("Settings INI : %s"), settingsIni.c_str());
wxLogInfo(wxT("PG pg_dump : %s"), pgBackupExecutable.c_str());
wxLogInfo(wxT("PG pg_dumpall : %s"), pgBackupAllExecutable.c_str());
wxLogInfo(wxT("PG pg_restore : %s"), pgRestoreExecutable.c_str());
wxLogInfo(wxT("EDB pg_dump : %s"), edbBackupExecutable.c_str());
wxLogInfo(wxT("EDB pg_dumpall: %s"), edbBackupAllExecutable.c_str());
wxLogInfo(wxT("EDB pg_restore: %s"), edbRestoreExecutable.c_str());
wxLogInfo(wxT("Greenplum pg_dump : %s"), gpBackupExecutable.c_str());
wxLogInfo(wxT("Greenplum pg_dumpall: %s"), gpBackupAllExecutable.c_str());
wxLogInfo(wxT("Greenplum pg_restore: %s"), gpRestoreExecutable.c_str());
#ifdef __WXGTK__
static pgRendererNative *renderer = new pgRendererNative();
wxRendererNative::Get();
wxRendererNative::Set(renderer);
#endif
#ifdef __LINUX__
signal(SIGPIPE, SIG_IGN);
#endif
// Show the splash screen
// NOTE: We must *always* do this as in -q and -qc modes
// the splash screen becomes the top level window and
// allows the logon dialogs to be displayed!!
frmSplash *winSplash = new frmSplash((wxFrame *)NULL);
if (!winSplash)
wxLogError(__("Couldn't create the splash screen!"));
else
{
SetTopWindow(winSplash);
winSplash->Show();
winSplash->Update();
wxTheApp->Yield(true);
}
// Startup the windows sockets if required
InitNetwork();
wxFileSystem::AddHandler(new wxZipFSHandler);
// Setup the XML resources
wxXmlResource::Get()->InitAllHandlers();
wxXmlResource::Get()->AddHandler(new wxCalendarBoxXmlHandler);
wxXmlResource::Get()->AddHandler(new wxTimeSpinXmlHandler);
wxXmlResource::Get()->AddHandler(new ctlSQLBoxXmlHandler);
wxXmlResource::Get()->AddHandler(new ctlComboBoxXmlHandler);
wxXmlResource::Get()->AddHandler(new ctlTreeXmlHandler);
wxXmlResource::Get()->AddHandler(new ctlCheckTreeViewXmlHandler);
wxXmlResource::Get()->AddHandler(new ctlColourPickerXmlHandler);
InitXml();
wxOGLInitialize();
// Set some defaults
SetAppName(appearanceFactory->GetLongAppName());
// Setup the help paths
InitHelp();
wxLogInfo(wxT("PG Help : %s"), settings->GetPgHelpPath().c_str());
wxLogInfo(wxT("EDB Help : %s"), settings->GetEdbHelpPath().c_str());
wxLogInfo(wxT("Greenplum Help: %s"), settings->GetGpHelpPath().c_str());
wxLogInfo(wxT("Slony Help : %s"), settings->GetSlonyHelpPath().c_str());
#ifndef __WXDEBUG__
wxTheApp->Yield(true);
wxSleep(2);
#endif
#ifdef __WXMSW__
// Attempt to dynamically load PGgetOutResult from libpq. this
// is only present in EDB versions.
InitLibpq();
#endif
if (configMode)
{
if (configMode == frmConfig::ANYFILE && wxDir::Exists(configFile))
{
wxLogInfo(wxT("Starting in ANYFILE config editor mode, in directory: %s"), configFile.c_str());
frmConfig::Create(appearanceFactory->GetLongAppName(), configFile + wxT("/pg_hba.conf"), frmConfig::HBAFILE);
frmConfig::Create(appearanceFactory->GetLongAppName(), configFile + wxT("/postgresql.conf"), frmConfig::MAINFILE);
}
else
{
wxLogInfo(wxT("Starting in config editor mode, file: %s"), configFile.c_str());
frmConfig::Create(appearanceFactory->GetLongAppName(), configFile, configMode);
}
if (winSplash)
{
winSplash->Close();
delete winSplash;
winSplash = 0;
}
}
else
{
if (dialogTestMode)
{
wxLogInfo(wxT("Starting in dialog test mode."));
wxFrame *dtf = new frmDlgTest();
dtf->Show();
SetTopWindow(dtf);
}
else if ((cmdParser.Found(wxT("S")) || cmdParser.Found(wxT("Sc"))) && !cmdParser.Found(wxT("s")))
{
// -S specified, but not -s. Open the server status window but do *not* open the main window
pgConn *conn = NULL;
wxString connstr;
wxString applicationname = appearanceFactory->GetLongAppName() + _(" - Server Status");
if (cmdParser.Found(wxT("S")))
{
wxLogInfo(wxT("Starting in server status mode (-S)."), configFile.c_str());
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
int rc = dlg.Go(conn, NULL);
if (rc != wxID_OK)
return false;
bool dummyRes;
conn = dlg.CreateConn(applicationname, dummyRes);
}
else if (cmdParser.Found(wxT("Sc"), &connstr))
{
wxLogInfo(wxT("Starting in server status connect mode (-Sc)."), configFile.c_str());
wxString host, database, username, rolename, tmps;
int sslmode = 0, port = 0;
wxStringTokenizer tkn(connstr, wxT(" "), wxTOKEN_STRTOK);
while (tkn.HasMoreTokens())
{
wxString str = tkn.GetNextToken();
if (str.StartsWith(wxT("hostaddr="), &host))
continue;
if (str.StartsWith(wxT("host="), &host))
continue;
if (str.StartsWith(wxT("dbname="), &database))
continue;
if (str.StartsWith(wxT("user="), &username))
continue;
if (str.StartsWith(wxT("role="), &rolename))
continue;
if (str.StartsWith(wxT("port="), &tmps))
{
port = StrToLong(tmps);
continue;
}
if (str.StartsWith(wxT("sslmode="), &tmps))
{
if (!tmps.Cmp(wxT("require")))
sslmode = 1;
else if (!tmps.Cmp(wxT("prefer")))
sslmode = 2;
else if (!tmps.Cmp(wxT("allow")))
sslmode = 3;
else if (!tmps.Cmp(wxT("disable")))
sslmode = 4;
else if (!tmps.Cmp(wxT("verify-ca")))
sslmode = 5;
else if (!tmps.Cmp(wxT("verify-full")))
sslmode = 6;
else
{
wxMessageBox(_("Unknown SSL mode: ") + tmps);
return false;
}
continue;
}
wxMessageBox(_("Unknown token in connection string: ") + str);
return false;
}
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
conn = dlg.CreateConn(host, database, username, port, rolename, sslmode, applicationname);
}
else
{
/* Can't happen.. */
return false;
}
if (!conn)
return false;
wxString txt = _("Server Status - ") + conn->GetName();
frmStatus *fq = new frmStatus(NULL, txt, conn);
fq->Go();
}
#ifdef DATABASEDESIGNER
else if ((cmdParser.Found(wxT("d")) || cmdParser.Found(wxT("dc"))) && !cmdParser.Found(wxT("s")))
{
// -d specified, but not -s. Open the designer window but do *not* open the main window
pgConn *conn = NULL;
wxString connstr;
wxString applicationname = _("pgAdmin - Database designer");
if (cmdParser.Found(wxT("d")))
{
wxLogInfo(wxT("Starting in designer mode (-d)."), configFile.c_str());
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
int rc = dlg.Go(conn, NULL);
if (rc != wxID_OK)
return false;
bool dummyRes;
conn = dlg.CreateConn(applicationname, dummyRes);
}
else if (cmdParser.Found(wxT("dc"), &connstr))
{
wxLogInfo(wxT("Starting in database designer connect mode (-dc)."), configFile.c_str());
wxString host, database, username, rolename, tmps;
int sslmode = 0, port = 0;
wxStringTokenizer tkn(connstr, wxT(" "), wxTOKEN_STRTOK);
while (tkn.HasMoreTokens())
{
wxString str = tkn.GetNextToken();
if (str.StartsWith(wxT("hostaddr="), &host))
continue;
if (str.StartsWith(wxT("host="), &host))
continue;
if (str.StartsWith(wxT("dbname="), &database))
continue;
if (str.StartsWith(wxT("user="), &username))
continue;
if (str.StartsWith(wxT("role="), &rolename))
continue;
if (str.StartsWith(wxT("port="), &tmps))
{
port = StrToLong(tmps);
continue;
}
if (str.StartsWith(wxT("sslmode="), &tmps))
{
if (!tmps.Cmp(wxT("require")))
sslmode = 1;
else if (!tmps.Cmp(wxT("prefer")))
sslmode = 2;
else if (!tmps.Cmp(wxT("allow")))
sslmode = 3;
else if (!tmps.Cmp(wxT("disable")))
sslmode = 4;
else if (!tmps.Cmp(wxT("verify-ca")))
sslmode = 5;
else if (!tmps.Cmp(wxT("verify-full")))
sslmode = 6;
else
{
wxMessageBox(_("Unknown SSL mode: ") + tmps);
return false;
}
continue;
}
wxMessageBox(_("Unknown token in connection string: ") + str);
return false;
}
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
conn = dlg.CreateConn(host, database, username, port, rolename, sslmode, applicationname);
}
else
{
/* Can't happen.. */
return false;
}
if (!conn)
return false;
frmDatabaseDesigner *fq = new frmDatabaseDesigner(NULL, wxEmptyString, conn);
fq->Go();
}
#endif
#ifdef __WXMAC__
else if (((cmdParser.Found(wxT("q")) || cmdParser.Found(wxT("qc"))) && !cmdParser.Found(wxT("s"))) || !macFileToOpen.IsEmpty())
#else
else if ((cmdParser.Found(wxT("q")) || cmdParser.Found(wxT("qc"))) && !cmdParser.Found(wxT("s")))
#endif
{
// -q specified, but not -s. Open a query tool but do *not* open the main window
pgConn *conn = NULL;
wxString connstr;
wxString applicationname = appearanceFactory->GetLongAppName() + _(" - Query Tool");
#ifdef __WXMAC__
if (cmdParser.Found(wxT("q")) || !macFileToOpen.IsEmpty())
#else
if (cmdParser.Found(wxT("q")))
#endif
{
wxLogInfo(wxT("Starting in query tool mode (-q)."), configFile.c_str());
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
int rc = dlg.Go(conn, NULL);
if (rc != wxID_OK)
return false;
bool dummyRes;
conn = dlg.CreateConn(applicationname, dummyRes);
}
else if (cmdParser.Found(wxT("qc"), &connstr))
{
wxLogInfo(wxT("Starting in query tool connect mode (-qc)."), configFile.c_str());
wxString host, database, username, rolename, tmps;
int sslmode = 0, port = 0;
wxStringTokenizer tkn(connstr, wxT(" "), wxTOKEN_STRTOK);
while (tkn.HasMoreTokens())
{
wxString str = tkn.GetNextToken();
if (str.StartsWith(wxT("hostaddr="), &host))
continue;
if (str.StartsWith(wxT("host="), &host))
continue;
if (str.StartsWith(wxT("dbname="), &database))
continue;
if (str.StartsWith(wxT("user="), &username))
continue;
if (str.StartsWith(wxT("role="), &rolename))
continue;
if (str.StartsWith(wxT("port="), &tmps))
{
port = StrToLong(tmps);
continue;
}
if (str.StartsWith(wxT("sslmode="), &tmps))
{
if (!tmps.Cmp(wxT("require")))
sslmode = 1;
else if (!tmps.Cmp(wxT("prefer")))
sslmode = 2;
else if (!tmps.Cmp(wxT("allow")))
sslmode = 3;
else if (!tmps.Cmp(wxT("disable")))
sslmode = 4;
else if (!tmps.Cmp(wxT("verify-ca")))
sslmode = 5;
else if (!tmps.Cmp(wxT("verify-full")))
sslmode = 6;
else
{
wxMessageBox(_("Unknown SSL mode: ") + tmps);
return false;
}
continue;
}
wxMessageBox(_("Unknown token in connection string: ") + str);
return false;
}
winSplash->Show(false);
dlgSelectConnection dlg(NULL, NULL);
dlg.CenterOnParent();
conn = dlg.CreateConn(host, database, username, port, rolename, sslmode, applicationname);
}
else
{
/* Can't happen.. */
return false;
}
if (!conn)
return false;
wxString fn;
#ifdef __WXMAC__
if (!macFileToOpen.IsEmpty())
{
wxLogInfo(wxT("Mac file launch: %s."), macFileToOpen.c_str());
fn = macFileToOpen;
}
else
cmdParser.Found(wxT("f"), &fn);
#else
cmdParser.Found(wxT("f"), &fn);
#endif
if (!fn.IsEmpty())
{
wxLogInfo(wxT("Auto-loading file: %s"), fn.c_str());
}
frmQuery *fq = new frmQuery(NULL, wxEmptyString, conn, wxEmptyString, fn);
fq->Go();
}
else
{
// Create & show the main form
winMain = new frmMain(appearanceFactory->GetLongAppName());
if (!winMain)
wxLogFatalError(__("Couldn't create the main window!"));
winMain->Show();
SetTopWindow(winMain);
wxString str;
if (cmdParser.Found(wxT("s"), &str))
{
pgServer *srv = winMain->ConnectToServer(str, !cmdParser.Found(wxT("q")));
if (srv && cmdParser.Found(wxT("q")))
{
pgConn *conn;
wxString applicationname = appearanceFactory->GetLongAppName() + _(" - Query Tool");
conn = srv->CreateConn(wxEmptyString, 0, applicationname);
if (conn)
{
wxString fn;
cmdParser.Found(wxT("f"), &fn);
if (!fn.IsEmpty())
{
wxLogInfo(wxT("Auto-loading file: %s"), fn.c_str());
}
frmQuery *fq = new frmQuery(winMain, wxEmptyString, conn, wxEmptyString, fn);
fq->Go();
winMain->AddFrame(fq);
}
}
}
}
SetExitOnFrameDelete(true);
if (winSplash)
{
winSplash->Close();
delete winSplash;
winSplash = 0;
}
}
return true;
}
// Not the Application!
int pgAdmin3::OnExit()
{
if (updateThread)
{
updateThread->Delete();
delete updateThread;
}
// Delete the settings object to ensure settings are saved.
delete settings;
#ifdef __WXMSW__
WSACleanup();
#endif
wxTheClipboard->Flush();
return 1;
}
// On the Mac, this function is called before Init, if the finder launches the app
// via a registered filetype. Grab the filename here, and test for it in Init.
#ifdef __WXMAC__
void pgAdmin3::MacOpenFile(const wxString &fileName)
{
macFileToOpen = fileName;
}
#endif
// Setup the paths for the application itself
void pgAdmin3::InitAppPaths()
{
i18nPath = LocatePath(I18N_DIR, false);
docPath = LocatePath(DOC_DIR, false);
uiPath = LocatePath(UI_DIR, false);
brandingPath = LocatePath(BRANDING_DIR, false);
pluginsDir = LocatePath(PLUGINS_DIR, false);
settingsIni = LocatePath(SETTINGS_INI, true);
}
// Setup the paths for the helper apps etc.
void pgAdmin3::InitXtraPaths()
{
//////////////////////////////////
// Now setup the app helper paths
//////////////////////////////////
// Windows-only path prefixes
#ifdef __WXMSW__
wxString programFiles = wxGetenv(wxT("ProgramFiles"));
wxString programFilesX86 = wxGetenv(wxT("ProgramFiles(x86)"));
// If we install a 32-bit pgAdmin in a 64-bit machine,
// We will be getting the both values as "Drive:\Program Files(x86)".
// Since, all 32-bit applications return "ProgramFiles" as ProgramFiles(x86).
// In that case, we need can get the actual programFiles value,
// by reading the key "ProgramFilesDir" in location "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion".
//
if (::wxIsPlatform64Bit() && programFiles == programFilesX86)
{
// Don't want to lost the exisisting behaviour.
//
wxString tmp = programFiles;
programFiles = wxEmptyString;
pgRegKey::PGREGWOWMODE wowMode = pgRegKey::PGREG_WOW64;
pgRegKey *pgKey = pgRegKey::OpenRegKey(HKEY_LOCAL_MACHINE, wxT("SOFTWARE\\Microsoft\\Windows\\CurrentVersion"), pgRegKey::PGREG_READ, wowMode);
if (!(pgKey && pgKey->QueryValue(wxT("ProgramFilesDir"), programFiles)))
{
programFiles = tmp;
}
if(pgKey)
{
delete pgKey;
pgKey = NULL;
}
}
#endif
// First, check and invalidate the paths if they're no good.
#ifdef __WXMSW__
if (!isPgApp(settings->GetPostgresqlPath() + wxT("\\pg_dump.exe")))
settings->SetPostgresqlPath(wxEmptyString);
if (!isEdbApp(settings->GetEnterprisedbPath() + wxT("\\pg_dump.exe")))
settings->SetEnterprisedbPath(wxEmptyString);
if (!isGpApp(settings->GetGPDBPath() + wxT("\\pg_dump.exe")))
settings->SetGPDBPath(wxEmptyString);
#else
if (!isPgApp(settings->GetPostgresqlPath() + wxT("/pg_dump")))
settings->SetPostgresqlPath(wxEmptyString);
if (!isEdbApp(settings->GetEnterprisedbPath() + wxT("/pg_dump")))
settings->SetEnterprisedbPath(wxEmptyString);
if (!isGpApp(settings->GetGPDBPath() + wxT("/pg_dump")))
settings->SetGPDBPath(wxEmptyString);
#endif
// Now, if either path is empty, start a search for helpers
// If we find apps, record the appropriate path *only* if it's
// not already set
if (settings->GetPostgresqlPath().IsEmpty() || settings->GetEnterprisedbPath().IsEmpty())
{
wxPathList path;
// Look in the app directory for things first
path.Add(loadPath);
#ifdef __WXMSW__
// Look for a path 'hint' on Windows. This registry setting may
// be set by the Win32 PostgreSQL installer which will generally
// install pg_dump et al. in the PostgreSQL bindir rather than
// the pgAdmin directory.
wxRegKey hintKey(wxT("HKEY_LOCAL_MACHINE\\Software\\pgAdmin III"));
if (hintKey.HasValue(wxT("Helper Path")))
{
wxString hintPath;
hintKey.QueryValue(wxT("Helper Path"), hintPath);
path.Add(hintPath);
}
#else
#ifdef __WXMAC__
if (wxDir::Exists(dataDir))
path.Add(dataDir) ;
#endif
#endif
path.AddEnvList(wxT("PATH"));
#ifdef __WXMSW__
wxFileName tmp = path.FindValidPath(wxT("pg_dump.exe"));
#else
wxFileName tmp = path.FindValidPath(wxT("pg_dump"));
#endif
if (tmp.FileExists())
{
if (isPgApp(tmp.GetFullPath()) && settings->GetPostgresqlPath().IsEmpty())
settings->SetPostgresqlPath(tmp.GetPath());
else if (isEdbApp(tmp.GetFullPath()) && settings->GetEnterprisedbPath().IsEmpty())
settings->SetEnterprisedbPath(tmp.GetPath());
}
}
if (settings->GetGPDBPath().IsEmpty())
{
wxPathList path;
#ifdef __WXMSW__
wxString GPhint = wxString(getenv( "GPHOME_CLIENTS" ), wxConvUTF8 );
if (GPhint.Length() > 1)
{
path.Add(GPhint + wxT("\\bin"));
path.Add(GPhint + wxT("\\lib"));
path.Add(GPhint);
}
GPhint = wxString(getenv( "GPHOME" ), wxConvUTF8 );
if (GPhint.Length() > 1)
{
path.Add(GPhint + wxT("\\bin"));
path.Add(GPhint + wxT("\\lib"));
path.Add(GPhint);
}
#endif
// Look in the app directory for things
path.Add(loadPath);
#ifdef __WXMAC__
if (wxDir::Exists(dataDir))
path.Add(dataDir) ;
#endif
path.AddEnvList(wxT("PATH"));
#ifdef __WXMSW__
wxFileName tmp = path.FindValidPath(wxT("pg_dump.exe"));
#else
wxFileName tmp = path.FindValidPath(wxT("pg_dump"));
#endif
if (tmp.FileExists())
{
if (isGpApp(tmp.GetFullPath()) && settings->GetGPDBPath().IsEmpty())
settings->SetGPDBPath(tmp.GetPath());
}
}
// Now, if either path is still empty, try a less intelligent search for each
// PostgreSQL
if (settings->GetPostgresqlPath().IsEmpty())
{
wxPathList path;
#ifdef __WXMSW__
path.Add(wxT("C:\\PostgresPlus\\8.3\\bin"));
if (!programFiles.IsEmpty())
{
path.Add(programFiles + wxT("\\PostgreSQL\\9.3\\bin"));
path.Add(programFiles + wxT("\\PostgreSQL\\9.2\\bin"));
path.Add(programFiles + wxT("\\PostgreSQL\\9.1\\bin"));
path.Add(programFiles + wxT("\\PostgreSQL\\9.0\\bin"));
path.Add(programFiles + wxT("\\PostgreSQL\\8.4\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\9.0SS\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\8.4SS\\bin"));
}
if (!programFilesX86.IsEmpty())
{
path.Add(programFilesX86 + wxT("\\PostgreSQL\\9.3\\bin"));
path.Add(programFilesX86 + wxT("\\PostgreSQL\\9.2\\bin"));
path.Add(programFilesX86 + wxT("\\PostgreSQL\\9.1\\bin"));
path.Add(programFilesX86 + wxT("\\PostgreSQL\\9.0\\bin"));
path.Add(programFilesX86 + wxT("\\PostgreSQL\\8.4\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\9.0SS\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\8.4SS\\bin"));
}
wxFileName tmp = path.FindValidPath(wxT("pg_dump.exe"));
#else
// Mac paths
path.Add(wxT("/Library/PostgreSQL/9.3/bin"));
path.Add(wxT("/Library/PostgreSQL/9.2/bin"));
path.Add(wxT("/Library/PostgreSQL/9.1/bin"));
path.Add(wxT("/Library/PostgreSQL/9.0/bin"));
path.Add(wxT("/Library/PostgreSQL/8.4/bin"));
path.Add(wxT("/Library/PostgresPlus/9.0SS/bin"));
path.Add(wxT("/Library/PostgresPlus/8.4SS/bin"));
// Generic Unix paths
path.Add(wxT("/opt/PostgreSQL/9.3/bin"));
path.Add(wxT("/opt/PostgreSQL/9.2/bin"));
path.Add(wxT("/opt/PostgreSQL/9.1/bin"));
path.Add(wxT("/opt/PostgreSQL/9.0/bin"));
path.Add(wxT("/opt/PostgreSQL/8.4/bin"));
path.Add(wxT("/opt/PostgresPlus/9.0SS/bin"));
path.Add(wxT("/opt/PostgresPlus/8.4SS/bin"));
path.Add(wxT("/usr/local/pgsql/bin"));
path.Add(wxT("/usr/local/bin"));
path.Add(wxT("/usr/bin"));
path.Add(wxT("/opt/local/pgsql/bin"));
path.Add(wxT("/opt/local/bin"));
path.Add(wxT("/opt/bin"));
wxFileName tmp = path.FindValidPath(wxT("pg_dump"));
#endif
if (tmp.FileExists())
{
if (isPgApp(tmp.GetFullPath()))
settings->SetPostgresqlPath(tmp.GetPath());
}
}
// EnterpriseDB
if (settings->GetEnterprisedbPath().IsEmpty())
{
wxPathList path;
#ifdef __WXMSW__
if (!programFiles.IsEmpty())
{
path.Add(programFiles + wxT("\\PostgresPlus\\9.3AS\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\9.2AS\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\9.1AS\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\9.0AS\\bin"));
path.Add(programFiles + wxT("\\PostgresPlus\\8.4AS\\bin"));
}
if (!programFilesX86.IsEmpty())
{
path.Add(programFilesX86 + wxT("\\PostgresPlus\\9.3AS\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\9.2AS\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\9.1AS\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\9.0AS\\bin"));
path.Add(programFilesX86 + wxT("\\PostgresPlus\\8.4AS\\bin"));
}
wxFileName tmp = path.FindValidPath(wxT("pg_dump.exe"));
#else
// Mac paths
path.Add(wxT("/Library/PostgresPlus/9.3AS/bin"));
path.Add(wxT("/Library/PostgresPlus/9.2AS/bin"));
path.Add(wxT("/Library/PostgresPlus/9.1AS/bin"));
path.Add(wxT("/Library/PostgresPlus/9.0AS/bin"));
path.Add(wxT("/Library/PostgresPlus/8.4AS/bin"));
// Generic Unix paths
path.Add(wxT("/opt/PostgresPlus/9.3AS/bin"));
path.Add(wxT("/opt/PostgresPlus/9.2AS/bin"));
path.Add(wxT("/opt/PostgresPlus/9.1AS/bin"));
path.Add(wxT("/opt/PostgresPlus/9.0AS/bin"));
path.Add(wxT("/opt/PostgresPlus/8.4AS/bin"));
path.Add(wxT("/usr/local/enterpriseDB/bin"));
path.Add(wxT("/usr/local/enterprisedb/bin"));
path.Add(wxT("/usr/local/edb/bin"));
path.Add(wxT("/usr/local/bin"));
path.Add(wxT("/usr/bin"));
path.Add(wxT("/opt/local/enterpriseDB/bin"));
path.Add(wxT("/opt/local/enterprisedb/bin"));
path.Add(wxT("/opt/local/edb/bin"));
path.Add(wxT("/opt/local/bin"));
wxFileName tmp = path.FindValidPath(wxT("pg_dump"));
#endif
if (tmp.FileExists())
{
if (isEdbApp(tmp.GetFullPath()))
settings->SetEnterprisedbPath(tmp.GetPath());
}
}
// Greenplum
if (settings->GetGPDBPath().IsEmpty())
{
wxPathList path;
#ifdef __WXMSW__
// Ugly... Greenplum client releases have no predictable numbers, because the path is the server version
if (!programFiles.IsEmpty())
{
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.3\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.2\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.1\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.0\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.3\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.2\\bin"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.3\\lib"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.2\\lib"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.1\\lib"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-4.0\\lib"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.3\\lib"));
path.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.2\\lib"));
}
if (!programFilesX86.IsEmpty())
{
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.3\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.2\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.1\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.0\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.3\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.2\\bin"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.3\\lib"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.2\\lib"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.1\\lib"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-4.0\\lib"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.3\\lib"));
path.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.2\\lib"));
}
wxFileName tmp = path.FindValidPath(wxT("pg_dump.exe"));
#else
// Mac paths
// Generic Unix paths
path.Add(wxT("/usr/local/greenplum-clients-4.3/bin"));
path.Add(wxT("/opt/local/greenplum-clients-4.3/bin"));
path.Add(wxT("/usr/local/greenplum-clients-4.2/bin"));
path.Add(wxT("/opt/local/greenplum-clients-4.2/bin"));
path.Add(wxT("/usr/local/greenplum-clients-4.1/bin"));
path.Add(wxT("/opt/local/greenplum-clients-4.1/bin"));
path.Add(wxT("/usr/local/greenplum-clients-4.0/bin"));
path.Add(wxT("/opt/local/greenplum-clients-4.0/bin"));
path.Add(wxT("/usr/local/greenplum-clients-3.3/bin"));
path.Add(wxT("/opt/local/greenplum-clients-3.3/bin"));
path.Add(wxT("/usr/local/greenplum-clients-3.2/bin"));
path.Add(wxT("/opt/local/greenplum-clients-3.2/bin"));
path.Add(wxT("/usr/local/greenplum-clients-4.3/lib"));
path.Add(wxT("/opt/local/greenplum-clients-4.3/lib"));
path.Add(wxT("/usr/local/greenplum-clients-4.2/lib"));
path.Add(wxT("/opt/local/greenplum-clients-4.2/lib"));
path.Add(wxT("/usr/local/greenplum-clients-4.1/lib"));
path.Add(wxT("/opt/local/greenplum-clients-4.1/lib"));
path.Add(wxT("/usr/local/greenplum-clients-4.0/lib"));
path.Add(wxT("/opt/local/greenplum-clients-4.0/lib"));
path.Add(wxT("/usr/local/greenplum-clients-3.3/lib"));
path.Add(wxT("/opt/local/greenplum-clients-3.3/lib"));
path.Add(wxT("/usr/local/greenplum-clients-3.2/lib"));
path.Add(wxT("/opt/local/greenplum-clients-3.2/lib"));
wxFileName tmp = path.FindValidPath(wxT("pg_dump"));
#endif
if (tmp.FileExists())
{
if (isGpApp(tmp.GetFullPath()))
settings->SetGPDBPath(tmp.GetPath());
}
}
// Now setup and verify the paths for each individual helper
#if defined(__WXMSW__)
pgBackupExecutable = settings->GetPostgresqlPath() + wxT("\\pg_dump.exe");
pgBackupAllExecutable = settings->GetPostgresqlPath() + wxT("\\pg_dumpall.exe");
pgRestoreExecutable = settings->GetPostgresqlPath() + wxT("\\pg_restore.exe");
edbBackupExecutable = settings->GetEnterprisedbPath() + wxT("\\pg_dump.exe");
edbBackupAllExecutable = settings->GetEnterprisedbPath() + wxT("\\pg_dumpall.exe");
edbRestoreExecutable = settings->GetEnterprisedbPath() + wxT("\\pg_restore.exe");
gpBackupExecutable = settings->GetGPDBPath() + wxT("\\pg_dump.exe");
gpBackupAllExecutable = settings->GetGPDBPath() + wxT("\\pg_dumpall.exe");
gpRestoreExecutable = settings->GetGPDBPath() + wxT("\\pg_restore.exe");
#else
pgBackupExecutable = settings->GetPostgresqlPath() + wxT("/pg_dump");
pgBackupAllExecutable = settings->GetPostgresqlPath() + wxT("/pg_dumpall");
pgRestoreExecutable = settings->GetPostgresqlPath() + wxT("/pg_restore");
edbBackupExecutable = settings->GetEnterprisedbPath() + wxT("/pg_dump");
edbBackupAllExecutable = settings->GetEnterprisedbPath() + wxT("/pg_dumpall");
edbRestoreExecutable = settings->GetEnterprisedbPath() + wxT("/pg_restore");
gpBackupExecutable = settings->GetGPDBPath() + wxT("/pg_dump");
gpBackupAllExecutable = settings->GetGPDBPath() + wxT("/pg_dumpall");
gpRestoreExecutable = settings->GetGPDBPath() + wxT("/pg_restore");
#endif
if (!isPgApp(pgBackupExecutable))
pgBackupExecutable = wxEmptyString;
if (!isPgApp(pgBackupAllExecutable))
pgBackupAllExecutable = wxEmptyString;
if (!isPgApp(pgRestoreExecutable))
pgRestoreExecutable = wxEmptyString;
if (!isEdbApp(edbBackupExecutable))
edbBackupExecutable = wxEmptyString;
if (!isEdbApp(edbBackupAllExecutable))
edbBackupAllExecutable = wxEmptyString;
if (!isEdbApp(edbRestoreExecutable))
edbRestoreExecutable = wxEmptyString;
if (!isGpApp(gpBackupExecutable))
gpBackupExecutable = wxEmptyString;
if (!isGpApp(gpBackupAllExecutable))
gpBackupAllExecutable = wxEmptyString;
if (!isGpApp(gpRestoreExecutable))
gpRestoreExecutable = wxEmptyString;
}
wxString pgAdmin3::LocatePath(const wxString &pathToFind, const bool isFile)
{
loadPath = wxPathOnly(argv[0]);
if (loadPath.IsEmpty())
loadPath = wxT(".");
loadPath = sanitizePath(loadPath);
#if defined(__WXMSW__)
// Search for the right paths. We check the following locations:
//
// 1) ./xxx - Running as a standalone install
// 2) ../pgAdmin/xxx - Running in a pgInstaller 8.1 installation
// (with the .exe and dlls in the main bin dir)
// 3) ../xxx or ../../xxx - Running in a development environment
if (!isFile)
{
if (wxDir::Exists(loadPath + pathToFind))
return sanitizePath(loadPath + pathToFind);
else if (wxDir::Exists(loadPath + wxT("/../pgAdmin III") + pathToFind))
return sanitizePath(loadPath + wxT("/../pgAdmin III") + pathToFind);
else if (wxDir::Exists(loadPath + wxT("/..") + pathToFind))
return sanitizePath(loadPath + wxT("/..") + pathToFind);
else if (wxDir::Exists(loadPath + wxT("/../..") + pathToFind))
return sanitizePath(loadPath + wxT("/../..") + pathToFind);
else
return wxEmptyString;
}
else
{
if (wxFile::Exists(loadPath + pathToFind))
return sanitizePath(loadPath + pathToFind);
else if (wxFile::Exists(loadPath + wxT("/../pgAdmin III") + pathToFind))
return sanitizePath(loadPath + wxT("/../pgAdmin III") + pathToFind);
else if (wxFile::Exists(loadPath + wxT("/..") + pathToFind))
return sanitizePath(loadPath + wxT("/..") + pathToFind);
else if (wxFile::Exists(loadPath + wxT("/../..") + pathToFind))
return sanitizePath(loadPath + wxT("/../..") + pathToFind);
else
return wxEmptyString;
}
#else
#ifdef __WXMAC__
#if wxCHECK_VERSION(2, 9, 5)
wxStandardPaths &stdPaths = wxStandardPaths::Get();
#else
// When using wxStandardPaths on OSX, wx default to the unix,
// not to the mac variants. Therefore, we request wxStandardPathsCF
// directly.
wxStandardPathsCF stdPaths;
#endif
dataDir = stdPaths.GetDataDir();
#else // other *ixes
// Data path (defined by configure under Unix).
#ifndef DATA_DIR
#define DATA_DIR "./"
#endif
dataDir = wxString::FromAscii(DATA_DIR);
#endif
// On unix systems, the search path is as follows:
//
// 1) DATADIR/xxx - DATADIR being defined by configure
// 2) ./../share/pgadmin3/xxx - The default 'make install' layout, but allowing for relocation
// 3) ./xxx - Windows-style standalone install
// 4) ./../xxx - Unix-style standalone install (with binaries in a bin directory)
if (!isFile)
{
if (wxDir::Exists(dataDir + pathToFind))
return sanitizePath(dataDir + pathToFind);
else if (wxDir::Exists(loadPath + wxT("/../share/pgadmin3") + pathToFind))
return sanitizePath(loadPath + wxT("/../share/pgadmin3") + pathToFind);
else if (wxDir::Exists(loadPath + pathToFind))
return sanitizePath(loadPath + pathToFind);
else if (wxDir::Exists(loadPath + wxT("/..") + pathToFind))
return sanitizePath(loadPath + wxT("/..") + pathToFind);
else
return wxEmptyString;
}
else
{
if (wxFile::Exists(dataDir + pathToFind))
return sanitizePath(dataDir + pathToFind);
else if (wxFile::Exists(loadPath + wxT("/../share/pgadmin3") + pathToFind))
return sanitizePath(loadPath + wxT("/../share/pgadmin3") + pathToFind);
else if (wxFile::Exists(loadPath + pathToFind))
return sanitizePath(loadPath + pathToFind);
else if (wxFile::Exists(loadPath + wxT("/..") + pathToFind))
return sanitizePath(loadPath + wxT("/..") + pathToFind);
else
return wxEmptyString;
}
#endif
}
void pgAdmin3::InitHelp()
{
// Windows-only path prefixes
#ifdef __WXMSW__
wxString programFiles = wxGetenv(wxT("ProgramFiles"));
wxString programFilesX86 = wxGetenv(wxT("ProgramFiles(x86)"));
#endif
// Search for external docs. As Windows and *nix etc
// are likely to be very different, we'll #ifdef them all.
wxPathList stdPaths, noPaths, pgPaths, edbPaths, gpPaths, slonyPaths;
wxString sep = wxFileName::GetPathSeparator();
stdPaths.Add(docPath + sep + settings->GetCanonicalLanguageName());
stdPaths.Add(docPath + sep + wxT("en_US"));
stdPaths.Add(docPath);
#ifdef __WXMSW__
if (!programFiles.IsEmpty())
{
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.4\\doc"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.4\\doc\\html"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.3\\doc"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.3\\doc\\html"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.2\\doc"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.2\\doc\\html"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.1\\doc"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.1\\doc\\html"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.0\\doc"));
pgPaths.Add(programFiles + wxT("\\PostgreSQL\\8.0\\doc\\html"));
}
if (!programFilesX86.IsEmpty())
{
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.4\\doc"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.4\\doc\\html"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.3\\doc"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.3\\doc\\html"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.2\\doc"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.2\\doc\\html"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.1\\doc"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.1\\doc\\html"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.0\\doc"));
pgPaths.Add(programFilesX86 + wxT("\\PostgreSQL\\8.0\\doc\\html"));
}
// Note that EDB docs are online from 8.3.
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.2\\dbserver\\doc"));
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.2\\dbserver\\doc\\html"));
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.1\\dbserver\\doc"));
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.1\\dbserver\\doc\\html"));
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.0\\dbserver\\doc"));
edbPaths.Add(wxT("C:\\EnterpriseDB\\8.0\\dbserver\\doc\\html"));
wxString GPhint = wxString(getenv( "GPHOME_CLIENTS" ), wxConvUTF8 );
if (GPhint.Length() > 1)
{
gpPaths.Add(GPhint + wxT("\\docs"));
gpPaths.Add(GPhint);
}
GPhint = wxString(getenv( "GPHOME" ), wxConvUTF8 );
if (GPhint.Length() > 1)
{
gpPaths.Add(GPhint + wxT("\\docs"));
gpPaths.Add(GPhint);
}
if (!programFiles.IsEmpty())
{
gpPaths.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.3\\docs"));
gpPaths.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.2\\docs"));
gpPaths.Add(programFiles + wxT("\\Greenplum\\greenplum-clients-3.1.1.1\\docs"));
}
if (!programFilesX86.IsEmpty())
{
gpPaths.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.3\\docs"));
gpPaths.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.2\\docs"));
gpPaths.Add(programFilesX86 + wxT("\\Greenplum\\greenplum-clients-3.1.1.1\\docs"));
}
;
#else
pgPaths.Add(wxT("/usr/local/pgsql/doc"));
pgPaths.Add(wxT("/usr/local/pgsql/doc/html"));
pgPaths.Add(wxT("/usr/local/doc/postgresql"));
pgPaths.Add(wxT("/usr/local/doc/postgresql/html"));
pgPaths.Add(wxT("/usr/doc/postgresql"));
pgPaths.Add(wxT("/usr/doc/postgresql/html"));
pgPaths.Add(wxT("/opt/local/pgsql/doc"));
pgPaths.Add(wxT("/opt/local/pgsql/doc/html"));
pgPaths.Add(wxT("/opt/local/doc/postgresql"));
pgPaths.Add(wxT("/opt/local/doc/postgresql/html"));
pgPaths.Add(wxT("/opt/doc/postgresql"));
pgPaths.Add(wxT("/opt/doc/postgresql/html"));
edbPaths.Add(wxT("/usr/local/enterpriseDB/doc"));
edbPaths.Add(wxT("/usr/local/enterpriseDB/doc/html"));
edbPaths.Add(wxT("/usr/local/enterprisedb/doc"));
edbPaths.Add(wxT("/usr/local/enterprisedb/doc/html"));
edbPaths.Add(wxT("/usr/local/edb/doc"));
edbPaths.Add(wxT("/usr/local/edb/doc/html"));
edbPaths.Add(wxT("/opt/local/enterpriseDB/doc"));
edbPaths.Add(wxT("/opt/local/enterpriseDB/doc/html"));
edbPaths.Add(wxT("/opt/local/enterprisedb/doc"));
edbPaths.Add(wxT("/opt/local/enterprisedb/doc/html"));
edbPaths.Add(wxT("/opt/local/edb/doc"));
edbPaths.Add(wxT("/opt/local/edb/doc/html"));
wxArrayString gpFoundDirs;
wxString pgDirname1 = wxString(wxT("/usr/local"));
wxDir gpDir1(pgDirname1);
if ( gpDir1.IsOpened() )
{
wxString gpfilename;
bool pgcont = gpDir1.GetFirst(&gpfilename, wxT("greenplum-clients*"), wxDIR_DIRS);
while ( pgcont )
{
gpFoundDirs.Add(wxString(pgDirname1 + wxT("/") + gpfilename));
pgcont = gpDir1.GetNext(&gpfilename);
}
}
wxString pgDirname2 = wxString(wxT("/opt/local"));
wxDir gpDir2(pgDirname2);
if ( gpDir2.IsOpened() )
{
wxString gpfilename;
bool pgcont = gpDir2.GetFirst(&gpfilename, wxT("greenplum-clients*"), wxDIR_DIRS);
while ( pgcont )
{
gpFoundDirs.Add(wxString(pgDirname2 + wxT("/") + gpfilename));
pgcont = gpDir2.GetNext(&gpfilename);
}
}
// make sure that the highest version number comes first
gpFoundDirs.Sort(true);
for (wxArrayString::iterator iter = gpFoundDirs.begin(); iter != gpFoundDirs.end(); ++iter)
{
wxLogMessage(*iter);
pgPaths.Add(wxString(*iter));
pgPaths.Add(wxString(*iter) + wxT("/html"));
pgPaths.Add(wxString(*iter) + wxT("/docs"));
}
#endif
// Slony will be installed into one of the DBMS directories
slonyPaths.Add(pgPaths);
slonyPaths.Add(edbPaths);
slonyPaths.Add(gpPaths);
// First look for a chm, then a zip, then an hhp file. For PostgreSQL
// and EnterpriseDB we'll then look for an index.html. No point for
// Slony as we'd most likely find the DBMS's help.
wxString pgHelpPath = settings->GetPgHelpPath();
wxString edbHelpPath = settings->GetEdbHelpPath();
wxString gpHelpPath = settings->GetGpHelpPath();
wxString slonyHelpPath = settings->GetSlonyHelpPath();
#if defined (__WXMSW__) || wxUSE_LIBMSPACK
pgHelpPath = GenerateHelpPath(wxT("PostgreSQL.chm"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgresql.chm"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgres.chm"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("pgsql.chm"), pgHelpPath, stdPaths, pgPaths);
edbHelpPath = GenerateHelpPath(wxT("EnterpriseDB.chm"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("enterprisedb.chm"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("edb.chm"), edbHelpPath, stdPaths, edbPaths);
gpHelpPath = GenerateHelpPath(wxT("Greenplum.chm"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPDB.chm"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPSQL.zip"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPClientToolsWin.pdf"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPClientTools.pdf"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPUserGuide.pdf"), gpHelpPath, stdPaths, gpPaths);
slonyHelpPath = GenerateHelpPath(wxT("Slony-I.chm"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony-i.chm"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony1.chm"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony.chm"), slonyHelpPath, stdPaths, slonyPaths);
#endif
pgHelpPath = GenerateHelpPath(wxT("PostgreSQL.zip"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgresql.zip"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgres.zip"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("pgsql.zip"), pgHelpPath, stdPaths, pgPaths);
edbHelpPath = GenerateHelpPath(wxT("EnterpriseDB.zip"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("enterprisedb.zip"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("edb.zip"), edbHelpPath, stdPaths, edbPaths);
gpHelpPath = GenerateHelpPath(wxT("Greenplum.zip"), gpHelpPath, stdPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPSQL.zip"), gpHelpPath, stdPaths, gpPaths);
slonyHelpPath = GenerateHelpPath(wxT("Slony-I.zip"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony-i.zip"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony1.zip"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony.zip"), slonyHelpPath, stdPaths, slonyPaths);
pgHelpPath = GenerateHelpPath(wxT("PostgreSQL.hhp"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgresql.hhp"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("postgres.hhp"), pgHelpPath, stdPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("pgsql.hhp"), pgHelpPath, stdPaths, pgPaths);
edbHelpPath = GenerateHelpPath(wxT("EnterpriseDB.hhp"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("enterprisedb.hhp"), edbHelpPath, stdPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("edb.hhp"), edbHelpPath, stdPaths, edbPaths);
gpHelpPath = GenerateHelpPath(wxT("Greenplum.hhp"), gpHelpPath, stdPaths, gpPaths);
slonyHelpPath = GenerateHelpPath(wxT("Slony-I.hhp"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony-i.hhp"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony1.hhp"), slonyHelpPath, stdPaths, slonyPaths);
slonyHelpPath = GenerateHelpPath(wxT("slony.hhp"), slonyHelpPath, stdPaths, slonyPaths);
pgHelpPath = GenerateHelpPath(wxT("index.html"), pgHelpPath, noPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("index.html"), pgHelpPath, noPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("index.html"), pgHelpPath, noPaths, pgPaths);
pgHelpPath = GenerateHelpPath(wxT("index.html"), pgHelpPath, noPaths, pgPaths);
edbHelpPath = GenerateHelpPath(wxT("index.html"), edbHelpPath, noPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("index.html"), edbHelpPath, noPaths, edbPaths);
edbHelpPath = GenerateHelpPath(wxT("index.html"), edbHelpPath, noPaths, edbPaths);
gpHelpPath = GenerateHelpPath(wxT("index.html"), gpHelpPath, noPaths, gpPaths);
gpHelpPath = GenerateHelpPath(wxT("GPUserGuide.pdf"), gpHelpPath, stdPaths, gpPaths);
// If either path ends in index.html, remove the filename because we
// just want the path. In this case, we should also add file:/// on
// non-Windows platforms.
if (pgHelpPath.EndsWith(wxT("index.html")))
{
pgHelpPath = pgHelpPath.Left(pgHelpPath.Length() - 10);
#ifndef __WXMSW__
pgHelpPath = wxT("file:///") + pgHelpPath;
#endif
}
if (edbHelpPath.EndsWith(wxT("index.html")))
{
edbHelpPath = edbHelpPath.Left(edbHelpPath.Length() - 10);
#ifndef __WXMSW__
edbHelpPath = wxT("file:///") + edbHelpPath;
#endif
}
if (gpHelpPath.EndsWith(wxT("index.html")))
{
gpHelpPath = gpHelpPath.Left(gpHelpPath.Length() - 10);
#ifndef __WXMSW__
gpHelpPath = wxT("file:///") + gpHelpPath;
#endif
}
// Last resorts - if we still have no help by now, use the websites!
if (pgHelpPath.IsEmpty())
pgHelpPath = wxT("http://www.postgresql.org/docs/current/static/");
if (edbHelpPath.IsEmpty())
edbHelpPath = wxT("http://www.enterprisedb.com/docs/en/current/server/");
if (gpHelpPath.IsEmpty())
gpHelpPath = wxT("http://docs.gopivotal.com/gpdb/index.html");
if (slonyHelpPath.IsEmpty())
slonyHelpPath = wxT("http://www.slony.info/documentation/");
// OK, so set the values
if (settings->GetPgHelpPath().IsEmpty())
settings->SetPgHelpPath(pgHelpPath);
if (settings->GetEdbHelpPath().IsEmpty())
settings->SetEdbHelpPath(edbHelpPath);
if (settings->GetGpHelpPath().IsEmpty())
settings->SetGpHelpPath(gpHelpPath);
if (settings->GetSlonyHelpPath().IsEmpty())
settings->SetSlonyHelpPath(slonyHelpPath);
}
wxString pgAdmin3::GenerateHelpPath(const wxString &file, const wxString ¤t, wxPathList stdPaths, wxPathList dbmsPaths)
{
// If we already have a value, don't change it.
if (!current.IsEmpty())
return current;
if (!stdPaths.FindValidPath(file).IsEmpty())
return stdPaths.FindValidPath(file);
if (!dbmsPaths.FindValidPath(file).IsEmpty())
return dbmsPaths.FindValidPath(file);
return wxEmptyString;
}
void pgAdmin3::InitXml()
{
#define chkXRC(id) XRCID(#id) == id
wxASSERT_MSG(
chkXRC(wxID_OK) &&
chkXRC(wxID_CANCEL) &&
chkXRC(wxID_HELP) &&
chkXRC(wxID_APPLY) &&
chkXRC(wxID_ADD) &&
chkXRC(wxID_STOP) &&
chkXRC(wxID_REMOVE) &&
chkXRC(wxID_REFRESH) &&
chkXRC(wxID_CLOSE),
wxT("XRC ID not correctly assigned."));
// if this assert fires, some event table uses XRCID(...) instead of wxID_... directly
#ifdef EMBED_XRC
wxLogInfo(__("Using embedded XRC data."));
// resources are loaded from memory
extern void InitXmlResource();
InitXmlResource();
#else
wxLogInfo(__("Using external XRC files."));
// for debugging, dialog resources are read from file
wxXmlResource::Get()->Load(uiPath + wxT("/*.xrc"));
#endif
}
void pgAdmin3::InitLogger()
{
sysLogger::logFile = settings->GetLogFile();
sysLogger::logLevel = settings->GetLogLevel();
logger = new sysLogger();
wxLog::SetVerbose(true);
wxLog::SetActiveTarget(logger);
wxLog::Resume();
}
void pgAdmin3::InitNetwork()
{
// Startup the windows sockets if required
#ifdef __WXMSW__
WSADATA wsaData;
if (WSAStartup(MAKEWORD(1, 1), &wsaData) != 0)
{
wxLogFatalError(__("Cannot initialise the networking subsystem!"));
}
#endif
wxSocketBase::Initialize();
pgConn::ExamineLibpqVersion();
}
#include "images/pgAdmin3-16.pngc"
#include "images/pgAdmin3-32.pngc"
#include "images/splash.pngc"
pgAppearanceFactory::pgAppearanceFactory()
{
is_branded = false;
// Setup the default branding options
#ifdef __WIN32__
splash_font_size = 8;
#else
#ifdef __WXMAC__
splash_font_size = 11;
#else
splash_font_size = 9;
#endif
#endif
splash_pos_x = 128;
splash_pos_y = 281;
splash_pos_offset = 15;
large_icon = *pgAdmin3_32_png_img;
small_icon = *pgAdmin3_16_png_img;
splash_image = *splash_png_img;
splash_text_colour = wxColour(255, 255, 255);
report_key_colour = wxColour(0, 154, 206);
long_appname = wxT("pgAdmin III");
short_appname = wxT("pgadmin3");
website_url = wxT("http://www.pgadmin.org/");
hide_enterprisedb_help = false;
hide_greenplum_help = false;
// Attempt to overload branding information
wxFileName brIni(brandingPath + wxT("/branding.ini"));
if (brIni.FileExists())
{
wxString brCfg = FileRead(brIni.GetFullPath());
wxStringTokenizer tkz(brCfg, wxT("\r\n"));
while(tkz.HasMoreTokens())
{
wxString token = tkz.GetNextToken();
if (token.Trim() == wxEmptyString || token.StartsWith(wxT(";")))
continue;
if (token.Lower().StartsWith(wxT("largeicon=")))
{
large_icon = wxImage(brandingPath + wxT("/") + token.AfterFirst('=').Trim());
if (!large_icon.IsOk())
large_icon = *pgAdmin3_32_png_img;
else
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("smallicon=")))
{
small_icon = wxImage(brandingPath + wxT("/") + token.AfterFirst('=').Trim());
if (!small_icon.IsOk())
small_icon = *pgAdmin3_16_png_img;
else
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("splashimage=")))
{
splash_image = wxImage(brandingPath + wxT("/") + token.AfterFirst('=').Trim());
if (!splash_image.IsOk())
splash_image = *splash_png_img;
else
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("icon=")))
{
icon = token.AfterFirst('=').Trim();
is_branded = true;
}
#ifdef __WIN32__
else if (token.Lower().StartsWith(wxT("splashfontsizewin=")))
#else
#ifdef __WXMAC__
else if (token.Lower().StartsWith(wxT("splashfontsizemac=")))
#else
else if (token.Lower().StartsWith(wxT("splashfontsizegtk=")))
#endif
#endif
{
token.AfterFirst('=').Trim().ToLong(&splash_font_size);
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("splashposx=")))
{
token.AfterFirst('=').Trim().ToLong(&splash_pos_x);
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("splashposy=")))
{
token.AfterFirst('=').Trim().ToLong(&splash_pos_y);
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("splashposoffset=")))
{
token.AfterFirst('=').Trim().ToLong(&splash_pos_offset);
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("splashtextcolour=")))
{
splash_text_colour = wxColor(token.AfterFirst('=').Trim());
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("shortappname=")))
{
short_appname = token.AfterFirst('=').Trim();
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("longappname=")))
{
long_appname = token.AfterFirst('=').Trim();
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("websiteurl=")))
{
website_url = token.AfterFirst('=').Trim();
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("reportkeycolour=")))
{
report_key_colour = wxColor(token.AfterFirst('=').Trim());
is_branded = true;
}
else if (token.Lower().StartsWith(wxT("hideenterprisedbhelp=")))
{
if (token.AfterFirst('=').Trim() == wxT("1"))
{
hide_enterprisedb_help = true;
is_branded = true;
}
}
else if (token.Lower().StartsWith(wxT("hidegreenplumhelp=")))
{
if (token.AfterFirst('=').Trim() == wxT("1"))
{
hide_greenplum_help = true;
is_branded = true;
}
}
}
}
#ifdef __WXMSW__
// Set the MUI cache value for the grouped task bar title,
// otherwise we get the value from the resources which is
// definitely not what we want in branded mode!
wxRegKey *pRegKey = new wxRegKey(wxT("HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\ShellNoRoam\\MUICache"));
if(!pRegKey->Exists())
pRegKey->Create();
#if wxCHECK_VERSION(2, 9, 5)
wxStandardPaths &paths = wxStandardPaths::Get();
#else
wxStandardPaths paths;
#endif
//wxString tmp;
//tmp.Printf(wxT("%s"), long_appname);
pRegKey->SetValue(paths.GetExecutablePath(), GetLongAppName());
delete pRegKey;
// Reset the image for the task bar group. This can only by
// set per-exe name unfortunately. If we don't find an icon,
// remove the registry value.
wxString icon_path = brandingPath + wxT("\\") + icon;
pRegKey = new wxRegKey(wxT("HKEY_CURRENT_USER\\Software\\Classes\\Applications\\") + wxFileName(paths.GetExecutablePath()).GetFullName());
if(!pRegKey->Exists())
pRegKey->Create();
if (wxFile::Exists(icon_path))
{
pRegKey->SetValue(wxT("TaskbarGroupIcon"), icon_path);
}
else
{
if (pRegKey->HasValue(wxT("TaskbarGroupIcon")))
pRegKey->DeleteValue(wxT("TaskbarGroupIcon"));
}
delete pRegKey;
#endif
}
void pgAppearanceFactory::SetIcons(wxDialog *dlg)
{
wxIconBundle icons;
icons.AddIcon(GetSmallIconImage());
icons.AddIcon(GetBigIconImage());
dlg->SetIcons(icons);
}
void pgAppearanceFactory::SetIcons(wxTopLevelWindow *dlg)
{
wxIconBundle icons;
icons.AddIcon(GetSmallIconImage());
icons.AddIcon(GetBigIconImage());
dlg->SetIcons(icons);
}
wxIcon pgAppearanceFactory::GetSmallIconImage()
{
wxIcon icon;
icon.CopyFromBitmap(wxBitmap(small_icon));
return icon;
}
wxIcon pgAppearanceFactory::GetBigIconImage()
{
wxIcon icon;
icon.CopyFromBitmap(wxBitmap(large_icon));
return icon;
}
wxFont pgAppearanceFactory::GetSplashTextFont()
{
wxFont fnt(*wxNORMAL_FONT);
fnt.SetPointSize(splash_font_size);
return fnt;
}
////////////////////////////////////////////////////////////////////////////////
// InitLibpq()
//
// Dynamically load EDB-specific functions from libpq
#ifdef __WXMSW__
void pgAdmin3::InitLibpq()
{
HINSTANCE hinstLib;
// Get a handle to the DLL module.
hinstLib = LoadLibrary(TEXT("libpq"));
// If the handle is valid, try to get the function address.
if (hinstLib != NULL)
{
PQiGetOutResult = (PQGETOUTRESULT) GetProcAddress(hinstLib, "PQgetOutResult");
PQiPrepareOut = (PQPREPAREOUT) GetProcAddress(hinstLib, "PQprepareOut");
PQiSendQueryPreparedOut = (PQSENDQUERYPREPAREDOUT) GetProcAddress(hinstLib, "PQsendQueryPreparedOut");
// If the function address is valid, call the function.
if (PQiGetOutResult != NULL)
wxLogInfo(wxT("Using runtime dynamically linked EDB libpq functions."));
else
wxLogInfo(wxT("EDB libpq functions are not available."));
}
}
#endif
|