
org.acra.CrashReportFileNameParser Maven / Gradle / Ivy
Go to download
Publishes a report of an Android application crash to Google docs (or some other end point).
The newest version!
/*
* Copyright 2012 Kevin Gaudin
*
* Licensed 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.acra;
/**
* Responsible for determining the state of a Crash Report based on its file name.
*
* @author William Ferguson
* @since 4.3.0
*/
final class CrashReportFileNameParser {
/**
* Guess that a report is silent from its file name.
*
* @param reportFileName Name of the report to check whether it should be sent silently.
* @return True if the report has been declared explicitly silent using {@link ErrorReporter#handleSilentException(Throwable)}.
*/
public boolean isSilent(String reportFileName) {
return reportFileName.contains(ACRAConstants.SILENT_SUFFIX);
}
/**
* Returns true if the report is considered as approved.
*
This includes:
*
*
* - Reports which were pending when the user agreed to send a report in the NOTIFICATION mode Dialog.
* - Explicit silent reports
*
*
* @param reportFileName Name of report to check whether it is approved to be sent.
* @return True if a report can be sent.
*/
public boolean isApproved(String reportFileName) {
return isSilent(reportFileName) || reportFileName.contains(ACRAConstants.APPROVED_SUFFIX);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy