From 96d4526d53c1922689edb8d1dada71ad59eeb2cc Mon Sep 17 00:00:00 2001 From: Luc Maisonobe <luc@orekit.org> Date: Tue, 5 Mar 2019 09:40:38 +0100 Subject: [PATCH] Cleanup exceptions. --- .../adjustment/LeastSquareAdjuster.java | 4 +- .../java/org/orekit/rugged/api/Rugged.java | 5 +- .../org/orekit/rugged/api/RuggedBuilder.java | 9 +- .../java/org/orekit/rugged/errors/Dump.java | 2 +- .../orekit/rugged/errors/DumpReplayer.java | 12 +-- .../orekit/rugged/errors/RuggedException.java | 33 ------- .../rugged/errors/RuggedInternalError.java | 88 +++++++++++++++++++ .../duvenhage/DuvenhageAlgorithm.java | 7 +- .../linesensor/SensorMeanPlaneCrossing.java | 3 +- .../linesensor/SensorPixelCrossing.java | 3 +- .../rugged/errors/DumpReplayerTest.java | 6 +- .../rugged/errors/RuggedExceptionTest.java | 3 +- 12 files changed, 119 insertions(+), 56 deletions(-) create mode 100644 src/main/java/org/orekit/rugged/errors/RuggedInternalError.java diff --git a/src/main/java/org/orekit/rugged/adjustment/LeastSquareAdjuster.java b/src/main/java/org/orekit/rugged/adjustment/LeastSquareAdjuster.java index 02fe4ce2..cbd22835 100644 --- a/src/main/java/org/orekit/rugged/adjustment/LeastSquareAdjuster.java +++ b/src/main/java/org/orekit/rugged/adjustment/LeastSquareAdjuster.java @@ -24,7 +24,7 @@ import org.hipparchus.optim.nonlinear.vector.leastsquares.LeastSquaresOptimizer; import org.hipparchus.optim.nonlinear.vector.leastsquares.LeastSquaresOptimizer.Optimum; import org.hipparchus.optim.nonlinear.vector.leastsquares.LeastSquaresProblem; import org.hipparchus.optim.nonlinear.vector.leastsquares.LevenbergMarquardtOptimizer; -import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; /** LeastSquareAdjuster * Class for setting least square algorithm chosen for solving optimization problem. @@ -84,7 +84,7 @@ public class LeastSquareAdjuster { default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } } diff --git a/src/main/java/org/orekit/rugged/api/Rugged.java b/src/main/java/org/orekit/rugged/api/Rugged.java index f8b109b4..b7207f9b 100644 --- a/src/main/java/org/orekit/rugged/api/Rugged.java +++ b/src/main/java/org/orekit/rugged/api/Rugged.java @@ -28,6 +28,7 @@ import org.orekit.bodies.GeodeticPoint; import org.orekit.frames.Transform; import org.orekit.rugged.errors.DumpManager; import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; import org.orekit.rugged.errors.RuggedMessages; import org.orekit.rugged.intersection.IntersectionAlgorithm; import org.orekit.rugged.linesensor.LineSensor; @@ -799,7 +800,7 @@ public class Rugged { } catch (RuggedException re) { // This should never happen // In order for the dump to end nicely DumpManager.endNicely(); - throw RuggedException.createInternalError(re); + throw new RuggedInternalError(re); } // Check if the pixel is inside the sensor (with a margin) OR if the inverse location was impossible (null result) @@ -860,7 +861,7 @@ public class Rugged { } catch (RuggedException re) { // This should never happen // In order for the dump to end nicely DumpManager.endNicely(); - throw RuggedException.createInternalError(re); + throw new RuggedInternalError(re); } } // end loop vIndex } // end loop uIndex diff --git a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java index 3a604d61..58be9580 100644 --- a/src/main/java/org/orekit/rugged/api/RuggedBuilder.java +++ b/src/main/java/org/orekit/rugged/api/RuggedBuilder.java @@ -35,6 +35,7 @@ import org.orekit.propagation.Propagator; import org.orekit.propagation.SpacecraftState; import org.orekit.propagation.sampling.OrekitFixedStepHandler; import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; import org.orekit.rugged.errors.RuggedMessages; import org.orekit.rugged.intersection.BasicScanAlgorithm; import org.orekit.rugged.intersection.ConstantElevationAlgorithm; @@ -883,7 +884,7 @@ public class RuggedBuilder { return FramesFactory.getVeis1950(); default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } @@ -903,7 +904,7 @@ public class RuggedBuilder { return FramesFactory.getGTOD(IERSConventions.IERS_1996, true); default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } @@ -928,7 +929,7 @@ public class RuggedBuilder { return new OneAxisEllipsoid(6378136.6, 1.0 / 298.25642, bodyFrame); default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } @@ -958,7 +959,7 @@ public class RuggedBuilder { return new IgnoreDEMAlgorithm(); default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } diff --git a/src/main/java/org/orekit/rugged/errors/Dump.java b/src/main/java/org/orekit/rugged/errors/Dump.java index d06de7e4..109ee356 100644 --- a/src/main/java/org/orekit/rugged/errors/Dump.java +++ b/src/main/java/org/orekit/rugged/errors/Dump.java @@ -512,7 +512,7 @@ class Dump { result.getTargetDirectionDerivative().getY(), result.getTargetDirectionDerivative().getZ()); } catch (RuggedException re) { - throw RuggedException.createInternalError(re); + throw new RuggedInternalError(re); } }); writer.format(Locale.US, "%n"); diff --git a/src/main/java/org/orekit/rugged/errors/DumpReplayer.java b/src/main/java/org/orekit/rugged/errors/DumpReplayer.java index 74ba8052..4d24e546 100644 --- a/src/main/java/org/orekit/rugged/errors/DumpReplayer.java +++ b/src/main/java/org/orekit/rugged/errors/DumpReplayer.java @@ -411,19 +411,19 @@ public class DumpReplayer { throw new RuggedException(ioe, LocalizedCoreFormats.SIMPLE_MESSAGE, ioe.getLocalizedMessage()); } catch (SecurityException e) { // this should never happen - throw RuggedException.createInternalError(e); + throw new RuggedInternalError(e); } catch (NoSuchMethodException e) { // this should never happen - throw RuggedException.createInternalError(e); + throw new RuggedInternalError(e); } catch (IllegalArgumentException e) { // this should never happen - throw RuggedException.createInternalError(e); + throw new RuggedInternalError(e); } catch (IllegalAccessException e) { // this should never happen - throw RuggedException.createInternalError(e); + throw new RuggedInternalError(e); } catch (InvocationTargetException e) { // this should never happen - throw RuggedException.createInternalError(e); + throw new RuggedInternalError(e); } } @@ -1179,7 +1179,7 @@ public class DumpReplayer { public Vector3D getLOS(final int index, final AbsoluteDate date) { final List<Pair<AbsoluteDate, Vector3D>> list = losMap.get(index); if (list == null) { - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } if (list.size() < 2) { diff --git a/src/main/java/org/orekit/rugged/errors/RuggedException.java b/src/main/java/org/orekit/rugged/errors/RuggedException.java index 7bd83e81..9595c94a 100644 --- a/src/main/java/org/orekit/rugged/errors/RuggedException.java +++ b/src/main/java/org/orekit/rugged/errors/RuggedException.java @@ -113,37 +113,4 @@ public class RuggedException extends RuntimeException implements LocalizedExcept return (specifier == null) ? "" : new MessageFormat(specifier.getLocalizedString(locale), locale).format(parts); } - /** Create an {@link java.lang.RuntimeException} for an internal error. - * @param cause underlying cause - * @return an {@link java.lang.RuntimeException} for an internal error - */ - public static RuntimeException createInternalError(final Throwable cause) { - - /** Format specifier (to be translated). */ - final Localizable specifier = RuggedMessages.INTERNAL_ERROR; - - /** Parts to insert in the format (no translation). */ - final String parts = "https://gitlab.orekit.org/orekit/rugged/issues"; - - return new RuntimeException() { - - /** Serializable UID. */ - private static final long serialVersionUID = 20140309L; - - /** {@inheritDoc} */ - @Override - public String getMessage() { - return buildMessage(Locale.US, specifier, parts); - } - - /** {@inheritDoc} */ - @Override - public String getLocalizedMessage() { - return buildMessage(Locale.getDefault(), specifier, parts); - } - - }; - - } - } diff --git a/src/main/java/org/orekit/rugged/errors/RuggedInternalError.java b/src/main/java/org/orekit/rugged/errors/RuggedInternalError.java new file mode 100644 index 00000000..29362e1a --- /dev/null +++ b/src/main/java/org/orekit/rugged/errors/RuggedInternalError.java @@ -0,0 +1,88 @@ +/* Copyright 2013-2019 CS Systèmes d'Information + * Licensed to CS Systèmes d'Information (CS) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * CS licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.orekit.rugged.errors; + +import java.text.MessageFormat; +import java.util.Locale; + +import org.hipparchus.exception.Localizable; +import org.hipparchus.exception.LocalizedException; + + +/** Extension of {@link java.lang.Runtime} with localized message for internal errors only. + * @since 2.1 + */ +public class RuggedInternalError extends RuntimeException implements LocalizedException { + + /** Serializable UID. */ + private static final long serialVersionUID = 20190305L; + + /** Format specifier (to be translated). */ + private final Localizable specifier = RuggedMessages.INTERNAL_ERROR; + + /** Parts to insert in the format (no translation). */ + private final String[] parts = new String[] { + "https://gitlab.orekit.org/orekit/rugged/issues" + }; + + /** Create an exception with localized message. + * @param cause underlying cause + */ + public RuggedInternalError(final Throwable cause) { + super(cause); + } + + /** {@inheritDoc} */ + @Override + public String getMessage(final Locale locale) { + return buildMessage(locale); + } + + /** {@inheritDoc} */ + @Override + public String getMessage() { + return buildMessage(Locale.US); + } + + /** {@inheritDoc} */ + @Override + public String getLocalizedMessage() { + return buildMessage(Locale.getDefault()); + } + + /** {@inheritDoc} */ + @Override + public Localizable getSpecifier() { + return specifier; + } + + /** {@inheritDoc} */ + @Override + public Object[] getParts() { + return parts.clone(); + } + + /** + * Builds a message string by from a pattern and its arguments. + * @param locale Locale in which the message should be translated + * @return a message string + */ + private String buildMessage(final Locale locale) { + return new MessageFormat(specifier.getLocalizedString(locale), locale).format(parts); + } + +} diff --git a/src/main/java/org/orekit/rugged/intersection/duvenhage/DuvenhageAlgorithm.java b/src/main/java/org/orekit/rugged/intersection/duvenhage/DuvenhageAlgorithm.java index 78f709bf..a3abd8b3 100644 --- a/src/main/java/org/orekit/rugged/intersection/duvenhage/DuvenhageAlgorithm.java +++ b/src/main/java/org/orekit/rugged/intersection/duvenhage/DuvenhageAlgorithm.java @@ -22,6 +22,7 @@ import org.orekit.bodies.GeodeticPoint; import org.orekit.rugged.api.AlgorithmId; import org.orekit.rugged.errors.DumpManager; import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; import org.orekit.rugged.errors.RuggedMessages; import org.orekit.rugged.intersection.IntersectionAlgorithm; import org.orekit.rugged.raster.Tile; @@ -181,7 +182,7 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm { if (intersection != null) { return intersection; } else { - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } } @@ -311,7 +312,7 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm { if (depth > 30) { // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } if (searchDomainSize(entryLat, entryLon, exitLat, exitLon) < 4) { @@ -635,7 +636,7 @@ public class DuvenhageAlgorithm implements IntersectionAlgorithm { default : // this should never happen - throw RuggedException.createInternalError(null); + throw new RuggedInternalError(null); } } diff --git a/src/main/java/org/orekit/rugged/linesensor/SensorMeanPlaneCrossing.java b/src/main/java/org/orekit/rugged/linesensor/SensorMeanPlaneCrossing.java index 8562497b..d737a401 100644 --- a/src/main/java/org/orekit/rugged/linesensor/SensorMeanPlaneCrossing.java +++ b/src/main/java/org/orekit/rugged/linesensor/SensorMeanPlaneCrossing.java @@ -38,6 +38,7 @@ import org.hipparchus.util.FastMath; import org.hipparchus.util.Precision; import org.orekit.frames.Transform; import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; import org.orekit.rugged.utils.SpacecraftToObservedBody; import org.orekit.time.AbsoluteDate; import org.orekit.utils.Constants; @@ -537,7 +538,7 @@ public class SensorMeanPlaneCrossing { evaluateLine(x, targetPV, scToBody.getBodyToInertial(date), scToBody.getScToInertial(date)); return 0.5 * FastMath.PI - FastMath.acos(Vector3D.dotProduct(targetDirection[0], meanPlaneNormal)); } catch (RuggedException re) { - throw RuggedException.createInternalError(re); + throw new RuggedInternalError(re); } } }, minLine, maxLine, startValue); diff --git a/src/main/java/org/orekit/rugged/linesensor/SensorPixelCrossing.java b/src/main/java/org/orekit/rugged/linesensor/SensorPixelCrossing.java index fa60b157..0ae63559 100644 --- a/src/main/java/org/orekit/rugged/linesensor/SensorPixelCrossing.java +++ b/src/main/java/org/orekit/rugged/linesensor/SensorPixelCrossing.java @@ -23,6 +23,7 @@ import org.hipparchus.exception.MathIllegalArgumentException; import org.hipparchus.geometry.euclidean.threed.Vector3D; import org.hipparchus.util.FastMath; import org.orekit.rugged.errors.RuggedException; +import org.orekit.rugged.errors.RuggedInternalError; import org.orekit.time.AbsoluteDate; /** Class devoted to locate where ground point crosses a sensor line. @@ -80,7 +81,7 @@ public class SensorPixelCrossing { try { return Vector3D.angle(cross, getLOS(date, x)) - 0.5 * FastMath.PI; } catch (RuggedException re) { - throw RuggedException.createInternalError(re); + throw new RuggedInternalError(re); } } }; diff --git a/src/test/java/org/orekit/rugged/errors/DumpReplayerTest.java b/src/test/java/org/orekit/rugged/errors/DumpReplayerTest.java index 452ca13a..c1c6cc47 100644 --- a/src/test/java/org/orekit/rugged/errors/DumpReplayerTest.java +++ b/src/test/java/org/orekit/rugged/errors/DumpReplayerTest.java @@ -605,8 +605,9 @@ public class DumpReplayerTest { try { getLos.invoke(parsedSensor, 1, date); Assert.fail("an exception should have been thrown"); - } catch (Exception re) { - assertTrue(re.getCause().toString().contains("internal error")); + } catch (InvocationTargetException ite) { + RuggedInternalError rie = (RuggedInternalError) ite.getTargetException(); + assertEquals(RuggedMessages.INTERNAL_ERROR, rie.getSpecifier()); } } @@ -657,6 +658,7 @@ public class DumpReplayerTest { return null; } }; + @SuppressWarnings("unchecked") FieldVector3D<DerivativeStructure> fv= (FieldVector3D<DerivativeStructure>) getLOSDerivatives.invoke(parsedSensor, 1, date, generator); assertEquals(0., fv.getX().getValue(), 1.e-15); assertEquals(0., fv.getY().getValue(), 1.e-15); diff --git a/src/test/java/org/orekit/rugged/errors/RuggedExceptionTest.java b/src/test/java/org/orekit/rugged/errors/RuggedExceptionTest.java index 6208b608..1a402506 100644 --- a/src/test/java/org/orekit/rugged/errors/RuggedExceptionTest.java +++ b/src/test/java/org/orekit/rugged/errors/RuggedExceptionTest.java @@ -63,12 +63,13 @@ public class RuggedExceptionTest { @Test public void testInternalError() { RuggedException re = new RuggedException(RuggedMessages.DUPLICATED_PARAMETER_NAME, "dummy"); - RuntimeException rte = RuggedException.createInternalError(re); + RuntimeException rte = new RuggedInternalError(re); Assert.assertFalse(re.getLocalizedMessage().contains("https://gitlab.orekit.org/orekit/rugged/issues")); Assert.assertTrue(rte.getLocalizedMessage().contains("https://gitlab.orekit.org/orekit/rugged/issues")); Assert.assertTrue(rte.getMessage().contains("https://gitlab.orekit.org/orekit/rugged/issues")); } + @Deprecated @Test public void testCoverage() { RuggedExceptionWrapper rew = new RuggedExceptionWrapper(new RuggedException(RuggedMessages.DUPLICATED_PARAMETER_NAME, "dummy")); -- GitLab