[rfc] netx: display file name in warning dialog
Dr Andrew John Hughes
ahughes at redhat.com
Wed Sep 29 13:22:22 PDT 2010
On 15:36 Wed 29 Sep , Omair Majid wrote:
> Hi,
>
> On 09/29/2010 03:04 PM, Dr Andrew John Hughes wrote:
> > On 14:47 Wed 29 Sep , Omair Majid wrote:
> >> Hi,
> >>
> >> The attached patch adds the filename to the file access warning dialogs
> >> used by netx.
> >>
> >> Any comments?
> >
> >
> > I think it would be cleaner to store the result of (visibleChars - 3) / 2 rather than
> > computing it twice. I also don't see how the change to XExtendedService is relevant;
> > could you explain?
> >
>
> Thanks for the feedback. Making a few changes makes the code quite a bit
> more readable. It now only computes (visibleChars - 3)/2 once. I have
> also replace most magic numbers with descriptive constants and tweaked
> the minimum lengths for affixes from 1 to 4.
>
Looks good.
> In the current implementation, the extras[] array is used to pass
> information relevant only to specific types of warnings. As an example,
> in the case of a NetworkAccess warning extras[0] contains the address
> of the destination. This patch makes use of extras[0] (if present) for
> the file name. XExtendedService is used to open files where the filename
> is known. My changes to XExtenededService pass the filename as
> extras[0]. (There are other cases where we dont know the name of the
> file - for example if XFileOpenService is used which shows a
> JFileChooser to the user for selecting a file). I added a comment as I
> noticed that even though it prompts the user for a _read_ request, the
> returned FileContents object can be used for writing as well (if the
> user has permissions, of course).
>
Ok I follow that now. It was the FIXME that confused me because it
doesn't concern anything in this patch, but code that's already there :-)
Please apply to HEAD and the branches as Deepak proposed.
> > Otherwise, looks good.
>
> Thanks,
> Omair
> diff -r e470c7b5f2dc netx/net/sourceforge/jnlp/resources/Messages.properties
> --- a/netx/net/sourceforge/jnlp/resources/Messages.properties Mon Sep 20 00:18:57 2010 +0100
> +++ b/netx/net/sourceforge/jnlp/resources/Messages.properties Wed Sep 29 15:17:26 2010 -0400
> @@ -6,6 +6,7 @@
> ButOk=OK
> ButCancel=\ Cancel\
> ButBrowse=Browse...
> +AFileOnTheMachine=a file on the machine
>
> # LS - Severity
> LSMinor=Minor
> @@ -150,8 +151,8 @@
> CChooseCacheDir=Cache directory
>
> # Security
> -SFileReadAccess=The application has requested read access to a file on the machine. Do you want to allow this action?
> -SFileWriteAccess=The application has requested write access to a file on the machine. Do you want to allow this action?
> +SFileReadAccess=The application has requested read access to {0}. Do you want to allow this action?
> +SFileWriteAccess=The application has requested write access to {0}. Do you want to allow this action?
> SDesktopShortcut=The application has requested permission to create a desktop launcher. Do you want to allow this action?
> SSigUnverified=The application's digital signature cannot be verified. Do you want to run the application?
> SSigVerified=The application's digital signature has been verified. Do you want to run the application?
> diff -r e470c7b5f2dc netx/net/sourceforge/jnlp/security/AccessWarningPane.java
> --- a/netx/net/sourceforge/jnlp/security/AccessWarningPane.java Mon Sep 20 00:18:57 2010 +0100
> +++ b/netx/net/sourceforge/jnlp/security/AccessWarningPane.java Wed Sep 29 15:17:26 2010 -0400
> @@ -56,6 +56,7 @@
> import javax.swing.SwingConstants;
>
> import net.sourceforge.jnlp.JNLPFile;
> +import net.sourceforge.jnlp.util.FileUtils;
>
> /**
> * Provides a panel to show inside a SecurityWarningDialog. These dialogs are
> @@ -114,10 +115,18 @@
> String topLabelText = "";
> switch (type) {
> case READ_FILE:
> - topLabelText = R("SFileReadAccess");
> + if (extras != null && extras.length > 0 && extras[0] instanceof String) {
> + topLabelText = R("SFileReadAccess", FileUtils.displayablePath((String)extras[0]));
> + } else {
> + topLabelText = R("SFileReadAccess", R("AFileOnTheMachine"));
> + }
> break;
> case WRITE_FILE:
> - topLabelText = R("SFileWriteAccess");
> + if (extras != null && extras.length > 0 && extras[0] instanceof String) {
> + topLabelText = R("SFileWriteAccess", FileUtils.displayablePath((String)extras[0]));
> + } else {
> + topLabelText = R("SFileWriteAccess", R("AFileOnTheMachine"));
> + }
> break;
> case CREATE_DESTKOP_SHORTCUT:
> topLabelText = R("SDesktopShortcut");
> @@ -145,7 +154,7 @@
> JPanel topPanel = new JPanel(new BorderLayout());
> topPanel.setBackground(Color.WHITE);
> topPanel.add(topLabel, BorderLayout.CENTER);
> - topPanel.setPreferredSize(new Dimension(400,60));
> + topPanel.setPreferredSize(new Dimension(450,100));
> topPanel.setBorder(BorderFactory.createEmptyBorder(10,10,10,10));
>
> //application info
> diff -r e470c7b5f2dc netx/net/sourceforge/jnlp/services/XExtendedService.java
> --- a/netx/net/sourceforge/jnlp/services/XExtendedService.java Mon Sep 20 00:18:57 2010 +0100
> +++ b/netx/net/sourceforge/jnlp/services/XExtendedService.java Wed Sep 29 15:17:26 2010 -0400
> @@ -34,7 +34,9 @@
>
> public FileContents openFile(File file) throws IOException {
>
> - if (ServiceUtil.checkAccess(SecurityWarningDialog.AccessType.READ_FILE)) {
> + /* FIXME: this opens a file with read/write mode, not just read or write */
> + if (ServiceUtil.checkAccess(SecurityWarningDialog.AccessType.READ_FILE,
> + new Object[]{ file.getAbsolutePath() })) {
> return (FileContents) ServiceUtil.createPrivilegedProxy(FileContents.class,
> new XFileContents(file));
> } else {
> diff -r e470c7b5f2dc netx/net/sourceforge/jnlp/util/FileUtils.java
> --- a/netx/net/sourceforge/jnlp/util/FileUtils.java Mon Sep 20 00:18:57 2010 +0100
> +++ b/netx/net/sourceforge/jnlp/util/FileUtils.java Wed Sep 29 15:17:26 2010 -0400
> @@ -68,4 +68,57 @@
> return filename;
> }
>
> + /**
> + * Returns a String that is suitable for using in GUI elements for
> + * displaying (long) paths to users.
> + *
> + * @param path a path that should be shortened
> + * @return a shortened path suitable for displaying to the user
> + */
> + public static String displayablePath(String path) {
> + final int DEFAULT_LENGTH = 40;
> + return displayablePath(path, DEFAULT_LENGTH);
> + }
> +
> + /**
> + * Return a String that is suitable for using in GUI elements for displaying
> + * paths to users. If the path is longer than visibleChars, it is truncated
> + * in a display-friendly way
> + *
> + * @param path a path that should be shorted
> + * @param visibleChars the maximum number of characters that path should fit
> + * into. Also the length of the returned string
> + * @return a shortened path that contains limited number of chars
> + */
> + public static String displayablePath(String path, int visibleChars) {
> + /*
> + * use a very simple method: prefix + "..." + suffix
> + *
> + * where prefix is the beginning part of path (as much as we can squeeze in)
> + * and suffix is the end path of path
> + */
> +
> + if (path == null || path.length() <= visibleChars) {
> + return path;
> + }
> +
> + final String OMITTED = "...";
> + final int OMITTED_LENGTH = OMITTED.length();
> + final int MIN_PREFIX_LENGTH = 4;
> + final int MIN_SUFFIX_LENGTH = 4;
> + /*
> + * we want to show things other than OMITTED. if we have too few for
> + * suffix and prefix, then just return as much as we can of the filename
> + */
> + if (visibleChars < (OMITTED_LENGTH + MIN_PREFIX_LENGTH + MIN_SUFFIX_LENGTH)) {
> + return path.substring(path.length() - visibleChars);
> + }
> +
> + int affixLength = (visibleChars - OMITTED_LENGTH)/2;
> + String prefix = path.substring(0, affixLength);
> + String suffix = path.substring(path.length() - affixLength);
> +
> + return prefix + OMITTED + suffix;
> + }
> +
> }
--
Andrew :)
Free Java Software Engineer
Red Hat, Inc. (http://www.redhat.com)
Support Free Java!
Contribute to GNU Classpath and the OpenJDK
http://www.gnu.org/software/classpath
http://openjdk.java.net
PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
Fingerprint = F8EF F1EA 401E 2E60 15FA 7927 142C 2591 94EF D9D8
More information about the distro-pkg-dev
mailing list