~ubuntu-branches/ubuntu/breezy/proguard/breezy

« back to all changes in this revision

Viewing changes to src/proguard/classfile/visitor/ClassFileNameFilter.java

  • Committer: Bazaar Package Importer
  • Author(s): Sam Clegg
  • Date: 2005-06-17 14:25:24 UTC
  • Revision ID: james.westby@ubuntu.com-20050617142524-thz2yfa3vemy3j9d
Tags: upstream-3.2
ImportĀ upstreamĀ versionĀ 3.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: ClassFileNameFilter.java,v 1.8 2004/08/15 12:39:30 eric Exp $
 
2
 *
 
3
 * ProGuard -- shrinking, optimization, and obfuscation of Java class files.
 
4
 *
 
5
 * Copyright (c) 2002-2004 Eric Lafortune (eric@graphics.cornell.edu)
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify it
 
8
 * under the terms of the GNU General Public License as published by the Free
 
9
 * Software Foundation; either version 2 of the License, or (at your option)
 
10
 * any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
13
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
14
 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
 
15
 * more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License along
 
18
 * with this program; if not, write to the Free Software Foundation, Inc.,
 
19
 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
20
 */
 
21
package proguard.classfile.visitor;
 
22
 
 
23
import proguard.classfile.*;
 
24
import proguard.util.*;
 
25
 
 
26
 
 
27
/**
 
28
 * This <code>ClassFileVisitor</code> delegates its visits to another given
 
29
 * <code>ClassFileVisitor</code>, but only when the visited class file
 
30
 * has a name that matches a given regular expression.
 
31
 *
 
32
 * @author Eric Lafortune
 
33
 */
 
34
public class ClassFileNameFilter implements ClassFileVisitor
 
35
{
 
36
    private ClassFileVisitor         classFileVisitor;
 
37
    private StringMatcher regularExpressionMatcher;
 
38
 
 
39
 
 
40
    /**
 
41
     * Creates a new ClassFileNameFilter.
 
42
     * @param classFileVisitor  the <code>ClassFileVisitor</code> to which visits
 
43
     *                          will be delegated.
 
44
     * @param regularExpression the regular expression against which class names
 
45
     *                          will be matched.
 
46
     */
 
47
    public ClassFileNameFilter(ClassFileVisitor classFileVisitor,
 
48
                               String           regularExpression)
 
49
    {
 
50
        this.classFileVisitor         = classFileVisitor;
 
51
        this.regularExpressionMatcher = new ClassNameMatcher(regularExpression);
 
52
    }
 
53
 
 
54
 
 
55
    // Implementations for ClassFileVisitor.
 
56
 
 
57
    public void visitProgramClassFile(ProgramClassFile programClassFile)
 
58
    {
 
59
        if (accepted(programClassFile.getName()))
 
60
        {
 
61
            classFileVisitor.visitProgramClassFile(programClassFile);
 
62
        }
 
63
    }
 
64
 
 
65
 
 
66
    public void visitLibraryClassFile(LibraryClassFile libraryClassFile)
 
67
    {
 
68
        if (accepted(libraryClassFile.getName()))
 
69
        {
 
70
            classFileVisitor.visitLibraryClassFile(libraryClassFile);
 
71
        }
 
72
    }
 
73
 
 
74
 
 
75
    // Small utility methods.
 
76
 
 
77
    private boolean accepted(String name)
 
78
    {
 
79
        return regularExpressionMatcher.matches(name);
 
80
    }
 
81
}