79 lines
2.7 KiB
C
79 lines
2.7 KiB
C
/*
|
|
*
|
|
* @APPLE_LICENSE_HEADER_START@
|
|
*
|
|
* Copyright (c) 1999-2008 Apple Inc. All Rights Reserved.
|
|
*
|
|
* This file contains Original Code and/or Modifications of Original Code
|
|
* as defined in and that are subject to the Apple Public Source License
|
|
* Version 2.0 (the 'License'). You may not use this file except in
|
|
* compliance with the License. Please obtain a copy of the License at
|
|
* http://www.opensource.apple.com/apsl/ and read it before using this
|
|
* file.
|
|
*
|
|
* The Original Code and all software distributed under the License are
|
|
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
|
|
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
|
|
* Please see the License for the specific language governing rights and
|
|
* limitations under the License.
|
|
*
|
|
* @APPLE_LICENSE_HEADER_END@
|
|
*
|
|
*/
|
|
/*
|
|
File: RunServer.h
|
|
|
|
Contains: Routines to run the Streaming Server
|
|
|
|
|
|
*/
|
|
|
|
|
|
#include "OSHeaders.h"
|
|
#include "XMLPrefsParser.h"
|
|
#include "PrefsSource.h"
|
|
#include "QTSS.h"
|
|
#include "QTSServer.h"
|
|
|
|
enum {
|
|
kRunServerDebug_Off = 0,
|
|
kRunServerDebugDisplay_On = 1 << 0,
|
|
kRunServerDebugLogging_On = 1 << 1 // not implemented
|
|
};
|
|
|
|
inline Bool16 DebugOn(QTSServer* server) { return ( server->GetDebugOptions() != kRunServerDebug_Off ) ? true : false ; }
|
|
inline Bool16 DebugDisplayOn(QTSServer* server) { return (server->GetDebugOptions() & kRunServerDebugDisplay_On) ? true : false ; }
|
|
inline Bool16 DebugLogOn(QTSServer* server) { return (server->GetDebugOptions() & kRunServerDebugLogging_On) ? true : false ; }
|
|
|
|
//
|
|
// This function starts the Streaming Server. Pass in a source
|
|
// for preferences, a source for text messages, and an optional
|
|
// port to override the default.
|
|
//
|
|
// Returns the server state upon completion of startup. If this
|
|
// is qtssFatalErrorState, something went horribly wrong and caller
|
|
// should just die.
|
|
QTSS_ServerState StartServer( XMLPrefsParser* inPrefsSource,
|
|
PrefsSource* inMessagesSource,
|
|
UInt16 inPortOverride,
|
|
int statsUpdateInterval,
|
|
QTSS_ServerState inInitialState,
|
|
Bool16 inDontFork,
|
|
UInt32 debugLevel,
|
|
UInt32 debugOptions );
|
|
|
|
//
|
|
// Call this after StartServer if it doesn't return qtssFatalError.
|
|
// This will not return until the server is going away
|
|
void RunServer();
|
|
|
|
// write pid to file
|
|
void WritePid(Bool16 forked);
|
|
|
|
// clean the pid file
|
|
void CleanPid(Bool16 force);
|
|
|
|
// make the status file
|
|
void LogStatus(QTSS_ServerState theServerState);
|