2003-01-24 17:36:15 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2004-09-21 02:50:02 +04:00
|
|
|
// Copyright (c) 2001-2002, Haiku, Inc.
|
2003-01-24 17:36:15 +03:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
// File Name: ServerApp.cpp
|
|
|
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
|
|
|
// Description: Server-side BApplication counterpart
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
#include <AppDefs.h>
|
|
|
|
#include <List.h>
|
|
|
|
#include <String.h>
|
2003-01-24 18:19:27 +03:00
|
|
|
#include <PortLink.h>
|
2003-09-17 23:28:31 +04:00
|
|
|
#include <SysCursor.h>
|
2004-01-17 21:37:57 +03:00
|
|
|
#include <ColorSet.h>
|
|
|
|
#include <RGBColor.h>
|
2003-01-24 17:36:15 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2003-07-10 21:48:04 +04:00
|
|
|
#include <ScrollBar.h>
|
2003-03-12 17:29:59 +03:00
|
|
|
#include <ServerProtocol.h>
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-17 21:37:57 +03:00
|
|
|
#include "AppServer.h"
|
2003-03-12 17:29:59 +03:00
|
|
|
#include "BitmapManager.h"
|
2004-10-14 05:23:00 +04:00
|
|
|
#include "BGet++.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "CursorManager.h"
|
2003-01-24 18:19:27 +03:00
|
|
|
#include "Desktop.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "DisplayDriver.h"
|
|
|
|
#include "FontServer.h"
|
2004-10-14 05:23:00 +04:00
|
|
|
#include "RAMLinkMsgReader.h"
|
2004-08-23 02:33:57 +04:00
|
|
|
#include "RootLayer.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "ServerApp.h"
|
2004-08-23 02:33:57 +04:00
|
|
|
#include "ServerScreen.h"
|
2003-02-07 15:53:57 +03:00
|
|
|
#include "ServerWindow.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "ServerCursor.h"
|
|
|
|
#include "ServerBitmap.h"
|
2003-03-21 18:49:28 +03:00
|
|
|
#include "ServerPicture.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "ServerConfig.h"
|
2003-10-19 04:03:06 +04:00
|
|
|
#include "WinBorder.h"
|
2003-01-24 17:36:15 +03:00
|
|
|
#include "LayerData.h"
|
2003-03-19 04:12:53 +03:00
|
|
|
#include "Utils.h"
|
|
|
|
|
2004-09-05 04:52:45 +04:00
|
|
|
//#define DEBUG_SERVERAPP
|
2003-09-17 23:28:31 +04:00
|
|
|
|
2003-09-09 01:48:35 +04:00
|
|
|
#ifdef DEBUG_SERVERAPP
|
|
|
|
# include <stdio.h>
|
|
|
|
# define STRACE(x) printf x
|
|
|
|
#else
|
|
|
|
# define STRACE(x) ;
|
|
|
|
#endif
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Constructor
|
2003-07-10 21:48:04 +04:00
|
|
|
\param sendport port ID for the BApplication which will receive the ServerApp's messages
|
|
|
|
\param rcvport port by which the ServerApp will receive messages from its BApplication.
|
2004-01-20 01:18:37 +03:00
|
|
|
\param fSignature NULL-terminated string which contains the BApplication's
|
|
|
|
MIME fSignature.
|
2003-01-24 17:36:15 +03:00
|
|
|
*/
|
2004-01-13 03:56:36 +03:00
|
|
|
ServerApp::ServerApp(port_id sendport, port_id rcvport, port_id clientLooperPort,
|
|
|
|
team_id clientTeamID, int32 handlerID, char *signature)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
// it will be of *very* musch use in correct window order
|
2004-01-13 03:56:36 +03:00
|
|
|
fClientTeamID = clientTeamID;
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
// what to send a message to the client? Write a BMessage to this port.
|
2004-01-13 03:56:36 +03:00
|
|
|
fClientLooperPort = clientLooperPort;
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
// need to copy the fSignature because the message buffer
|
2003-01-24 17:36:15 +03:00
|
|
|
// owns the copy which we are passed as a parameter.
|
2004-01-20 01:18:37 +03:00
|
|
|
fSignature=(signature)?signature:"application/x-vnd.NULL-application-signature";
|
2003-03-19 04:12:53 +03:00
|
|
|
|
|
|
|
// token ID of the BApplication's BHandler object. Used for BMessage target specification
|
2004-01-20 01:18:37 +03:00
|
|
|
fHandlerToken=handlerID;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
// fClientAppPort is the our BApplication's event port
|
|
|
|
fClientAppPort=sendport;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
// fMessagePort is the port we receive messages from our BApplication
|
|
|
|
fMessagePort=rcvport;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-10-14 05:23:00 +04:00
|
|
|
fMsgReader = new LinkMsgReader(fMessagePort);
|
|
|
|
fMsgSender = new LinkMsgSender(fClientAppPort);
|
2004-07-30 19:16:59 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fSWindowList=new BList(0);
|
|
|
|
fBitmapList=new BList(0);
|
|
|
|
fPictureList=new BList(0);
|
|
|
|
fIsActive=false;
|
2004-10-06 03:00:47 +04:00
|
|
|
|
2004-10-14 05:23:00 +04:00
|
|
|
fSharedMem=new AreaPool;
|
2004-10-06 03:00:47 +04:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
ServerCursor *defaultc=cursormanager->GetCursor(B_CURSOR_DEFAULT);
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fAppCursor=(defaultc)?new ServerCursor(defaultc):NULL;
|
2004-10-06 03:00:47 +04:00
|
|
|
fAppCursor->SetOwningTeam(fClientTeamID);
|
2004-01-20 01:18:37 +03:00
|
|
|
fLockSem=create_sem(1,"ServerApp sem");
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-17 21:37:57 +03:00
|
|
|
// Does this even belong here any more? --DW
|
|
|
|
// _driver=desktop->GetDisplayDriver();
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fCursorHidden=false;
|
2003-03-19 04:12:53 +03:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
Run();
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s:\n",fSignature.String()));
|
|
|
|
STRACE(("\tBApp port: %ld\n",fClientAppPort));
|
|
|
|
STRACE(("\tReceiver port: %ld\n",fMessagePort));
|
2003-01-24 17:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
//! Does all necessary teardown for application
|
|
|
|
ServerApp::~ServerApp(void)
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("*ServerApp %s:~ServerApp()\n",fSignature.String()));
|
2003-01-24 17:36:15 +03:00
|
|
|
int32 i;
|
2004-01-20 01:18:37 +03:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
ServerBitmap *tempbmp;
|
2004-01-20 01:18:37 +03:00
|
|
|
for(i=0;i<fBitmapList->CountItems();i++)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
tempbmp=(ServerBitmap*)fBitmapList->ItemAt(i);
|
2003-01-24 17:36:15 +03:00
|
|
|
if(tempbmp)
|
|
|
|
delete tempbmp;
|
|
|
|
}
|
2004-01-20 01:18:37 +03:00
|
|
|
fBitmapList->MakeEmpty();
|
|
|
|
delete fBitmapList;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2003-03-21 18:49:28 +03:00
|
|
|
ServerPicture *temppic;
|
2004-01-20 01:18:37 +03:00
|
|
|
for(i=0;i<fPictureList->CountItems();i++)
|
2003-03-21 18:49:28 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
temppic=(ServerPicture*)fPictureList->ItemAt(i);
|
2003-03-21 18:49:28 +03:00
|
|
|
if(temppic)
|
|
|
|
delete temppic;
|
|
|
|
}
|
2004-01-20 01:18:37 +03:00
|
|
|
fPictureList->MakeEmpty();
|
|
|
|
delete fPictureList;
|
2003-03-21 18:49:28 +03:00
|
|
|
|
2004-10-14 05:23:00 +04:00
|
|
|
delete fMsgReader;
|
|
|
|
fMsgReader=NULL;
|
|
|
|
|
|
|
|
delete fMsgSender;
|
|
|
|
fMsgSender=NULL;
|
2004-10-19 01:31:15 +04:00
|
|
|
|
|
|
|
// This shouldn't be necessary -- all cursors owned by the app
|
|
|
|
// should be cleaned up by RemoveAppCursors
|
|
|
|
// if(fAppCursor)
|
|
|
|
// delete fAppCursor;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-10-06 03:00:47 +04:00
|
|
|
cursormanager->RemoveAppCursors(fClientTeamID);
|
2004-01-20 01:18:37 +03:00
|
|
|
delete_sem(fLockSem);
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("#ServerApp %s:~ServerApp()\n",fSignature.String()));
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
// Kill the monitor thread if it exists
|
|
|
|
thread_info info;
|
2004-01-20 01:18:37 +03:00
|
|
|
if(get_thread_info(fMonitorThreadID,&info)==B_OK)
|
|
|
|
kill_thread(fMonitorThreadID);
|
2004-10-14 05:23:00 +04:00
|
|
|
|
|
|
|
delete fSharedMem;
|
2003-01-24 17:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Starts the ServerApp monitoring for messages
|
|
|
|
\return false if the application couldn't start, true if everything went OK.
|
|
|
|
*/
|
|
|
|
bool ServerApp::Run(void)
|
|
|
|
{
|
|
|
|
// Unlike a BApplication, a ServerApp is *supposed* to return immediately
|
|
|
|
// when its Run() function is called.
|
2004-01-20 01:18:37 +03:00
|
|
|
fMonitorThreadID=spawn_thread(MonitorApp,fSignature.String(),B_NORMAL_PRIORITY,this);
|
|
|
|
if(fMonitorThreadID==B_NO_MORE_THREADS || fMonitorThreadID==B_NO_MEMORY)
|
2003-01-24 17:36:15 +03:00
|
|
|
return false;
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
resume_thread(fMonitorThreadID);
|
2003-01-24 17:36:15 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Pings the target app to make sure it's still working
|
|
|
|
\return true if target is still "alive" and false if "He's dead, Jim."
|
|
|
|
"But that's impossible..."
|
|
|
|
|
|
|
|
This function is called by the app_server thread to ensure that
|
|
|
|
the target app still exists. We do this not by sending a message
|
|
|
|
but by calling get_port_info. We don't want to send ping messages
|
|
|
|
just because the app might simply be hung. If this is the case, it
|
|
|
|
should be up to the user to kill it. If the app has been killed, its
|
|
|
|
ports will be invalid. Thus, if get_port_info returns an error, we
|
|
|
|
tell the app_server to delete the respective ServerApp.
|
|
|
|
*/
|
|
|
|
bool ServerApp::PingTarget(void)
|
|
|
|
{
|
|
|
|
team_info tinfo;
|
2004-01-20 01:18:37 +03:00
|
|
|
if(get_team_info(fClientTeamID,&tinfo)==B_BAD_TEAM_ID)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
|
|
|
port_id serverport=find_port(SERVER_PORT_NAME);
|
|
|
|
if(serverport==B_NAME_NOT_FOUND)
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
printf("PANIC: ServerApp %s could not find the app_server port in PingTarget()!\n",fSignature.String());
|
2003-01-24 17:36:15 +03:00
|
|
|
return false;
|
|
|
|
}
|
2004-10-14 05:23:00 +04:00
|
|
|
fMsgSender->SetPort(serverport);
|
|
|
|
fMsgSender->StartMessage(AS_DELETE_APP);
|
|
|
|
fMsgSender->Attach(&fMonitorThreadID,sizeof(thread_id));
|
|
|
|
fMsgSender->Flush();
|
2003-01-24 17:36:15 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-01-27 22:43:15 +03:00
|
|
|
/*!
|
|
|
|
\brief Send a message to the ServerApp with no attachments
|
|
|
|
\param code ID code of the message to post
|
|
|
|
*/
|
2004-08-23 02:33:57 +04:00
|
|
|
void ServerApp::PostMessage(int32 code)
|
2003-01-27 22:43:15 +03:00
|
|
|
{
|
2004-08-23 02:33:57 +04:00
|
|
|
BPortLink link(fMessagePort);
|
|
|
|
link.StartMessage(code);
|
|
|
|
link.Flush();
|
2004-01-20 01:18:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Send a message to the ServerApp's BApplication
|
|
|
|
\param msg The message to send
|
|
|
|
*/
|
|
|
|
void ServerApp::SendMessageToClient(const BMessage *msg) const
|
|
|
|
{
|
|
|
|
ssize_t size;
|
|
|
|
char *buffer;
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
size=msg->FlattenedSize();
|
|
|
|
buffer=new char[size];
|
|
|
|
|
|
|
|
if (msg->Flatten(buffer, size) == B_OK)
|
2004-01-13 03:56:36 +03:00
|
|
|
write_port(fClientLooperPort, msg->what, buffer, size);
|
|
|
|
else
|
2004-01-20 01:18:37 +03:00
|
|
|
printf("PANIC: ServerApp: '%s': can't flatten message in 'SendMessageToClient()'\n", fSignature.String());
|
2004-01-13 03:56:36 +03:00
|
|
|
|
2004-06-11 18:58:24 +04:00
|
|
|
delete [] buffer;
|
2004-01-13 03:56:36 +03:00
|
|
|
}
|
|
|
|
|
2003-09-17 23:28:31 +04:00
|
|
|
/*!
|
|
|
|
\brief Sets the ServerApp's active status
|
|
|
|
\param value The new status of the ServerApp.
|
|
|
|
|
|
|
|
This changes an internal flag and also sets the current cursor to the one specified by
|
|
|
|
the application
|
|
|
|
*/
|
|
|
|
void ServerApp::Activate(bool value)
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
fIsActive=value;
|
2003-09-17 23:28:31 +04:00
|
|
|
SetAppCursor();
|
|
|
|
}
|
|
|
|
|
|
|
|
//! Sets the cursor to the application cursor, if any.
|
|
|
|
void ServerApp::SetAppCursor(void)
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
if(fAppCursor)
|
|
|
|
cursormanager->SetCursor(fAppCursor->ID());
|
2003-09-17 23:28:31 +04:00
|
|
|
else
|
|
|
|
cursormanager->SetCursor(B_CURSOR_DEFAULT);
|
|
|
|
}
|
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
/*!
|
|
|
|
\brief The thread function ServerApps use to monitor messages
|
|
|
|
\param data Pointer to the thread's ServerApp object
|
|
|
|
\return Throwaway value - always 0
|
|
|
|
*/
|
2004-01-20 01:18:37 +03:00
|
|
|
int32 ServerApp::MonitorApp(void *data)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
|
|
|
// Message-dispatching loop for the ServerApp
|
2004-08-09 02:34:36 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
ServerApp *app = (ServerApp *)data;
|
2004-10-14 05:23:00 +04:00
|
|
|
LinkMsgReader msgqueue(app->fMessagePort);
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
bool quitting = false;
|
2004-07-30 19:16:59 +04:00
|
|
|
int32 code;
|
|
|
|
status_t err = B_OK;
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
while(!quitting)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-07-30 19:16:59 +04:00
|
|
|
STRACE(("info: ServerApp::MonitorApp listening on port %ld.\n", app->fMessagePort));
|
2004-10-14 05:23:00 +04:00
|
|
|
// err = msgqueue.GetNextReply(&code);
|
|
|
|
err = msgqueue.GetNextMessage(&code);
|
2004-07-30 19:16:59 +04:00
|
|
|
if (err < B_OK)
|
|
|
|
break;
|
2003-10-04 23:10:11 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
switch(code)
|
2003-10-04 23:10:11 +04:00
|
|
|
{
|
|
|
|
case AS_QUIT_APP:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
// This message is received only when the app_server is asked to shut down in
|
|
|
|
// test/debug mode. Of course, if we are testing while using AccelerantDriver, we do
|
|
|
|
// NOT want to shut down client applications. The server can be quit o in this fashion
|
|
|
|
// through the driver's interface, such as closing the ViewDriver's window.
|
|
|
|
|
|
|
|
STRACE(("ServerApp %s:Server shutdown notification received\n",app->fSignature.String()));
|
|
|
|
|
2003-10-04 23:10:11 +04:00
|
|
|
// If we are using the real, accelerated version of the
|
|
|
|
// DisplayDriver, we do NOT want the user to be able shut down
|
|
|
|
// the server. The results would NOT be pretty
|
|
|
|
if(DISPLAYDRIVER!=HWDRIVER)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
BMessage pleaseQuit(B_QUIT_REQUESTED);
|
2004-01-13 03:56:36 +03:00
|
|
|
app->SendMessageToClient(&pleaseQuit);
|
2003-01-24 17:36:15 +03:00
|
|
|
}
|
2003-10-04 23:10:11 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case B_QUIT_REQUESTED:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: B_QUIT_REQUESTED\n",app->fSignature.String()));
|
2003-10-04 23:10:11 +04:00
|
|
|
// Our BApplication sent us this message when it quit.
|
|
|
|
// We need to ask the app_server to delete our monitor
|
2004-01-13 03:56:36 +03:00
|
|
|
// ADI: No! This is a bad solution. A thead should continue its
|
|
|
|
// execution until its exit point, and this can *very* easily be done
|
2004-01-20 01:18:37 +03:00
|
|
|
quitting=true;
|
2004-01-13 03:56:36 +03:00
|
|
|
// see... no need to ask the main thread to kill us.
|
|
|
|
// still... it will delete this ServerApp object.
|
|
|
|
port_id serverport = find_port(SERVER_PORT_NAME);
|
|
|
|
if(serverport == B_NAME_NOT_FOUND){
|
2004-01-20 01:18:37 +03:00
|
|
|
printf("PANIC: ServerApp %s could not find the app_server port!\n",app->fSignature.String());
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2004-10-14 05:23:00 +04:00
|
|
|
app->fMsgSender->SetPort(serverport);
|
|
|
|
app->fMsgSender->StartMessage(AS_DELETE_APP);
|
|
|
|
app->fMsgSender->Attach(&app->fMonitorThreadID, sizeof(thread_id));
|
|
|
|
app->fMsgSender->Flush();
|
2003-10-04 23:10:11 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Got a Message to dispatch\n",app->fSignature.String()));
|
2004-10-14 05:23:00 +04:00
|
|
|
app->DispatchMessage(code, msgqueue);
|
2003-10-04 23:10:11 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end for
|
2004-01-20 01:18:37 +03:00
|
|
|
|
|
|
|
// clean exit.
|
2003-01-24 17:36:15 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Handler function for BApplication API messages
|
|
|
|
\param code Identifier code for the message. Equivalent to BMessage::what
|
|
|
|
\param buffer Any attachments
|
|
|
|
|
|
|
|
Note that the buffer's exact format is determined by the particular message.
|
|
|
|
All attachments are placed in the buffer via a PortLink, so it will be a
|
|
|
|
matter of casting and incrementing an index variable to access them.
|
|
|
|
*/
|
2004-10-14 05:23:00 +04:00
|
|
|
void ServerApp::DispatchMessage(int32 code, LinkMsgReader &msg)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
|
|
|
LayerData ld;
|
2005-01-17 05:05:50 +03:00
|
|
|
BPortLink replylink;
|
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
switch(code)
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2003-10-19 04:03:06 +04:00
|
|
|
case AS_UPDATE_COLORS:
|
|
|
|
{
|
2004-10-06 03:00:47 +04:00
|
|
|
// NOTE: R2: Eventually we will have windows which will notify their children of changes in
|
2004-06-11 18:58:24 +04:00
|
|
|
// system colors
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
/* STRACE(("ServerApp %s: Received global UI color update notification\n",fSignature.String()));
|
2004-01-13 03:56:36 +03:00
|
|
|
ServerWindow *win;
|
2003-10-19 04:03:06 +04:00
|
|
|
BMessage msg(_COLORS_UPDATED);
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
for(int32 i=0; i<fSWindowList->CountItems(); i++)
|
2003-10-19 04:03:06 +04:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
win=(ServerWindow*)fSWindowList->ItemAt(i);
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Lock();
|
2004-01-20 01:18:37 +03:00
|
|
|
win->fWinBorder->UpdateColors();
|
2004-07-30 19:16:59 +04:00
|
|
|
win->SendMessageToClient(AS_UPDATE_COLORS, msg);
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Unlock();
|
|
|
|
}
|
2004-01-20 01:18:37 +03:00
|
|
|
*/ break;
|
2003-10-19 04:03:06 +04:00
|
|
|
}
|
|
|
|
case AS_UPDATE_FONTS:
|
|
|
|
{
|
2004-10-06 03:00:47 +04:00
|
|
|
// NOTE: R2: Eventually we will have windows which will notify their children of changes in
|
2004-06-11 18:58:24 +04:00
|
|
|
// system fonts
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
/* STRACE(("ServerApp %s: Received global font update notification\n",fSignature.String()));
|
2004-01-13 03:56:36 +03:00
|
|
|
ServerWindow *win;
|
2003-10-19 04:03:06 +04:00
|
|
|
BMessage msg(_FONTS_UPDATED);
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
for(int32 i=0; i<fSWindowList->CountItems(); i++)
|
2003-10-19 04:03:06 +04:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
win=(ServerWindow*)fSWindowList->ItemAt(i);
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Lock();
|
2004-01-20 01:18:37 +03:00
|
|
|
win->fWinBorder->UpdateFont();
|
2004-07-30 19:16:59 +04:00
|
|
|
win->SendMessageToClient(AS_UPDATE_FONTS, msg);
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Unlock();
|
|
|
|
}
|
2004-01-20 01:18:37 +03:00
|
|
|
*/ break;
|
2003-10-19 04:03:06 +04:00
|
|
|
}
|
2004-10-14 05:23:00 +04:00
|
|
|
case AS_AREA_MESSAGE:
|
|
|
|
{
|
|
|
|
// This occurs in only one kind of case: a message is too big to send over a port. This
|
|
|
|
// is really an edge case, so this shouldn't happen *too* often
|
|
|
|
|
|
|
|
// Attached Data:
|
|
|
|
// 1) area_id id of an area already owned by the server containing the message
|
|
|
|
// 2) size_t offset of the pointer in the area
|
|
|
|
// 3) size_t size of the message
|
|
|
|
|
|
|
|
area_id area;
|
|
|
|
size_t offset;
|
|
|
|
size_t msgsize;
|
|
|
|
area_info ai;
|
|
|
|
int8 *msgpointer;
|
|
|
|
|
|
|
|
msg.Read<area_id>(&area);
|
|
|
|
msg.Read<size_t>(&offset);
|
|
|
|
msg.Read<size_t>(&msgsize);
|
|
|
|
|
|
|
|
// Part sanity check, part get base pointer :)
|
|
|
|
if(get_area_info(area,&ai)!=B_OK)
|
|
|
|
break;
|
|
|
|
|
|
|
|
msgpointer=(int8*)ai.address + offset;
|
|
|
|
|
|
|
|
RAMLinkMsgReader mlink(msgpointer);
|
|
|
|
DispatchMessage(mlink.Code(),mlink);
|
|
|
|
|
|
|
|
// This is a very special case in the sense that when ServerMemIO is used for this
|
|
|
|
// purpose, it will be set to NOT automatically free the memory which it had
|
|
|
|
// requested. This is the server's job once the message has been dispatched.
|
|
|
|
fSharedMem->ReleaseBuffer(msgpointer);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2004-10-06 03:00:47 +04:00
|
|
|
case AS_ACQUIRE_SERVERMEM:
|
|
|
|
{
|
2004-10-14 05:23:00 +04:00
|
|
|
// This particular call is more than a bit of a pain in the neck. We are given a
|
|
|
|
// size of a chunk of memory needed. We need to (1) allocate it, (2) get the area for
|
|
|
|
// this particular chunk, (3) find the offset in the area for this chunk, and (4)
|
|
|
|
// tell the client about it. Good thing this particular call isn't used much
|
|
|
|
|
2004-10-06 03:00:47 +04:00
|
|
|
// Received from a ServerMemIO object requesting operating memory
|
|
|
|
// Attached Data:
|
|
|
|
// 1) size_t requested size
|
2004-10-14 05:23:00 +04:00
|
|
|
// 2) port_id reply_port
|
|
|
|
|
|
|
|
size_t memsize;
|
|
|
|
port_id replyport;
|
|
|
|
|
|
|
|
msg.Read<size_t>(&memsize);
|
|
|
|
msg.Read<port_id>(&replyport);
|
|
|
|
|
|
|
|
// TODO: I wonder if ACQUIRE_SERVERMEM should have a minimum size requirement?
|
|
|
|
|
|
|
|
void *sharedmem=fSharedMem->GetBuffer(memsize);
|
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-10-14 05:23:00 +04:00
|
|
|
if(memsize<1 || sharedmem==NULL)
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
area_id owningArea=area_for(sharedmem);
|
|
|
|
area_info ai;
|
|
|
|
|
|
|
|
if(owningArea==B_ERROR || get_area_info(owningArea,&ai)!=B_OK)
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 areaoffset=((int32*)sharedmem)-((int32*)ai.address);
|
|
|
|
STRACE(("Successfully allocated shared memory of size %ld\n",memsize));
|
|
|
|
|
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<area_id>(owningArea);
|
|
|
|
replylink.Attach<int32>(areaoffset);
|
|
|
|
replylink.Flush();
|
2004-10-06 03:00:47 +04:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_RELEASE_SERVERMEM:
|
|
|
|
{
|
2004-10-14 05:23:00 +04:00
|
|
|
// Received when a ServerMemIO object on destruction
|
|
|
|
// Attached Data:
|
|
|
|
// 1) area_id owning area
|
|
|
|
// 2) int32 area offset
|
|
|
|
|
|
|
|
area_id owningArea;
|
|
|
|
area_info ai;
|
|
|
|
int32 areaoffset;
|
|
|
|
void *sharedmem;
|
|
|
|
|
|
|
|
msg.Read<area_id>(&owningArea);
|
|
|
|
msg.Read<int32>(&areaoffset);
|
|
|
|
|
|
|
|
if(owningArea<0 || get_area_info(owningArea,&ai)!=B_OK)
|
|
|
|
break;
|
|
|
|
|
|
|
|
STRACE(("Successfully freed shared memory\n"));
|
|
|
|
sharedmem=((int32*)ai.address)+areaoffset;
|
|
|
|
|
|
|
|
fSharedMem->ReleaseBuffer(sharedmem);
|
|
|
|
|
2004-10-06 03:00:47 +04:00
|
|
|
break;
|
|
|
|
}
|
2003-10-19 04:03:06 +04:00
|
|
|
case AS_UPDATE_DECORATOR:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Received decorator update notification\n",fSignature.String()));
|
2004-01-17 21:37:57 +03:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
ServerWindow *win;
|
2003-10-19 04:03:06 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
for(int32 i=0; i<fSWindowList->CountItems(); i++)
|
2003-10-19 04:03:06 +04:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
win=(ServerWindow*)fSWindowList->ItemAt(i);
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Lock();
|
2004-01-20 01:18:37 +03:00
|
|
|
win->fWinBorder->UpdateDecorator();
|
2003-10-19 04:03:06 +04:00
|
|
|
win->Unlock();
|
|
|
|
}
|
2004-01-13 03:56:36 +03:00
|
|
|
break;
|
2003-10-19 04:03:06 +04:00
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_CREATE_WINDOW:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
|
|
|
// Create the ServerWindow to node monitor a new OBWindow
|
|
|
|
|
|
|
|
// Attached data:
|
|
|
|
// 2) BRect window frame
|
2003-07-24 23:38:24 +04:00
|
|
|
// 3) uint32 window look
|
|
|
|
// 4) uint32 window feel
|
|
|
|
// 5) uint32 window flags
|
2003-08-31 21:38:34 +04:00
|
|
|
// 6) uint32 workspace index
|
|
|
|
// 7) int32 BHandler token of the window
|
|
|
|
// 8) port_id window's message port
|
2003-07-24 23:38:24 +04:00
|
|
|
// 9) const char * title
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-06-11 18:58:24 +04:00
|
|
|
BRect frame;
|
|
|
|
uint32 look;
|
|
|
|
uint32 feel;
|
|
|
|
uint32 flags;
|
|
|
|
uint32 wkspaces;
|
2004-07-30 19:16:59 +04:00
|
|
|
int32 token = B_NULL_TOKEN;
|
|
|
|
port_id sendPort = -1;
|
|
|
|
port_id looperPort = -1;
|
|
|
|
char *title = NULL;
|
|
|
|
port_id replyport = -1;
|
2004-08-09 02:34:36 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<BRect>(&frame);
|
|
|
|
msg.Read<int32>((int32*)&look);
|
|
|
|
msg.Read<int32>((int32*)&feel);
|
|
|
|
msg.Read<int32>((int32*)&flags);
|
|
|
|
msg.Read<int32>((int32*)&wkspaces);
|
|
|
|
msg.Read<int32>(&token);
|
|
|
|
msg.Read<port_id>(&sendPort);
|
|
|
|
msg.Read<port_id>(&looperPort);
|
|
|
|
msg.ReadString(&title);
|
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Got 'New Window' message, trying to do smething...\n",fSignature.String()));
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2003-10-04 23:10:11 +04:00
|
|
|
// ServerWindow constructor will reply with port_id of a newly created port
|
2004-06-11 18:58:24 +04:00
|
|
|
ServerWindow *sw = NULL;
|
|
|
|
sw = new ServerWindow(frame, title, look, feel, flags, this,
|
2004-03-28 19:00:48 +04:00
|
|
|
sendPort, looperPort, replyport, wkspaces, token);
|
|
|
|
sw->Init();
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-13 03:56:36 +03:00
|
|
|
STRACE(("\nServerApp %s: New Window %s (%.1f,%.1f,%.1f,%.1f)\n",
|
2004-01-20 01:18:37 +03:00
|
|
|
fSignature.String(),title,frame.left,frame.top,frame.right,frame.bottom));
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
if (title)
|
|
|
|
free(title);
|
2003-03-23 23:52:37 +03:00
|
|
|
|
2003-02-07 15:53:57 +03:00
|
|
|
break;
|
2003-01-24 17:36:15 +03:00
|
|
|
}
|
2003-03-12 17:29:59 +03:00
|
|
|
case AS_CREATE_BITMAP:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Received BBitmap creation request\n",fSignature.String()));
|
2003-03-12 17:29:59 +03:00
|
|
|
// Allocate a bitmap for an application
|
|
|
|
|
|
|
|
// Attached Data:
|
2003-10-04 04:56:43 +04:00
|
|
|
// 1) BRect bounds
|
|
|
|
// 2) color_space space
|
|
|
|
// 3) int32 bitmap_flags
|
|
|
|
// 4) int32 bytes_per_row
|
|
|
|
// 5) int32 screen_id::id
|
|
|
|
// 6) port_id reply port
|
2003-03-12 17:29:59 +03:00
|
|
|
|
|
|
|
// Reply Code: SERVER_TRUE
|
|
|
|
// Reply Data:
|
|
|
|
// 1) int32 server token
|
|
|
|
// 2) area_id id of the area in which the bitmap data resides
|
|
|
|
// 3) int32 area pointer offset used to calculate fBasePtr
|
|
|
|
|
|
|
|
// First, let's attempt to allocate the bitmap
|
2004-07-30 19:16:59 +04:00
|
|
|
port_id replyport = -1;
|
2003-10-03 04:41:40 +04:00
|
|
|
BRect r;
|
|
|
|
color_space cs;
|
|
|
|
int32 f,bpr;
|
2003-03-12 17:29:59 +03:00
|
|
|
screen_id s;
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<BRect>(&r);
|
|
|
|
msg.Read<color_space>(&cs);
|
|
|
|
msg.Read<int32>(&f);
|
|
|
|
msg.Read<int32>(&bpr);
|
|
|
|
msg.Read<screen_id>(&s);
|
|
|
|
msg.Read<int32>(&replyport);
|
2003-03-12 17:29:59 +03:00
|
|
|
|
|
|
|
ServerBitmap *sbmp=bitmapmanager->CreateBitmap(r,cs,f,bpr,s);
|
2003-09-09 01:48:35 +04:00
|
|
|
|
|
|
|
STRACE(("ServerApp %s: Create Bitmap (%.1f,%.1f,%.1f,%.1f)\n",
|
2004-01-20 01:18:37 +03:00
|
|
|
fSignature.String(),r.left,r.top,r.right,r.bottom));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2003-03-12 17:29:59 +03:00
|
|
|
if(sbmp)
|
|
|
|
{
|
2004-04-16 21:52:31 +04:00
|
|
|
fBitmapList->AddItem(sbmp);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
2003-10-04 23:10:11 +04:00
|
|
|
replylink.Attach<int32>(sbmp->Token());
|
|
|
|
replylink.Attach<int32>(sbmp->Area());
|
|
|
|
replylink.Attach<int32>(sbmp->AreaOffset());
|
2003-03-12 17:29:59 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// alternatively, if something went wrong, we reply with SERVER_FALSE
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
2003-03-12 17:29:59 +03:00
|
|
|
}
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.Flush();
|
2003-03-12 17:29:59 +03:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_DELETE_BITMAP:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: received BBitmap delete request\n",fSignature.String()));
|
2003-03-12 17:29:59 +03:00
|
|
|
// Delete a bitmap's allocated memory
|
|
|
|
|
|
|
|
// Attached Data:
|
2003-10-04 04:56:43 +04:00
|
|
|
// 1) int32 token
|
|
|
|
// 2) int32 reply port
|
2003-03-12 17:29:59 +03:00
|
|
|
|
|
|
|
// Reply Code: SERVER_TRUE if successful,
|
|
|
|
// SERVER_FALSE if the buffer was already deleted or was not found
|
2004-07-30 19:16:59 +04:00
|
|
|
port_id replyport = -1;
|
2003-10-03 04:41:40 +04:00
|
|
|
int32 bmp_id;
|
2003-03-12 17:29:59 +03:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&bmp_id);
|
|
|
|
msg.Read<int32>(&replyport);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-04-16 21:52:31 +04:00
|
|
|
ServerBitmap *sbmp=FindBitmap(bmp_id);
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2003-03-12 17:29:59 +03:00
|
|
|
if(sbmp)
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Deleting Bitmap %ld\n",fSignature.String(),bmp_id));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fBitmapList->RemoveItem(sbmp);
|
2003-03-12 17:29:59 +03:00
|
|
|
bitmapmanager->DeleteBitmap(sbmp);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
2003-03-12 17:29:59 +03:00
|
|
|
}
|
|
|
|
else
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Flush();
|
2003-03-12 17:29:59 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-03-21 18:49:28 +03:00
|
|
|
case AS_CREATE_PICTURE:
|
|
|
|
{
|
2004-08-29 19:01:44 +04:00
|
|
|
// TODO: Implement AS_CREATE_PICTURE
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Create Picture unimplemented\n",fSignature.String()));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2003-03-21 18:49:28 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_DELETE_PICTURE:
|
|
|
|
{
|
2004-08-29 19:01:44 +04:00
|
|
|
// TODO: Implement AS_DELETE_PICTURE
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Delete Picture unimplemented\n",fSignature.String()));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2003-03-21 18:49:28 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_CLONE_PICTURE:
|
|
|
|
{
|
2004-08-29 19:01:44 +04:00
|
|
|
// TODO: Implement AS_CLONE_PICTURE
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Clone Picture unimplemented\n",fSignature.String()));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2003-03-21 18:49:28 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_DOWNLOAD_PICTURE:
|
|
|
|
{
|
2004-08-29 19:01:44 +04:00
|
|
|
// TODO; Implement AS_DOWNLOAD_PICTURE
|
|
|
|
|
|
|
|
// What is this particular function call for, anyway?
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Download Picture unimplemented\n",fSignature.String()));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2003-03-21 18:49:28 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_SET_SCREEN_MODE:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Set Screen Mode\n",fSignature.String()));
|
2004-01-17 21:37:57 +03:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
// Attached data
|
|
|
|
// 1) int32 workspace #
|
|
|
|
// 2) uint32 screen mode
|
|
|
|
// 3) bool make default
|
2004-08-23 02:33:57 +04:00
|
|
|
int32 index;
|
2003-10-03 04:41:40 +04:00
|
|
|
uint32 mode;
|
|
|
|
bool stick;
|
2004-08-23 02:33:57 +04:00
|
|
|
msg.Read<int32>(&index);
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<uint32>(&mode);
|
|
|
|
msg.Read<bool>(&stick);
|
2004-01-17 21:37:57 +03:00
|
|
|
|
2004-08-23 02:33:57 +04:00
|
|
|
RootLayer *root=desktop->ActiveRootLayer();
|
|
|
|
Workspace *workspace=root->WorkspaceAt(index);
|
|
|
|
|
|
|
|
if(!workspace)
|
|
|
|
{
|
|
|
|
// apparently out of range or something, so we do nothing. :)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Add mode-setting code to Workspace class
|
|
|
|
//workspace->SetMode(mode,stick);
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_ACTIVATE_WORKSPACE:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Activate Workspace\n",fSignature.String()));
|
2004-08-23 02:33:57 +04:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
// Attached data
|
|
|
|
// 1) int32 workspace index
|
|
|
|
|
|
|
|
// Error-checking is done in ActivateWorkspace, so this is a safe call
|
2003-10-03 04:41:40 +04:00
|
|
|
int32 workspace;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&workspace);
|
2004-08-23 02:33:57 +04:00
|
|
|
|
|
|
|
RootLayer *root=desktop->ActiveRootLayer();
|
|
|
|
if(root)
|
|
|
|
root->SetActiveWorkspaceByIndex(workspace);
|
2003-01-24 18:19:27 +03:00
|
|
|
break;
|
2003-01-24 17:36:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Theoretically, we could just call the driver directly, but we will
|
|
|
|
// call the CursorManager's version to allow for future expansion
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_SHOW_CURSOR:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Show Cursor\n",fSignature.String()));
|
2003-01-24 17:36:15 +03:00
|
|
|
cursormanager->ShowCursor();
|
2004-01-20 01:18:37 +03:00
|
|
|
fCursorHidden=false;
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_HIDE_CURSOR:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Hide Cursor\n",fSignature.String()));
|
2003-01-24 17:36:15 +03:00
|
|
|
cursormanager->HideCursor();
|
2004-01-20 01:18:37 +03:00
|
|
|
fCursorHidden=true;
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_OBSCURE_CURSOR:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Obscure Cursor\n",fSignature.String()));
|
2003-01-24 17:36:15 +03:00
|
|
|
cursormanager->ObscureCursor();
|
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_QUERY_CURSOR_HIDDEN:
|
2003-02-24 00:40:44 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Received IsCursorHidden request\n",fSignature.String()));
|
2003-02-24 00:40:44 +03:00
|
|
|
// Attached data
|
|
|
|
// 1) int32 port to reply to
|
2003-10-03 04:41:40 +04:00
|
|
|
int32 replyport;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&replyport);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(fCursorHidden ? SERVER_TRUE : SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
2003-02-24 00:40:44 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_SET_CURSOR_DATA:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: SetCursor via cursor data\n",fSignature.String()));
|
|
|
|
// Attached data: 68 bytes of fAppCursor data
|
2003-01-24 17:36:15 +03:00
|
|
|
|
|
|
|
int8 cdata[68];
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read(cdata,68);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
// Because we don't want an overaccumulation of these particular
|
|
|
|
// cursors, we will delete them if there is an existing one. It would
|
|
|
|
// otherwise be easy to crash the server by calling SetCursor a
|
|
|
|
// sufficient number of times
|
2004-01-20 01:18:37 +03:00
|
|
|
if(fAppCursor)
|
|
|
|
cursormanager->DeleteCursor(fAppCursor->ID());
|
2003-01-24 17:36:15 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fAppCursor=new ServerCursor(cdata);
|
2004-10-06 03:00:47 +04:00
|
|
|
fAppCursor->SetOwningTeam(fClientTeamID);
|
2004-01-20 01:18:37 +03:00
|
|
|
fAppCursor->SetAppSignature(fSignature.String());
|
|
|
|
cursormanager->AddCursor(fAppCursor);
|
|
|
|
cursormanager->SetCursor(fAppCursor->ID());
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-02-24 18:47:06 +03:00
|
|
|
case AS_SET_CURSOR_BCURSOR:
|
2003-01-24 17:36:15 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: SetCursor via BCursor\n",fSignature.String()));
|
2003-09-17 23:28:31 +04:00
|
|
|
// Attached data:
|
2003-10-03 04:41:40 +04:00
|
|
|
// 1) bool flag to send a reply
|
|
|
|
// 2) int32 token ID of the cursor to set
|
|
|
|
// 3) port_id port to receive a reply. Only exists if the sync flag is true.
|
|
|
|
bool sync;
|
2004-07-30 19:16:59 +04:00
|
|
|
int32 ctoken = B_NULL_TOKEN;
|
|
|
|
port_id replyport = -1;
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<bool>(&sync);
|
|
|
|
msg.Read<int32>(&ctoken);
|
2003-10-03 04:41:40 +04:00
|
|
|
if(sync)
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&replyport);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
|
|
|
cursormanager->SetCursor(ctoken);
|
|
|
|
|
|
|
|
if(sync)
|
|
|
|
{
|
|
|
|
// the application is expecting a reply, but plans to do literally nothing
|
|
|
|
// with the data, so we'll just reuse the cursor token variable
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Flush();
|
2003-10-03 04:41:40 +04:00
|
|
|
}
|
2003-09-17 23:28:31 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_CREATE_BCURSOR:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Create BCursor\n",fSignature.String()));
|
2003-02-24 18:47:06 +03:00
|
|
|
// Attached data:
|
2004-01-20 01:18:37 +03:00
|
|
|
// 1) 68 bytes of fAppCursor data
|
2003-10-04 04:56:43 +04:00
|
|
|
// 2) port_id reply port
|
2003-02-24 18:47:06 +03:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
port_id replyport = -1;
|
2003-02-24 18:47:06 +03:00
|
|
|
int8 cdata[68];
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read(cdata,68);
|
|
|
|
msg.Read<int32>(&replyport);
|
2003-02-24 18:47:06 +03:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
fAppCursor=new ServerCursor(cdata);
|
2004-10-06 03:00:47 +04:00
|
|
|
fAppCursor->SetOwningTeam(fClientTeamID);
|
2004-01-20 01:18:37 +03:00
|
|
|
fAppCursor->SetAppSignature(fSignature.String());
|
|
|
|
cursormanager->AddCursor(fAppCursor);
|
2003-02-24 18:47:06 +03:00
|
|
|
|
|
|
|
// Synchronous message - BApplication is waiting on the cursor's ID
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<int32>(fAppCursor->ID());
|
|
|
|
replylink.Flush();
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
2003-09-17 23:28:31 +04:00
|
|
|
case AS_DELETE_BCURSOR:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Delete BCursor\n",fSignature.String()));
|
2003-09-17 23:28:31 +04:00
|
|
|
// Attached data:
|
|
|
|
// 1) int32 token ID of the cursor to delete
|
2004-07-30 19:16:59 +04:00
|
|
|
int32 ctoken = B_NULL_TOKEN;
|
|
|
|
msg.Read<int32>(&ctoken);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
if(fAppCursor && fAppCursor->ID()==ctoken)
|
|
|
|
fAppCursor=NULL;
|
2003-09-17 23:28:31 +04:00
|
|
|
|
2003-10-03 04:41:40 +04:00
|
|
|
cursormanager->DeleteCursor(ctoken);
|
2003-09-17 23:28:31 +04:00
|
|
|
break;
|
|
|
|
}
|
2003-07-10 21:48:04 +04:00
|
|
|
case AS_GET_SCROLLBAR_INFO:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Get ScrollBar info\n",fSignature.String()));
|
2003-07-10 21:48:04 +04:00
|
|
|
// Attached data:
|
|
|
|
// 1) port_id reply port - synchronous message
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
scroll_bar_info sbi=desktop->ScrollBarInfo();
|
2003-10-03 04:41:40 +04:00
|
|
|
|
|
|
|
port_id replyport;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&replyport);
|
2003-07-10 21:48:04 +04:00
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<scroll_bar_info>(sbi);
|
|
|
|
replylink.Flush();
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_SCROLLBAR_INFO:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Set ScrollBar info\n",fSignature.String()));
|
2003-07-10 21:48:04 +04:00
|
|
|
// Attached Data:
|
|
|
|
// 1) scroll_bar_info scroll bar info structure
|
2003-10-03 04:41:40 +04:00
|
|
|
scroll_bar_info sbi;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<scroll_bar_info>(&sbi);
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
desktop->SetScrollBarInfo(sbi);
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_FOCUS_FOLLOWS_MOUSE:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: query Focus Follow Mouse in use\n",fSignature.String()));
|
2003-07-10 21:48:04 +04:00
|
|
|
// Attached data:
|
|
|
|
// 1) port_id reply port - synchronous message
|
|
|
|
|
2003-10-03 04:41:40 +04:00
|
|
|
port_id replyport;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&replyport);
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<bool>(desktop->FFMouseInUse());
|
|
|
|
replylink.Flush();
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_FOCUS_FOLLOWS_MOUSE:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Set Focus Follows Mouse in use\n",fSignature.String()));
|
2004-07-30 19:16:59 +04:00
|
|
|
/* // Attached Data:
|
2003-07-10 21:48:04 +04:00
|
|
|
// 1) scroll_bar_info scroll bar info structure
|
2003-10-03 04:41:40 +04:00
|
|
|
scroll_bar_info sbi;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<scroll_bar_info>(&sbi);
|
2004-01-17 21:37:57 +03:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
desktop->SetScrollBarInfo(sbi);*/
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_MOUSE_MODE:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Set Focus Follows Mouse mode\n",fSignature.String()));
|
2003-07-10 21:48:04 +04:00
|
|
|
// Attached Data:
|
|
|
|
// 1) enum mode_mouse FFM mouse mode
|
2003-10-03 04:41:40 +04:00
|
|
|
mode_mouse mmode;
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<mode_mouse>(&mmode);
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
desktop->SetFFMouseMode(mmode);
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_MOUSE_MODE:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Get Focus Follows Mouse mode\n",fSignature.String()));
|
2003-07-10 21:48:04 +04:00
|
|
|
// Attached data:
|
|
|
|
// 1) port_id reply port - synchronous message
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
mode_mouse mmode=desktop->FFMouseMode();
|
2003-10-03 04:41:40 +04:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
port_id replyport = -1;
|
|
|
|
msg.Read<int32>(&replyport);
|
2003-07-10 21:48:04 +04:00
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<mode_mouse>(mmode);
|
|
|
|
replylink.Flush();
|
2003-07-10 21:48:04 +04:00
|
|
|
break;
|
|
|
|
}
|
2003-10-09 03:18:30 +04:00
|
|
|
case AS_GET_UI_COLOR:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s: Get UI color\n",fSignature.String()));
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
RGBColor color;
|
|
|
|
int32 whichcolor;
|
2004-07-30 19:16:59 +04:00
|
|
|
port_id replyport = -1;
|
2004-01-17 21:37:57 +03:00
|
|
|
|
2004-07-30 19:16:59 +04:00
|
|
|
msg.Read<int32>(&whichcolor);
|
|
|
|
msg.Read<port_id>(&replyport);
|
2004-01-17 21:37:57 +03:00
|
|
|
|
|
|
|
gui_colorset.Lock();
|
|
|
|
color=gui_colorset.AttributeToColor(whichcolor);
|
|
|
|
gui_colorset.Unlock();
|
|
|
|
|
2005-01-17 05:05:50 +03:00
|
|
|
replylink.SetSendPort(replyport);
|
2004-07-30 19:16:59 +04:00
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
2004-01-17 21:37:57 +03:00
|
|
|
replylink.Attach<rgb_color>(color.GetColor32());
|
|
|
|
replylink.Flush();
|
2003-10-09 03:18:30 +04:00
|
|
|
break;
|
|
|
|
}
|
2005-01-17 05:05:50 +03:00
|
|
|
case AS_UPDATED_CLIENT_FONTLIST:
|
|
|
|
{
|
|
|
|
STRACE(("ServerApp %s: Acknowledged update of client-side font list\n",fSignature.String()));
|
|
|
|
|
|
|
|
// received when the client-side global font list has been
|
|
|
|
// refreshed
|
|
|
|
fontserver->Lock();
|
|
|
|
fontserver->FontsUpdated();
|
|
|
|
fontserver->Unlock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_QUERY_FONTS_CHANGED:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) bool check flag
|
|
|
|
// 2) port_id reply_port
|
|
|
|
|
|
|
|
// if just checking, just give an answer,
|
|
|
|
// if not and needs updated,
|
|
|
|
// sync the font list and return true else return false
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_FAMILY_NAME:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) int32 the ID of the font family to get
|
|
|
|
// 2) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) font_family - name of family
|
|
|
|
// 2) uint32 - flags of font family (B_IS_FIXED || B_HAS_TUNED_FONT)
|
|
|
|
int32 famid;
|
|
|
|
port_id replyport;
|
|
|
|
|
|
|
|
msg.Read<int32>(&famid);
|
|
|
|
msg.Read<port_id>(&replyport);
|
|
|
|
|
|
|
|
replylink.SetSendPort(replyport);
|
|
|
|
|
|
|
|
fontserver->Lock();
|
|
|
|
FontFamily *ffamily=fontserver->GetFamily(famid);
|
|
|
|
if(ffamily)
|
|
|
|
{
|
|
|
|
font_family fam;
|
|
|
|
sprintf(fam,"%s",ffamily->Name());
|
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach(fam,sizeof(font_family));
|
|
|
|
replylink.Attach<int32>(ffamily->GetFlags());
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
fontserver->Unlock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_STYLE_NAME:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) font_family The name of the font family
|
|
|
|
// 2) int32 ID of the style to get
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) font_style - name of the style
|
|
|
|
// 2) uint16 - appropriate face values
|
|
|
|
// 3) uint32 - flags of font style (B_IS_FIXED || B_HAS_TUNED_FONT)
|
|
|
|
|
|
|
|
int32 styid;
|
|
|
|
port_id replyport;
|
|
|
|
font_family fam;
|
|
|
|
|
|
|
|
msg.Read(fam,sizeof(font_family));
|
|
|
|
msg.Read<int32>(&styid);
|
|
|
|
msg.Read<port_id>(&replyport);
|
|
|
|
|
|
|
|
replylink.SetSendPort(replyport);
|
|
|
|
|
|
|
|
fontserver->Lock();
|
|
|
|
FontStyle *fstyle=fontserver->GetStyle(fam,styid);
|
|
|
|
if(fstyle)
|
|
|
|
{
|
|
|
|
font_family sty;
|
|
|
|
sprintf(sty,"%s",fstyle->Name());
|
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach(sty,sizeof(font_style));
|
|
|
|
replylink.Attach<int32>(fstyle->GetFace());
|
|
|
|
replylink.Attach<int32>(fstyle->GetFlags());
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
fontserver->Unlock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_FAMILY_AND_STYLE:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) font_family The name of the font family
|
|
|
|
// 2) font_style - name of the style
|
|
|
|
int32 famid, styid;
|
|
|
|
port_id replyport;
|
|
|
|
font_family fam;
|
|
|
|
font_style sty;
|
|
|
|
|
|
|
|
msg.Read<int32>(&famid);
|
|
|
|
msg.Read<int32>(&styid);
|
|
|
|
msg.Read<port_id>(&replyport);
|
|
|
|
|
|
|
|
replylink.SetSendPort(replyport);
|
|
|
|
|
|
|
|
fontserver->Lock();
|
|
|
|
FontStyle *fstyle=fontserver->GetStyle(famid,styid);
|
|
|
|
if(fstyle)
|
|
|
|
{
|
|
|
|
sprintf(fam,"%s",fstyle->Family()->Name());
|
|
|
|
sprintf(sty,"%s",fstyle->Name());
|
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach(fam,sizeof(font_family));
|
|
|
|
replylink.Attach(sty,sizeof(font_style));
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
fontserver->Unlock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_FONT_DIRECTION:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) font_direction direction of font
|
|
|
|
/* int32 famid, styid;
|
|
|
|
port_id replyport;
|
|
|
|
|
|
|
|
msg.Read<int32>(&famid);
|
|
|
|
msg.Read<int32>(&styid);
|
|
|
|
msg.Read<port_id>(&replyport);
|
|
|
|
|
|
|
|
replylink.SetSendPort(replyport);
|
|
|
|
|
|
|
|
fontserver->Lock();
|
|
|
|
FontStyle *fstyle=fontserver->GetStyle(famid,styid);
|
|
|
|
if(fstyle)
|
|
|
|
{
|
|
|
|
font_direction dir=fstyle->GetDirection();
|
|
|
|
|
|
|
|
replylink.StartMessage(SERVER_TRUE);
|
|
|
|
replylink.Attach<font_direction>(dir);
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
replylink.StartMessage(SERVER_FALSE);
|
|
|
|
replylink.Flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
fontserver->Unlock();
|
|
|
|
*/
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_FONT_BOUNDING_BOX:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) BRect - box holding entire font
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_TUNED_COUNT:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) int32 - number of font strikes available
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_GET_TUNED_INFO:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) uint32 - index of the particular font strike
|
|
|
|
// 4) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) tuned_font_info - info on the strike specified
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_QUERY_FONT_FIXED:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) port_id reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) bool - font is/is not fixed
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_FAMILY_AND_STYLE:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) font_family - name of font family to use
|
|
|
|
// 2) font_style - name of style in family
|
|
|
|
// 3) port_id - reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_FAMILY_AND_FACE:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) font_family - name of font family to use
|
|
|
|
// 2) uint16 - font face
|
|
|
|
// 3) port_id - reply port
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
|
|
|
|
// TODO: Check R5 for error condition behavior in SET_FAMILY_AND_FACE
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_COUNT_FONT_FAMILIES:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// None
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) int32 - # of font families
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_COUNT_FONT_STYLES:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// 1) font_family - name of font family
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) int32 - # of font styles
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_SYSFONT_PLAIN:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// None
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) float - size in points
|
|
|
|
// 4) uint16 - face flags
|
|
|
|
// 5) font_height - height structure
|
|
|
|
|
|
|
|
// TODO: See if font_height is needed in SET_SYSFONT_XXXX messages
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_SYSFONT_BOLD:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// None
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) float - size in points
|
|
|
|
// 4) uint16 - face flags
|
|
|
|
// 5) font_height - height structure
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case AS_SET_SYSFONT_FIXED:
|
|
|
|
{
|
|
|
|
// Attached Data:
|
|
|
|
// None
|
|
|
|
|
|
|
|
// Returns:
|
|
|
|
// 1) uint16 - family ID
|
|
|
|
// 2) uint16 - style ID
|
|
|
|
// 3) float - size in points
|
|
|
|
// 4) uint16 - face flags
|
|
|
|
// 5) font_height - height structure
|
|
|
|
break;
|
|
|
|
}
|
2003-01-24 17:36:15 +03:00
|
|
|
default:
|
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
STRACE(("ServerApp %s received unhandled message code offset %s\n",fSignature.String(),
|
2004-07-30 19:16:59 +04:00
|
|
|
MsgCodeToBString(code).String()));
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2003-01-24 17:36:15 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2003-03-12 17:29:59 +03:00
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Looks up a ServerApp's ServerBitmap in its list
|
|
|
|
\param token ID token of the bitmap to find
|
|
|
|
\return The bitmap having that ID or NULL if not found
|
|
|
|
*/
|
2004-04-16 21:52:31 +04:00
|
|
|
ServerBitmap *ServerApp::FindBitmap(int32 token)
|
2003-03-12 17:29:59 +03:00
|
|
|
{
|
|
|
|
ServerBitmap *temp;
|
2004-01-20 01:18:37 +03:00
|
|
|
for(int32 i=0; i<fBitmapList->CountItems();i++)
|
2003-03-12 17:29:59 +03:00
|
|
|
{
|
2004-01-20 01:18:37 +03:00
|
|
|
temp=(ServerBitmap*)fBitmapList->ItemAt(i);
|
2003-03-12 17:29:59 +03:00
|
|
|
if(temp && temp->Token()==token)
|
|
|
|
return temp;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-09-17 23:28:31 +04:00
|
|
|
|
2004-01-20 01:18:37 +03:00
|
|
|
team_id ServerApp::ClientTeamID()
|
|
|
|
{
|
2004-01-13 03:56:36 +03:00
|
|
|
return fClientTeamID;
|
|
|
|
}
|
2004-07-30 19:16:59 +04:00
|
|
|
|