From d7c86bdc6ca7a681e897209a8e2c2fafbb1e6020 Mon Sep 17 00:00:00 2001
From: Letitia Li <leli@enst.fr>
Date: Thu, 1 Oct 2015 16:01:25 +0000
Subject: [PATCH] Pragma UI update

---
 src/ui/avatarbd/AvatarBDPragma.java | 383 ++++++++++++++++++++++++++++
 1 file changed, 383 insertions(+)
 create mode 100755 src/ui/avatarbd/AvatarBDPragma.java

diff --git a/src/ui/avatarbd/AvatarBDPragma.java b/src/ui/avatarbd/AvatarBDPragma.java
new file mode 100755
index 0000000000..2038709998
--- /dev/null
+++ b/src/ui/avatarbd/AvatarBDPragma.java
@@ -0,0 +1,383 @@
+/**Copyright or (C) or Copr. GET / ENST, Telecom-Paris, Ludovic Apvrille
+
+   ludovic.apvrille AT enst.fr
+
+   This software is a computer program whose purpose is to allow the
+   edition of TURTLE analysis, design and deployment diagrams, to
+   allow the generation of RT-LOTOS or Java code from this diagram,
+   and at last to allow the analysis of formal validation traces
+   obtained from external tools, e.g. RTL from LAAS-CNRS and CADP
+   from INRIA Rhone-Alpes.
+
+   This software is governed by the CeCILL  license under French law and
+   abiding by the rules of distribution of free software.  You can  use,
+   modify and/ or redistribute the software under the terms of the CeCILL
+   license as circulated by CEA, CNRS and INRIA at the following URL
+   "http://www.cecill.info".
+
+   As a counterpart to the access to the source code and  rights to copy,
+   modify and redistribute granted by the license, users are provided only
+   with a limited warranty  and the software's author,  the holder of the
+   economic rights,  and the successive licensors  have only  limited
+   liability.
+
+   In this respect, the user's attention is drawn to the risks associated
+   with loading,  using,  modifying and/or developing or reproducing the
+   software by the user in light of its specific status of free software,
+   that may mean  that it is complicated to manipulate,  and  that  also
+   therefore means  that it is reserved for developers  and  experienced
+   professionals having in-depth computer knowledge. Users are therefore
+   encouraged to load and test the software's suitability as regards their
+   requirements in conditions enabling the security of their systems and/or
+   data to be ensured and,  more generally, to use and operate it in the
+   same conditions as regards security.
+
+   The fact that you are presently reading this means that you have had
+   knowledge of the CeCILL license and that you accept its terms.
+
+   /**
+   * Class Pragma
+   * Like a Note but with Pragma
+   * Creation: 06/12/2003
+   * @version 1.0 06/12/2003
+   * @author Ludovic APVRILLE, Letitia LI
+   * @see
+   */
+
+package ui.avatarbd;
+
+import java.awt.*;
+import javax.swing.*;
+
+import java.util.*;
+
+import org.w3c.dom.*;
+
+import myutil.*;
+import ui.window.*;
+import ui.*;
+import avatartranslator.*;
+
+public class AvatarBDPragma extends TGCScalableWithoutInternalComponent {
+
+    protected String[] values;
+    protected LinkedList<String> models;
+    protected LinkedList<String> properties;
+    protected int textX = 15;
+    protected int textY = 5;
+    protected int marginY = 20;
+    protected int marginX = 20;
+    protected int limit = 15;
+    protected int lockX = 1;
+    protected int lockY = 5;
+    protected Graphics myg;
+
+    protected Color myColor;
+
+    private Font myFont, myFontB;
+    private int maxFontSize = 30;
+    private int minFontSize = 4;
+    private int currentFontSize = -1;
+    private final String[] mPragma = {"#Constant", "#InitialSystemKnowledge", "#InitialSessionKnowledge", "#PrivatePublicKeys", "#Public"};
+    private final String[] pPragma = {"#Confidentiality", "#Secret", "#SecrecyAssumption", "#Authenticity"};
+    protected Graphics graphics;
+    public final static int NOT_VERIFIED = 0;
+    public final static int PROVED_STRONG = 1;
+    public final static int PROVED_WEAK = 2;
+    public final static int PROVED_FALSE = 3; 
+    public final static int NOT_PROVED = 4;
+    public HashMap<String, Integer> authMap = new HashMap<String, Integer>();
+
+    public AvatarBDPragma(int _x, int _y, int _minX, int _maxX, int _minY, int _maxY, boolean _pos, TGComponent _father, TDiagramPanel _tdp)  {
+        super(_x, _y, _minX, _maxX, _minY, _maxY, _pos, _father, _tdp);
+        width = 150;
+        height = 30;
+        minWidth = 20;
+        minHeight = 10;
+	models = new LinkedList<String>();
+	properties = new LinkedList<String>();
+	authMap = new HashMap<String, Integer>();
+        oldScaleFactor = tdp.getZoom();
+
+        nbConnectingPoint = 0;
+        //addTGConnectingPointsComment();
+	int len = makeTGConnectingPointsComment(16);
+	int decw = 0;
+	int dech = 0;
+	for(int i=0; i<2; i++) {
+	    connectingPoint[len] = new TGConnectingPointComment(this, 0, 0, true, true, 0.0 + decw, 0.0 + dech);
+	    connectingPoint[len + 1 ] = new TGConnectingPointComment(this, 0, 0, true, true, 0.5 + decw, 0.0 + dech);
+	    connectingPoint[len + 2 ] = new TGConnectingPointComment(this, 0, 0, true, true, 1.0 + decw, 0.0 + dech);
+	    connectingPoint[len + 3 ] = new TGConnectingPointComment(this, 0, 0, true, true, 0.0 + decw, 0.5 + dech);
+	    connectingPoint[len + 4 ] = new TGConnectingPointComment(this, 0, 0, true, true, 1.0 + decw, 0.5 + dech);
+	    connectingPoint[len + 5 ] = new TGConnectingPointComment(this, 0, 0, true, true, 0.0 + decw, 1.0 + dech);
+	    connectingPoint[len + 6 ] = new TGConnectingPointComment(this, 0, 0, true, true, 0.5 + decw, 1.0 + dech);
+	    connectingPoint[len + 7 ] = new TGConnectingPointComment(this, 0, 0, true, true, 0.9 + decw, 1.0 + dech);
+	    len += 8;
+	}
+
+        moveable = true;
+        editable = true;
+        removable = true;
+
+        name = "Proverif Pragma";
+        value = "Proverif List of Pragma";
+
+        myImageIcon = IconManager.imgic6000;
+    }
+
+    public String[] getValues() {
+        return values;
+    }
+    public LinkedList<String> getProperties() {
+	return properties;
+    }
+
+    public void internalDrawing(Graphics g) {
+        Font f = g.getFont();
+        Font fold = f;
+
+        /*if (!tdp.isScaled()) {
+          graphics = g;
+          }*/
+
+        if (((rescaled) && (!tdp.isScaled())) || myFont == null) {
+            currentFontSize = tdp.getFontSize();
+            //System.out.println("Rescaled, font size = " + currentFontSize + " height=" + height);
+            //            myFont = f.deriveFont((float)currentFontSize);
+            //myFontB = myFont.deriveFont(Font.BOLD);
+
+            if (rescaled) {
+                rescaled = false;
+            }
+        }
+
+        if (values == null) {
+            makeValue();
+        }
+
+        int h  = g.getFontMetrics().getHeight();
+        Color c = g.getColor();
+
+        int desiredWidth = minWidth;
+        for(int i=0; i< values.length; i++) {
+            desiredWidth = Math.max(desiredWidth, g.getFontMetrics().stringWidth(values[i]) + marginX);
+        }
+
+        int desiredHeight = ((models.size() + properties.size()+4) * currentFontSize) + textY + 1;
+
+        //TraceManager.addDev("resize: " + desiredWidth + "," + desiredHeight);
+
+        if ((desiredWidth != width) || (desiredHeight != height)) {
+            resize(desiredWidth, desiredHeight);
+        }
+
+        g.drawLine(x, y, x+width, y);
+        g.drawLine(x, y, x, y+height);
+        g.drawLine(x, y+height, x+width-limit, y+height);
+        g.drawLine(x+width, y, x+width, y+height - limit);
+
+        g.setColor(ColorManager.PRAGMA_BG);
+        int [] px1 = {x+1, x+width, x + width, x + width-limit, x+1};
+        int [] py1 = {y+1, y+1, y+height-limit, y+height, y+height};
+        g.fillPolygon(px1, py1, 5);
+        g.setColor(c);
+
+        int [] px = {x+width, x + width - 4, x+width-10, x + width-limit};
+        int [] py = {y+height-limit, y + height - limit + 3, y + height - limit + 2, y +height};
+        g.drawPolygon(px, py, 4);
+
+        if (g.getColor() == ColorManager.NORMAL_0) {
+            g.setColor(ColorManager.PRAGMA);
+        }
+        g.fillPolygon(px, py, 4);
+
+        g.setColor(Color.black);	
+	int i = 1;
+	g.drawString("Model Pragma", x+textX, y+textY + currentFontSize);
+	for (String s: models){
+	    g.drawString(s, x + textX, y + textY + (i+1)* currentFontSize);
+	    i++;
+	}
+	g.drawString(" ", x+ textX, y+ textY+(i+1)*currentFontSize);
+	i++;
+	g.drawLine(x, y+textY+i*currentFontSize, x+width, y+textY+i*currentFontSize);
+	g.drawString("Property Pragma", x+textX, y+textY+(i+1)* currentFontSize);
+	i++;
+	for (String s: properties){
+	    if (authMap.containsKey(s)){
+		g.setFont(new Font("tmp", Font.BOLD, 18));
+		drawConfidentialityVerification(authMap.get(s), g, x+ lockX, y + lockY + (i+1)*currentFontSize);
+		g.setFont(fold);
+	    }
+	    g.drawString(s, x + textX, y + textY + (i+1)* currentFontSize);
+	    i++;
+	}
+
+/*        for (int i = 0; i<values.length; i++) {
+            //TraceManager.addDev("x+texX=" + (x + textX) + " y+textY=" + y + textY + i* h + ": " + values[i]);
+            g.drawString(values[i], x + textX, y + textY + (i+1)* currentFontSize);
+        }
+*/
+        g.setColor(c);
+
+    }
+
+    public void makeValue() {
+        values = Conversion.wrapText(value);
+	models.clear();
+	properties.clear();
+	for (String s: values){
+	    if (Arrays.asList(mPragma).contains(s.split(" ")[0])){
+		models.add(s);
+	    }
+	    else if (Arrays.asList(pPragma).contains(s.split(" ")[0])){
+		properties.add(s);
+	    }
+	    else {
+		if (!s.isEmpty()){
+		//Warning Message
+		JOptionPane.showMessageDialog(null, s + " is not a valid pragma.", "Invalid Pragma",
+                                                  JOptionPane.INFORMATION_MESSAGE);
+		}
+	    }
+	}
+        //checkMySize();
+    }
+
+    /*public void checkMySize() {
+      if (myg == null) {
+      return;
+      }
+      int desiredWidth = minWidth;
+      for(int i=0; i< values.length; i++) {
+      desiredWidth = Math.max(desiredWidth, myg.getFontMetrics().stringWidth(values[i]) + marginX);
+      }
+
+      int desiredHeight = values.length * myg.getFontMetrics().getHeight() + marginY;
+
+      if ((desiredWidth != width) || (desiredHeight != height)) {
+      resize(desiredWidth, desiredHeight);
+      }
+      }*/
+    private void drawConfidentialityVerification(int confidentialityVerification, Graphics g, int _x, int _y) {
+        Color c = g.getColor();
+        Color c1;
+        switch(confidentialityVerification) {
+        case PROVED_STRONG:
+            c1 = Color.green;
+            break;
+        case PROVED_FALSE:
+            c1 = Color.red;
+            break;
+        case PROVED_WEAK:
+            c1 = Color.orange;
+            break;
+	case NOT_PROVED:
+	    c1 = Color.gray; 
+	    break;
+        default:
+            return;
+        }
+
+        g.drawOval(_x+6, _y-10, 6, 9);
+        g.setColor(c1);
+        g.fillRect(_x+4, _y-7, 9, 7);
+        g.setColor(c);
+        g.drawRect(_x+4, _y-7, 9, 7);
+	if (confidentialityVerification == NOT_PROVED){
+	    g.drawString("?", _x+4, _y+2);
+	}
+
+    }
+    public boolean editOndoubleClick(JFrame frame) {
+        String oldValue = value;
+
+        JDialogPragma jdn = new JDialogPragma(frame, "Setting the pragma", value);
+        //jdn.setLocation(200, 150);
+        GraphicLib.centerOnParent(jdn);
+        jdn.show(); // blocked until dialog has been closed
+
+        String s = jdn.getText();
+        if ((s != null) && (s.length() > 0) && (!s.equals(oldValue))) {
+            String tmp = s;
+            setValue(s);
+            makeValue();
+            return true;
+        }
+        return false;
+    }
+
+    public TGComponent isOnMe(int x1, int y1) {
+        if (GraphicLib.isInRectangle(x1, y1, x, y, width, height)) {
+            return this;
+        }
+        return null;
+    }
+
+    public void rescale(double scaleFactor){
+        /*dlineHeight = (lineHeight + dlineHeight) / oldScaleFactor * scaleFactor;
+          lineHeight = (int)(dlineHeight);
+          dlineHeight = dlineHeight - lineHeight;
+          minHeight = lineHeight;*/
+
+        values = null;
+
+        super.rescale(scaleFactor);
+    }
+
+    public int getType() {
+        return TGComponentManager.PRAGMA;
+    }
+
+    protected String translateExtraParam() {
+        if (values == null) {
+            makeValue();
+        }
+        StringBuffer sb = new StringBuffer("<extraparam>\n");
+        for(int i=0; i<values.length; i++) {
+            sb.append("<Line value=\"");
+            sb.append(GTURTLEModeling.transformString(values[i]));
+            sb.append("\" />\n");
+        }
+        sb.append("</extraparam>\n");
+        return new String(sb);
+    }
+
+    public void loadExtraParam(NodeList nl, int decX, int decY, int decId) throws MalformedModelingException{
+        value = "";
+        values = null;
+        try {
+            NodeList nli;
+            Node n1, n2;
+            Element elt;
+            String s;
+
+            for(int i=0; i<nl.getLength(); i++) {
+                n1 = nl.item(i);
+                //System.out.println(n1);
+                if (n1.getNodeType() == Node.ELEMENT_NODE) {
+                    nli = n1.getChildNodes();
+                    for(int j=0; j<nli.getLength(); j++) {
+                        n2 = nli.item(j);
+                        //System.out.println(n2);
+                        if (n2.getNodeType() == Node.ELEMENT_NODE) {
+                            elt = (Element) n2;
+                            if (elt.getTagName().equals("Line")) {
+                                //System.out.println("Analyzing line");
+                                s = elt.getAttribute("value");
+                                if (s.equals("null")) {
+                                    s = "";
+                                }
+                                value += GTURTLEModeling.decodeString(s) + "\n";
+                            }
+                        }
+                    }
+                }
+            }
+
+        } catch (Exception e) {
+            throw new MalformedModelingException();
+        }
+    }
+}
-- 
GitLab