/*******************************************************************************
Copyright (c) 2007-2008, Perforce Software, Inc. All rights reserved.
Portions Copyright (c) 1999, Mike Meyer. All rights reserved.
Portions Copyright (c) 2004-2007, Robert Cowham. 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.
$Id: //depot/r13.1/p4-python/PythonClientAPI.cpp#1 $
*******************************************************************************/
#include
#include
#include "undefdups.h"
#include "python2to3.h"
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include "SpecMgr.h"
#include "P4Result.h"
#include "PythonClientUser.h"
#include "PythonClientAPI.h"
#include "P4PythonDebug.h"
#include "PythonThreadGuard.h"
#include "PythonMergeData.h"
#include "P4MapMaker.h"
#include "PythonMessage.h"
#include "PythonTypes.h"
#include
#define M_TAGGED 0x01
#define M_PARSE_FORMS 0x02
#define IS_TAGGED(x) (x & M_TAGGED )
#define IS_PARSE_FORMS(x) (x & M_PARSE_FORMS )
using namespace std;
PythonClientAPI::PythonClientAPI() : ui(&specMgr)
{
debug = 0;
server2 = 0;
depth = 0;
exceptionLevel = 2;
maxResults = 0;
maxScanRows = 0;
maxLockTime = 0;
prog = "unnamed p4-python script";
apiLevel = atoi( P4Tag::l_client );
enviro = new Enviro;
InitFlags();
// Enable form parsing
client.SetProtocol( "specstring", "" );
//
// Load the current working directory, and any P4CONFIG file in place
//
HostEnv henv;
StrBuf cwd;
henv.GetCwd( cwd, enviro );
if( cwd.Length() )
enviro->Config( cwd );
//
// Load the current ticket file. Start with the default, and then
// override it if P4TICKETS is set.
//
const char *t;
henv.GetTicketFile( ticketFile );
if( (t = enviro->Get( "P4TICKETS" )) ) {
ticketFile = t;
}
//
// Do the same for P4CHARSET
//
const char *lc;
if( ( lc = enviro->Get( "P4CHARSET" )) ) {
SetCharset(lc);
}
}
PythonClientAPI::~PythonClientAPI()
{
if (P4PYDBG_GC) {
cerr = 3
{ "encoding", &PythonClientAPI::SetEncoding, &PythonClientAPI::GetEncoding },
#endif
{ NULL, NULL, NULL }, // guard
};
PythonClientAPI::objattribute_t PythonClientAPI::objattributes[] = {
{ "input", &PythonClientAPI::SetInput, &PythonClientAPI::GetInput },
{ "resolver", &PythonClientAPI::SetResolver, &PythonClientAPI::GetResolver },
{ "handler", &PythonClientAPI::SetHandler, &PythonClientAPI::GetHandler },
{ "progress", &PythonClientAPI::SetProgress, &PythonClientAPI::GetProgress },
{ "errors", NULL, &PythonClientAPI::GetErrors },
{ "warnings", NULL, &PythonClientAPI::GetWarnings },
{ "messages", NULL, &PythonClientAPI::GetMessages },
{ "track_output", NULL, &PythonClientAPI::GetTrackOutput },
{ "__members__", NULL, &PythonClientAPI::GetMembers },
{ "server_level", NULL, &PythonClientAPI::GetServerLevel },
{ "server_case_insensitive", NULL, &PythonClientAPI::GetServerCaseInsensitive },
{ "server_unicode", NULL, &PythonClientAPI::GetServerUnicode },
{ NULL, NULL, NULL }, // guard
};
PythonClientAPI::intattribute_t * PythonClientAPI::GetInt(const char * forAttr)
{
PythonClientAPI::intattribute_t * ptr = PythonClientAPI::intattributes;
while (ptr->attribute != NULL) {
if( !strcmp(forAttr, ptr->attribute) ) {
return ptr;
}
ptr++;
}
return NULL;
}
PythonClientAPI::strattribute_t * PythonClientAPI::GetStr(const char * forAttr)
{
PythonClientAPI::strattribute_t * ptr = PythonClientAPI::strattributes;
while (ptr->attribute != NULL) {
if( !strcmp(forAttr, ptr->attribute) ) {
return ptr;
}
ptr++;
}
return NULL;
}
PythonClientAPI::objattribute_t * PythonClientAPI::GetObj(const char * forAttr)
{
PythonClientAPI::objattribute_t * ptr = PythonClientAPI::objattributes;
while (ptr->attribute != NULL) {
if( !strcmp(forAttr, ptr->attribute) ) {
return ptr;
}
ptr++;
}
return NULL;
}
PythonClientAPI::intsetter PythonClientAPI::GetIntSetter(const char * forAttr)
{
PythonClientAPI::intattribute_t * ptr = PythonClientAPI::GetInt(forAttr);
if (ptr) {
return ptr->setter;
}
return NULL;
}
PythonClientAPI::intgetter PythonClientAPI::GetIntGetter(const char * forAttr)
{
PythonClientAPI::intattribute_t * ptr = PythonClientAPI::GetInt(forAttr);
if (ptr) {
return ptr->getter;
}
return NULL;
}
PythonClientAPI::strsetter PythonClientAPI::GetStrSetter(const char * forAttr)
{
PythonClientAPI::strattribute_t * ptr = PythonClientAPI::GetStr(forAttr);
if (ptr) {
return ptr->setter;
}
return NULL;
}
PythonClientAPI::strgetter PythonClientAPI::GetStrGetter(const char * forAttr)
{
PythonClientAPI::strattribute_t * ptr = PythonClientAPI::GetStr(forAttr);
if (ptr) {
return ptr->getter;
}
return NULL;
}
PythonClientAPI::objsetter PythonClientAPI::GetObjSetter(const char * forAttr)
{
PythonClientAPI::objattribute_t * ptr = PythonClientAPI::GetObj(forAttr);
if (ptr) {
return ptr->setter;
}
return NULL;
}
PythonClientAPI::objgetter PythonClientAPI::GetObjGetter(const char * forAttr)
{
PythonClientAPI::objattribute_t * ptr = PythonClientAPI::GetObj(forAttr);
if (ptr) {
return ptr->getter;
}
return NULL;
}
// Returns an array of string pointers with the attributes defined
// in P4API, such as "client" or "port"
// Ownership of returned list is passed to caller!
// Free it, keep it or suffer memory leak!
const char ** PythonClientAPI::GetAttributes()
{
size_t intAttrCount = 0;
size_t strAttrCount = 0;
size_t objAttrCount = 0;
for (PythonClientAPI::intattribute_t * pi = PythonClientAPI::intattributes;
pi->attribute != NULL; pi++)
{
intAttrCount++;
}
for (PythonClientAPI::strattribute_t * ps = PythonClientAPI::strattributes;
ps->attribute != NULL; ps++)
{
strAttrCount++;
}
for (PythonClientAPI::objattribute_t * po = PythonClientAPI::objattributes;
po->attribute != NULL; po++)
{
objAttrCount++;
}
size_t total = intAttrCount + strAttrCount + + objAttrCount + 1;
const char ** result = (const char **) malloc(total * sizeof(const char *));
const char **ptr = result;
for (PythonClientAPI::intattribute_t * pi = PythonClientAPI::intattributes;
pi->attribute != NULL; pi++)
{
*ptr = pi->attribute; ptr++;
}
for (PythonClientAPI::strattribute_t * ps = PythonClientAPI::strattributes;
ps->attribute != NULL; ps++)
{
*ptr = ps->attribute; ptr++;
}
for (PythonClientAPI::objattribute_t * po = PythonClientAPI::objattributes;
po->attribute != NULL; po++)
{
*ptr = po->attribute; ptr++;
}
*ptr = NULL;
return result;
}
int PythonClientAPI::SetTagged( int enable )
{
if( enable )
SetTag();
else
ClearTag();
return 0;
}
int PythonClientAPI::GetTagged()
{
return IsTag();
}
int PythonClientAPI::SetTrack( int enable )
{
if ( IsConnected() ) {
PyErr_SetString(P4Error, "Can't change tracking once you've connected.");
return -1;
}
else {
if( enable ) {
SetTrackMode();
ui.SetTrack(true);
}
else {
ClearTrackMode();
ui.SetTrack(false);
}
}
return 0;
}
int PythonClientAPI::GetTrack()
{
return IsTrackMode() != 0;
}
int PythonClientAPI::SetStreams( int enable )
{
if( enable )
SetStreamsMode();
else
ClearStreamsMode();
return 0;
}
int PythonClientAPI::GetStreams()
{
return IsStreamsMode() != 0;
}
int PythonClientAPI::SetCwd( const char *c )
{
client.SetCwd( c );
enviro->Config( StrRef( c ) );
return 0;
}
int PythonClientAPI::SetCharset( const char *c )
{
if( P4PYDBG_COMMANDS )
cerr 0 ) {
cs = CharSetApi::Lookup( c );
if( cs = 3
if( strlen(c) > 0 && strcmp("none", c) != 0 ) {
CharSetApi::CharSet utf8 = CharSetApi::UTF_8;
client.SetTrans( utf8, cs, utf8, utf8 );
}
else {
cs = CharSetApi::NOCONV;
client.SetTrans(cs, cs, cs, cs);
}
#else
client.SetTrans( cs, cs, cs, cs );
#endif
return 0;
}
int PythonClientAPI::SetEncoding( const char *e )
{
// TODO: verify the different types of encoding and throw an error if it's not supported
specMgr.SetEncoding( e );
return 0;
}
int PythonClientAPI::SetTicketFile( const char *p )
{
client.SetTicketFile( p );
ticketFile = p;
return 0;
}
int PythonClientAPI::SetDebug( int d )
{
debug = d;
ui.SetDebug( d );
specMgr.SetDebug( d );
if( P4PYDBG_RPC )
p4debug.SetLevel( "rpc=5" );
else
p4debug.SetLevel( "rpc=0" );
return 0;
}
int PythonClientAPI::SetApiLevel( int level )
{
StrBuf b;
b Get( var );
}
PyObject * PythonClientAPI::SetEnv( const char *var, const char *val )
{
Error e;
enviro->Set(var, val, &e);
if ( e.Test() && exceptionLevel ) {
Except( "P4.set_env()", &e );
return NULL;
}
if ( e.Test() )
Py_RETURN_FALSE;
Py_RETURN_TRUE;
}
#if PY_MAJOR_VERSION >= 3
PyObject * PythonClientAPI::Convert(const char * charset, PyObject * content)
{
if( P4PYDBG_COMMANDS )
cerr FastCvt(contentAsUTF8, strlen(contentAsUTF8), &retlen);
Py_DECREF( bytes ); // we do not need this object anymore
if (converted == NULL) {
if ( exceptionLevel )
{
StrBuf m;
if (cvt->LastErr() == CharSetCvt::NOMAPPING)
m = "Translation of file content failed";
else if (cvt->LastErr() == CharSetCvt::PARTIALCHAR)
m = "Partial character in translation";
else {
m = "Cannot convert to charset: ";
m.Append( charset );
}
delete cvt;
Except( "P4.__convert", m.Text() );
return NULL;
}
}
PyObject * result = PyBytes_FromStringAndSize(converted, retlen);
delete cvt;
return result;
}
}
#endif
PyObject * PythonClientAPI::GetMembers() {
if( P4PYDBG_COMMANDS )
cerr 1 ) {
Except( "P4#run", "Warnings during command execution",cmdString.Text());
return NULL;
}
return results.GetOutput();
}
int PythonClientAPI::SetInput( PyObject * input )
{
if ( P4PYDBG_COMMANDS )
cerr Text() );
}
Py_RETURN_NONE;
}
//
// Returns the server level as provided by the server
//
PyObject * PythonClientAPI::GetServerLevel()
{
if( !IsConnected() ) {
PyErr_SetString(P4Error, "Not connected to a Perforce server");
return NULL;
}
if( !IsCmdRun() )
Run( "info", 0, 0 );
return PyInt_FromLong(server2);
}
//
// Returns true if the server is case-insensitive
// Might throw exception if the information is not available yet
//
PyObject * PythonClientAPI::GetServerCaseInsensitive()
{
if( !IsConnected() ) {
PyErr_SetString(P4Error, "Not connected to a Perforce server");
return NULL;
}
if( !IsCmdRun() )
Run( "info", 0, 0 );
if ( IsCaseFold() ) {
Py_RETURN_TRUE;
}
Py_RETURN_FALSE;
}
//
// Returns true if the server is case-insensitive
// Might throw exception if the information is not available yet
//
PyObject * PythonClientAPI::GetServerUnicode()
{
if( !IsConnected() ) {
PyErr_SetString(P4Error, "Not connected to a Perforce server");
return NULL;
}
if( !IsCmdRun() )
Run( "info", 0, 0 );
if ( IsUnicode() ) {
Py_RETURN_TRUE;
}
Py_RETURN_FALSE;
}
void PythonClientAPI::Except( const char *func, const char *msg )
{
StrBuf m;
StrBuf errors;
StrBuf warnings;
bool terminate = false;
m 1 && warnings.Length() )
{
m Fmt( &m );
Except( func, m.Text() );
}
void PythonClientAPI::Except( const char *func, const char *msg, const char *cmd )
{
StrBuf m;
m = 513026
// ClientApi::SetProg() was introduced in 2004.2
client.SetProg( &prog );
// #endif
// #if P4APIVER_ID >= 513282
// ClientApi::SetVersion() was introduced in 2005.2
if( version.Length() )
client.SetVersion( &version );
// #endif
if( IsTag() )
client.SetVar( "tag" );
if( IsStreamsMode() && apiLevel >= 70 )
client.SetVar( "enableStreams" );
// If maxresults or maxscanrows is set, enforce them now
if( maxResults ) client.SetVar( "maxResults", maxResults );
if( maxScanRows ) client.SetVar( "maxScanRows", maxScanRows );
if( maxLockTime ) client.SetVar( "maxLockTime", maxLockTime );
// if progress is set, set the progress var
if( ((PythonClientUser*)ui)->GetProgress() != Py_None )
client.SetVar( P4Tag::v_progress, 1);
{
ReleasePythonLock guard;
client.SetArgv( argc, argv );
client.Run( cmd, ui );
}
// Have to request server2 protocol *after* a command has been run. I
// don't know why, but that's the way it is.
if ( ! IsCmdRun() )
{
StrPtr *pv = client.GetProtocol( "server2" );
if ( pv )
server2 = pv->Atoi();
pv = client.GetProtocol( P4Tag::v_nocase );
if ( pv )
SetCaseFold();
pv = client.GetProtocol( P4Tag::v_unicode );
if ( pv && pv->Atoi() )
SetUnicode();
}
SetCmdRun();
}