/usr/share/perl5/UR/Object/View.pm is in libur-perl 0.430-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 | package UR::Object::View;
use warnings;
use strict;
require UR;
our $VERSION = "0.43"; # UR $VERSION;;
class UR::Object::View {
has_abstract_constant => [
subject_class_name => { is_abstract => 1, is_constant => 1 },#is_classwide => 1, is_constant => 1, is_optional => 0 },
perspective => { is_abstract => 1, is_constant => 1 },#is_classwide => 1, is_constant => 1, is_optional => 0 },
toolkit => { is_abstract => 1, is_constant => 1 },#is_classwide => 1, is_constant => 1, is_optional => 0 },
],
has_optional => [
parent_view => {
is => 'UR::Object::View',
id_by => 'parent_view_id',
doc => 'when nested inside another view, this references that view',
},
subject => {
is => 'UR::Object',
id_class_by => 'subject_class_name', id_by => 'subject_id',
doc => 'the object being observed'
},
aspects => {
is => 'UR::Object::View::Aspect',
reverse_as => 'parent_view',
is_many => 1,
specify_by => 'name',
order_by => 'number',
doc => 'the aspects of the subject this view renders'
},
default_aspects => {
is => 'ARRAY',
is_abstract => 1,
is_constant => 1,
is_many => 1, # technically this is one "ARRAY"
default_value => undef,
doc => 'a tree of default aspect descriptions' },
],
has_optional_transient => [
_widget => {
doc => 'the object native to the specified toolkit which does the actual visualization'
},
_observer_data => {
is => 'HASH',
is_transient => 1,
value => undef, # hashref set at construction time
doc => ' hooks around the subject which monitor it for changes'
},
],
has_many_optional => [
aspect_names => { via => 'aspects', to => 'name' },
]
};
sub create {
my $class = shift;
my ($params,@extra) = $class->define_boolexpr(@_);
# set values not specified in the params which can be inferred from the class name
my ($expected_class,$expected_perspective,$expected_toolkit) = ($class =~ /^(.*)::View::(.*?)::([^\:]+)$/);
unless ($params->specifies_value_for('subject_class_name')) {
$params = $params->add_filter(subject_class_name => $expected_class);
}
unless ($params->specifies_value_for('perspective')) {
$expected_perspective = join('-', split( /(?=[A-Z])/, $expected_perspective) ); #convert CamelCase to hyphenated-words
$params = $params->add_filter(perspective => $expected_perspective);
}
unless ($params->specifies_value_for('toolkit')) {
$params = $params->add_filter(toolkit => $expected_toolkit);
}
# now go the other way, and use both to infer a final class name
$expected_class = $class->_resolve_view_class_for_params($params);
unless ($expected_class) {
my $subject_class_name = $params->value_for('subject_class_name');
Carp::croak("Failed to resolve a subclass of " . __PACKAGE__
. " for $subject_class_name from parameters. "
. "Received $params.");
}
unless ($class->isa($expected_class)) {
return $expected_class->create(@_);
}
$params->add_filter(_observer_data => {});
my $self = $expected_class->SUPER::create($params);
return unless $self;
$class = ref($self);
$expected_class = $class->_resolve_view_class_for_params(
subject_class_name => $self->subject_class_name,
perspective => $self->perspective,
toolkit => $self->toolkit
);
unless ($expected_class and $expected_class eq $class) {
$expected_class ||= '<uncertain>';
Carp::croak("constructed a $class object but properties indicate $expected_class should have been created.");
}
unless ($params->specifies_value_for('aspects')) {
my @aspect_specs = $self->default_aspects();
if (! @aspect_specs) {
@aspect_specs = $self->_resolve_default_aspects();
}
if (@aspect_specs == 1 and ref($aspect_specs[0]) eq 'ARRAY') {
# Got an arrayref, expand back into an array
@aspect_specs = @{$aspect_specs[0]};
}
for my $aspect_spec (@aspect_specs) {
my $aspect = $self->add_aspect(ref($aspect_spec) ? %$aspect_spec : $aspect_spec);
unless ($aspect) {
$self->error_message("Failed to add aspect @$aspect_spec to new view " . $self->id);
$self->delete;
return;
}
}
}
return $self;
}
our %view_class_cache = ();
sub _resolve_view_class_for_params {
# View modules use standardized naming: SubjectClassName::View::Perspective::Toolkit.
# The subject must be explicitly of class "SubjectClassName" or some subclass of it.
my $class = shift;
my $bx = $class->define_boolexpr(@_);
if (exists $view_class_cache{$bx->id}) {
if (!defined $view_class_cache{$bx->id}) {
return;
}
return $view_class_cache{$bx->id};
}
my %params = $bx->params_list;
my $subject_class_name = delete $params{subject_class_name};
my $perspective = delete $params{perspective};
my $toolkit = delete $params{toolkit};
my $aspects = delete $params{aspects};
unless($subject_class_name and $perspective and $toolkit) {
Carp::confess("Bad params @_. Expected subject_class_name, perspective, toolkit.");
}
$perspective = lc($perspective);
$toolkit = lc($toolkit);
my $namespace = $subject_class_name->__meta__->namespace;
my $vocabulary = ($namespace and $namespace->can("get_vocabulary") ? $namespace->get_vocabulary() : undef);
$vocabulary = UR->get_vocabulary;
my $subject_class_object = $subject_class_name->__meta__;
my @possible_subject_class_names = ($subject_class_name,$subject_class_name->inheritance);
my $subclass_name;
for my $possible_subject_class_name (@possible_subject_class_names) {
$subclass_name = join("::",
$possible_subject_class_name,
"View",
join ("",
$vocabulary->convert_to_title_case (
map { ucfirst(lc($_)) }
split(/-+|\s+/,$perspective)
)
),
join ("",
$vocabulary->convert_to_title_case (
map { ucfirst(lc($_)) }
split(/-+|\s+/,$toolkit)
)
)
);
my $subclass_meta;
eval {
$subclass_meta = $subclass_name->__meta__;
};
if ($@ or not $subclass_meta) {
#not a class... keep looking
next;
}
unless($subclass_name->isa(__PACKAGE__)) {
Carp::carp("Subclass $subclass_name exists but is not a view?!");
next;
}
$view_class_cache{$bx->id} = $subclass_name;
return $subclass_name;
}
$view_class_cache{$bx->id} = undef;
return;
}
sub _resolve_default_aspects {
my $self = shift;
my $parent_view = $self->parent_view;
my $subject_class_name = $self->subject_class_name;
my $meta = $subject_class_name->__meta__;
my @c = ($meta->class_name, $meta->ancestry_class_names);
my %aspects =
map { $_->property_name => 1 }
grep { not $_->implied_by }
UR::Object::Property->get(class_name => \@c);
my @aspects = sort keys %aspects;
return @aspects;
}
sub __signal_change__ {
# ensure that changes to the view which occur
# after the widget is produced
# are reflected in the widget
my ($self,$method,@details) = @_;
if ($self->_widget) {
if ($method eq 'subject' or $method =~ 'aspects') {
$self->_bind_subject();
}
elsif ($method eq 'delete' or $method eq 'unload') {
my $observer_data = $self->_observer_data;
for my $subscription (values %$observer_data) {
my ($class, $id, $method, $callback) = @$subscription;
$class->cancel_change_subscription($id, $method, $callback);
}
$self->_widget(undef);
}
}
return 1;
}
# _encompassing_view() and _subject_is_used_in_an_encompassing_view() are used by the
# default views (UR::Object::View::Default::*) to detect an infinite recursion situation
# where it's asked to render an object A that references a B which refers back to A
# If this view is embedded in another view, return the encompassing view
sub _encompassing_view {
my $self = shift;
my @aspects = UR::Object::View::Aspect->get(delegate_view_id => $self->id);
if (@aspects) {
# FIXME - is it possible for there to be more than one thing in @aspects here?
# And if so, how do we differentiate them
return $aspects[0]->parent_view;
}
# $self must be the top-level view
return;
}
# If the subject of the view is also the subject of an encompassing view, return true
sub _subject_is_used_in_an_encompassing_view {
my($self,$subject) = @_;
$subject = $self->subject unless (@_ == 2);
my $encompassing = $self->_encompassing_view;
while($encompassing) {
if ($encompassing->subject eq $subject) {
return 1;
} else {
$encompassing = $encompassing->_encompassing_view();
}
}
return;
}
sub all_subject_classes {
my $self = shift;
my @classes = ();
# suppress error callbacks inside this method
my $old_cb = UR::ModuleBase->message_callback('error');
UR::ModuleBase->message_callback('error', sub {}) if ($old_cb);
for my $aspect ($self->aspects) {
unless ($aspect->delegate_view) {
eval {
$aspect->generate_delegate_view;
};
}
if ($aspect->delegate_view) {
push @classes, $aspect->delegate_view->all_subject_classes
}
}
UR::ModuleBase->message_callback('error', $old_cb) if ($old_cb);
push @classes, $self->subject_class_name;
my %saw;
my @uclasses = grep(!$saw{$_}++,@classes);
return @uclasses;
}
sub all_subject_classes_ancestry {
my $self = shift;
my @classes = $self->all_subject_classes;
my @aclasses;
for my $class (@classes) {
my $m;
eval { $m = $class->__meta__ };
next if $@ or not $m;
push @aclasses, reverse($class, $m->ancestry_class_names);
}
my %saw;
my @uaclasses = grep(!$saw{$_}++,@aclasses);
return @uaclasses;
}
# rendering implementation
sub widget {
my $self = shift;
if (@_) {
Carp::confess("Widget() is not settable! Its value is set from _create_widget() upon first use.");
}
my $widget = $self->_widget();
unless ($widget) {
$widget = $self->_create_widget();
return unless $widget;
$self->_widget($widget);
$self->_bind_subject(); # works even if subject is undef
}
return $widget;
}
sub _create_widget {
Carp::confess("The _create_widget method must be implemented for all concrete "
. " view subclasses. No _create_widget for "
. (ref($_[0]) ? ref($_[0]) : $_[0]) . "!");
}
sub _bind_subject {
# This is called whenever the subject changes, or when the widget is first created.
# It handles the case in which the subject is undef.
my $self = shift;
my $subject = $self->subject();
return unless defined $subject;
my $observer_data = $self->_observer_data;
unless ($observer_data) {
$self->_observer_data({});
$observer_data = $self->_observer_data;
}
Carp::confess unless $self->_observer_data == $observer_data;
# See if we've already done this.
return 1 if $observer_data->{$subject};
# Wipe subscriptions from the last bound subscription(s).
for (keys %$observer_data) {
my $s = delete $observer_data->{$_};
my ($class, $id, $method,$callback) = @$s;
$class->cancel_change_subscription($id, $method,$callback);
}
return unless $subject;
# Make a new subscription for this subject
my $subscription = $subject->create_subscription(
callback => sub {
$self->_update_view_from_subject(@_);
}
);
$observer_data->{$subject} = $subscription;
# Set the view to show initial data.
$self->_update_view_from_subject;
return 1;
}
sub _update_view_from_subject {
# This is called whenever the view changes, or the subject changes.
# It passes the change(s) along, so that the update can be targeted, if the developer chooses.
Carp::croak("The _update_view_from_subject method must be implemented for all concreate "
. " view subclasses. No _update_subject_from_view for "
. (ref($_[0]) ? ref($_[0]) : $_[0]) . "!");
}
sub _update_subject_from_view {
Carp::croak("The _update_subject_from_view method must be implemented for all concreate "
. " view subclasses. No _update_subject_from_view for "
. (ref($_[0]) ? ref($_[0]) : $_[0]) . "!");
}
# external controls
sub show {
my $self = shift;
$self->_toolkit_package->show_view($self);
}
sub show_modal {
my $self = shift;
$self->_toolkit_package->show_view_modally($self);
}
sub hide {
my $self = shift;
$self->_toolkit_package->hide_view($self);
}
sub _toolkit_package {
my $self = shift;
my $toolkit = $self->toolkit;
return "UR::Object::View::Toolkit::" . ucfirst(lc($toolkit));
}
1;
=pod
=head1 NAME
UR::Object::View - a base class for "views" of UR::Objects
=head1 SYNOPSIS
$object = Acme::Product->get(1234);
## Acme::Product::View::InventoryHistory::Gtk2
$view = $object->create_view(
perspective => 'inventory history',
toolkit => 'gtk2',
);
$widget = $view->widget(); # returns the Gtk2::Widget itself directly
$view->show(); # puts the widget in a Gtk2::Window and shows everything
##
$view = $object->create_view(
perspective => 'inventory history',
toolkit => 'xml',
);
$widget = $view->widget(); # returns an arrayref with the xml string reference, and the output filehandle (stdout)
$view->show(); # prints the current xml content to the handle
$xml = $view->content(); # returns the XML directly
##
$view = $object->create_view(
perspective => 'inventory history',
toolkit => 'html',
);
$widget = $view->widget(); # returns an arrayref with the html string reference, and the output filehandle (stdout)
$view->show(); # prints the html content to the handle
$html = $view->content(); # returns the HTML text directly
=head1 USAGE API
=over 4
=item create
The constructor requires that the subject_class_name, perspective,
and toolkit be set. Most concrete subclasses have perspective and toolkit
set as constant.
Producing a view object does not "render" the view, just creates an
interface for controlling the view, including encapsualting its creation.
The subject can be set later and changed. The aspects viewed may
be constant for a given perspective, or mutable, depending on how
flexible the of the perspective logic is.
=item show
For stand-alone views, this puts the view widget in its a window. For
views which are part of a larger view, this makes the view widget
visible in the parent.
=item hide
Makes the view invisible. This means hiding the window, or hiding the view
widget in the parent widget for subordinate views.
=item show_modal
This method shows the view in a window, and only returns after the window is closed.
It should only be used for views which are a full interface capable of closing itself
when done.
=item widget
Returns the "widget" which renders the view. This is built lazily
on demand. The actual object type depends on the toolkit named above.
This method might return HTML text, or a Gtk object. This can be used
directly, and is used internally by show/show_modal.
(Note: see UR::Object::View::Toolkit::Text for details on the "text" widget,
used by HTML/XML views, etc. This is just the content and an I/O handle to
which it should stream.)
=item delete
Delete the view (along with the widget(s) and infrastructure underlying it).
=back
=head1 CONSTRUCTION PROPERTIES (CONSTANT)
The following three properties are constant for a given view class. They
determine which class of view to construct, and must be provided to create().
=over 4
=item subject_class_name
The class of subject this view will view. Constant for any given view,
but this may be any abstract class up-to UR::Object itself.
=item perspective
Used to describe the layout logic which gives logical content
to the view.
=item toolkit
The specific (typically graphical) toolkit used to construct the UI.
Examples are Gtk, Gkt2, Tk, HTML, XML.
=back
=head1 CONFIGURABLE PROPERTIES
These methods control which object is being viewed, and what properties
of the object are viewed. They can be provided at construction time,
or afterward.
=over 4
=item subject
The particular "model" object, in MVC parlance, which is viewed by this view.
This value may change
=item aspects / add_aspect / remove_aspect
Specifications for properties/methods of the subject which are rendered in
the view. Some views have mutable aspects, while others merely report
which aspects are revealed by the perspective in question.
An "aspect" is some characteristic of the "subject" which is rendered in the
view. Any property of the subject is usable, as is any method.
=back
=head1 IMPLEMENTATION INTERFACE
When writing new view logic, the class name is expected to
follow a formula:
Acme::Rocket::View::FlightPath::Gtk2
\ / \ / \
subject class name perspective toolkit
The toolkit is expected to be a single word. The perspective
is everything before the toolkit, and after the last 'View' word.
The subject_class_name is everything to the left of the final
'::View::'.
There are three methods which require an implementation, unless
the developer inherits from a subclass of UR::Object::View which
provides these methods:
=over 4
=item _create_widget
This creates the widget the first time ->widget() is called on a view.
This should be implemented in a given perspective/toolkit module to actually
create the GUI using the appropriate toolkit.
It will be called before the specific subject is known, so all widget creation
which is subject-specific should be done in _bind_subject(). As such it typically
only configures skeletal aspects of the view.
=item _bind_subject
This method is called when the subject is set, or when it is changed, or unset.
It updates the widget to reflect changes to the widget due to a change in subject.
This method has a default implementation which does a general subscription
to changes on the subject. It probably does not need to be overridden
in custom views. Implementations which _do_ override this should take
an undef subject, and be sure to un-bind a previously existing subject if
there is one set.
=item _update_view_from_subject
If and when the property values of the subject change, this method will be called on
all views which render the changed aspect of the subject.
=item _update_subject_from_view
When the widget changes, it should call this method to save the UI changes
to the subject. This is not applicable to read-only views.
=back
=head1 OTHER METHODS
=over 4
=item _toolkit_package
This method is useful to provide generic toolkit-based services to a view,
using a toolkit agnostic API. It can be used in abstract classes which,
for instance, want to share logic for a given perspective across toolkits.
The toolkit class related to a view is responsible for handling show/hide logic,
etc. in the base UR::Object::View class.
Returns the name of a class which is derived from UR::Object::View::Toolkit
which implements certain utility methods for views of a given toolkit.
=back
=head1 EXAMPLES
$o = Acme::Product->get(1234);
$v = Acme::Product::View::InventoryHistory::HTML->create();
$v->add_aspect('outstanding_orders');
$v->show;
=cut
|