ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/prefs_editor_gtk.cpp
(Generate patch)

Comparing BasiliskII/src/Unix/prefs_editor_gtk.cpp (file contents):
Revision 1.33 by gbeauche, 2006-04-16T21:25:41Z vs.
Revision 1.36 by gbeauche, 2006-04-18T21:29:01Z

# Line 45 | Line 45
45  
46   // Global variables
47   static GtkWidget *win;                          // Preferences window
48 < static bool start_clicked = true;       // Return value of PrefsEditor() function
48 > static bool start_clicked = false;      // Return value of PrefsEditor() function
49  
50  
51   // Prototypes
# Line 124 | Line 124 | static GtkWidget *make_pane(GtkWidget *n
124          GtkWidget *frame, *label, *box;
125  
126          frame = gtk_frame_new(NULL);
127 <        gtk_widget_show(frame);
128 <        gtk_container_border_width(GTK_CONTAINER(frame), 4);
129 <
130 <        label = gtk_label_new(GetString(title_id));
131 <        gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, label);
127 >        gtk_container_set_border_width(GTK_CONTAINER(frame), 4);
128  
129          box = gtk_vbox_new(FALSE, 4);
134        gtk_widget_show(box);
130          gtk_container_set_border_width(GTK_CONTAINER(box), 4);
131          gtk_container_add(GTK_CONTAINER(frame), box);
132 +
133 +        gtk_widget_show_all(frame);
134 +
135 +        label = gtk_label_new(GetString(title_id));
136 +        gtk_notebook_append_page(GTK_NOTEBOOK(notebook), frame, label);
137          return box;
138   }
139  
# Line 519 | Line 519 | bool PrefsEditor(void)
519          gtk_box_pack_start(GTK_BOX(box), menu_bar, FALSE, TRUE, 0);
520  
521          GtkWidget *notebook = gtk_notebook_new();
522        gtk_widget_show(notebook);
522          gtk_notebook_set_tab_pos(GTK_NOTEBOOK(notebook), GTK_POS_TOP);
523          gtk_notebook_set_scrollable(GTK_NOTEBOOK(notebook), FALSE);
524          gtk_box_pack_start(GTK_BOX(box), notebook, TRUE, TRUE, 0);
525 +        gtk_widget_realize(notebook);
526  
527          create_volumes_pane(notebook);
528          create_scsi_pane(notebook);
# Line 531 | Line 531 | bool PrefsEditor(void)
531          create_serial_pane(notebook);
532          create_memory_pane(notebook);
533          create_jit_pane(notebook);
534 +        gtk_widget_show(notebook);
535  
536          static const opt_desc buttons[] = {
537                  {STR_START_BUTTON, GTK_SIGNAL_FUNC(cb_start)},
# Line 711 | Line 712 | static GtkWidget *w_jit_cache_size;
712   static GtkWidget *w_jit_lazy_flush;
713   static GtkWidget *w_jit_follow_const_jumps;
714  
715 + // Are we running a JIT capable CPU?
716 + static bool is_jit_capable(void)
717 + {
718 + #if USE_JIT && (defined __i386__ || defined __x86_64__)
719 +        return true;
720 + #elif defined __APPLE__ && defined __MACH__
721 +        // XXX run-time detect so that we can use a PPC GUI prefs editor
722 +        static char cpu[10];
723 +        if (cpu[0] == 0) {
724 +                FILE *fp = popen("uname -p", "r");
725 +                if (fp == NULL)
726 +                        return false;
727 +                fgets(cpu, sizeof(cpu) - 1, fp);
728 +                fclose(fp);
729 +        }
730 +        if (cpu[0] == 'i' && cpu[2] == '8' && cpu[3] == '6') // XXX assuming i?86
731 +                return true;
732 + #endif
733 +        return false;
734 + }
735 +
736   // Set sensitivity of widgets
737   static void set_jit_sensitive(void)
738   {
# Line 749 | Line 771 | static void tb_jit_follow_const_jumps(Gt
771   // Read settings from widgets and set preferences
772   static void read_jit_settings(void)
773   {
774 < #if USE_JIT
753 <        bool jit_enabled = PrefsFindBool("jit");
774 >        bool jit_enabled = is_jit_capable() && PrefsFindBool("jit");
775          if (jit_enabled) {
776                  const char *str = gtk_entry_get_text(GTK_ENTRY(GTK_COMBO(w_jit_cache_size)->entry));
777                  PrefsReplaceInt32("jitcachesize", atoi(str));
778          }
758 #endif
779   }
780  
781   // Create "JIT Compiler" pane
782   static void create_jit_pane(GtkWidget *top)
783   {
784 < #if USE_JIT
784 >        if (!is_jit_capable())
785 >                return;
786 >
787          GtkWidget *box, *table, *label, *menu;
788          char str[32];
789          
# Line 787 | Line 809 | static void create_jit_pane(GtkWidget *t
809          w_jit_follow_const_jumps = make_checkbox(box, STR_JIT_FOLLOW_CONST_JUMPS, "jitinline", GTK_SIGNAL_FUNC(tb_jit_follow_const_jumps));
810  
811          set_jit_sensitive();
790 #endif
812   }
813  
814   /*
# Line 1539 | Line 1560 | uint8 XPRAM[XPRAM_SIZE];
1560   void MountVolume(void *fh) { }
1561   void FileDiskLayout(loff_t size, uint8 *data, loff_t &start_byte, loff_t &real_size) { }
1562  
1563 + #if defined __APPLE__ && defined __MACH__
1564 + void DarwinAddCDROMPrefs(void) { }
1565 + void DarwinAddFloppyPrefs(void) { }
1566 + void DarwinAddSerialPrefs(void) { }
1567 + bool DarwinCDReadTOC(char *, uint8 *) { }
1568 + #endif
1569 +
1570  
1571   /*
1572   *  Display alert
# Line 1600 | Line 1628 | void WarningAlert(const char *text)
1628   *  RPC handlers
1629   */
1630  
1631 + static GMainLoop *g_gui_loop;
1632 +
1633   static int handle_ErrorAlert(rpc_connection_t *connection)
1634   {
1635          D(bug("handle_ErrorAlert\n"));
# Line 1632 | Line 1662 | static int handle_Exit(rpc_connection_t
1662   {
1663          D(bug("handle_Exit\n"));
1664  
1665 +        g_main_quit(g_gui_loop);
1666          return RPC_ERROR_NO_ERROR;
1667   }
1668  
1669  
1670   /*
1671 + *  SIGCHLD handler
1672 + */
1673 +
1674 + static char g_app_path[PATH_MAX];
1675 + static rpc_connection_t *g_gui_connection = NULL;
1676 +
1677 + static void sigchld_handler(int sig, siginfo_t *sip, void *)
1678 + {
1679 +        D(bug("Child %d exitted with status = %x\n", sip->si_pid, sip->si_status));
1680 +
1681 +        int status = sip->si_status;
1682 +        if (status & 0x80)
1683 +                status |= -1 ^0xff;
1684 +
1685 +        if (status < 0) {       // negative -> execlp/-errno
1686 +                char str[256];
1687 +                sprintf(str, GetString(STR_NO_B2_EXE_FOUND), g_app_path, strerror(-status));
1688 +                ErrorAlert(str);
1689 +                status = 1;
1690 +        }
1691 +
1692 +        if (status != 0) {
1693 +                if (g_gui_connection)
1694 +                        rpc_exit(g_gui_connection);
1695 +                exit(status);
1696 +        }
1697 + }
1698 +
1699 +
1700 + /*
1701   *  Start standalone GUI
1702   */
1703  
# Line 1666 | Line 1727 | int main(int argc, char *argv[])
1727          if (start) {
1728                  char gui_connection_path[64];
1729                  sprintf(gui_connection_path, "/org/BasiliskII/GUI/%d", getpid());
1669                
1670                int pid = fork();
1671                if (pid == 0) {                 // Child
1672                        char b2_path[PATH_MAX];
1673                        strcpy(b2_path, argv[0]);
1674                        char *p = strrchr(b2_path, '/');
1675                        p = p ? p + 1 : b2_path;
1676                        *p = '\0';
1677                        strcat(b2_path, "BasiliskII");
1678                        execl(b2_path, b2_path, "--gui-connection", gui_connection_path, (char *)NULL);
1730  
1731 +                // Catch exits from the child process
1732 +                struct sigaction sigchld_sa, old_sigchld_sa;
1733 +                sigemptyset(&sigchld_sa.sa_mask);
1734 +                sigchld_sa.sa_sigaction = sigchld_handler;
1735 +                sigchld_sa.sa_flags = SA_NOCLDSTOP | SA_SIGINFO;
1736 +                if (sigaction(SIGCHLD, &sigchld_sa, &old_sigchld_sa) < 0) {
1737                          char str[256];
1738 <                        sprintf(str, GetString(STR_NO_B2_EXE_FOUND), b2_path, strerror(errno));
1738 >                        sprintf(str, GetString(STR_SIG_INSTALL_ERR), SIGCHLD, strerror(errno));
1739                          ErrorAlert(str);
1740                          return 1;
1741                  }
1742 <                else {                                  // Parent
1743 <                        rpc_connection_t *connection;
1744 <                        if ((connection = rpc_init_server(gui_connection_path)) == NULL) {
1742 >
1743 >                // Search and run the BasiliskII executable
1744 >                // XXX it can be in a bundle on MacOS X
1745 >                strcpy(g_app_path, argv[0]);
1746 >                char *p = strrchr(g_app_path, '/');
1747 >                p = p ? p + 1 : g_app_path;
1748 >                *p = '\0';
1749 >                strcat(g_app_path, "BasiliskII");
1750 >
1751 >                int pid = fork();
1752 >                if (pid == 0) {
1753 >                        execlp(g_app_path, g_app_path, "--gui-connection", gui_connection_path, (char *)NULL);
1754 > #ifdef _POSIX_PRIORITY_SCHEDULING
1755 >                        // XXX get a chance to run the parent process so that to not confuse/upset GTK...
1756 >                        sched_yield();
1757 > #endif
1758 >                        _exit(-errno);
1759 >                }
1760 >
1761 >                // Establish a connection to Basilisk II
1762 >                if ((g_gui_connection = rpc_init_server(gui_connection_path)) == NULL) {
1763                          printf("ERROR: failed to initialize GUI-side RPC server connection\n");
1764                          return 1;
1765 <                        }
1765 >                }
1766 >                static const rpc_method_descriptor_t vtable[] = {
1767 >                        { RPC_METHOD_ERROR_ALERT,                       handle_ErrorAlert },
1768 >                        { RPC_METHOD_WARNING_ALERT,                     handle_WarningAlert },
1769 >                        { RPC_METHOD_EXIT,                                      handle_Exit }
1770 >                };
1771 >                if (rpc_method_add_callbacks(g_gui_connection, vtable, sizeof(vtable) / sizeof(vtable[0])) < 0) {
1772 >                        printf("ERROR: failed to setup GUI method callbacks\n");
1773 >                        return 1;
1774 >                }
1775 >                int socket;
1776 >                if ((socket = rpc_listen_socket(g_gui_connection)) < 0) {
1777 >                        printf("ERROR: failed to initialize RPC server thread\n");
1778 >                        return 1;
1779 >                }
1780  
1781 <                        static const rpc_method_descriptor_t vtable[] = {
1782 <                                { RPC_METHOD_ERROR_ALERT,                       handle_ErrorAlert },
1694 <                                { RPC_METHOD_WARNING_ALERT,                     handle_WarningAlert },
1695 <                                { RPC_METHOD_EXIT,                                      handle_Exit }
1696 <                        };
1697 <                        if (rpc_method_add_callbacks(connection, vtable, sizeof(vtable) / sizeof(vtable[0])) < 0) {
1698 <                                printf("ERROR: failed to setup GUI method callbacks\n");
1699 <                                return 1;
1700 <                        }
1781 >                g_gui_loop = g_main_new(TRUE);
1782 >                while (g_main_is_running(g_gui_loop)) {
1783  
1784 <                        if (rpc_listen(connection) < 0) {
1785 <                                printf("ERROR: failed to initialize RPC server thread\n");
1786 <                                return 1;
1784 >                        // Process a few events pending
1785 >                        const int N_EVENTS_DISPATCH = 10;
1786 >                        for (int i = 0; i < N_EVENTS_DISPATCH; i++) {
1787 >                                if (!g_main_iteration(FALSE))
1788 >                                        break;
1789                          }
1790  
1791 <                        int status, ret = -1;
1792 <                        while (waitpid(pid, &status, 0) != pid)
1793 <                                ;
1794 <                        if (WIFEXITED(status))
1795 <                                ret = WEXITSTATUS(status);
1796 <
1797 <                        rpc_exit(connection);
1714 <                        return ret;
1791 >                        // Check for RPC events (100 ms timeout)
1792 >                        int ret = rpc_wait_dispatch(g_gui_connection, 100000);
1793 >                        if (ret == 0)
1794 >                                continue;
1795 >                        if (ret < 0)
1796 >                                break;
1797 >                        rpc_dispatch(g_gui_connection);
1798                  }
1799 +
1800 +                rpc_exit(g_gui_connection);
1801 +                return 0;
1802          }
1803  
1804          return 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines