-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathClientRuntimeContext.php
202 lines (168 loc) · 4.45 KB
/
ClientRuntimeContext.php
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
<?php
namespace Office365\Runtime;
use Exception;
use Office365\Runtime\Actions\ClientAction;
use Office365\Runtime\Actions\ReadEntityQuery;
use Office365\Runtime\Http\RequestException;
use Office365\Runtime\Http\Response;
use Office365\Runtime\Http\RequestOptions;
/**
* Generic runtime context
*/
abstract class ClientRuntimeContext
{
/**
* @var ClientAction
*/
protected $currentQuery = null;
/**
* @var ClientAction[]
*/
protected $queries = array();
/**
* @var Version $RequestSchemaVersion
*/
public $RequestSchemaVersion;
public function __construct()
{
}
/**
* @return RequestOptions
*/
public function buildRequest(){
return $this->getPendingRequest()->buildRequest($this->getCurrentQuery());
}
/**
* @param RequestOptions $options
*/
public abstract function authenticateRequest(RequestOptions $options);
/**
* Gets the service root URL that identifies the root of an OData service
* @return string
*/
public abstract function getServiceRootUrl();
/**
* Prepare to load resource
* @param ClientObject $clientObject
* @param string[] $includeProperties
* @return ClientRuntimeContext
*/
public function load(ClientObject $clientObject, ?array $includeProperties = null)
{
$qry = new ReadEntityQuery($clientObject,$includeProperties);
$this->addQueryAndResultObject($qry, $clientObject);
return $this;
}
/**
* Submit a client request
*/
public function executeQuery()
{
while ($this->hasPendingRequest()) {
$qry = $this->getNextQuery();
$this->getPendingRequest()->executeQuery($qry);
}
}
/**
* Submit a query along with handling transient failures
* @param int $retryCount
* @param int $delaySecs
* @throws Exception
*/
public function executeQueryRetry($retryCount,$delaySecs, $currentRetry=0)
{
try{
$this->executeQuery();
}
catch(Exception $ex) {
if ($currentRetry > $retryCount || !($ex instanceof RequestException))
{
throw $ex;
}
sleep($delaySecs);
$this->addQuery($this->getCurrentQuery(),true);
$this->executeQueryRetry($retryCount,$delaySecs, $currentRetry+1);
}
}
/**
* @param RequestOptions $options
* @return Response
* @throws Exception
*/
public function executeQueryDirect(RequestOptions $options)
{
return $this->getPendingRequest()->executeQueryDirect($options);
}
/**
* @return ClientRequest
*/
public abstract function getPendingRequest();
/**
* @return bool
*/
public function hasPendingRequest()
{
return count($this->getActions()) > 0;
}
/**
* @param callable $callback
*/
public function afterExecuteQuery($callback){
$this->getPendingRequest()->afterExecuteRequest(function () use ($callback) {
$qry = $this->getCurrentQuery();
if(is_callable($callback)) call_user_func($callback, $qry);
},false);
}
/**
* @param ClientAction $query
* @param ClientObject|ClientResult $returnType
*/
public function addQueryAndResultObject(ClientAction $query, $returnType = null)
{
$query->ReturnType = $returnType;
$this->addQuery($query, false);
}
/**
* Gets the build version.
* @return Version
*/
public function getServerLibraryVersion(){
return new Version();
}
/**
* @return ClientAction|null
*/
protected function getNextQuery()
{
$qry = array_shift($this->queries);
$this->currentQuery = $qry;
return $qry;
}
/**
* @return ClientAction
*/
public function getCurrentQuery(){
return $this->currentQuery;
}
public function clearActions(){
$this->queries = array();
}
/**
* @return ClientAction[]
*/
public function getActions(){
return $this->queries;
}
/**
* Add query into request queue
* @param ClientAction $query
* @param bool $executeFirst
*/
public function addQuery(ClientAction $query, $executeFirst=false)
{
if($executeFirst)
array_unshift($this->queries , $query);
else
$this->queries[] = $query;
}
}