boinc/client/app_graphics.C

174 lines
5.2 KiB
C

// The contents of this file are subject to the BOINC Public License
// Version 1.0 (the "License"); you may not use this file except in
// compliance with the License. You may obtain a copy of the License at
// http://boinc.berkeley.edu/license_1.0.txt
//
// Software distributed under the License is distributed on an "AS IS"
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
// License for the specific language governing rights and limitations
// under the License.
//
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
//
// The Initial Developer of the Original Code is the SETI@home project.
// Portions created by the SETI@home project are Copyright (C) 2002
// University of California at Berkeley. All Rights Reserved.
//
// Contributor(s):
//
// graphics-related interaction with running apps
#include "cpp.h"
#ifdef _WIN32
#include "boinc_win.h"
#else
#endif
#include "client_state.h"
#include "app.h"
void ACTIVE_TASK::request_graphics_mode(int mode) {
graphics_mode_requested = mode;
graphics_mode_sent = 0;
}
bool ACTIVE_TASK::send_graphics_mode(int mode) {
bool sent = app_client_shm.shm->graphics_request.send_msg(
xml_graphics_modes[mode]
);
//msg_printf(NULL, MSG_INFO, "%d requested mode %d: sent %d", time(0), mode, sent);
return sent;
}
void ACTIVE_TASK::check_graphics_mode_ack() {
int mode;
char buf[MSG_CHANNEL_SIZE];
if (app_client_shm.shm->graphics_reply.get_msg(buf)) {
mode = app_client_shm.decode_graphics_msg(buf);
//msg_printf(NULL, MSG_INFO, "got graphics ack %d", mode);
if (mode != MODE_REREAD_PREFS) {
graphics_mode_acked = mode;
}
}
}
// return an app (if any) with given requested mode
//
ACTIVE_TASK* ACTIVE_TASK_SET::get_app_graphics_mode_requested(int req_mode) {
unsigned int i;
ACTIVE_TASK* atp;
for (i=0; i<active_tasks.size(); i++) {
atp = active_tasks[i];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
if (atp->graphics_mode_requested == req_mode) {
return atp;
}
}
return NULL;
}
void ACTIVE_TASK_SET::save_app_modes() {
unsigned int i;
ACTIVE_TASK* atp;
for (i=0; i<active_tasks.size(); i++) {
atp = active_tasks[i];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
atp->graphics_mode_before_ss = atp->graphics_mode_acked;
//msg_printf(NULL, MSG_INFO, "saved mode %d", atp->graphics_mode_acked);
}
}
void ACTIVE_TASK_SET::hide_apps() {
unsigned int i;
ACTIVE_TASK* atp;
for (i=0; i<active_tasks.size(); i++) {
atp = active_tasks[i];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
atp->request_graphics_mode(MODE_HIDE_GRAPHICS);
}
}
// return apps to the mode they were in before screensaving started
//
void ACTIVE_TASK_SET::restore_apps() {
unsigned int i;
ACTIVE_TASK* atp;
for (i=0; i<active_tasks.size(); i++) {
atp = active_tasks[i];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
if (atp->graphics_mode_requested != atp->graphics_mode_before_ss) {
atp->request_graphics_mode(atp->graphics_mode_before_ss);
}
}
}
void ACTIVE_TASK_SET::graphics_poll() {
unsigned int i;
ACTIVE_TASK* atp;
bool sent;
for (i=0; i<active_tasks.size(); i++) {
atp = active_tasks[i];
if (atp->scheduler_state != CPU_SCHED_RUNNING ||
atp->state != PROCESS_RUNNING
) continue;
if (atp->graphics_mode_requested != atp->graphics_mode_sent) {
sent = atp->send_graphics_mode(atp->graphics_mode_requested);
if (sent) {
atp->graphics_mode_sent = atp->graphics_mode_requested;
}
//msg_printf(NULL, MSG_INFO, "sending graphics req %d: %d", sent);
}
atp->check_graphics_mode_ack();
}
}
bool ACTIVE_TASK::supports_graphics() {
return (graphics_mode_acked != MODE_UNSUPPORTED);
}
// Return the next graphics-capable app.
// Always try to choose a new project.
// Preferences goes to apps with pre-ss mode WINDOW,
// then apps with pre-ss mode HIDE
//
ACTIVE_TASK* CLIENT_STATE::get_next_graphics_capable_app() {
static int project_index=0;
unsigned int i, j;
ACTIVE_TASK *atp;
PROJECT *p;
// loop through all projects starting with the one at project_index
//
for (i=0; i<projects.size(); ++i) {
project_index %= projects.size();
p = projects[project_index++];
for (j=0; j<active_tasks.active_tasks.size(); ++j) {
atp = active_tasks.active_tasks[j];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
if (atp->result->project != p) continue;
if (atp->graphics_mode_before_ss == MODE_WINDOW) {
return atp;
}
}
for (j=0; j<active_tasks.active_tasks.size(); ++j) {
atp = active_tasks.active_tasks[j];
if (atp->scheduler_state != CPU_SCHED_RUNNING) continue;
if (atp->result->project != p) continue;
if (atp->graphics_mode_before_ss == MODE_HIDE_GRAPHICS) {
return atp;
}
}
}
return NULL;
}