| author | Dmitry Kozlov | 2012-04-05 08:14:03 (EDT) |
|---|---|---|
| committer | Roland Grunberg | 2012-04-12 17:01:31 (EDT) |
| commit | c5a85154518193ac9ddd75603ea7ef19cafecedf (patch) (side-by-side diff) | |
| tree | d598a3b8a9cd9949ecffa97e5c681de2460258d7 | |
| parent | 0ed4fb81ce2b4a3101c33f5c6f779ecd377cec77 (diff) | |
| download | org.eclipse.linuxtools-c5a85154518193ac9ddd75603ea7ef19cafecedf.zip org.eclipse.linuxtools-c5a85154518193ac9ddd75603ea7ef19cafecedf.tar.gz org.eclipse.linuxtools-c5a85154518193ac9ddd75603ea7ef19cafecedf.tar.bz2 | |
Cleanup leading underscores from identifiers' names in org.eclipse.linuxtools.internal.oprofile.core.linux.LinuxOpcontrolProvider. Part 1.
| -rw-r--r-- | oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/linux/LinuxOpcontrolProvider.java | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/linux/LinuxOpcontrolProvider.java b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/linux/LinuxOpcontrolProvider.java index be8415c..328b11f 100644 --- a/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/linux/LinuxOpcontrolProvider.java +++ b/oprofile/org.eclipse.linuxtools.oprofile.core/src/org/eclipse/linuxtools/internal/oprofile/core/linux/LinuxOpcontrolProvider.java @@ -37,40 +37,40 @@ import org.eclipse.linuxtools.tools.launch.core.properties.LinuxtoolsPathPropert * A class which encapsulates running opcontrol. */ public class LinuxOpcontrolProvider implements IOpcontrolProvider { - private static final String _OPCONTROL_EXECUTABLE = "opcontrol"; + private static final String OPCONTROL_EXECUTABLE = "opcontrol"; // Location of opcontrol security wrapper - private static final String _OPCONTROL_REL_PATH = "natives/linux/scripts/" + _OPCONTROL_EXECUTABLE; //$NON-NLS-1$ + private static final String OPCONTROL_REL_PATH = "natives/linux/scripts/" + OPCONTROL_EXECUTABLE; //$NON-NLS-1$ - private final String _OPCONTROL_PROGRAM; + private final String opcontrolProgram; // Initialize the Oprofile kernel module and oprofilefs - private static final String _OPD_INIT_MODULE = "--init"; //$NON-NLS-1$ + private static final String OPD_INIT_MODULE = "--init"; //$NON-NLS-1$ // Setup daemon collection arguments - private static final String _OPD_SETUP = "--setup"; //$NON-NLS-1$ - private static final String _OPD_HELP = "--help"; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE = "--separate="; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_SEPARATOR = ","; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_NONE = "none"; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_LIBRARY = "library"; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_KERNEL = "kernel"; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_THREAD = "thread"; //$NON-NLS-1$ - private static final String _OPD_SETUP_SEPARATE_CPU = "cpu"; //$NON-NLS-1$ + private static final String OPD_SETUP = "--setup"; //$NON-NLS-1$ + private static final String OPD_HELP = "--help"; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE = "--separate="; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_SEPARATOR = ","; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_NONE = "none"; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_LIBRARY = "library"; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_KERNEL = "kernel"; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_THREAD = "thread"; //$NON-NLS-1$ + private static final String OPD_SETUP_SEPARATE_CPU = "cpu"; //$NON-NLS-1$ - private static final String _OPD_SETUP_EVENT = "--event="; //$NON-NLS-1$ - private static final String _OPD_SETUP_EVENT_SEPARATOR = ":"; //$NON-NLS-1$ - private static final String _OPD_SETUP_EVENT_TRUE = "1"; //$NON-NLS-1$ - private static final String _OPD_SETUP_EVENT_FALSE = "0"; //$NON-NLS-1$ - private static final String _OPD_SETUP_EVENT_DEFAULT = "default"; //$NON-NLS-1$ + private static final String OPD_SETUP_EVENT = "--event="; //$NON-NLS-1$ + private static final String OPD_SETUP_EVENT_SEPARATOR = ":"; //$NON-NLS-1$ + private static final String OPD_SETUP_EVENT_TRUE = "1"; //$NON-NLS-1$ + private static final String OPD_SETUP_EVENT_FALSE = "0"; //$NON-NLS-1$ + private static final String OPD_SETUP_EVENT_DEFAULT = "default"; //$NON-NLS-1$ - private static final String _OPD_SETUP_IMAGE = "--image="; //$NON-NLS-1$ + private static final String OPD_SETUP_IMAGE = "--image="; //$NON-NLS-1$ - private static final String _OPD_CALLGRAPH_DEPTH = "--callgraph="; //$NON-NLS-1$ + private static final String OPD_CALLGRAPH_DEPTH = "--callgraph="; //$NON-NLS-1$ // Kernel image file options - private static final String _OPD_KERNEL_NONE = "--no-vmlinux"; //$NON-NLS-1$ - private static final String _OPD_KERNEL_FILE = "--vmlinux="; //$NON-NLS-1$ + private static final String OPD_KERNEL_NONE = "--no-vmlinux"; //$NON-NLS-1$ + private static final String OPD_KERNEL_FILE = "--vmlinux="; //$NON-NLS-1$ // Logging verbosity // private static final String _OPD_VERBOSE_LOGGING = "--verbose="; //$NON-NSL-1$ @@ -82,10 +82,10 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { // private static final String _OPD_VERBOSE_MISC = "misc"; //$NON-NLS-1$ // Start the daemon process without starting data collection - private static final String _OPD_START_DAEMON = "--start-daemon"; //$NON-NLS-1$ + private static final String OPD_START_DAEMON = "--start-daemon"; //$NON-NLS-1$ // Start collecting profiling data - private static final String _OPD_START_COLLECTION = "--start"; //$NON-NLS-1$ + private static final String OPD_START_COLLECTION = "--start"; //$NON-NLS-1$ // Flush the collected profiling data to disk private static final String _OPD_DUMP = "--dump"; //$NON-NLS-1$ @@ -111,7 +111,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { public LinuxOpcontrolProvider() throws OpcontrolException { - _OPCONTROL_PROGRAM = _findOpcontrol(); + opcontrolProgram = _findOpcontrol(); } /** @@ -135,7 +135,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { * @throws OpcontrolException */ public void initModule() throws OpcontrolException { - _runOpcontrol(_OPD_INIT_MODULE); + _runOpcontrol(OPD_INIT_MODULE); } /** @@ -195,11 +195,11 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { public void setupDaemon(OprofileDaemonOptions options, OprofileDaemonEvent[] events) throws OpcontrolException { // Convert options & events to arguments for opcontrol ArrayList<String> args = new ArrayList<String>(); - args.add(_OPD_SETUP); + args.add(OPD_SETUP); _optionsToArguments(args, options); if (!Oprofile.getTimerMode()) { if (events == null || events.length == 0) { - args.add(_OPD_SETUP_EVENT + _OPD_SETUP_EVENT_DEFAULT); + args.add(OPD_SETUP_EVENT + OPD_SETUP_EVENT_DEFAULT); } else { for (int i = 0; i < events.length; ++i) { _eventToArguments(args, events[i]); @@ -222,7 +222,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { * @throws OpcontrolException */ public void startCollection() throws OpcontrolException { - _runOpcontrol(_OPD_START_COLLECTION); + _runOpcontrol(OPD_START_COLLECTION); } /** @@ -230,7 +230,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { * @throws OpcontrolException */ public void startDaemon() throws OpcontrolException { - _runOpcontrol(_OPD_START_DAEMON); + _runOpcontrol(OPD_START_DAEMON); } /** @@ -246,7 +246,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { * @throws OpcontrolException */ public boolean status() throws OpcontrolException { - return _runOpcontrol(_OPD_HELP); + return _runOpcontrol(OPD_HELP); } // Convenience function @@ -270,14 +270,14 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { // If no linuxtools' toolchain is defined for this project, use the path for the // link created by the installation script if(project == null || LinuxtoolsPathProperty.getInstance().getLinuxtoolsPath(project).equals("")){ - args.add(0, _OPCONTROL_PROGRAM); + args.add(0, opcontrolProgram); } else{ - args.add(0, _OPCONTROL_EXECUTABLE); + args.add(0, OPCONTROL_EXECUTABLE); } // Verbosity hack. If --start or --start-daemon, add verbosity, if set String cmd = (String) args.get(1); - if (_verbosity.length() > 0 && (cmd.equals (_OPD_START_COLLECTION) || cmd.equals(_OPD_START_DAEMON))) { + if (_verbosity.length() > 0 && (cmd.equals (OPD_START_COLLECTION) || cmd.equals(OPD_START_DAEMON))) { args.add(_verbosity); } @@ -356,7 +356,7 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { private static String _findOpcontrol() throws OpcontrolException { IProject project = Oprofile.getCurrentProject(); URL url = FileLocator.find(Platform.getBundle(OprofileCorePlugin - .getId()), new Path(_OPCONTROL_REL_PATH), null); + .getId()), new Path(OPCONTROL_REL_PATH), null); if (url != null) { try { @@ -376,16 +376,16 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { // Convert the event into arguments for opcontrol private void _eventToArguments(ArrayList<String> args, OprofileDaemonEvent event) { // Event spec: "EVENT:count:mask:profileKernel:profileUser" - String spec = new String(_OPD_SETUP_EVENT); + String spec = new String(OPD_SETUP_EVENT); spec += event.getEvent().getText(); - spec += _OPD_SETUP_EVENT_SEPARATOR; + spec += OPD_SETUP_EVENT_SEPARATOR; spec += event.getResetCount(); - spec += _OPD_SETUP_EVENT_SEPARATOR; + spec += OPD_SETUP_EVENT_SEPARATOR; spec += event.getEvent().getUnitMask().getMaskValue(); - spec += _OPD_SETUP_EVENT_SEPARATOR; - spec += (event.getProfileKernel() ? _OPD_SETUP_EVENT_TRUE : _OPD_SETUP_EVENT_FALSE); - spec += _OPD_SETUP_EVENT_SEPARATOR; - spec += (event.getProfileUser() ? _OPD_SETUP_EVENT_TRUE : _OPD_SETUP_EVENT_FALSE); + spec += OPD_SETUP_EVENT_SEPARATOR; + spec += (event.getProfileKernel() ? OPD_SETUP_EVENT_TRUE : OPD_SETUP_EVENT_FALSE); + spec += OPD_SETUP_EVENT_SEPARATOR; + spec += (event.getProfileUser() ? OPD_SETUP_EVENT_TRUE : OPD_SETUP_EVENT_FALSE); args.add(spec); } @@ -394,35 +394,35 @@ public class LinuxOpcontrolProvider implements IOpcontrolProvider { // Add separate flags int mask = options.getSeparateProfilesMask(); - String separate = new String(_OPD_SETUP_SEPARATE); + String separate = new String(OPD_SETUP_SEPARATE); if (mask == OprofileDaemonOptions.SEPARATE_NONE) { - separate += _OPD_SETUP_SEPARATE_NONE; + separate += OPD_SETUP_SEPARATE_NONE; } else { //note that opcontrol will nicely ignore the trailing comma if ((mask & OprofileDaemonOptions.SEPARATE_LIBRARY) != 0) - separate += _OPD_SETUP_SEPARATE_LIBRARY + _OPD_SETUP_SEPARATE_SEPARATOR; + separate += OPD_SETUP_SEPARATE_LIBRARY + OPD_SETUP_SEPARATE_SEPARATOR; if ((mask & OprofileDaemonOptions.SEPARATE_KERNEL) != 0) - separate += _OPD_SETUP_SEPARATE_KERNEL + _OPD_SETUP_SEPARATE_SEPARATOR; + separate += OPD_SETUP_SEPARATE_KERNEL + OPD_SETUP_SEPARATE_SEPARATOR; if ((mask & OprofileDaemonOptions.SEPARATE_THREAD) != 0) - separate += _OPD_SETUP_SEPARATE_THREAD + _OPD_SETUP_SEPARATE_SEPARATOR; + separate += OPD_SETUP_SEPARATE_THREAD + OPD_SETUP_SEPARATE_SEPARATOR; if ((mask & OprofileDaemonOptions.SEPARATE_CPU) != 0) - separate += _OPD_SETUP_SEPARATE_CPU + _OPD_SETUP_SEPARATE_SEPARATOR; + separate += OPD_SETUP_SEPARATE_CPU + OPD_SETUP_SEPARATE_SEPARATOR; } args.add(separate); // Add kernel image if (options.getKernelImageFile() == null || options.getKernelImageFile().length() == 0) { - args.add(_OPD_KERNEL_NONE); + args.add(OPD_KERNEL_NONE); } else { - args.add(_OPD_KERNEL_FILE + options.getKernelImageFile()); + args.add(OPD_KERNEL_FILE + options.getKernelImageFile()); } //image filter -- always non-null - args.add(_OPD_SETUP_IMAGE + options.getBinaryImage()); + args.add(OPD_SETUP_IMAGE + options.getBinaryImage()); //callgraph depth - args.add(_OPD_CALLGRAPH_DEPTH + options.getCallgraphDepth()); + args.add(OPD_CALLGRAPH_DEPTH + options.getCallgraphDepth()); } } |

