Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Travel-Routing-DE-EFA
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
derf
Travel-Routing-DE-EFA
Commits
3557cfb0
Commit
3557cfb0
authored
14 years ago
by
Birte Kristina Friesel
Browse files
Options
Downloads
Patches
Plain Diff
Improve(?) error handling
parent
5dc6d078
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/efa
+3
-7
3 additions, 7 deletions
bin/efa
lib/WWW/Efa.pm
+14
-11
14 additions, 11 deletions
lib/WWW/Efa.pm
with
17 additions
and
18 deletions
bin/efa
+
3
−
7
View file @
3557cfb0
...
@@ -97,8 +97,8 @@ $efa = WWW::Efa->new(
...
@@ -97,8 +97,8 @@ $efa = WWW::Efa->new(
max_interchanges
=>
$opt
->
{'
max-change
'},
max_interchanges
=>
$opt
->
{'
max-change
'},
);
);
if
(
my
$err
=
$efa
->
setup_
error
())
{
if
(
$efa
->
error
())
{
die
$e
rr
->
as_string
();
die
$e
fa
->
error
()
->
as_string
();
}
}
if
(
$opt
->
{'
test-parse
'})
{
if
(
$opt
->
{'
test-parse
'})
{
...
@@ -111,11 +111,7 @@ else {
...
@@ -111,11 +111,7 @@ else {
);
);
}
}
my
$err
=
$efa
->
parse
();
$efa
->
parse
or
die
$efa
->
error
()
->
as_string
();
if
(
$err
and
$err
->
isa
('
WWW::Efa::Error
'))
{
die
$err
->
as_string
();
}
my
@connections
=
$efa
->
connections
();
my
@connections
=
$efa
->
connections
();
...
...
This diff is collapsed.
Click to expand it.
lib/WWW/Efa.pm
+
14
−
11
View file @
3557cfb0
...
@@ -477,6 +477,9 @@ If true: Prefer connections allowing to take a bike along
...
@@ -477,6 +477,9 @@ If true: Prefer connections allowing to take a bike along
=back
=back
When encountering invalid hash keys, a WWW::Efa::Error object is stored to be
retrieved by $efa->error();
=cut
=cut
sub
new
{
sub
new
{
...
@@ -495,15 +498,15 @@ sub new {
...
@@ -495,15 +498,15 @@ sub new {
return
bless
(
$ref
,
$obj
);
return
bless
(
$ref
,
$obj
);
}
}
=head2 $efa->
setup_
error()
=head2 $efa->error()
In case WWW::Efa
->new()
encountered an error
(usually invalid options), this
In case
a
WWW::Efa
operation
encountered an error
, this returns a
returns a
B<WWW::Efa::Error
::Setup
> object
describing
the exact error.
B<WWW::Efa::Error> object
related to
the exact error.
Otherwise, returns
Otherwise, returns nothing
.
undef
.
=cut
=cut
sub
setup_
error
{
sub
error
{
my
(
$self
)
=
@_
;
my
(
$self
)
=
@_
;
if
(
$self
->
{'
error
'})
{
if
(
$self
->
{'
error
'})
{
...
@@ -543,7 +546,8 @@ sub submit {
...
@@ -543,7 +546,8 @@ sub submit {
=head2 $efa->parse()
=head2 $efa->parse()
Parse the B<efa.vrr.de> reply.
Parse the B<efa.vrr.de> reply.
Returns undef on success and a WWW::Efa::Error object upon failure.
returns a true value on success. Upon failure, returns undef and sets
$efa->error() to a WWW::Efa::Error object.
=cut
=cut
...
@@ -568,17 +572,16 @@ sub parse {
...
@@ -568,17 +572,16 @@ sub parse {
if
(
$err
=
$self
->
check_ambiguous
())
{
if
(
$err
=
$self
->
check_ambiguous
())
{
$self
->
{'
error
'}
=
$err
;
$self
->
{'
error
'}
=
$err
;
return
$err
;
}
}
elsif
(
$err
=
$self
->
check_no_connections
())
{
elsif
(
$err
=
$self
->
check_no_connections
())
{
$self
->
{'
error
'}
=
$err
;
$self
->
{'
error
'}
=
$err
;
return
$err
;
}
}
elsif
(
$self
->
{'
error
'})
{
return
$self
->
{'
error
'};
if
(
$self
->
{'
error
'})
{
return
;
}
}
return
$self
->
{'
error
'}
;
return
1
;
}
}
sub
check_ambiguous
{
sub
check_ambiguous
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment