-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_clientapi.cc
1042 lines (847 loc) · 20.3 KB
/
php_clientapi.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* 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.
*/
#include "clientapi.h"
#include "error.h"
#include "enviro.h"
#include "hostenv.h"
#include "i18napi.h"
#include "strtable.h"
#include "errorlog.h"
#include "debug.h"
#include "undefdups.h"
extern "C"
{
#include "php.h"
}
#include "Zend/zend_exceptions.h"
#include "php_macros.h"
#include "specmgr.h"
#include "php_p4result.h"
#include "php_clientuser.h"
#include "php_clientapi.h"
#include "php_p4_exception.h"
#include <iostream>
#define M_TAGGED 0x01
#define M_PARSE_FORMS 0x02
#define M_STREAMS 0x40
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
//
// Create a new client api object.
//
PHPClientAPI::PHPClientAPI() : ui( &specMgr )
{
connected = false;
depth = 0;
server2 = 0;
exceptionLevel = 2;
enviro = new Enviro;
prog = "P4PHP";
version = ID_REL "/" ID_OS "/" ID_PATCH " (" ID_API " API)";
apiLevel = atoi( P4Tag::l_client );
maxResults = 0;
maxScanRows = 0;
maxLockTime = 0;
p4debugHelper = 0;
reportLog = 0;
// Enable form parsing, streams and set tagged mode on by default
mode = M_PARSE_FORMS | M_TAGGED | M_STREAMS;
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 tickets 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
char *lc;
if ( ( lc = enviro->Get( "P4CHARSET" ) ) ) {
zval charset;
ZVAL_STRING(&charset, lc);
SetCharset( &charset );
}
}
//
// Deconstructor. Clean up and close connection if not already closed.
//
PHPClientAPI::~PHPClientAPI()
{
if ( connected )
{
Error e;
client.Final( &e );
}
delete enviro;
delete p4debugHelper;
delete reportLog;
}
//
// RunCmd is a private function to work around an obscure protocol
// bug in 2000.[12] servers. Running a "p4 -Ztag client -o" messes up the
// protocol so if they're running this command then we disconnect and
// reconnect to refresh it. For efficiency, we only do this if the
// server2 protocol is either 9 or 10 as other versions aren't affected.
//
void
PHPClientAPI::RunCmd( const char *cmd, int argc, zend_string **argStrs )
{
// ClientApi::SetProg() was introduced in 2004.2
client.SetProg( &prog );
// ClientApi::SetVersion() was introduced in 2005.2
if ( version.Length() )
client.SetVersion( &version );
if ( mode & M_TAGGED )
client.SetVar( "tag" );
if ( (mode & M_STREAMS) && apiLevel > 69 )
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 );
// we had used client.SetArgv in the past but it isn't
// binary safe on the input strings. the below loop will
// use SetVar for each param which allows us to specify
// the length and not rely on null termination.
// note: argv[0] holds the command so we skip it.
for( int i = 1; i < argc; i++ )
{
if ( PHP_PERFORCE_DEBUG ) {
std::cerr << "SetVar(" << ZSTR_VAL(argStrs[i]) << ")" << std::endl;
}
client.SetVar( StrRef::Null(), StrRef( ZSTR_VAL( argStrs[i] ), ZSTR_LEN( argStrs[i] ) ) );
}
if ( PHP_PERFORCE_DEBUG ) {
std::cerr << "Running cmd: " << cmd << std::endl;
}
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.
// [SEK] Because it comes from the server - not the client.
if ( !server2 )
{
StrPtr *pv = client.GetProtocol( "server2" );
if ( pv )
server2 = pv->Atoi();
}
}
//
// Execute the perforce command and arguments given in argv.
//
void
PHPClientAPI::Run( zend_string **strArgs, int argc, zval *retval )
{
StrBuf cmdString;
int i;
if ( depth )
{
php_error( E_WARNING,
"P4::run() - Can't execute nested Perforce commands.", 1 );
ZVAL_FALSE( retval );
return;
}
// throw if possible when we are not connected
if ( !connected && exceptionLevel ) {
Except( "P4.run()", "not connected." );
ZVAL_FALSE( retval );
return;
}
// double check connection; we may have exceptions disabled
// preventing the earlier check. Also verify we have at least
// one argument as we need a command if nothing else.
if ( !connected || !argc ) {
ZVAL_FALSE( retval );
return;
}
// generate the cmdString for use with exceptions
// and debugging if we need it
if ( exceptionLevel || PHP_PERFORCE_DEBUG ) {
cmdString << "\"p4";
for ( i = 0; i < argc; i++ )
{
cmdString << " " << ZSTR_VAL( strArgs[i] );
}
cmdString << "\"";
}
if ( PHP_PERFORCE_DEBUG )
{
std::cerr << "[PHPClientAPI::Run] ";
std::cerr << cmdString.Text() << std::endl;
}
ui.SetCommand( ZSTR_VAL(strArgs[0]) );
ui.Reset();
depth++;
RunCmd( ZSTR_VAL(strArgs[0]), argc, strArgs );
depth--;
P4Result &results = ui.GetResults();
results.GetOutput( retval );
if ( results.ErrorCount() && exceptionLevel )
{
Except( "P4.run()", "Errors during command execution",
cmdString.Text() );
}
if ( results.WarningCount() && exceptionLevel > 1 )
{
Except( "P4.run()", "Warnings during command execution",
cmdString.Text() );
}
}
//
// Try to connect to the Perforce server.
//
zval
PHPClientAPI::Connect()
{
zval retval;
Error e;
if ( PHP_PERFORCE_DEBUG )
{
std::cerr << "[P4] {PHPClientAPI::Connect()} "
<< "Connecting to Perforce" << std::endl;
}
if ( connected )
{
php_error( E_WARNING,
"P4::connect() - Perforce client already connected!", 1 );
ZVAL_TRUE( &retval );
return retval;
}
if ( PHP_PERFORCE_DEBUG )
{
std::cerr << "[P4] {PHPClientAPI::Connect()} "
<< "Initializing ClientAPI" << std::endl;
}
client.Init( &e );
if ( e.Test() && exceptionLevel )
{
connected = false;
Except( "P4.connect()", &e );
ZVAL_FALSE( &retval );
return retval;
}
if ( PHP_PERFORCE_DEBUG )
std::cerr << "[P4] Client Connected" << std::endl;
connected = true;
ZVAL_TRUE( &retval );
return retval;
}
//
// Disconnect from the Perforce server.
//
void
PHPClientAPI::Disconnect()
{
if ( !connected )
{
php_error( E_WARNING,
"P4::disconnect() - Not connected!", 1 );
return;
}
Error e;
client.Final( &e );
// Clear the specdef cache.
specMgr.Reset();
connected = false;
}
//
// Converts a hash supplied by the user into a string using the specstring
// from the server. We may have to fetch the specstring first.
//
zend_string *
PHPClientAPI::FormatSpec( const char *type, zval *hash )
{
if ( !specMgr.HaveSpecDef( type ) )
{
if ( exceptionLevel )
{
StrBuf m;
m = "No spec definition for ";
m.Append( type );
m.Append( " objects." );
Except( "P4.format_spec()", m.Text() );
}
return NULL;
}
// Got a specdef so now we can attempt to convert
StrBuf buf;
Error e;
specMgr.SpecToString( type, hash, buf, &e );
if ( !e.Test() )
{
return zend_string_init(buf.Text(), buf.Length(), 0 );
}
if ( exceptionLevel )
{
StrBuf m;
m = "Error converting hash to string.";
if ( e.Test() ) e.Fmt( m, EF_PLAIN );
Except( "P4.format_spec()", m.Text() );
}
return NULL;
}
//
// Get the value of a Perforce environment variable
//
const char *
PHPClientAPI::GetEnv( char *var )
{
return enviro->Get( var );
}
//
// Get array of error messages and return as a zval.
//
void
PHPClientAPI::GetErrors( zval *retval )
{
P4Result &results = ui.GetResults();
results.GetErrors( retval );
}
//
// Get array of warning messages and return as a zval.
//
void
PHPClientAPI::GetWarnings( zval *retval )
{
P4Result &results = ui.GetResults();
results.GetWarnings( retval );
}
//
// Determine if tagged output is enabled or not.
//
void
PHPClientAPI::GetTagged( zval *retval )
{
ZVAL_BOOL(retval, mode & M_TAGGED);
}
//
// Toggle between tagged / non-tagged output.
//
void
PHPClientAPI::SetTagged( zval *enable )
{
convert_to_boolean(enable);
bool tagged = (Z_TYPE_P(enable) == IS_TRUE);
if ( tagged )
mode |= M_TAGGED;
else
mode &= ~M_TAGGED;
}
//
// Determine if streams support is enabled or not.
//
void
PHPClientAPI::GetStreams( zval *retval )
{
ZVAL_BOOL(retval, mode & M_STREAMS);
}
//
// Toggle between streams enabled / not-enabled.
//
void
PHPClientAPI::SetStreams( zval *enable )
{
convert_to_boolean(enable);
bool streams = (Z_TYPE_P(enable) == IS_TRUE);
if( streams )
mode |= M_STREAMS;
else
mode &= ~M_STREAMS;
}
//
// Set the charset.
//
void
PHPClientAPI::SetCharset( zval *c )
{
if ( Z_TYPE_P( c ) != IS_STRING ) return;
CharSetApi::CharSet cs = CharSetApi::Lookup( Z_STRVAL_P(c) );
if ( cs < 0 ) {
if ( exceptionLevel ) {
StrBuf m;
m = "Unknown or unsupported charset: ";
m.Append( Z_STRVAL_P(c) );
Except( "SetCharSet", m.Text() );
}
}
charset = Z_STRVAL_P(c);
client.SetTrans( cs, cs, cs, cs );
}
//
// Get the current charset being used.
//
void
PHPClientAPI::GetCharset( zval *retval )
{
ZVAL_STRING( retval, charset.Text());
}
//
// Set current working directory.
//
void
PHPClientAPI::SetCwd( zval *cwd )
{
if ( Z_TYPE_P( cwd ) != IS_STRING ) return;
client.SetCwd( Z_STRVAL_P( cwd ) );
enviro->Config( StrRef( Z_STRVAL_P( cwd ) ) );
}
//
// Get current working directory.
//
void
PHPClientAPI::GetCwd( zval *retval )
{
ZVAL_STRING( retval, client.GetCwd().Text() );
}
//
// Set the location of the P4TICKETS file.
//
void
PHPClientAPI::SetTicketFile( zval *t )
{
ticketFile = Z_STRVAL_P( t );
client.SetTicketFile( ticketFile.Text() );
}
//
// The location of the P4TICKETS file
//
void
PHPClientAPI::GetTicketFile( zval *retval )
{
ZVAL_STRING( retval, ticketFile.Text());
}
//
// Set the input for the next command.
//
void
PHPClientAPI::SetInput( zval *i )
{
ui.SetInput( i );
}
//
// Get the input for the next command.
//
void
PHPClientAPI::GetInput( zval *retval )
{
ui.GetInput( retval );
}
//
// Set the API level for backwards compatibility.
//
void
PHPClientAPI::SetApiLevel( zval *level )
{
StrBuf b;
apiLevel = (int) Z_LVAL_P( level );
b << apiLevel;
client.SetProtocol( "api", b.Text() );
}
//
// Get the API level.
//
void
PHPClientAPI::GetApiLevel( zval *retval )
{
ZVAL_LONG( retval, (long)apiLevel );
}
//
// Set the client workspace to use.
//
void
PHPClientAPI::SetClient( zval *c )
{
if ( Z_TYPE_P( c ) != IS_STRING ) return;
client.SetClient( Z_STRVAL_P( c ) );
}
//
// Get the name of the current client workspace.
//
void
PHPClientAPI::GetClient( zval *retval )
{
ZVAL_STRING( retval, client.GetClient().Text());
}
// Exception levels:
//
// 0 - No exceptions raised
// 1 - Exceptions raised for errors
// 2 - Exceptions raised for errors and warnings
void
PHPClientAPI::SetExceptionLevel( zval *level )
{
if ( Z_TYPE_P( level ) != IS_LONG ) return;
exceptionLevel = (int) Z_LVAL_P( level );
}
void
PHPClientAPI::GetExceptionLevel( zval *retval )
{
ZVAL_LONG( retval, (long)exceptionLevel );
}
//
// The name of the current host.
//
void
PHPClientAPI::SetHost( zval *h )
{
if ( Z_TYPE_P( h ) != IS_STRING ) return;
client.SetHost( Z_STRVAL_P( h ) );
}
void
PHPClientAPI::GetHost( zval *retval )
{
ZVAL_STRING( retval, client.GetHost().Text() );
}
//
// The amount of time (in milliseconds) spent during data scans
//
void
PHPClientAPI::SetMaxLockTime( zval *v )
{
if ( Z_TYPE_P( v ) != IS_LONG ) return;
maxLockTime = (int) Z_LVAL_P( v );
}
void
PHPClientAPI::GetMaxLockTime( zval *retval )
{
ZVAL_LONG( retval, (long) maxLockTime );
}
//
// The number of results Perforce permits for subsequence commands
//
void
PHPClientAPI::SetMaxResults( zval *v )
{
if ( Z_TYPE_P( v ) != IS_LONG ) return;
maxResults = (int) Z_LVAL_P( v );
}
void
PHPClientAPI::GetMaxResults( zval *retval )
{
ZVAL_LONG( retval, (long) maxResults );
}
//
// The number of db records Perforce scans for subsequent commands
//
void
PHPClientAPI::SetMaxScanRows( zval *v )
{
if ( Z_TYPE_P( v ) != IS_LONG ) return;
maxScanRows = (int) Z_LVAL_P( v );
}
void
PHPClientAPI::GetMaxScanRows( zval *retval )
{
ZVAL_LONG( retval, (long) maxScanRows );
}
//
// The name of the current P4CONFIG file, if any
//
void
PHPClientAPI::GetConfig( zval *retval )
{
ZVAL_STRING( retval, client.GetConfig().Text() );
}
//
// The password for the Perforce user
//
void
PHPClientAPI::SetPassword( zval *p )
{
if ( Z_TYPE_P( p ) != IS_STRING ) // what else would it be?
convert_to_string( p );
client.SetPassword( Z_STRVAL_P( p ) );
}
void
PHPClientAPI::GetPassword( zval *retval )
{
ZVAL_STRING( retval, client.GetPassword().Text() );
}
//
// The port of the Perforce server
//
void
PHPClientAPI::SetPort( zval *p )
{
if ( Z_TYPE_P( p ) != IS_STRING ) { // now that is nice, P4Python bombs out here
convert_to_string( p );
}
client.SetPort( Z_STRVAL_P( p ) );
}
void PHPClientAPI::GetPort( zval *retval )
{
ZVAL_STRING( retval, client.GetPort().Text() );
}
//
// Name of the program currently running
//
void
PHPClientAPI::SetProg( zval *p )
{
if ( Z_TYPE_P( p ) != IS_STRING ) return;
prog = Z_STRVAL_P( p );
}
void
PHPClientAPI::GetProg( zval *retval )
{
ZVAL_STRING( retval, prog.Text() );
}
//
// Resolver object to be used with resolve commands
//
void
PHPClientAPI::SetResolver( zval *r )
{
if ( PHP_PERFORCE_DEBUG_CALLS )
std::cerr << "[P4] Received resolver used for resolve" << std::endl;
if ( ui.SetResolver( r ) )
{
return;
}
else if ( exceptionLevel )
{
Except( "P4#resolver",
"Error setting resolver. Must be an instance of P4_Resolver" );
}
}
void
PHPClientAPI::GetResolver( zval *retval )
{
ui.GetResolver( retval );
}
//
// The current Perforce server level
//
void
PHPClientAPI::GetServerLevel( zval *retval )
{
ZVAL_LONG( retval, server2 );
}
//
// ClientApi Accessor / Mutator Wrappers
//
void
PHPClientAPI::SetUser( zval *u )
{
if ( Z_TYPE_P( u ) != IS_STRING ) return;
client.SetUser( Z_STRVAL_P( u ) );
}
void
PHPClientAPI::GetUser( zval *retval )
{
ZVAL_STRING( retval, client.GetUser().Text() );
}
//
// P4-PHP Version
//
void
PHPClientAPI::SetVersion( zval *v )
{
if ( Z_TYPE_P( v ) != IS_STRING ) return;
version = Z_STRVAL_P( v );
}
void
PHPClientAPI::GetVersion( zval *retval )
{
ZVAL_STRING( retval, version.Text() );
}
//
// Determine if numeric sequences in tagged output will be expanded.
//
void
PHPClientAPI::GetExpandSequences( zval *retval )
{
ZVAL_BOOL( retval, specMgr.GetExpandSequences() );
}
//
// Enable / Disable expansion of numeric sequences in tagged output.
//
void
PHPClientAPI::SetExpandSequences( zval *enable )
{
specMgr.SetExpandSequences( Z_TYPE_P(enable) == IS_TRUE );
}
void
PHPClientAPI::SetEnableSSO( zval *e )
{
ui.EnableSSO( e );
}
void
PHPClientAPI::GetEnableSSO( zval *retval )
{
ui.SSOEnabled( retval );
}
void
PHPClientAPI::GetSSOVars( zval *retval )
{
ui.GetSSOVars( retval );
}
void
PHPClientAPI::SetSSOPassResult( zval *r )
{
ui.SetSSOPassResult( r );
}
void
PHPClientAPI::GetSSOPassResult( zval *retval )
{
ui.GetSSOPassResult( retval );
}
void
PHPClientAPI::SetSSOFailResult( zval *r )
{
ui.SetSSOFailResult( r );
}
void
PHPClientAPI::GetSSOFailResult( zval *retval )
{
ui.GetSSOFailResult( retval );
}
//
// Set the handler
//
void
PHPClientAPI::SetHandler( zval *h )
{
if ( ui.SetHandler( h ) && Z_TYPE_P( h ) == IS_OBJECT ) {
client.SetBreak( &ui );
} else {
client.SetBreak( NULL );
}
}
//
// Get the handler
//
void
PHPClientAPI::GetHandler( zval *retval )
{
ui.GetHandler( retval );
}
//
// Parse a Perforce form / spec object into an array
//
void
PHPClientAPI::ParseSpec( const char *type, const char *form, zval *retval )
{
if ( !specMgr.HaveSpecDef( type ) )
{
if ( exceptionLevel )
{
StrBuf m;
m = "No spec definition for ";
m.Append( type );
m.Append( " objects." );
Except( "P4.parse_spec()", m.Text() );
}
return;
}
// Got a specdef so now we can attempt to parse it.
Error e;
// TODO: why can't I just return the spec object the specMgr created?
// Need to revisit this
zval spec;
specMgr.StringToSpec( type, form, &e, &spec );
// Copy spec to retval and free spec
ZVAL_COPY_VALUE(retval, &spec);
// zval_dtor(&spec);
// Test for errors
if ( e.Test() )
{
if ( exceptionLevel )
Except( "P4.parse_spec()", &e );
return;
}
}
//
// Private method. Throw an exception.
//
void
PHPClientAPI::Except( const char *func, Error *e )
{
StrBuf m;
e->Fmt( &m );
Except( func, m.Text() );
}
//
// Private method. Throw an exception.
//
void
PHPClientAPI::Except( const char *func, const char *msg, const char *cmd )
{
StrBuf m;
m << msg;
m << "( " << cmd << " )";
Except( func, m.Text() );
}
//
// Private method. Throw an exception.
//
void
PHPClientAPI::Except( const char *func, const char *msg )
{
StrBuf m;
StrBuf errors;
StrBuf warnings;
bool terminate = false;
m << "[" << func << "] " << msg;
// Now append any errors and warnings to the text
ui.GetResults().FmtErrors( errors );