-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for bad reporting of license status for non standard documents (e…
….g. binary). Collected license filtering into new LicenseSetFactory class and applied it where expected. Added more tests to DefaultsTests Added more tests to ReportConfigurtionTest
- Loading branch information
Showing
23 changed files
with
619 additions
and
308 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
92 changes: 92 additions & 0 deletions
92
apache-rat-core/src/main/java/org/apache/rat/analysis/UnknownLicense.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one * | ||
* or more contributor license agreements. See the NOTICE file * | ||
* distributed with this work for additional information * | ||
* regarding copyright ownership. The ASF 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.apache.rat.analysis; | ||
|
||
import org.apache.rat.license.ILicense; | ||
import org.apache.rat.license.ILicenseFamily; | ||
import org.apache.rat.license.ILicenseFamilyBuilder; | ||
|
||
/** | ||
* An ILicense implementation that represents an unknown license. | ||
* <p> | ||
* The UnknownLicense is used during processing to report that a document license can not be determined. | ||
* </p> | ||
*/ | ||
public class UnknownLicense implements ILicense { | ||
|
||
/** | ||
* The single instance of this class. | ||
*/ | ||
static final UnknownLicense INSTANCE = new UnknownLicense(); | ||
|
||
private final ILicenseFamily family ; | ||
|
||
/** | ||
* Do not allow other constructions. | ||
*/ | ||
private UnknownLicense() { | ||
family = new ILicenseFamilyBuilder().setLicenseFamilyCategory("?????") | ||
.setLicenseFamilyName("?????").build(); | ||
} | ||
|
||
@Override | ||
public String getId() { | ||
return "?????"; | ||
} | ||
|
||
@Override | ||
public void reset() { | ||
// do nothing | ||
} | ||
|
||
@Override | ||
public State matches(String line) { | ||
return State.f; | ||
} | ||
|
||
@Override | ||
public State finalizeState() { | ||
return State.f; | ||
} | ||
|
||
@Override | ||
public State currentState() { | ||
return State.f; | ||
} | ||
|
||
@Override | ||
public int compareTo(ILicense arg0) { | ||
return getLicenseFamily().compareTo(arg0.getLicenseFamily()); | ||
} | ||
|
||
@Override | ||
public ILicenseFamily getLicenseFamily() { | ||
return family; | ||
} | ||
|
||
@Override | ||
public String getNotes() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String derivedFrom() { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.