84 lines
2.5 KiB
C
84 lines
2.5 KiB
C
|
//------------------------------------------------------------------------------
|
||
|
// Copyright (c) 2001-2002, OpenBeOS
|
||
|
//
|
||
|
// 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.h
|
||
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
||
|
// Description: Server-side BApplication counterpart
|
||
|
//
|
||
|
//------------------------------------------------------------------------------
|
||
|
#ifndef _SERVERAPP_H_
|
||
|
#define _SERVERAPP_H_
|
||
|
|
||
|
#include <OS.h>
|
||
|
#include <String.h>
|
||
|
class BMessage;
|
||
|
class PortLink;
|
||
|
class BList;
|
||
|
class DisplayDriver;
|
||
|
|
||
|
/*!
|
||
|
\class ServerApp ServerApp.h
|
||
|
\brief Counterpart to BApplication within the app_server
|
||
|
*/
|
||
|
class ServerApp
|
||
|
{
|
||
|
public:
|
||
|
ServerApp(port_id sendport, port_id rcvport, char *signature);
|
||
|
~ServerApp(void);
|
||
|
|
||
|
bool Run(void);
|
||
|
static int32 MonitorApp(void *data);
|
||
|
void Lock(void);
|
||
|
void Unlock(void);
|
||
|
bool IsLocked(void);
|
||
|
|
||
|
/*!
|
||
|
\brief Determines whether the application is the active one
|
||
|
\return true if active, false if not.
|
||
|
*/
|
||
|
bool IsActive(void) const { return _isactive; }
|
||
|
|
||
|
/*!
|
||
|
\brief Sets the ServerApp's active status
|
||
|
\param value The new status of the ServerApp.
|
||
|
|
||
|
Note that this function only changes a flag.
|
||
|
*/
|
||
|
void Activate(bool value) { _isactive=value; }
|
||
|
bool PingTarget(void);
|
||
|
|
||
|
protected:
|
||
|
void DispatchMessage(int32 code, int8 *buffer);
|
||
|
|
||
|
port_id _sender,_receiver;
|
||
|
BString _signature;
|
||
|
thread_id _monitor_thread;
|
||
|
team_id _target_id;
|
||
|
PortLink *_applink;
|
||
|
BList *_winlist, *_bmplist;
|
||
|
DisplayDriver *_driver;
|
||
|
ServerCursor *_appcursor;
|
||
|
sem_id _lock;
|
||
|
|
||
|
bool _isactive;
|
||
|
};
|
||
|
|
||
|
#endif
|