Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e3d281c8a40baa5498af7e67916252f83c808264 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*******************************************************************************
 * Copyright (c) 2006, 2009 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *   Matthew Webster           initial implementation      
 *******************************************************************************/

package org.eclipse.equinox.weaving.adaptors;

import org.eclipse.osgi.service.debug.DebugOptions;

public class Debug {

    public static final String ASPECTJ_OSGI = "org.eclipse.equinox.weaving.hook"; //$NON-NLS-1$

    public static boolean DEBUG_BUNDLE = false;

    public static String DEBUG_BUNDLENAME;

    public static boolean DEBUG_CACHE = false;

    public static boolean DEBUG_GENERAL = false;

    public static boolean DEBUG_SUPPLEMENTS = false;

    public static boolean DEBUG_WEAVE = false;

    public static final String OPTION_DEBUG_BUNDLE = ASPECTJ_OSGI
            + "/debug/bundle"; //$NON-NLS-1$

    public static final String OPTION_DEBUG_BUNDLENAME = ASPECTJ_OSGI
            + "/debug/bundleName"; //$NON-NLS-1$

    public static final String OPTION_DEBUG_CACHE = ASPECTJ_OSGI
            + "/debug/cache"; //$NON-NLS-1$

    public static final String OPTION_DEBUG_GENERAL = ASPECTJ_OSGI + "/debug"; //$NON-NLS-1$

    public static final String OPTION_DEBUG_SUPPLEMENTS = ASPECTJ_OSGI
            + "/debug/supplements"; //$NON-NLS-1$

    public static final String OPTION_DEBUG_WEAVE = ASPECTJ_OSGI
            + "/debug/weave"; //$NON-NLS-1$

    public static boolean bundleNameMatches(final String name) {
        return name.equals(DEBUG_BUNDLENAME);
    }

    public static void init(final DebugOptions options) {
        if (options != null) {
            DEBUG_GENERAL = options.getBooleanOption(OPTION_DEBUG_GENERAL,
                    false);
            DEBUG_BUNDLE = options.getBooleanOption(OPTION_DEBUG_BUNDLE, false);
            DEBUG_WEAVE = options.getBooleanOption(OPTION_DEBUG_WEAVE, false);
            DEBUG_CACHE = options.getBooleanOption(OPTION_DEBUG_CACHE, false);
            DEBUG_BUNDLENAME = options.getOption(OPTION_DEBUG_BUNDLENAME, "");
            DEBUG_SUPPLEMENTS = options.getBooleanOption(
                    OPTION_DEBUG_SUPPLEMENTS, false);
        }
    }

    public static void println(final String s) {
        /* if (s.indexOf("org.eclipse.osgi.tests") != -1) */System.err
                .println(s);
    }
}

Back to the top