/[cvs]/nfo/perl/libs/Data/Rap/Command.pm
ViewVC logotype

Contents of /nfo/perl/libs/Data/Rap/Command.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.7 - (show annotations)
Tue May 13 07:52:14 2003 UTC (21 years, 1 month ago) by joko
Branch: MAIN
Changes since 1.6: +94 -8 lines
enhanced: *hierarchical* containers for context handling
making methods from foreign context(s) available
started: import of targets from foreign topics

1 ## ----------------------------------------------------------------------
2 ## $Id: Command.pm,v 1.6 2003/03/29 07:10:42 joko Exp $
3 ## ----------------------------------------------------------------------
4 ## $Log: Command.pm,v $
5 ## Revision 1.6 2003/03/29 07:10:42 joko
6 ## + sub _script:
7 ## new rap-command: '<script language="msdos/bat|bash|...">...</script>'
8 ##
9 ## Revision 1.5 2003/03/27 15:31:04 joko
10 ## fixes to modules regarding new namespace(s) below Data::Mungle::*
11 ##
12 ## Revision 1.4 2003/02/22 16:48:58 joko
13 ## modified rapcall behaviour
14 ##
15 ## Revision 1.3 2003/02/21 07:39:13 joko
16 ## modified 'rapcall' processing
17 ## modified merging of options/arguments in there
18 ##
19 ## Revision 1.2 2003/02/20 19:37:09 joko
20 ## renamed modules
21 ## - removed command 'exec'
22 ## + enhanced command 'rapcall' - now handles various different modes and behaviours
23 ## renamed methods
24 ## + command 'exit'
25 ## + command 'use' - switch to foreign namespaces using contexts
26 ##
27 ## Revision 1.1 2003/02/18 15:35:06 joko
28 ## + initial commit
29 ##
30 ## ----------------------------------------------------------------------
31
32
33 package Data::Rap::Command;
34
35 use strict;
36 use warnings;
37
38
39 use Data::Dumper;
40 use Hash::Merge qw( merge );
41
42 use DesignPattern::Object;
43 use Data::Mungle::Transform::Deep qw( merge_to );
44 use shortcuts qw( run_cmd );
45
46
47 sub _echo {
48 my $self = shift;
49 my $args = shift;
50 #print Dumper($args);
51 my $message;
52 my $level;
53
54 if (ref $args eq 'HASH') {
55 $message = $args->{message};
56 $level = $args->{level};
57 } else {
58 my @buf = ();
59 push @buf, $args;
60 push @buf, @_;
61 $message = join(' ', @buf);
62 }
63
64 $message ||= 'n/a';
65 $level ||= 'info';
66
67 $self->log($message, $level);
68 }
69
70 sub _context {
71 my $self = shift;
72 my $args = shift;
73 print "_context-args: ", Dumper($args);
74 foreach my $task_command (keys %$args) {
75 my $bunch = $args->{$task_command};
76 foreach my $task_args (@$bunch) {
77 #print Dumper($task_args);
78 $self->perform_command($task_command, $task_args);
79 }
80 }
81 }
82
83 # FIXME
84 sub _id {}
85
86 # FIXME
87 sub _description {}
88
89 # NEW [2003-05-08]: Hierarchical handling (stack push/pop instead of set/get).
90 # TODO: Named Containers.
91 sub _container {
92 my $self = shift;
93 my $args = shift;
94 $self->pushContainer($args);
95 }
96
97 sub _container_end {
98 my $self = shift;
99 my $args = shift;
100 $self->popContainer();
101 }
102
103 sub _sync {
104 my $self = shift;
105 my $args = shift;
106
107 #print Dumper($args);
108
109 # V1
110 #$bizProcess->runSync($task);
111
112 #V2
113 my $container = $self->getInstance();
114 $container ||= $self;
115 $container->runSync($args);
116
117 }
118
119 sub _depends_old {
120 my $self = shift;
121 my $args = shift;
122 #print Dumper($args);
123 $self->performTarget($args);
124 }
125
126 sub _dump {
127 my $self = shift;
128 my $args = shift;
129 my $name = $args->{name};
130 my $message = Dumper($self->get_property($name));
131 $self->rc('echo', "\n" . $message, $args->{level});
132 }
133
134
135 sub _plugin {
136 my $self = shift;
137 my $args = shift;
138 my $content = shift;
139
140 if (my $instance = $args->{instance}) {
141 #$self->{$instance} = DesignPattern::Object->fromPackage($args->{module});
142 my $object = DesignPattern::Object->fromPackage($args->{module});
143 #$self->{$instance}
144 #print Dumper($object);
145 #$object->constructor() if $object->can('constructor');
146
147 } elsif (my $name = $args->{name}) {
148
149 # 1. namespaces - load module into current scope or foreign namespace?
150 my $container;
151 if (my $namespace = $args->{namespace}) {
152
153 $self->log("Loading plugin '$name' into foreign namespace '$namespace'.", 'info');
154
155 eval qq{
156
157 # 0. pre-flight check|trace
158 #print "YAI";
159 #$self->log('YAIYAI', 'info'); # FIXME!
160
161 # 1. work in foreign namespace
162 package $namespace;
163 use strict;
164 use warnings;
165 # 2. mungle with/the
166 # - package namespace (llp)
167 # - object (lloo)
168 # - inheritance (lloo)
169 # - plugin (hlf)
170 # symbols for scopes:
171 # - llp = low-level perl
172 # - lloo = low-level oo
173 # - hlf = high-level framework
174 # bless larry for perl having this implemented in an orthogonal way
175 # 2.1: behaviour=coerce
176 #use base qw( $name );
177 # 2.2: behaviour=plugin
178 use base qw( DesignPattern::Bridge );
179 1;
180 };
181 $self->checkExceptions();
182 $container = $namespace->new();
183
184 } elsif (my $instance = $self->getInstance()) {
185 $self->log("Loading plugin '$name' into foreign namespace of instance '" . (ref $instance) . "'.", 'info');
186 $container = $instance;
187
188 } else {
189 #$self->log("Loading plugin '$name' into local scope's namespace (ref \$self='" . (ref $self) . "').", 'info');
190 $self->log("Loading plugin '$name' into local namespace '" . (ref $self) . "'.", 'info');
191 $container = $self;
192 }
193
194 # 1.b. intermediate checks
195 if (!$container) {
196 $self->log("No container to load '$name' into!", 'warning');
197 return;
198 }
199
200 # 1.c. inheritance of (e.g.) properties
201 if (my $inherit = $args->{inherit}) {
202 my $properties = $self->get_property($inherit);
203 merge_to($container, { $inherit => $properties }, { init => 1 } );
204 }
205
206 # 2. plugin - load module into container
207 $container->load($name);
208
209 # 3. methods - run object methods
210
211 # payload inside $content is the $args to the $method
212 # convert xml-style payload inside $content to trivial (not-nested) perl hash
213 # using just encapsulated text of the nodes as hash values
214 my $method_args;
215 foreach (@$content) {
216 my $key = $_->{name};
217 my $value = $_->{content}->[0]->{content};
218 $method_args->{$key} = $value;
219 }
220 # convert hashref to arrayref
221 $method_args = [ %$method_args ] if ref $method_args eq 'HASH';
222
223 if (my $methods = $args->{methods}) {
224 my @methods = split(/,|,\s/, $methods);
225 foreach (@methods) {
226 $self->log("Running method '$_'.", 'info');
227 #print Dumper($method_args);
228 # check for existance of method
229 if ($container->can($_)) {
230 # dispatch call by being with or without arguments
231 print "method_args: ", Dumper($method_args);
232 if ($method_args) {
233 $container->$_(@$method_args);
234 } else {
235 $container->$_();
236 }
237 }
238 }
239 }
240
241 # 4. instances - create references in local scope
242 if (my $instances = $args->{instances}) {
243 my @instances = split(/,|,\s/, $instances);
244 foreach (@instances) {
245 $self->log("Creating instance '$_'.", 'info');
246 $self->{$_} = $container;
247 }
248 }
249
250
251 }
252 }
253
254 sub _rapcall {
255 my $self = shift;
256 my $args = shift;
257
258 # merge container arguments to local ones if desired/requested/forced
259 if (my $container = $self->getContainer()) {
260 #my $opts = merge($container, $args);
261 #print Dumper($container);
262 merge_to($args, $container, { init => 1 });
263 }
264
265 # trace
266 #print Dumper($args);
267
268 # action dispatcher, either do:
269 # - run an executable program [ext]
270 # - call a command (?) [rap]
271 # - a rap target [rap]
272 # - a code method [ext]
273
274 if ($args->{executable}) {
275 $self->run_executable($args);
276 return;
277 }
278
279 if (my $command = $args->{command}) {
280 $self->perform_command($command, $args);
281 return;
282 }
283
284 if (my $target = $args->{target}) {
285 $self->performTarget($target, $args);
286 return;
287 }
288
289 if (my $method = $args->{method}) {
290 #$self->performTarget($target, $args);
291 if (my $refkey = $args->{base}) {
292 #eval($namespace . '::' . $method . '();');
293 #die($@) if $@;
294 #print Dumper($self);
295
296 #if ($args->{args} && lc $args->{args} eq 'array') {
297 #print Dumper($args);
298 #print Dumper($self);
299 #}
300
301 # V1 - no arguments were being propagated
302 #$self->{$refkey}->$method();
303 # V2 - trying this....
304 $self->{$refkey}->$method();
305
306 } elsif (my $ref = $self->getInstance()) {
307 $ref->$method();
308 }
309
310 return;
311
312 }
313
314 }
315
316 sub _exit {
317 exit;
318 }
319
320 sub _use {
321 my $self = shift;
322 my $args = shift;
323
324 # new of ~2003-04-15: making methods from foreign context(s) available
325 if (my $name = $args->{name}) {
326 $args->{type} ||= '';
327 $self->log("Switching to $args->{type} '$name'.", 'info');
328 $self->setInstance($self->{$name}) if $args->{type} eq 'instance';
329 }
330
331 # new of ~2003-04-15: making methods from foreign context(s) available
332 if (exists $args->{method_prefix}) {
333 #print "YAI", "\n";
334 #print Dumper($args);
335 $self->set_property( { name => 'core.method_prefix', value => $args->{method_prefix} } );
336 }
337
338 # TODO: (possible feature)
339 # check for $args->{export_rap_commands} to export core rap-commands
340 # from rap engine's scope to the worker's
341
342 }
343
344 sub _script {
345 my $self = shift;
346 my $args = shift;
347 my $content = shift;
348
349 # trace
350 #print Dumper($args);
351 #print Dumper($content);
352
353 my $code = $content->[0]->{content};
354 $code ||= '';
355
356 $self->run_script($args, $code);
357
358 }
359
360 sub _import {
361 my $self = shift;
362 my $args = shift;
363 #my $content = shift;
364
365 if (!$args->{topic}) {
366 $self->log("Please specify topic.", 'warning');
367 return;
368 }
369
370 $self->log("Importing all targets from topic '$args->{topic}'.", 'info');
371
372 #print Dumper($self);
373 # FIXME: This was started off, but not finished!
374 print "registry: ", Dumper($Data::Rap::registry);
375
376 }
377
378 1;
379 __END__

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed