Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
fba1b7c5
Commit
fba1b7c5
authored
1 year ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Introduce class-oriented list exception management
parent
fc4b82fe
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/List.h
+45
-6
45 additions, 6 deletions
src/include/List.h
with
45 additions
and
6 deletions
src/include/List.h
+
45
−
6
View file @
fba1b7c5
/*! \file List.h
*/
#ifndef LIST_OUT_OF_BOUNDS_EXCEPTION
#define LIST_OUT_OF_BOUNDS_EXCEPTION 1
#endif
#ifndef INCLUDE_LIST_H_
#define INCLUDE_LIST_H_
#include
<exception>
#include
<string>
/**
* \brief Exception for out of bounds list requests.
*/
class
ListOutOfBoundsException
:
public
std
::
exception
{
protected:
int
min_index
,
max_index
,
requested_index
;
public:
/**
* \brief Exception instance constructor.
*
* \param requested: `int` The index that was requested.
* \param min: `int` The minimum index allowed by the list.
* \param max: `int` The maximum index allowed by the list.
*/
ListOutOfBoundsException
(
int
requested
,
int
min
,
int
max
)
{
min_index
=
min
;
max_index
=
max
;
requested_index
=
requested
;
}
/**
* \brief Exception message.
*/
virtual
const
char
*
what
()
const
throw
()
{
std
::
string
message
=
"Error: requested index "
;
message
+=
requested_index
;
message
+=
" is out of range ["
;
message
+=
min_index
;
message
+=
", "
;
message
+=
(
max_index
-
1
);
message
+=
"]"
;
return
message
.
c_str
();
}
};
/**
* \brief A class to represent dynamic lists.
...
...
@@ -52,7 +89,7 @@ template<class T> class List {
size
=
length
;
first
=
new
element
;
first
->
p_prev
=
NULL
;
element
*
current
=
first
;
current
=
first
;
element
*
p_prev
=
first
;
for
(
int
i
=
1
;
i
<
size
;
i
++
)
{
current
=
new
element
;
...
...
@@ -103,7 +140,7 @@ template<class T> class List {
*/
T
get
(
int
index
)
{
if
(
index
<
0
||
index
>
size
-
1
)
{
throw
L
IST_OUT_OF_BOUNDS_EXCEPTION
;
throw
L
istOutOfBoundsException
(
index
,
0
,
size
-
1
)
;
}
current
=
last
;
for
(
int
i
=
size
-
1
;
i
>
index
;
i
--
)
current
=
current
->
p_prev
;
...
...
@@ -131,7 +168,7 @@ template<class T> class List {
*/
void
set
(
int
index
,
T
value
)
{
if
(
index
<
0
||
index
>
size
-
1
)
{
throw
L
IST_OUT_OF_BOUNDS_EXCEPTION
;
throw
L
istOutOfBoundsException
(
index
,
0
,
size
-
1
)
;
}
current
=
last
;
for
(
int
i
=
size
-
1
;
i
>
index
;
i
--
)
current
=
current
->
p_prev
;
...
...
@@ -161,3 +198,5 @@ template<class T> class List {
return
array
;
}
};
#endif
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