@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @param object $config configuration object for the pollable channel. |
43 | 43 | * @return \PEIP\INF\Channel\Channel the created pollable channel instance |
44 | 44 | */ |
45 | - public function createChannel($config){ |
|
45 | + public function createChannel($config) { |
|
46 | 46 | return $this->doCreateChannel($config, '\PEIP\Channel\PollableChannel'); |
47 | 47 | } |
48 | 48 | |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | * @param object $config configuration object for the subscribable channel. |
55 | 55 | * @return \PEIP\INF\Channel\Channel the created subscribable channel instance |
56 | 56 | */ |
57 | - public function createSubscribableChannel($config){ |
|
57 | + public function createSubscribableChannel($config) { |
|
58 | 58 | return $this->doCreateChannel($config, '\PEIP\Channel\PublishSubscribeChannel'); |
59 | 59 | } |
60 | 60 | |
@@ -67,9 +67,9 @@ discard block |
||
67 | 67 | * @param $additionalArguments additional arguments for the channel constructor (without first arg = id) |
68 | 68 | * @return \PEIP\INF\Channel\Channel the created channel instance |
69 | 69 | */ |
70 | - public function doCreateChannel($config, $defaultChannelClass, array $additionalArguments = array()){ |
|
70 | + public function doCreateChannel($config, $defaultChannelClass, array $additionalArguments = array()) { |
|
71 | 71 | $id = (string)$config['id']; |
72 | - if($id != ''){ |
|
72 | + if ($id != '') { |
|
73 | 73 | array_unshift($additionalArguments, $id); |
74 | 74 | $channel = $this->buildAndModify($config, $additionalArguments, $defaultChannelClass); |
75 | 75 | //$this->channelRegistry->register($channel); |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @param string $defaultClass the class to use if none is set in config. |
88 | 88 | * @return object the gateway instance |
89 | 89 | */ |
90 | - public function createGateway($config, $defaultClass = false){ |
|
90 | + public function createGateway($config, $defaultClass = false) { |
|
91 | 91 | $args = array( |
92 | 92 | $this->getRequestChannel($config), |
93 | 93 | $this->getReplyChannel($config) |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @param string $defaultClass the class to use if none is set in config. |
112 | 112 | * @return object the router instance |
113 | 113 | */ |
114 | - public function createRouter($config, $defaultClass = false){ |
|
114 | + public function createRouter($config, $defaultClass = false) { |
|
115 | 115 | $resolver = $config['channel_resolver'] ? (string)$config['channel_resolver'] : $this->channelRegistry; |
116 | 116 | return $this->buildAndModify($config, array( |
117 | 117 | $resolver, |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | * @param object $config configuration object for the splitter. |
129 | 129 | * @return object the splitter instance |
130 | 130 | */ |
131 | - public function createSplitter($config){ |
|
131 | + public function createSplitter($config) { |
|
132 | 132 | return $this->createReplyMessageHandler($config); |
133 | 133 | } |
134 | 134 | |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | * @param object $config configuration object for the transformer. |
142 | 142 | * @return object the transformer instance |
143 | 143 | */ |
144 | - public function createTransformer($config){ |
|
144 | + public function createTransformer($config) { |
|
145 | 145 | return $this->createReplyMessageHandler($config); |
146 | 146 | } |
147 | 147 | |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | * @param object $config configuration object for the aggregator. |
155 | 155 | * @return object the aggregator instance |
156 | 156 | */ |
157 | - public function createAggregator($config){ |
|
157 | + public function createAggregator($config) { |
|
158 | 158 | return $this->createReplyMessageHandler($config); |
159 | 159 | } |
160 | 160 | |
@@ -167,7 +167,7 @@ discard block |
||
167 | 167 | * @param object $config configuration object for the wiretap. |
168 | 168 | * @return object the wiretap instance |
169 | 169 | */ |
170 | - public function createWiretap($config){ |
|
170 | + public function createWiretap($config) { |
|
171 | 171 | return $this->createReplyMessageHandler($config, '\PEIP\Listener\Wiretap'); |
172 | 172 | } |
173 | 173 | |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | * @param string $defaultClass the class to use if none is set in config. |
181 | 181 | * @return object the reply-message-handler instance |
182 | 182 | */ |
183 | - public function createReplyMessageHandler($config, $defaultClass = false){ |
|
183 | + public function createReplyMessageHandler($config, $defaultClass = false) { |
|
184 | 184 | return $this->buildAndModify($config, $this->getReplyHandlerArguments($config), $defaultClass); |
185 | 185 | } |
186 | 186 | |
@@ -193,12 +193,12 @@ discard block |
||
193 | 193 | * @param string $defaultClass the class to use if none is set in config. |
194 | 194 | * @return object the service-activator instance |
195 | 195 | */ |
196 | - public function createServiceActivator($config, $defaultClass = false){ |
|
196 | + public function createServiceActivator($config, $defaultClass = false) { |
|
197 | 197 | $method = (string)$config['method']; |
198 | 198 | $service = $this->context->getServiceProvider()->provideService((string)$config['ref']); |
199 | - if($method && $service){ |
|
199 | + if ($method && $service) { |
|
200 | 200 | $args = $this->getReplyHandlerArguments($config); |
201 | - array_unshift($args,array( |
|
201 | + array_unshift($args, array( |
|
202 | 202 | $service, |
203 | 203 | $method |
204 | 204 | )); |
@@ -215,12 +215,12 @@ discard block |
||
215 | 215 | * @param object $config configuration object to create arguments from. |
216 | 216 | * @return mixed build arguments |
217 | 217 | */ |
218 | - protected function getReplyHandlerArguments($config){ |
|
218 | + protected function getReplyHandlerArguments($config) { |
|
219 | 219 | $args = array( |
220 | 220 | $this->doGetChannel('input', $config), |
221 | 221 | $this->doGetChannel('output', $config) |
222 | 222 | ); |
223 | - if($args[0] == NULL){ |
|
223 | + if ($args[0] == NULL) { |
|
224 | 224 | throw new \RuntimeException('Could not receive input channel.'); |
225 | 225 | } |
226 | 226 | return $args; |
@@ -235,7 +235,7 @@ discard block |
||
235 | 235 | * @param object $config configuration object to return request-channel from. |
236 | 236 | * @return \PEIP\INF\Channel\Channel request-channel |
237 | 237 | */ |
238 | - protected function getRequestChannel($config){ |
|
238 | + protected function getRequestChannel($config) { |
|
239 | 239 | return $this->doGetChannel('request', $config); |
240 | 240 | } |
241 | 241 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | * @param object $config configuration object to return reply-channel from. |
249 | 249 | * @return \PEIP\INF\Channel\Channel reply-channel |
250 | 250 | */ |
251 | - protected function getReplyChannel($config){ |
|
251 | + protected function getReplyChannel($config) { |
|
252 | 252 | return $this->doGetChannel('reply', $config); |
253 | 253 | } |
254 | 254 | |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | * @param object $config configuration object to return channel from. |
262 | 262 | * @return \PEIP\INF\Channel\Channel reply-channel |
263 | 263 | */ |
264 | - public function doGetChannel($type, $config){ |
|
264 | + public function doGetChannel($type, $config) { |
|
265 | 265 | $channelName = isset($config[$type."_channel"]) |
266 | 266 | ? $config[$type."_channel"] |
267 | 267 | : $config["default_".$type."_channel"]; |
@@ -23,11 +23,11 @@ discard block |
||
23 | 23 | * @param $config configuration of the service |
24 | 24 | * @return object the initialized service instance |
25 | 25 | */ |
26 | - public static function createService(array $config){ |
|
26 | + public static function createService(array $config) { |
|
27 | 27 | $args = array(); |
28 | 28 | //build arguments for constructor |
29 | - if(isset($config['constructor_arg'])){ |
|
30 | - foreach($config['constructor_arg'] as $arg){ |
|
29 | + if (isset($config['constructor_arg'])) { |
|
30 | + foreach ($config['constructor_arg'] as $arg) { |
|
31 | 31 | $args[] = self::buildArg($arg); |
32 | 32 | } |
33 | 33 | } |
@@ -44,21 +44,21 @@ discard block |
||
44 | 44 | * @param string $defaultClass class to create instance for if none is set in config |
45 | 45 | * @return object build and modified srvice instance |
46 | 46 | */ |
47 | - public static function doBuild($config, $arguments, $defaultClass = false){ |
|
47 | + public static function doBuild($config, $arguments, $defaultClass = false) { |
|
48 | 48 | $cls = isset($config["class"]) ? trim((string)$config["class"]) : (string)$defaultClass; |
49 | - if($cls != ''){ |
|
49 | + if ($cls != '') { |
|
50 | 50 | try { |
51 | - $constructor = isset($config["constructor"])?(string)$config["constructor"]:""; |
|
52 | - if($constructor != '' && Test::assertMethod($cls, $constructor)){ |
|
51 | + $constructor = isset($config["constructor"]) ? (string)$config["constructor"] : ""; |
|
52 | + if ($constructor != '' && Test::assertMethod($cls, $constructor)) { |
|
53 | 53 | $service = call_user_func_array(array($cls, $constructor), $arguments); |
54 | - }else{ |
|
54 | + }else { |
|
55 | 55 | $service = self::build($cls, $arguments); |
56 | 56 | } |
57 | - }catch(\Exception $e){ |
|
57 | + } catch (\Exception $e) { |
|
58 | 58 | throw new \RuntimeException('Could not create Service "'.$cls.'" -> '.$e->getMessage()); |
59 | 59 | } |
60 | 60 | } |
61 | - if(is_object($service)){ |
|
61 | + if (is_object($service)) { |
|
62 | 62 | return $service; |
63 | 63 | } |
64 | 64 | throw new \RuntimeException('Could not create Service "'.$cls.'". Class does not exist.'); |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * @param array $arguments arguments for the constructor |
76 | 76 | * @return object build and modified srvice instance |
77 | 77 | */ |
78 | - public static function build($className, $arguments){ |
|
78 | + public static function build($className, $arguments) { |
|
79 | 79 | return GenericBuilder::getInstance($className)->build($arguments); |
80 | 80 | } |
81 | 81 | |
@@ -86,29 +86,29 @@ discard block |
||
86 | 86 | * @param object $config configuration object to create argument from. |
87 | 87 | * @return mixed build argument |
88 | 88 | */ |
89 | - protected static function buildArg($config){ |
|
90 | - if(trim((string)$config['value']) != ''){ |
|
89 | + protected static function buildArg($config) { |
|
90 | + if (trim((string)$config['value']) != '') { |
|
91 | 91 | $arg = (string)$config['value']; |
92 | - }elseif($config->getName() == 'value'){ |
|
92 | + }elseif ($config->getName() == 'value') { |
|
93 | 93 | $arg = (string)$config; |
94 | - }elseif($config->getName() == 'list'){ |
|
94 | + }elseif ($config->getName() == 'list') { |
|
95 | 95 | $arg = array(); |
96 | - foreach($config->children() as $entry){ |
|
97 | - if($entry->getName() == 'value'){ |
|
98 | - if($entry['key']){ |
|
96 | + foreach ($config->children() as $entry) { |
|
97 | + if ($entry->getName() == 'value') { |
|
98 | + if ($entry['key']) { |
|
99 | 99 | $arg[(string)$entry['key']] = (string)$entry; |
100 | - }else{ |
|
100 | + }else { |
|
101 | 101 | $arg[] = (string)$entry; |
102 | 102 | } |
103 | - }elseif($entry->getName() == 'service'){ |
|
103 | + }elseif ($entry->getName() == 'service') { |
|
104 | 104 | $arg[] = $this->provideService($entry); |
105 | 105 | } |
106 | 106 | } |
107 | - }elseif($config->getName() == 'service'){ |
|
107 | + }elseif ($config->getName() == 'service') { |
|
108 | 108 | $arg = self::provideService($config); |
109 | - }elseif($config->list){ |
|
109 | + }elseif ($config->list) { |
|
110 | 110 | $arg = self::buildArg($config->list); |
111 | - }elseif($config->service){ |
|
111 | + }elseif ($config->service) { |
|
112 | 112 | $arg = self::buildArg($config->service); |
113 | 113 | } |
114 | 114 | return $arg; |
@@ -126,24 +126,24 @@ discard block |
||
126 | 126 | * @param string $defaultClass class to create instance for if none is set in config |
127 | 127 | * @return object build and modified srvice instance |
128 | 128 | */ |
129 | - public static function buildAndModify(array $config, $arguments, $defaultClass = ""){ |
|
130 | - if((isset($config["class"]) && "" != (string)$config["class"]) || $defaultClass !== ""){ |
|
129 | + public static function buildAndModify(array $config, $arguments, $defaultClass = "") { |
|
130 | + if ((isset($config["class"]) && "" != (string)$config["class"]) || $defaultClass !== "") { |
|
131 | 131 | $service = ServiceFactory::doBuild($config, $arguments, $defaultClass); |
132 | - }else{ |
|
132 | + }else { |
|
133 | 133 | throw new \RuntimeException('Could not create Service. no class or reference given.'); |
134 | 134 | } |
135 | - if(isset($config["ref_property"])){ |
|
135 | + if (isset($config["ref_property"])) { |
|
136 | 136 | $service = $service->{(string)$config["ref_property"]}; |
137 | - }elseif(isset($config["ref_method"])){ |
|
137 | + }elseif (isset($config["ref_method"])) { |
|
138 | 138 | $args = array(); |
139 | - if(isset($config['argument'])){ |
|
140 | - foreach($config['argument'] as $arg){ |
|
139 | + if (isset($config['argument'])) { |
|
140 | + foreach ($config['argument'] as $arg) { |
|
141 | 141 | $args[] = self::buildArg($arg); |
142 | 142 | } |
143 | 143 | } |
144 | 144 | $service = call_user_func_array(array($service, (string)$config["ref_method"]), $args); |
145 | 145 | } |
146 | - if(!is_object($service)){ |
|
146 | + if (!is_object($service)) { |
|
147 | 147 | throw new \RuntimeException('Could not create Service.'); |
148 | 148 | } |
149 | 149 | $service = self::modifyService($service, $config); |
@@ -165,29 +165,29 @@ discard block |
||
165 | 165 | * @param object $config configuration to get the modification instructions from. |
166 | 166 | * @return object the modificated service |
167 | 167 | */ |
168 | - protected function modifyService($service, $config){ |
|
168 | + protected function modifyService($service, $config) { |
|
169 | 169 | $config = is_array($config) ? new \ArrayObject($config) : $config; |
170 | 170 | // set instance properties |
171 | - if(isset($config->property)){ |
|
172 | - foreach($config->property as $property){ |
|
171 | + if (isset($config->property)) { |
|
172 | + foreach ($config->property as $property) { |
|
173 | 173 | $arg = self::buildArg($property); |
174 | - if($arg){ |
|
174 | + if ($arg) { |
|
175 | 175 | $setter = self::getSetter($property); |
176 | - if($setter && self::hasPublicProperty($service, 'Method', $setter)){ |
|
176 | + if ($setter && self::hasPublicProperty($service, 'Method', $setter)) { |
|
177 | 177 | $service->{$setter}($arg); |
178 | - }elseif(in_array($property, self::hasPublicProperty($service, 'Property', $setter))){ |
|
178 | + }elseif (in_array($property, self::hasPublicProperty($service, 'Property', $setter))) { |
|
179 | 179 | $service->$setter = $arg; |
180 | 180 | } |
181 | 181 | } |
182 | 182 | } |
183 | 183 | } |
184 | 184 | // call instance methods |
185 | - if(isset($config->action)){ |
|
186 | - foreach($config->action as $action){ |
|
185 | + if (isset($config->action)) { |
|
186 | + foreach ($config->action as $action) { |
|
187 | 187 | $method = (string)$action['method'] != '' ? (string)$action['method'] : NULL; |
188 | - if($method && self::hasPublicProperty($service, 'Method', $method)){ |
|
188 | + if ($method && self::hasPublicProperty($service, 'Method', $method)) { |
|
189 | 189 | $args = array(); |
190 | - foreach($action->children() as $argument){ |
|
190 | + foreach ($action->children() as $argument) { |
|
191 | 191 | $args[] = self::buildArg($argument); |
192 | 192 | } |
193 | 193 | call_user_func_array(array($service, (string)$action['method']), $args); |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | } |
196 | 196 | } |
197 | 197 | // register instance listeners |
198 | - if($service instanceof \PEIP\INF\Event\Connectable){ |
|
199 | - if(isset($config->listener)){ |
|
200 | - foreach($config->listener as $listenerConf){ |
|
198 | + if ($service instanceof \PEIP\INF\Event\Connectable) { |
|
199 | + if (isset($config->listener)) { |
|
200 | + foreach ($config->listener as $listenerConf) { |
|
201 | 201 | $event = (string)$listenerConf['event']; |
202 | 202 | $listener = $this->provideService($listenerConf); |
203 | 203 | $service->connect($event, $listener); |