/[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.4 - (show annotations)
Sat Feb 22 16:48:58 2003 UTC (21 years, 4 months ago) by joko
Branch: MAIN
Changes since 1.3: +14 -10 lines
modified rapcall behaviour

1 ## ----------------------------------------------------------------------
2 ## $Id: Command.pm,v 1.3 2003/02/21 07:39:13 joko Exp $
3 ## ----------------------------------------------------------------------
4 ## $Log: Command.pm,v $
5 ## Revision 1.3 2003/02/21 07:39:13 joko
6 ## modified 'rapcall' processing
7 ## modified merging of options/arguments in there
8 ##
9 ## Revision 1.2 2003/02/20 19:37:09 joko
10 ## renamed modules
11 ## - removed command 'exec'
12 ## + enhanced command 'rapcall' - now handles various different modes and behaviours
13 ## renamed methods
14 ## + command 'exit'
15 ## + command 'use' - switch to foreign namespaces using contexts
16 ##
17 ## Revision 1.1 2003/02/18 15:35:06 joko
18 ## + initial commit
19 ##
20 ## ----------------------------------------------------------------------
21
22
23 package Data::Rap::Command;
24
25 use strict;
26 use warnings;
27
28
29 use Data::Dumper;
30 use Hash::Merge qw( merge );
31
32 use DesignPattern::Object;
33 use Data::Transform::Deep qw( merge_to );
34 use shortcuts qw( run_cmd );
35
36
37 sub _echo {
38 my $self = shift;
39 my $args = shift;
40 #print Dumper($args);
41 my $message;
42 my $level;
43
44 if (ref $args eq 'HASH') {
45 $message = $args->{message};
46 $level = $args->{level};
47 } else {
48 my @buf = ();
49 push @buf, $args;
50 push @buf, @_;
51 $message = join(' ', @buf);
52 }
53
54 $message ||= 'n/a';
55 $level ||= 'info';
56
57 $self->log($message, $level);
58 }
59
60 sub _context {
61 my $self = shift;
62 my $args = shift;
63 print Dumper($args);
64 foreach my $task_command (keys %$args) {
65 my $bunch = $args->{$task_command};
66 foreach my $task_args (@$bunch) {
67 #print Dumper($task_args);
68 $self->perform_command($task_command, $task_args);
69 }
70 }
71 }
72
73 # FIXME
74 sub _id {}
75
76 # FIXME
77 sub _description {}
78
79 sub _container {
80 my $self = shift;
81 my $args = shift;
82 $self->setContainer($args);
83 }
84
85 sub _sync {
86 my $self = shift;
87 my $args = shift;
88
89 #print Dumper($args);
90
91 # V1
92 #$bizProcess->runSync($task);
93
94 #V2
95 my $container = $self->getInstance();
96 $container ||= $self;
97 $container->runSync($args);
98
99 }
100
101 sub _depends_old {
102 my $self = shift;
103 my $args = shift;
104 #print Dumper($args);
105 $self->performTarget($args);
106 }
107
108 sub _dump {
109 my $self = shift;
110 my $args = shift;
111 my $name = $args->{name};
112 my $message = Dumper($self->get_property($name));
113 $self->rc('echo', "\n" . $message, $args->{level});
114 }
115
116
117 sub _plugin {
118 my $self = shift;
119 my $args = shift;
120
121 if (my $instance = $args->{instance}) {
122 #$self->{$instance} = DesignPattern::Object->fromPackage($args->{module});
123 my $object = DesignPattern::Object->fromPackage($args->{module});
124 #$self->{$instance}
125 #print Dumper($object);
126 #$object->constructor() if $object->can('constructor');
127
128 } elsif (my $name = $args->{name}) {
129
130 # 1. namespaces - load module into current scope or foreign namespace?
131 my $container;
132 if (my $namespace = $args->{namespace}) {
133
134 $self->log("Loading plugin '$name' into foreign namespace '$namespace'.", 'info');
135
136 eval qq{
137
138 # 0. pre-flight check|trace
139 #print "YAI";
140 #$self->log('YAIYAI', 'info'); # FIXME!
141
142 # 1. work in foreign namespace
143 package $namespace;
144 use strict;
145 use warnings;
146 # 2. mungle with/the
147 # - package namespace (llp)
148 # - object (lloo)
149 # - inheritance (lloo)
150 # - plugin (hlf)
151 # symbols for scopes:
152 # - llp = low-level perl
153 # - lloo = low-level oo
154 # - hlf = high-level framework
155 # bless larry for perl having this implemented in an orthogonal way
156 # 2.1: behaviour=coerce
157 #use base qw( $name );
158 # 2.2: behaviour=plugin
159 use base qw( DesignPattern::Bridge );
160 1;
161 };
162 $self->checkExceptions();
163 $container = $namespace->new();
164
165 } elsif (my $instance = $self->getInstance()) {
166 $self->log("Loading plugin '$name' into foreign namespace of instance '" . (ref $instance) . "'.", 'info');
167 $container = $instance;
168
169 } else {
170 #$self->log("Loading plugin '$name' into local scope's namespace (ref \$self='" . (ref $self) . "').", 'info');
171 $self->log("Loading plugin '$name' into local namespace '" . (ref $self) . "'.", 'info');
172 $container = $self;
173 }
174
175 # 1.b. intermediate checks
176 if (!$container) {
177 $self->log("No container to load '$name' into!", 'warning');
178 return;
179 }
180
181 # 1.c. inheritance of (e.g.) properties
182 if (my $inherit = $args->{inherit}) {
183 my $properties = $self->get_property($inherit);
184 merge_to($container, { $inherit => $properties }, { init => 1 } );
185 }
186
187 # 2. plugin - load module into container
188 $container->load($name);
189
190 # 3. methods - run object methods
191 if (my $methods = $args->{methods}) {
192 my @methods = split(/,|,\s/, $methods);
193 foreach (@methods) {
194 $self->log("Running method '$_'.", 'info');
195 $container->$_() if $container->can($_);
196 }
197 }
198
199 # 4. instances - create references in local scope
200 if (my $instances = $args->{instances}) {
201 my @instances = split(/,|,\s/, $instances);
202 foreach (@instances) {
203 $self->log("Creating instance '$_'.", 'info');
204 $self->{$_} = $container;
205 }
206 }
207
208
209 }
210 }
211
212 sub _rapcall {
213 my $self = shift;
214 my $args = shift;
215
216 if (my $container = $self->getContainer()) {
217 #my $opts = merge($container, $args);
218 #print Dumper($container);
219 merge_to($args, $container, { init => 1 });
220 }
221
222 # trace
223 #print Dumper($args);
224
225 if ($args->{executable}) {
226 $self->run_executable($args);
227 return;
228 }
229
230 if (my $command = $args->{command}) {
231 $self->perform_command($command, $args);
232 return;
233 }
234
235 if (my $target = $args->{target}) {
236 $self->performTarget($target, $args);
237 return;
238 }
239
240 if (my $method = $args->{method}) {
241 #$self->performTarget($target, $args);
242 if (my $refkey = $args->{base}) {
243 #eval($namespace . '::' . $method . '();');
244 #die($@) if $@;
245 #print Dumper($self);
246 $self->{$refkey}->$method();
247
248 } elsif (my $ref = $self->getInstance()) {
249 $ref->$method();
250 }
251
252 return;
253
254 }
255
256 }
257
258 sub _exit {
259 exit;
260 }
261
262 sub _use {
263 my $self = shift;
264 my $args = shift;
265 my $name = $args->{name};
266 $self->log("Switching to '$name'.", 'info');
267 $self->setInstance($self->{$name}) if $args->{type} eq 'instance';
268 }
269
270
271 1;
272 __END__

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