view src/viewer_swing/java/com/glavsoft/viewer/swing/ClipboardControllerImpl.java @ 0:daa24f8a557b

TightVNC original
author YU
date Thu, 11 Sep 2014 07:30:03 +0900
parents
children
line wrap: on
line source

// Copyright (C) 2010, 2011, 2012, 2013 GlavSoft LLC.
// All rights reserved.
//
//-------------------------------------------------------------------------
// This file is part of the TightVNC software.  Please visit our Web site:
//
//                       http://www.tightvnc.com/
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//-------------------------------------------------------------------------
//

package com.glavsoft.viewer.swing;

import com.glavsoft.core.SettingsChangedEvent;
import com.glavsoft.rfb.ClipboardController;
import com.glavsoft.rfb.client.ClientCutTextMessage;
import com.glavsoft.rfb.protocol.ProtocolContext;
import com.glavsoft.rfb.protocol.ProtocolSettings;
import com.glavsoft.utils.Strings;

import java.awt.*;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.io.IOException;
import java.nio.charset.Charset;
import java.security.AccessControlException;

public class ClipboardControllerImpl implements ClipboardController, Runnable {
	private static final String STANDARD_CHARSET = "ISO-8859-1"; // aka Latin-1
	private static final long CLIPBOARD_UPDATE_CHECK_INTERVAL_MILS = 1000L;
	private Clipboard clipboard;
	private String clipboardText = null;
	private volatile boolean isRunning;
	private boolean isEnabled;
	private final ProtocolContext context;
	private Charset charset;

	public ClipboardControllerImpl(ProtocolContext context, String charsetName) {
		this.context = context;
		try {
			clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
			updateSavedClipboardContent(); // prevent onstart clipboard content sending
		} catch (AccessControlException e) { /*nop*/ }
		
		if (Strings.isTrimmedEmpty(charsetName)) {
			charset = Charset.defaultCharset();
		} else if ("standard".equalsIgnoreCase(charsetName)) {
			charset = Charset.forName(STANDARD_CHARSET);
		} else {
			charset = Charset.isSupported(charsetName) ? Charset.forName(charsetName) : Charset.defaultCharset();
		}
		// not supported UTF-charsets as they are multibytes.
		// add others multibytes charsets on need
		if (charset.name().startsWith("UTF")) {
			charset = Charset.forName(STANDARD_CHARSET);
		}
	}

	@Override
	public void updateSystemClipboard(byte[] bytes) {
		if (clipboard != null) {
			StringSelection stringSelection = new StringSelection(new String(bytes, charset));
			if (isEnabled) {
				clipboard.setContents(stringSelection, null);
			}
		}
	}

	/**
	 *	Callback for clipboard changes listeners
	 *  Retrieves text content from system clipboard which then available
	 *  through getClipboardText().
	 */
	private void updateSavedClipboardContent() {
		if (clipboard != null && clipboard.isDataFlavorAvailable(DataFlavor.stringFlavor)) {
			try {
				clipboardText = (String)clipboard.getData(DataFlavor.stringFlavor);
			} catch (UnsupportedFlavorException e) {
				// ignore
			} catch (IOException e) {
				// ignore
			}
		} else {
			clipboardText = null;
		}
	}

	@Override
	public String getClipboardText() {
		return clipboardText;
	}

	/**
	 * Get text clipboard contents when needed send to remote, or null vise versa
	 *
	 * @return clipboard string contents if it is changed from last method call
	 * or null when clipboard contains non text object or clipboard contents didn't changed
	 */
	@Override
	public String getRenewedClipboardText() {
		String old = clipboardText;
		updateSavedClipboardContent();
		if (clipboardText != null && ! clipboardText.equals(old))
			return clipboardText;
		return null;
	}

	@Override
	public void setEnabled(boolean enable) {
		if (! enable) {
			isRunning = false;
		}
		if (enable && ! isEnabled) {
			new Thread(this).start();
		}
		isEnabled = enable;
	}

	@Override
	public void run() {
		isRunning = true;
		while (isRunning) {
			String clipboardText = getRenewedClipboardText();
			if (clipboardText != null) {
				context.sendMessage(new ClientCutTextMessage(clipboardText.getBytes(charset)));
			}
			try {
				Thread.sleep(CLIPBOARD_UPDATE_CHECK_INTERVAL_MILS);
			} catch (InterruptedException e) { continue; }
		}
	}

	@Override
	public void settingsChanged(SettingsChangedEvent e) {
		ProtocolSettings settings = (ProtocolSettings) e.getSource();
		setEnabled(settings.isAllowClipboardTransfer());
	}

}