/*******************************************************************************
Copyright (c) 2001-2008, Perforce Software, Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE SOFTWARE, INC. BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************/
class ClientApi;
class PerlClientUser;
class SpecMgr;
class Enviro;
class PerlClientApi
{
public:
static SV * Identify();
PerlClientApi();
~PerlClientApi();
SV * Connect();
SV * Disconnect();
int IsConnected();
int InitCount() { return initCount; }
AV * Run( const char *cmd, int argc, char * const *argv );
void SetApiLevel( int level );
SV * SetCharset( const char *c );
void SetClient( const char *c ) { client->SetClient( c ); }
void SetCwd( const char *c );
void SetHost( const char *c ) { client->SetHost( c ); }
void SetLanguage( const char *c ) { client->SetLanguage( c ); }
void SetPassword( const char *c ) { client->SetPassword( c ); }
void SetMaxResults( int v ) { maxResults = v; }
void SetMaxScanRows( int v ) { maxScanRows = v; }
void SetMaxLockTime( int v ) { maxLockTime = v; }
void SetPort( const char *c ) { client->SetPort( c ); }
void SetProtocol( const char *var, const char *val );
void SetTicketFile( const char *t );
void SetUser( const char *c ) { client->SetUser( c ); }
void SetProg( const char *c ) { prog.Set( c ); }
void SetResolver( SV * r );
void SetVersion( const char *v ) { version.Set( v ); }
void SetInput( SV *i );
SV * GetApiLevel();
SV * GetCharset();
SV * GetConfig();
SV * GetClient();
SV * GetCwd();
SV * GetHost();
SV * GetEnv( const char *var );
SV * GetLanguage();
SV * GetMaxResults();
SV * GetMaxScanRows();
SV * GetMaxLockTime();
SV * GetPassword();
SV * GetPort();
SV * GetProg();
int GetServerLevel();
SV * GetTicketFile();
SV * GetUser();
SV * GetVersion();
// Tagged mode
void Tagged( int flag ) { tagged = flag ? 1 : 0 ; }
int IsTagged() { return tagged; }
int ServerCaseSensitive() { return caseSensitive; }
//
// Handling command output
//
SV * GetFirstOutput();
AV * GetOutput();
AV * GetWarnings();
AV * GetErrors();
I32 GetOutputCount();
I32 GetWarningCount();
I32 GetErrorCount();
// Spec parsing
SV * ParseSpec( const char *type, const char *form );
SV * FormatSpec( const char *type, HV *hash );
// Debugging support
void SetDebugLevel( int l );
int GetDebugLevel() { return debug; }
//
private:
void RunCmd( const char *cmd, ClientUser *ui, int argc, char * const *argv );
private:
ClientApi * client;
PerlClientUser * ui;
Enviro * enviro;
SpecMgr * specMgr;
StrBufDict specDict;
StrBuf prog;
StrBuf version;
StrBuf ticketFile;
int caseSensitive;
int server2;
int apiLevel;
int tagged;
int initCount;
int debug;
int maxResults;
int maxScanRows;
int maxLockTime;
};