1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* AppserverIo\PersistenceContainerClient\Context\LocalContextConnection |
5
|
|
|
* |
6
|
|
|
* NOTICE OF LICENSE |
7
|
|
|
* |
8
|
|
|
* This source file is subject to the Open Software License (OSL 3.0) |
9
|
|
|
* that is available through the world-wide-web at this URL: |
10
|
|
|
* http://opensource.org/licenses/osl-3.0.php |
11
|
|
|
* |
12
|
|
|
* PHP version 5 |
13
|
|
|
* |
14
|
|
|
* @author Tim Wagner <[email protected]> |
15
|
|
|
* @copyright 2015 TechDivision GmbH <[email protected]> |
16
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
17
|
|
|
* @link https://github.com/appserver-io/rmi |
18
|
|
|
* @link http://www.appserver.io |
19
|
|
|
*/ |
20
|
|
|
|
21
|
|
|
namespace AppserverIo\RemoteMethodInvocation; |
22
|
|
|
|
23
|
|
|
use AppserverIo\Collections\CollectionInterface; |
24
|
|
|
use AppserverIo\Psr\Application\ApplicationInterface; |
25
|
|
|
use AppserverIo\Psr\EnterpriseBeans\BeanContextInterface; |
26
|
|
|
|
27
|
|
|
/** |
28
|
|
|
* Connection implementation to invoke a local method call. |
29
|
|
|
* |
30
|
|
|
* @author Tim Wagner <[email protected]> |
31
|
|
|
* @copyright 2015 TechDivision GmbH <[email protected]> |
32
|
|
|
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) |
33
|
|
|
* @link https://github.com/appserver-io/rmi |
34
|
|
|
* @link http://www.appserver.io |
35
|
|
|
* |
36
|
|
|
* @deprecated Use \AppserverIo\RemoteMethodInvocation\LocalProxy instead |
37
|
|
|
*/ |
38
|
|
|
class LocalContextConnection implements ConnectionInterface |
39
|
|
|
{ |
40
|
|
|
|
41
|
|
|
/** |
42
|
|
|
* The storage for the sessions. |
43
|
|
|
* |
44
|
|
|
* @var \AppserverIo\Collections\CollectionInterface |
45
|
|
|
*/ |
46
|
|
|
protected $sessions = null; |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* The application instance. |
50
|
|
|
* |
51
|
|
|
* @var \AppserverIo\Psr\Application\ApplicationInterface |
52
|
|
|
*/ |
53
|
|
|
protected $application; |
54
|
|
|
|
55
|
|
|
/** |
56
|
|
|
* The bean manager instance to load the local bean instance with. |
57
|
|
|
* |
58
|
|
|
* @var \AppserverIo\Psr\EnterpriseBeans\BeanContextInterface |
59
|
|
|
*/ |
60
|
|
|
protected $beanManager; |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* The local bean instance we're the proxy for. |
64
|
|
|
* |
65
|
|
|
* @var object |
66
|
|
|
*/ |
67
|
|
|
protected $instance; |
68
|
|
|
|
69
|
|
|
/** |
70
|
|
|
* Injects the application instance for the local connection. |
71
|
|
|
* |
72
|
|
|
* @param \AppserverIo\Psr\Application\ApplicationInterface $application The application instance |
73
|
|
|
* |
74
|
|
|
* @return void |
75
|
|
|
*/ |
76
|
|
|
public function injectApplication(ApplicationInterface $application) |
77
|
|
|
{ |
78
|
|
|
$this->application = $application; |
79
|
|
|
} |
80
|
|
|
|
81
|
|
|
/** |
82
|
|
|
* Returns the application instance. |
83
|
|
|
* |
84
|
|
|
* @return \AppserverIo\Psr\Application\ApplicationInterface The application instance |
85
|
|
|
*/ |
86
|
|
|
public function getApplication() |
87
|
|
|
{ |
88
|
|
|
return $this->application; |
89
|
|
|
} |
90
|
|
|
|
91
|
|
|
/** |
92
|
|
|
* Injects the collection for the sessions. |
93
|
|
|
* |
94
|
|
|
* @param \AppserverIo\Collections\CollectionInterface $sessions The collection for the sessions |
95
|
|
|
* |
96
|
|
|
* @return void |
97
|
|
|
*/ |
98
|
|
|
public function injectSessions(CollectionInterface $sessions) |
99
|
|
|
{ |
100
|
|
|
$this->sessions = $sessions; |
101
|
|
|
} |
102
|
|
|
|
103
|
|
|
/** |
104
|
|
|
* Returns the collection with the sessions. |
105
|
|
|
* |
106
|
|
|
* @return \AppserverIo\Collections\CollectionInterface The collection with the sessions |
107
|
|
|
*/ |
108
|
|
|
public function getSessions() |
109
|
|
|
{ |
110
|
|
|
return $this->sessions; |
111
|
|
|
} |
112
|
|
|
|
113
|
|
|
/** |
114
|
|
|
* Sends the remote method call to the container instance. |
115
|
|
|
* |
116
|
|
|
* @param \AppserverIo\RemoteMethodInvocation\RemoteMethodInterface $remoteMethod The remote method instance |
117
|
|
|
* |
118
|
|
|
* @return mixed The response from the container |
119
|
|
|
* @see AppserverIo\RemoteMethodInvocation\ConnectionInterface::send() |
120
|
|
|
*/ |
121
|
|
|
public function send(RemoteMethodInterface $remoteMethod) |
122
|
|
|
{ |
123
|
|
|
return $this->getApplication()->search(BeanContextInterface::IDENTIFIER)->invoke($remoteMethod, $this->getSessions()); |
|
|
|
|
124
|
|
|
} |
125
|
|
|
|
126
|
|
|
/** |
127
|
|
|
* Initializes a new session instance. |
128
|
|
|
* |
129
|
|
|
* @return \AppserverIo\RemoteMethodInvocation\SessionInterface The session instance |
130
|
|
|
* @see \AppserverIo\RemoteMethodInvocation\ConnectionInterface::createContextSession() |
131
|
|
|
*/ |
132
|
|
|
public function createContextSession() |
133
|
|
|
{ |
134
|
|
|
$this->sessions->add($session = new ContextSession($this)); |
|
|
|
|
135
|
|
|
return $session; |
136
|
|
|
} |
137
|
|
|
} |
138
|
|
|
|
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.