Browse Source

Merge branch 'release/10.0' of http://cloud.finedevelop.com:2015/scm/~neil/base-third into release/10.0

final/10.0.3
neil 6 years ago
parent
commit
c300ea27f0
  1. 9
      build.third_step2.gradle
  2. 7
      fine-hibernate/src/com/fr/third/org/hibernate/tuple/PojoInstantiator.java
  3. 40
      fine-hibernate/src/com/fr/third/org/hibernate/tuple/entity/DefaultEntityRegister.java
  4. 158
      fine-itext-old/src/com/fr/third/com/lowagie/text/Chunk.java
  5. 1568
      fine-itext-old/src/com/fr/third/com/lowagie/text/Font.java
  6. 689
      fine-itext-old/src/com/fr/third/com/lowagie/text/Image.java
  7. 399
      fine-itext-old/src/com/fr/third/com/lowagie/text/List.java
  8. 1032
      fine-itext-old/src/com/fr/third/com/lowagie/text/Paragraph.java
  9. 2
      fine-itext-old/src/com/fr/third/com/lowagie/text/factories/ElementFactory.java
  10. 200
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSS.java
  11. 105
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSSUtils.java
  12. 55
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/IndentAttribute.java
  13. 139
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/Markup.java
  14. 84
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/ParseIndentAttrUtils.java
  15. 4
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/WebColors.java
  16. 67
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/ChainedProperties.java
  17. 82
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/FactoryProperties.java
  18. 89
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HTMLWorker.java
  19. 45
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HtmlConstants.java
  20. 94
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncCell.java
  21. 110
      fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncTable.java
  22. 58
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/BorderStyle.java
  23. 539
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPCell.java
  24. 490
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPRow.java
  25. 1084
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPTable.java
  26. 54
      fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/TableProperties.java
  27. 4
      fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/text/RtfChunk.java
  28. 9
      fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/HTMLWorker.java
  29. 11
      fine-jackson/src/com/fr/third/fasterxml/jackson/databind/type/ClassFactory.java
  30. 18
      fine-jackson/src/com/fr/third/fasterxml/jackson/databind/type/TypeFactory.java
  31. BIN
      fine-sense4/lib/jna-3.2.2.jar
  32. 63
      fine-sense4/src/Sense4/Elite4.java
  33. 20
      fine-sense4/src/Sense4/EliteLockIO.java
  34. 277
      fine-sense4/src/Sense4/EliteLockIO32.java
  35. 274
      fine-sense4/src/Sense4/EliteLockIO64.java
  36. 65
      fine-sense4/src/Sense4/LockUtils.java
  37. 218
      fine-sense4/src/Sense4/Sense32.java
  38. 219
      fine-sense4/src/Sense4/Sense64.java
  39. 690
      fine-sense4/src/Sense4/sense4.h

9
build.third_step2.gradle

@ -18,12 +18,13 @@ def srcDir="."
// //
sourceSets{ sourceSets{
main{ main{
java{ java {
srcDirs=[ srcDirs = [
"${srcDir}/fine-aspectj/src", "${srcDir}/fine-aspectj/src",
"${srcDir}/fine-spring/src", "${srcDir}/fine-spring/src",
"${srcDir}/fine-sense4/src",
"${srcDir}/fine-spring/resources" "${srcDir}/fine-spring/resources"
] ]
} }
} }
@ -44,6 +45,7 @@ def branchName=buildDir.substring(buildDir.lastIndexOf (java.io.File.separator)+
dependencies{ dependencies{
compile fileTree(dir:"${srcDir}/fine-aspectj/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/fine-aspectj/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-spring/lib",include:'**/*.jar') compile fileTree(dir:"${srcDir}/fine-spring/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/fine-sense4/lib",include:'**/*.jar')
compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar') compile fileTree(dir:"${srcDir}/build/libs/",include:'**/*.jar')
compile "com.fr.third:fine-third:10.0-FEATURE-SNAPSHOT" compile "com.fr.third:fine-third:10.0-FEATURE-SNAPSHOT"
compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar') compile fileTree(dir:"../../finereport-lib-other/${branchName}",include:'**/*.jar')
@ -67,6 +69,7 @@ task copyFiles(type:Copy,dependsOn:'compileJava'){
println "------------------------------------------------copyfiles" println "------------------------------------------------copyfiles"
with dataContent.call("${srcDir}/fine-spring/src") with dataContent.call("${srcDir}/fine-spring/src")
with dataContent.call("${srcDir}/fine-spring/resources") with dataContent.call("${srcDir}/fine-spring/resources")
with dataContent.call("${srcDir}/fine-sense4/src")
into "${classesDir}" into "${classesDir}"
} }
} }

7
fine-hibernate/src/com/fr/third/org/hibernate/tuple/PojoInstantiator.java

@ -17,6 +17,7 @@ import com.fr.third.org.hibernate.internal.CoreLogging;
import com.fr.third.org.hibernate.internal.CoreMessageLogger; import com.fr.third.org.hibernate.internal.CoreMessageLogger;
import com.fr.third.org.hibernate.internal.util.ReflectHelper; import com.fr.third.org.hibernate.internal.util.ReflectHelper;
import com.fr.third.org.hibernate.mapping.Component; import com.fr.third.org.hibernate.mapping.Component;
import com.fr.third.org.hibernate.tuple.entity.DefaultEntityRegister;
/** /**
* Defines a POJO-based instantiator for use from the tuplizers. * Defines a POJO-based instantiator for use from the tuplizers.
@ -72,7 +73,11 @@ public class PojoInstantiator implements Instantiator, Serializable {
public Object instantiate() { public Object instantiate() {
if ( isAbstract ) { if ( isAbstract ) {
throw new InstantiationException( "Cannot instantiate abstract class or interface: ", mappedClass ); try {
return DefaultEntityRegister.getInstance().getDefaultEntityClass(mappedClass).newInstance();
} catch (Exception e) {
throw new InstantiationException("class not found: ", mappedClass);
}
} }
else if ( optimizer != null ) { else if ( optimizer != null ) {
return optimizer.newInstance(); return optimizer.newInstance();

40
fine-hibernate/src/com/fr/third/org/hibernate/tuple/entity/DefaultEntityRegister.java

@ -0,0 +1,40 @@
package com.fr.third.org.hibernate.tuple.entity;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
/**
* Created by Zed on 2018/11/1.
*/
public class DefaultEntityRegister {
private static volatile DefaultEntityRegister instance;
private static Map<Class, Class> MAP = new ConcurrentHashMap<Class, Class>();
public static DefaultEntityRegister getInstance() {
if (instance == null) {
synchronized (DefaultEntityRegister.class) {
if (instance == null) {
instance = new DefaultEntityRegister();
}
}
}
return instance;
}
private DefaultEntityRegister() {
}
public void registerDefaultClass(Class abstractEntityClass, Class defaultEntityClass) {
MAP.put(abstractEntityClass, defaultEntityClass);
}
public void removeDefaultClass(Class abstractEntityClass) {
MAP.remove(abstractEntityClass);
}
public Class getDefaultEntityClass(Class abstractEntityClass) {
return MAP.get(abstractEntityClass);
}
}

158
fine-itext-old/src/com/fr/third/com/lowagie/text/Chunk.java

@ -49,16 +49,18 @@
package com.fr.third.com.lowagie.text; package com.fr.third.com.lowagie.text;
import java.awt.Color;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
import com.fr.third.com.lowagie.text.pdf.HyphenationEvent; import com.fr.third.com.lowagie.text.pdf.HyphenationEvent;
import com.fr.third.com.lowagie.text.pdf.PdfAction; import com.fr.third.com.lowagie.text.pdf.PdfAction;
import com.fr.third.com.lowagie.text.pdf.PdfAnnotation; import com.fr.third.com.lowagie.text.pdf.PdfAnnotation;
import com.fr.third.com.lowagie.text.pdf.PdfContentByte; import com.fr.third.com.lowagie.text.pdf.PdfContentByte;
import com.fr.third.com.lowagie.text.pdf.draw.DrawInterface; import com.fr.third.com.lowagie.text.pdf.draw.DrawInterface;
import sun.font.FontDesignMetrics;
import java.awt.Color;
import java.awt.FontMetrics;
import java.net.URL;
import java.util.ArrayList;
import java.util.HashMap;
/** /**
* This is the smallest significant part of text that can be added to a * This is the smallest significant part of text that can be added to a
@ -122,7 +124,7 @@ public class Chunk implements Element {
/** /**
* A <CODE>Chunk</CODE> copy constructor. * A <CODE>Chunk</CODE> copy constructor.
* @param ck the <CODE>Chunk</CODE> to be copied * @param ck the <CODE>Chunk</CODE> to be copied
*/ */
public Chunk(Chunk ck) { public Chunk(Chunk ck) {
if (ck.content != null) { if (ck.content != null) {
content = new StringBuffer(ck.content.toString()); content = new StringBuffer(ck.content.toString());
@ -134,11 +136,11 @@ public class Chunk implements Element {
attributes = new HashMap(ck.attributes); attributes = new HashMap(ck.attributes);
} }
} }
/** /**
* Constructs a chunk of text with a certain content and a certain <CODE> * Constructs a chunk of text with a certain content and a certain <CODE>
* Font</CODE>. * Font</CODE>.
* *
* @param content * @param content
* the content * the content
* @param font * @param font
@ -152,7 +154,7 @@ public class Chunk implements Element {
/** /**
* Constructs a chunk of text with a certain content, without specifying a * Constructs a chunk of text with a certain content, without specifying a
* <CODE>Font</CODE>. * <CODE>Font</CODE>.
* *
* @param content * @param content
* the content * the content
*/ */
@ -162,7 +164,7 @@ public class Chunk implements Element {
/** /**
* Constructs a chunk of text with a char and a certain <CODE>Font</CODE>. * Constructs a chunk of text with a char and a certain <CODE>Font</CODE>.
* *
* @param c * @param c
* the content * the content
* @param font * @param font
@ -177,7 +179,7 @@ public class Chunk implements Element {
/** /**
* Constructs a chunk of text with a char, without specifying a <CODE>Font * Constructs a chunk of text with a char, without specifying a <CODE>Font
* </CODE>. * </CODE>.
* *
* @param c * @param c
* the content * the content
*/ */
@ -187,7 +189,7 @@ public class Chunk implements Element {
/** /**
* Constructs a chunk containing an <CODE>Image</CODE>. * Constructs a chunk containing an <CODE>Image</CODE>.
* *
* @param image * @param image
* the image * the image
* @param offsetX * @param offsetX
@ -208,7 +210,7 @@ public class Chunk implements Element {
* @since 2.1.2 * @since 2.1.2
*/ */
public static final String SEPARATOR = "SEPARATOR"; public static final String SEPARATOR = "SEPARATOR";
/** /**
* Creates a separator Chunk. * Creates a separator Chunk.
* Note that separator chunks can't be used in combination with tab chunks! * Note that separator chunks can't be used in combination with tab chunks!
@ -217,8 +219,8 @@ public class Chunk implements Element {
*/ */
public Chunk(DrawInterface separator) { public Chunk(DrawInterface separator) {
this(separator, false); this(separator, false);
} }
/** /**
* Creates a separator Chunk. * Creates a separator Chunk.
* Note that separator chunks can't be used in combination with tab chunks! * Note that separator chunks can't be used in combination with tab chunks!
@ -236,7 +238,7 @@ public class Chunk implements Element {
* @since 2.1.2 * @since 2.1.2
*/ */
public static final String TAB = "TAB"; public static final String TAB = "TAB";
/** /**
* Creates a tab Chunk. * Creates a tab Chunk.
* Note that separator chunks can't be used in combination with tab chunks! * Note that separator chunks can't be used in combination with tab chunks!
@ -247,7 +249,7 @@ public class Chunk implements Element {
public Chunk(DrawInterface separator, float tabPosition) { public Chunk(DrawInterface separator, float tabPosition) {
this(separator, tabPosition, false); this(separator, tabPosition, false);
} }
/** /**
* Creates a tab Chunk. * Creates a tab Chunk.
* Note that separator chunks can't be used in combination with tab chunks! * Note that separator chunks can't be used in combination with tab chunks!
@ -266,7 +268,7 @@ public class Chunk implements Element {
/** /**
* Constructs a chunk containing an <CODE>Image</CODE>. * Constructs a chunk containing an <CODE>Image</CODE>.
* *
* @param image * @param image
* the image * the image
* @param offsetX * @param offsetX
@ -277,7 +279,7 @@ public class Chunk implements Element {
* true if the leading has to be adapted to the image * true if the leading has to be adapted to the image
*/ */
public Chunk(Image image, float offsetX, float offsetY, public Chunk(Image image, float offsetX, float offsetY,
boolean changeLeading) { boolean changeLeading) {
this(OBJECT_REPLACEMENT_CHARACTER, new Font()); this(OBJECT_REPLACEMENT_CHARACTER, new Font());
setAttribute(IMAGE, new Object[] { image, new Float(offsetX), setAttribute(IMAGE, new Object[] { image, new Float(offsetX),
new Float(offsetY), Boolean.valueOf(changeLeading) }); new Float(offsetY), Boolean.valueOf(changeLeading) });
@ -288,7 +290,7 @@ public class Chunk implements Element {
/** /**
* Processes the element by adding it (or the different parts) to an <CODE> * Processes the element by adding it (or the different parts) to an <CODE>
* ElementListener</CODE>. * ElementListener</CODE>.
* *
* @param listener * @param listener
* an <CODE>ElementListener</CODE> * an <CODE>ElementListener</CODE>
* @return <CODE>true</CODE> if the element was processed successfully * @return <CODE>true</CODE> if the element was processed successfully
@ -303,7 +305,7 @@ public class Chunk implements Element {
/** /**
* Gets the type of the text element. * Gets the type of the text element.
* *
* @return a type * @return a type
*/ */
public int type() { public int type() {
@ -312,7 +314,7 @@ public class Chunk implements Element {
/** /**
* Gets all the chunks in this element. * Gets all the chunks in this element.
* *
* @return an <CODE>ArrayList</CODE> * @return an <CODE>ArrayList</CODE>
*/ */
public ArrayList getChunks() { public ArrayList getChunks() {
@ -325,7 +327,7 @@ public class Chunk implements Element {
/** /**
* appends some text to this <CODE>Chunk</CODE>. * appends some text to this <CODE>Chunk</CODE>.
* *
* @param string * @param string
* <CODE>String</CODE> * <CODE>String</CODE>
* @return a <CODE>StringBuffer</CODE> * @return a <CODE>StringBuffer</CODE>
@ -336,7 +338,7 @@ public class Chunk implements Element {
/** /**
* Sets the font of this <CODE>Chunk</CODE>. * Sets the font of this <CODE>Chunk</CODE>.
* *
* @param font * @param font
* a <CODE>Font</CODE> * a <CODE>Font</CODE>
*/ */
@ -348,7 +350,7 @@ public class Chunk implements Element {
/** /**
* Gets the font of this <CODE>Chunk</CODE>. * Gets the font of this <CODE>Chunk</CODE>.
* *
* @return a <CODE>Font</CODE> * @return a <CODE>Font</CODE>
*/ */
public Font getFont() { public Font getFont() {
@ -357,7 +359,7 @@ public class Chunk implements Element {
/** /**
* Returns the content of this <CODE>Chunk</CODE>. * Returns the content of this <CODE>Chunk</CODE>.
* *
* @return a <CODE>String</CODE> * @return a <CODE>String</CODE>
*/ */
public String getContent() { public String getContent() {
@ -366,7 +368,7 @@ public class Chunk implements Element {
/** /**
* Returns the content of this <CODE>Chunk</CODE>. * Returns the content of this <CODE>Chunk</CODE>.
* *
* @return a <CODE>String</CODE> * @return a <CODE>String</CODE>
*/ */
public String toString() { public String toString() {
@ -375,7 +377,7 @@ public class Chunk implements Element {
/** /**
* Checks is this <CODE>Chunk</CODE> is empty. * Checks is this <CODE>Chunk</CODE> is empty.
* *
* @return <CODE>false</CODE> if the Chunk contains other characters than * @return <CODE>false</CODE> if the Chunk contains other characters than
* space. * space.
*/ */
@ -387,23 +389,23 @@ public class Chunk implements Element {
/** /**
* Gets the width of the Chunk in points. * Gets the width of the Chunk in points.
* *
* @return a width in points * @return a width in points
*/ */
public float getWidthPoint() { public float getWidthPoint() {
if (getImage() != null) { if (getImage() != null) {
return getImage().getScaledWidth(); return getImage().getScaledWidth();
} }
return font.getCalculatedBaseFont(true).getWidthPoint(getContent(), java.awt.Font awtFont = new java.awt.Font(font.getFontName(), font.getStyle(), (int)font.getSize());
font.getCalculatedSize()) FontMetrics metrics = FontDesignMetrics.getMetrics(awtFont);
* getHorizontalScaling(); return metrics.stringWidth(getContent())* getHorizontalScaling();
} }
// attributes // attributes
/** /**
* Checks the attributes of this <CODE>Chunk</CODE>. * Checks the attributes of this <CODE>Chunk</CODE>.
* *
* @return false if there aren't any. * @return false if there aren't any.
*/ */
@ -415,7 +417,7 @@ public class Chunk implements Element {
* Gets the attributes for this <CODE>Chunk</CODE>. * Gets the attributes for this <CODE>Chunk</CODE>.
* <P> * <P>
* It may be null. * It may be null.
* *
* @return the attributes for this <CODE>Chunk</CODE> * @return the attributes for this <CODE>Chunk</CODE>
*/ */
@ -433,7 +435,7 @@ public class Chunk implements Element {
/** /**
* Sets an arbitrary attribute. * Sets an arbitrary attribute.
* *
* @param name * @param name
* the key for the attribute * the key for the attribute
* @param obj * @param obj
@ -441,7 +443,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
private Chunk setAttribute(String name, Object obj) { public Chunk setAttribute(String name, Object obj) {
if (attributes == null) if (attributes == null)
attributes = new HashMap(); attributes = new HashMap();
attributes.put(name, obj); attributes.put(name, obj);
@ -456,7 +458,7 @@ public class Chunk implements Element {
/** /**
* Sets the text horizontal scaling. A value of 1 is normal and a value of * Sets the text horizontal scaling. A value of 1 is normal and a value of
* 0.5f shrinks the text to half it's width. * 0.5f shrinks the text to half it's width.
* *
* @param scale * @param scale
* the horizontal scaling factor * the horizontal scaling factor
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -467,7 +469,7 @@ public class Chunk implements Element {
/** /**
* Gets the horizontal scaling. * Gets the horizontal scaling.
* *
* @return a percentage in float * @return a percentage in float
*/ */
public float getHorizontalScaling() { public float getHorizontalScaling() {
@ -487,7 +489,7 @@ public class Chunk implements Element {
* Actually, the line can be anywhere vertically and has always the <CODE> * Actually, the line can be anywhere vertically and has always the <CODE>
* Chunk</CODE> width. Multiple call to this method will produce multiple * Chunk</CODE> width. Multiple call to this method will produce multiple
* lines. * lines.
* *
* @param thickness * @param thickness
* the absolute thickness of the line * the absolute thickness of the line
* @param yPosition * @param yPosition
@ -504,7 +506,7 @@ public class Chunk implements Element {
* Actually, the line can be anywhere vertically and has always the <CODE> * Actually, the line can be anywhere vertically and has always the <CODE>
* Chunk</CODE> width. Multiple call to this method will produce multiple * Chunk</CODE> width. Multiple call to this method will produce multiple
* lines. * lines.
* *
* @param color * @param color
* the color of the line or <CODE>null</CODE> to follow the * the color of the line or <CODE>null</CODE> to follow the
* text color * text color
@ -523,7 +525,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setUnderline(Color color, float thickness, float thicknessMul, public Chunk setUnderline(Color color, float thickness, float thicknessMul,
float yPosition, float yPositionMul, int cap) { float yPosition, float yPositionMul, int cap) {
if (attributes == null) if (attributes == null)
attributes = new HashMap(); attributes = new HashMap();
Object obj[] = { Object obj[] = {
@ -533,16 +535,16 @@ public class Chunk implements Element {
obj); obj);
return setAttribute(UNDERLINE, unders); return setAttribute(UNDERLINE, unders);
} }
/** Key for sub/superscript. */ /** Key for sub/superscript. */
public static final String SUBSUPSCRIPT = "SUBSUPSCRIPT"; public static final String SUBSUPSCRIPT = "SUBSUPSCRIPT";
/** /**
* Sets the text displacement relative to the baseline. Positive values rise * Sets the text displacement relative to the baseline. Positive values rise
* the text, negative values lower the text. * the text, negative values lower the text.
* <P> * <P>
* It can be used to implement sub/superscript. * It can be used to implement sub/superscript.
* *
* @param rise * @param rise
* the displacement in points * the displacement in points
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -554,7 +556,7 @@ public class Chunk implements Element {
/** /**
* Gets the text displacement relative to the baseline. * Gets the text displacement relative to the baseline.
* *
* @return a displacement in points * @return a displacement in points
*/ */
public float getTextRise() { public float getTextRise() {
@ -571,7 +573,7 @@ public class Chunk implements Element {
/** /**
* Skews the text to simulate italic and other effects. Try <CODE>alpha=0 * Skews the text to simulate italic and other effects. Try <CODE>alpha=0
* </CODE> and <CODE>beta=12</CODE>. * </CODE> and <CODE>beta=12</CODE>.
* *
* @param alpha * @param alpha
* the first angle in degrees * the first angle in degrees
* @param beta * @param beta
@ -589,19 +591,19 @@ public class Chunk implements Element {
/** /**
* Sets the color of the background <CODE>Chunk</CODE>. * Sets the color of the background <CODE>Chunk</CODE>.
* *
* @param color * @param background
* the color of the background * the color of the background
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setBackground(Color color) { public Chunk setBackground(String background) {
return setBackground(color, 0, 0, 0, 0); return setBackground(background, 0, 0, 0, 0);
} }
/** /**
* Sets the color and the size of the background <CODE>Chunk</CODE>. * Sets the color and the size of the background <CODE>Chunk</CODE>.
* *
* @param color * @param background
* the color of the background * the color of the background
* @param extraLeft * @param extraLeft
* increase the size of the rectangle in the left * increase the size of the rectangle in the left
@ -613,9 +615,9 @@ public class Chunk implements Element {
* increase the size of the rectangle in the top * increase the size of the rectangle in the top
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setBackground(Color color, float extraLeft, float extraBottom, public Chunk setBackground(String background, float extraLeft, float extraBottom,
float extraRight, float extraTop) { float extraRight, float extraTop) {
return setAttribute(BACKGROUND, new Object[] { color, return setAttribute(BACKGROUND, new Object[] { background,
new float[] { extraLeft, extraBottom, extraRight, extraTop } }); new float[] { extraLeft, extraBottom, extraRight, extraTop } });
} }
@ -625,7 +627,7 @@ public class Chunk implements Element {
/** /**
* Sets the text rendering mode. It can outline text, simulate bold and make * Sets the text rendering mode. It can outline text, simulate bold and make
* text invisible. * text invisible.
* *
* @param mode * @param mode
* the text rendering mode. It can be <CODE> * the text rendering mode. It can be <CODE>
* PdfContentByte.TEXT_RENDER_MODE_FILL</CODE>,<CODE> * PdfContentByte.TEXT_RENDER_MODE_FILL</CODE>,<CODE>
@ -642,7 +644,7 @@ public class Chunk implements Element {
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
public Chunk setTextRenderMode(int mode, float strokeWidth, public Chunk setTextRenderMode(int mode, float strokeWidth,
Color strokeColor) { Color strokeColor) {
return setAttribute(TEXTRENDERMODE, new Object[] { new Integer(mode), return setAttribute(TEXTRENDERMODE, new Object[] { new Integer(mode),
new Float(strokeWidth), strokeColor }); new Float(strokeWidth), strokeColor });
} }
@ -652,7 +654,7 @@ public class Chunk implements Element {
/** /**
* Sets the split characters. * Sets the split characters.
* *
* @param splitCharacter * @param splitCharacter
* the <CODE>SplitCharacter</CODE> interface * the <CODE>SplitCharacter</CODE> interface
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -664,10 +666,10 @@ public class Chunk implements Element {
/** Key for hyphenation. */ /** Key for hyphenation. */
public static final String HYPHENATION = "HYPHENATION"; public static final String HYPHENATION = "HYPHENATION";
/** /**
* sets the hyphenation engine to this <CODE>Chunk</CODE>. * sets the hyphenation engine to this <CODE>Chunk</CODE>.
* *
* @param hyphenation * @param hyphenation
* the hyphenation engine * the hyphenation engine
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -681,7 +683,7 @@ public class Chunk implements Element {
/** /**
* Sets a goto for a remote destination for this <CODE>Chunk</CODE>. * Sets a goto for a remote destination for this <CODE>Chunk</CODE>.
* *
* @param filename * @param filename
* the file name of the destination document * the file name of the destination document
* @param name * @param name
@ -695,7 +697,7 @@ public class Chunk implements Element {
/** /**
* Sets a goto for a remote destination for this <CODE>Chunk</CODE>. * Sets a goto for a remote destination for this <CODE>Chunk</CODE>.
* *
* @param filename * @param filename
* the file name of the destination document * the file name of the destination document
* @param page * @param page
@ -710,12 +712,12 @@ public class Chunk implements Element {
/** Key for local goto. */ /** Key for local goto. */
public static final String LOCALGOTO = "LOCALGOTO"; public static final String LOCALGOTO = "LOCALGOTO";
/** /**
* Sets a local goto for this <CODE>Chunk</CODE>. * Sets a local goto for this <CODE>Chunk</CODE>.
* <P> * <P>
* There must be a local destination matching the name. * There must be a local destination matching the name.
* *
* @param name * @param name
* the name of the destination to go to * the name of the destination to go to
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -730,7 +732,7 @@ public class Chunk implements Element {
/** /**
* Sets a local destination for this <CODE>Chunk</CODE>. * Sets a local destination for this <CODE>Chunk</CODE>.
* *
* @param name * @param name
* the name for this destination * the name for this destination
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -746,7 +748,7 @@ public class Chunk implements Element {
* Sets the generic tag <CODE>Chunk</CODE>. * Sets the generic tag <CODE>Chunk</CODE>.
* <P> * <P>
* The text for this tag can be retrieved with <CODE>PdfPageEvent</CODE>. * The text for this tag can be retrieved with <CODE>PdfPageEvent</CODE>.
* *
* @param text * @param text
* the text for the tag * the text for the tag
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -755,13 +757,13 @@ public class Chunk implements Element {
public Chunk setGenericTag(String text) { public Chunk setGenericTag(String text) {
return setAttribute(GENERICTAG, text); return setAttribute(GENERICTAG, text);
} }
/** Key for image. */ /** Key for image. */
public static final String IMAGE = "IMAGE"; public static final String IMAGE = "IMAGE";
/** /**
* Returns the image. * Returns the image.
* *
* @return the image * @return the image
*/ */
@ -775,13 +777,13 @@ public class Chunk implements Element {
return (Image) obj[0]; return (Image) obj[0];
} }
} }
/** Key for Action. */ /** Key for Action. */
public static final String ACTION = "ACTION"; public static final String ACTION = "ACTION";
/** /**
* Sets an action for this <CODE>Chunk</CODE>. * Sets an action for this <CODE>Chunk</CODE>.
* *
* @param action * @param action
* the action * the action
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -793,7 +795,7 @@ public class Chunk implements Element {
/** /**
* Sets an anchor for this <CODE>Chunk</CODE>. * Sets an anchor for this <CODE>Chunk</CODE>.
* *
* @param url * @param url
* the <CODE>URL</CODE> to link to * the <CODE>URL</CODE> to link to
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -805,7 +807,7 @@ public class Chunk implements Element {
/** /**
* Sets an anchor for this <CODE>Chunk</CODE>. * Sets an anchor for this <CODE>Chunk</CODE>.
* *
* @param url * @param url
* the url to link to * the url to link to
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -814,13 +816,13 @@ public class Chunk implements Element {
public Chunk setAnchor(String url) { public Chunk setAnchor(String url) {
return setAttribute(ACTION, new PdfAction(url)); return setAttribute(ACTION, new PdfAction(url));
} }
/** Key for newpage. */ /** Key for newpage. */
public static final String NEWPAGE = "NEWPAGE"; public static final String NEWPAGE = "NEWPAGE";
/** /**
* Sets a new page tag.. * Sets a new page tag..
* *
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
*/ */
@ -833,7 +835,7 @@ public class Chunk implements Element {
/** /**
* Sets a generic annotation to this <CODE>Chunk</CODE>. * Sets a generic annotation to this <CODE>Chunk</CODE>.
* *
* @param annotation * @param annotation
* the annotation * the annotation
* @return this <CODE>Chunk</CODE> * @return this <CODE>Chunk</CODE>
@ -841,9 +843,9 @@ public class Chunk implements Element {
public Chunk setAnnotation(PdfAnnotation annotation) { public Chunk setAnnotation(PdfAnnotation annotation) {
return setAttribute(PDFANNOTATION, annotation); return setAttribute(PDFANNOTATION, annotation);
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
@ -851,7 +853,7 @@ public class Chunk implements Element {
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {

1568
fine-itext-old/src/com/fr/third/com/lowagie/text/Font.java

File diff suppressed because it is too large Load Diff

689
fine-itext-old/src/com/fr/third/com/lowagie/text/Image.java

File diff suppressed because it is too large Load Diff

399
fine-itext-old/src/com/fr/third/com/lowagie/text/List.java

@ -49,11 +49,11 @@
package com.fr.third.com.lowagie.text; package com.fr.third.com.lowagie.text;
import com.fr.third.com.lowagie.text.factories.RomanAlphabetFactory;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Iterator; import java.util.Iterator;
import com.fr.third.com.lowagie.text.factories.RomanAlphabetFactory;
/** /**
* A <CODE>List</CODE> contains several <CODE>ListItem</CODE>s. * A <CODE>List</CODE> contains several <CODE>ListItem</CODE>s.
* <P> * <P>
@ -100,38 +100,47 @@ import com.fr.third.com.lowagie.text.factories.RomanAlphabetFactory;
*/ */
public class List implements TextElementArray { public class List implements TextElementArray {
// constants // constants
/** a possible value for the numbered parameter */ /** a possible value for the numbered parameter */
public static final boolean ORDERED = true; public static final boolean ORDERED = true;
/** a possible value for the numbered parameter */ /** a possible value for the numbered parameter */
public static final boolean UNORDERED = false; public static final boolean UNORDERED = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean NUMERICAL = false; public static final boolean NUMERICAL = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean ALPHABETICAL = true; public static final boolean ALPHABETICAL = true;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean UPPERCASE = false; public static final boolean UPPERCASE = false;
/** a possible value for the lettered parameter */ /** a possible value for the lettered parameter */
public static final boolean LOWERCASE = true; public static final boolean LOWERCASE = true;
// member variables // member variables
/** This is the <CODE>ArrayList</CODE> containing the different <CODE>ListItem</CODE>s. */ /** This is the <CODE>ArrayList</CODE> containing the different <CODE>ListItem</CODE>s. */
protected ArrayList list = new ArrayList(); protected ArrayList list = new ArrayList();
/** Indicates if the list has to be numbered. */ /** Indicates if the list has to be numbered. */
protected boolean numbered = false; protected boolean numbered = false;
/** Indicates if the listsymbols are numerical or alphabetical. */ /** Indicates if the listsymbols are numerical or alphabetical. */
protected boolean lettered = false; protected boolean lettered = false;
/** Indicates if the listsymbols are lowercase or uppercase. */ /** Indicates if the listsymbols are lowercase or uppercase. */
protected boolean lowercase = false; protected boolean lowercase = false;
public ArrayList getList() {
return list;
}
public void setList(ArrayList list) {
this.list = list;
}
/** Indicates if the indentation has to be set automatically. */ /** Indicates if the indentation has to be set automatically. */
protected boolean autoindent = false; protected boolean autoindent = false;
/** Indicates if the indentation of all the items has to be aligned. */ /** Indicates if the indentation of all the items has to be aligned. */
protected boolean alignindent = false; protected boolean alignindent = false;
/** This variable indicates the first number of a numbered list. */ /** This variable indicates the first number of a numbered list. */
protected int first = 1; protected int first = 1;
/** This is the listsymbol of a list that is not numbered. */ /** This is the listsymbol of a list that is not numbered. */
@ -142,54 +151,54 @@ public class List implements TextElementArray {
*/ */
protected String preSymbol = ""; protected String preSymbol = "";
/** /**
* In case you are using numbered/lettered lists, this String is added after the number/letter. * In case you are using numbered/lettered lists, this String is added after the number/letter.
* @since iText 2.1.1 * @since iText 2.1.1
*/ */
protected String postSymbol = ". "; protected String postSymbol = ". ";
/** The indentation of this list on the left side. */ /** The indentation of this list on the left side. */
protected float indentationLeft = 0; protected float indentationLeft = 0;
/** The indentation of this list on the right side. */ /** The indentation of this list on the right side. */
protected float indentationRight = 0; protected float indentationRight = 0;
/** The indentation of the listitems. */ /** The indentation of the listitems. */
protected float symbolIndent = 0; protected float symbolIndent = 0;
// constructors // constructors
/** Constructs a <CODE>List</CODE>. */ /** Constructs a <CODE>List</CODE>. */
public List() { public List() {
this(false, false); this(false, false);
} }
/** /**
* Constructs a <CODE>List</CODE> with a specific symbol indentation. * Constructs a <CODE>List</CODE> with a specific symbol indentation.
* @param symbolIndent the symbol indentation * @param symbolIndent the symbol indentation
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public List(float symbolIndent) { public List(float symbolIndent) {
this.symbolIndent = symbolIndent; this.symbolIndent = symbolIndent;
} }
/** /**
* Constructs a <CODE>List</CODE>. * Constructs a <CODE>List</CODE>.
* @param numbered a boolean * @param numbered a boolean
*/ */
public List(boolean numbered) { public List(boolean numbered) {
this(numbered, false); this(numbered, false);
} }
/** /**
* Constructs a <CODE>List</CODE>. * Constructs a <CODE>List</CODE>.
* @param numbered a boolean * @param numbered a boolean
* @param lettered has the list to be 'numbered' with letters * @param lettered has the list to be 'numbered' with letters
*/ */
public List(boolean numbered, boolean lettered) { public List(boolean numbered, boolean lettered) {
this.numbered = numbered; this.numbered = numbered;
this.lettered = lettered; this.lettered = lettered;
this.autoindent = true; this.autoindent = true;
this.alignindent = true; this.alignindent = true;
} }
/** /**
* Constructs a <CODE>List</CODE>. * Constructs a <CODE>List</CODE>.
* <P> * <P>
@ -203,7 +212,7 @@ public class List implements TextElementArray {
public List(boolean numbered, float symbolIndent) { public List(boolean numbered, float symbolIndent) {
this(numbered, false, symbolIndent); this(numbered, false, symbolIndent);
} }
/** /**
* Creates a list * Creates a list
* @param numbered has the list to be numbered? * @param numbered has the list to be numbered?
@ -215,9 +224,9 @@ public class List implements TextElementArray {
this.lettered = lettered; this.lettered = lettered;
this.symbolIndent = symbolIndent; this.symbolIndent = symbolIndent;
} }
// implementation of the Element-methods // implementation of the Element-methods
/** /**
* Processes the element by adding it (or the different parts) to an * Processes the element by adding it (or the different parts) to an
* <CODE>ElementListener</CODE>. * <CODE>ElementListener</CODE>.
@ -236,16 +245,16 @@ public class List implements TextElementArray {
return false; return false;
} }
} }
/** /**
* Gets the type of the text element. * Gets the type of the text element.
* *
* @return a type * @return a type
*/ */
public int type() { public int type() {
return Element.LIST; return LIST;
} }
/** /**
* Gets all the chunks in this element. * Gets all the chunks in this element.
* *
@ -258,9 +267,9 @@ public class List implements TextElementArray {
} }
return tmp; return tmp;
} }
// methods to set the membervariables // methods to set the membervariables
/** /**
* Adds an <CODE>Object</CODE> to the <CODE>List</CODE>. * Adds an <CODE>Object</CODE> to the <CODE>List</CODE>.
* *
@ -287,8 +296,8 @@ public class List implements TextElementArray {
item.setIndentationRight(0); item.setIndentationRight(0);
return list.add(item); return list.add(item);
} }
else if (o instanceof List) { else if (o instanceof com.fr.third.com.lowagie.text.List) {
List nested = (List) o; com.fr.third.com.lowagie.text.List nested = (com.fr.third.com.lowagie.text.List) o;
nested.setIndentationLeft(nested.getIndentationLeft() + symbolIndent); nested.setIndentationLeft(nested.getIndentationLeft() + symbolIndent);
first--; first--;
return list.add(nested); return list.add(nested);
@ -298,63 +307,63 @@ public class List implements TextElementArray {
} }
return false; return false;
} }
// extra methods // extra methods
/** Makes sure all the items in the list have the same indentation. */ /** Makes sure all the items in the list have the same indentation. */
public void normalizeIndentation() { public void normalizeIndentation() {
float max = 0; float max = 0;
Element o; Element o;
for (Iterator i = list.iterator(); i.hasNext(); ) { for (Iterator i = list.iterator(); i.hasNext(); ) {
o = (Element)i.next(); o = (Element)i.next();
if (o instanceof ListItem) { if (o instanceof ListItem) {
max = Math.max(max, ((ListItem)o).getIndentationLeft()); max = Math.max(max, ((ListItem)o).getIndentationLeft());
} }
} }
for (Iterator i = list.iterator(); i.hasNext(); ) { for (Iterator i = list.iterator(); i.hasNext(); ) {
o = (Element)i.next(); o = (Element)i.next();
if (o instanceof ListItem) { if (o instanceof ListItem) {
((ListItem)o).setIndentationLeft(max); ((ListItem)o).setIndentationLeft(max);
} }
} }
} }
// setters // setters
/** /**
* @param numbered the numbered to set * @param numbered the numbered to set
*/ */
public void setNumbered(boolean numbered) { public void setNumbered(boolean numbered) {
this.numbered = numbered; this.numbered = numbered;
} }
/** /**
* @param lettered the lettered to set * @param lettered the lettered to set
*/ */
public void setLettered(boolean lettered) { public void setLettered(boolean lettered) {
this.lettered = lettered; this.lettered = lettered;
} }
/** /**
* @param uppercase the uppercase to set * @param uppercase the uppercase to set
*/ */
public void setLowercase(boolean uppercase) { public void setLowercase(boolean uppercase) {
this.lowercase = uppercase; this.lowercase = uppercase;
} }
/** /**
* @param autoindent the autoindent to set * @param autoindent the autoindent to set
*/ */
public void setAutoindent(boolean autoindent) { public void setAutoindent(boolean autoindent) {
this.autoindent = autoindent; this.autoindent = autoindent;
} }
/** /**
* @param alignindent the alignindent to set * @param alignindent the alignindent to set
*/ */
public void setAlignindent(boolean alignindent) { public void setAlignindent(boolean alignindent) {
this.alignindent = alignindent; this.alignindent = alignindent;
} }
/** /**
* Sets the number that has to come first in the list. * Sets the number that has to come first in the list.
* *
@ -363,7 +372,7 @@ public class List implements TextElementArray {
public void setFirst(int first) { public void setFirst(int first) {
this.first = first; this.first = first;
} }
/** /**
* Sets the listsymbol. * Sets the listsymbol.
* *
@ -372,7 +381,7 @@ public class List implements TextElementArray {
public void setListSymbol(Chunk symbol) { public void setListSymbol(Chunk symbol) {
this.symbol = symbol; this.symbol = symbol;
} }
/** /**
* Sets the listsymbol. * Sets the listsymbol.
* <P> * <P>
@ -383,7 +392,7 @@ public class List implements TextElementArray {
public void setListSymbol(String symbol) { public void setListSymbol(String symbol) {
this.symbol = new Chunk(symbol); this.symbol = new Chunk(symbol);
} }
/** /**
* Sets the indentation of this paragraph on the left side. * Sets the indentation of this paragraph on the left side.
* *
@ -392,7 +401,7 @@ public class List implements TextElementArray {
public void setIndentationLeft(float indentation) { public void setIndentationLeft(float indentation) {
this.indentationLeft = indentation; this.indentationLeft = indentation;
} }
/** /**
* Sets the indentation of this paragraph on the right side. * Sets the indentation of this paragraph on the right side.
* *
@ -402,15 +411,15 @@ public class List implements TextElementArray {
this.indentationRight = indentation; this.indentationRight = indentation;
} }
/** /**
* @param symbolIndent the symbolIndent to set * @param symbolIndent the symbolIndent to set
*/ */
public void setSymbolIndent(float symbolIndent) { public void setSymbolIndent(float symbolIndent) {
this.symbolIndent = symbolIndent; this.symbolIndent = symbolIndent;
} }
// methods to retrieve information // methods to retrieve information
/** /**
* Gets all the items in the list. * Gets all the items in the list.
* *
@ -419,7 +428,7 @@ public class List implements TextElementArray {
public ArrayList getItems() { public ArrayList getItems() {
return list; return list;
} }
/** /**
* Gets the size of the list. * Gets the size of the list.
* *
@ -431,11 +440,11 @@ public class List implements TextElementArray {
/** /**
* Returns <CODE>true</CODE> if the list is empty. * Returns <CODE>true</CODE> if the list is empty.
* *
* @return <CODE>true</CODE> if the list is empty * @return <CODE>true</CODE> if the list is empty
*/ */
public boolean isEmpty() { public boolean isEmpty() {
return list.isEmpty(); return list.isEmpty();
} }
/** /**
@ -450,14 +459,14 @@ public class List implements TextElementArray {
ListItem item = (ListItem) list.get(0); ListItem item = (ListItem) list.get(0);
return item.getTotalLeading(); return item.getTotalLeading();
} }
// getters // getters
/** /**
* Checks if the list is numbered. * Checks if the list is numbered.
* @return <CODE>true</CODE> if the list is numbered, <CODE>false</CODE> otherwise. * @return <CODE>true</CODE> if the list is numbered, <CODE>false</CODE> otherwise.
*/ */
public boolean isNumbered() { public boolean isNumbered() {
return numbered; return numbered;
} }
@ -477,112 +486,112 @@ public class List implements TextElementArray {
public boolean isLowercase() { public boolean isLowercase() {
return lowercase; return lowercase;
} }
/** /**
* Checks if the indentation of list items is done automatically. * Checks if the indentation of list items is done automatically.
* @return the autoindent * @return the autoindent
*/ */
public boolean isAutoindent() { public boolean isAutoindent() {
return autoindent; return autoindent;
} }
/** /**
* Checks if all the listitems should be aligned. * Checks if all the listitems should be aligned.
* @return the alignindent * @return the alignindent
*/ */
public boolean isAlignindent() { public boolean isAlignindent() {
return alignindent; return alignindent;
} }
/** /**
* Gets the first number . * Gets the first number .
* @return a number * @return a number
*/ */
public int getFirst() { public int getFirst() {
return first; return first;
} }
/** /**
* Gets the Chunk containing the symbol. * Gets the Chunk containing the symbol.
* @return a Chunk with a symbol * @return a Chunk with a symbol
*/ */
public Chunk getSymbol() { public Chunk getSymbol() {
return symbol; return symbol;
} }
/** /**
* Gets the indentation of this paragraph on the left side. * Gets the indentation of this paragraph on the left side.
* @return the indentation * @return the indentation
*/ */
public float getIndentationLeft() { public float getIndentationLeft() {
return indentationLeft; return indentationLeft;
} }
/** /**
* Gets the indentation of this paragraph on the right side. * Gets the indentation of this paragraph on the right side.
* @return the indentation * @return the indentation
*/ */
public float getIndentationRight() { public float getIndentationRight() {
return indentationRight; return indentationRight;
} }
/** /**
* Gets the symbol indentation. * Gets the symbol indentation.
* @return the symbol indentation * @return the symbol indentation
*/ */
public float getSymbolIndent() { public float getSymbolIndent() {
return symbolIndent; return symbolIndent;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
return true; return true;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {
return true; return true;
} }
/** /**
* Returns the String that is after a number or letter in the list symbol. * Returns the String that is after a number or letter in the list symbol.
* @return the String that is after a number or letter in the list symbol * @return the String that is after a number or letter in the list symbol
* @since iText 2.1.1 * @since iText 2.1.1
*/ */
public String getPostSymbol() { public String getPostSymbol() {
return postSymbol; return postSymbol;
} }
/** /**
* Sets the String that has to be added after a number or letter in the list symbol. * Sets the String that has to be added after a number or letter in the list symbol.
* @since iText 2.1.1 * @since iText 2.1.1
* @param postSymbol the String that has to be added after a number or letter in the list symbol. * @param postSymbol the String that has to be added after a number or letter in the list symbol.
*/ */
public void setPostSymbol(String postSymbol) { public void setPostSymbol(String postSymbol) {
this.postSymbol = postSymbol; this.postSymbol = postSymbol;
} }
/** /**
* Returns the String that is before a number or letter in the list symbol. * Returns the String that is before a number or letter in the list symbol.
* @return the String that is before a number or letter in the list symbol * @return the String that is before a number or letter in the list symbol
* @since iText 2.1.1 * @since iText 2.1.1
*/ */
public String getPreSymbol() { public String getPreSymbol() {
return preSymbol; return preSymbol;
} }
/** /**
* Sets the String that has to be added before a number or letter in the list symbol. * Sets the String that has to be added before a number or letter in the list symbol.
* @since iText 2.1.1 * @since iText 2.1.1
* @param preSymbol the String that has to be added before a number or letter in the list symbol. * @param preSymbol the String that has to be added before a number or letter in the list symbol.
*/ */
public void setPreSymbol(String preSymbol) { public void setPreSymbol(String preSymbol) {
this.preSymbol = preSymbol; this.preSymbol = preSymbol;
} }
} }

1032
fine-itext-old/src/com/fr/third/com/lowagie/text/Paragraph.java

File diff suppressed because it is too large Load Diff

2
fine-itext-old/src/com/fr/third/com/lowagie/text/factories/ElementFactory.java

@ -135,7 +135,7 @@ public class ElementFactory {
} }
value = attributes.getProperty(ElementTags.BACKGROUNDCOLOR); value = attributes.getProperty(ElementTags.BACKGROUNDCOLOR);
if (value != null) { if (value != null) {
chunk.setBackground(Markup.decodeColor(value)); chunk.setBackground(value);
} }
return chunk; return chunk;
} }

200
fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSS.java

@ -0,0 +1,200 @@
package com.fr.third.com.lowagie.text.html;
/**
* @author kerry
* @date 2018/5/11
*/
public class CSS {
public final class Value {
private Value(){};
public static final String THIN = "thin";
public static final String MEDIUM = "medium";
public static final String THICK = "thick";
public static final String NONE = "none";
public static final String HIDDEN = "hidden";
public static final String DOTTED = "dotted";
public static final String DASHED = "dashed";
public static final String SOLID = "solid";
public static final String DOUBLE = "double";
public static final String GROOVE = "groove";
public static final String RIDGE = "ridge";
public static final String INSET = "inset";
public static final String OUTSET = "outset";
public static final String LEFT = "left";
public static final String CENTER = "center";
public static final String JUSTIFY = "justify";
public static final String BOTTOM = "bottom";
public static final String TOP = "top";
public static final String RIGHT = "right";
public static final String REPEAT = "repeat";
public static final String NO_REPEAT = "no-repeat";
public static final String REPEAT_X = "repeat-x";
public static final String REPEAT_Y = "repeat-y";
public static final String FIXED = "fixed";
public static final String SCROLL = "scroll";
public static final String DISC = "disc";
public static final String SQUARE = "square";
public static final String CIRCLE = "circle";
public static final String DECIMAL = "decimal";
public static final String LOWER_ROMAN = "lower-roman";
public static final String UPPER_ROMAN = "upper-roman";
public static final String LOWER_GREEK = "lower-greek";
public static final String UPPER_GREEK = "upper-greek";
public static final String LOWER_ALPHA = "lower-alpha";
public static final String UPPER_ALPHA = "upper-alpha";
public static final String LOWER_LATIN = "lower-latin";
public static final String UPPER_LATIN = "upper-latin";
public static final String INSIDE = "inside";
public static final String OUTSIDE = "outside";
public static final String INHERIT = "inherit";
public static final String UNDERLINE = "underline";
public static final String BOLD = "bold";
public static final String ITALIC = "italic";
public static final String OBLIQUE = "oblique";
public static final String SUPER = "super";
public static final String SUB = "sub";
public static final String TEXT_TOP = "text-top";
public static final String TEXT_BOTTOM = "text-bottom";
public static final String LINE_THROUGH = "line-through";
public static final String RELATIVE = "relative";
public static final String HIDE = "hide";
public static final String XX_SMALL = "xx-small";
public static final String X_SMALL = "x-small";
public static final String SMALL = "small";
public static final String LARGE = "large";
public static final String X_LARGE = "x-large";
public static final String XX_LARGE = "xx-large";
public static final String SMALLER = "smaller";
public static final String LARGER = "larger";
public static final String PX = "px";
public static final String IN = "in";
public static final String CM = "cm";
public static final String MM = "mm";
public static final String PT = "pt";
public static final String PC = "pc";
public static final String PERCENTAGE = "%";
public static final String EM = "em";
public static final String EX = "ex";
public static final String ALWAYS = "always";
public static final String AVOID = "avoid";
public static final String ABSOLUTE = "absolute";
public static final String AUTO = "auto";
public static final String INLINE = "inline";
public static final String BLOCK = "block";
public static final String SEPARATE = "separate";
public static final String COLLAPSE = "collapse";
public static final String RTL = "rtl";
public static final String LTR = "ltr";
public static final String INLINE_BLOCK = "inline-block";
public static final String INLINE_TABLE = "inline-table";
public static final String LIST_ITEM = "list-item";
public static final String RUN_IN = "run-in";
public static final String TABLE = "table";
public static final String TABLE_CAPTION = "table-caption";
public static final String TABLE_CELL = "table-cell";
public static final String TABLE_COLUMN_GROUP = "table-column-group";
public static final String TABLE_COLUMN = "table-column";
public static final String TABLE_FOOTER_GROUP = "table-footer-group";
public static final String TABLE_HEADER_GROUP = "table-header-group";
public static final String TABLE_ROW = "table-row";
public static final String TABLE_ROW_GROUP = "table-row-group";
}
public final class Property {
private Property() {};
public static final String BACKGROUND = "background";
public static final String BACKGROUND_IMAGE = "background-image";
public static final String BACKGROUND_REPEAT = "background-repeat";
public static final String BACKGROUND_ATTACHMENT = "background-attachment";
public static final String BACKGROUND_POSITION = "background-position";
public static final String BACKGROUND_COLOR = "background-color";
public static final String BACKGROUND_SIZE = "background-size";
public static final String LIST_STYLE = "list-style";
public static final String LIST_STYLE_TYPE = "list-style-type";
public static final String LIST_STYLE_POSITION = "list-style-position";
public static final String LIST_STYLE_IMAGE = "list-style-image";
public static final String MARGIN = "margin";
public static final String TOP = "top";
public static final String MARGIN_LEFT = "margin-left";
public static final String MARGIN_RIGHT = "margin-right";
public static final String MARGIN_TOP = "margin-top";
public static final String MARGIN_BOTTOM = "margin-bottom";
public static final String BORDER = "border";
public static final String BORDER_LEFT = "border-left";
public static final String BORDER_TOP = "border-top";
public static final String BORDER_RIGHT = "border-right";
public static final String BORDER_BOTTOM = "border-bottom";
public static final String BORDER_WIDTH = "border-width";
public static final String BORDER_STYLE = "border-style";
public static final String BORDER_COLOR = "border-color";
public static final String BORDER_COLLAPSE = "border-collapse";
public static final String BORDER_SPACING = "border-spacing";
public static final String BORDER_TOP_WIDTH = "border-top-width";
public static final String BORDER_BOTTOM_WIDTH = "border-bottom-width";
public static final String BORDER_LEFT_WIDTH = "border-left-width";
public static final String BORDER_RIGHT_WIDTH = "border-right-width";
public static final String BORDER_TOP_COLOR = "border-top-color";
public static final String BORDER_BOTTOM_COLOR = "border-bottom-color";
public static final String BORDER_LEFT_COLOR = "border-left-color";
public static final String BORDER_RIGHT_COLOR = "border-right-color";
public static final String BORDER_TOP_STYLE = "border-top-style";
public static final String BORDER_BOTTOM_STYLE = "border-bottom-style";
public static final String BORDER_LEFT_STYLE = "border-left-style";
public static final String BORDER_RIGHT_STYLE = "border-right-style";
public static final String PADDING = "padding";
public static final String PADDING_TOP = "padding-top";
public static final String PADDING_BOTTOM = "padding-bottom";
public static final String PADDING_LEFT = "padding-left";
public static final String PADDING_RIGHT = "padding-right";
public static final String FONT = "font";
public static final String FONT_WEIGHT = "font-weight";
public static final String FONT_SIZE = "font-size";
public static final String FONT_STYLE = "font-style";
public static final String FONT_FAMILY = "font-family";
public static final String TEXT_DECORATION = "text-decoration";
public static final String COLOR = "color";
public static final String TAB_INTERVAL = "tab-interval";
public static final String XFA_TAB_COUNT = "xfa-tab-count";
public static final String XFA_FONT_HORIZONTAL_SCALE = "xfa-font-horizontal-scale";
public static final String XFA_FONT_VERTICAL_SCALE = "xfa-font-vertical-scale";
public static final String BEFORE = "before";
public static final String AFTER = "after";
public static final String HEIGHT = "height";
public static final String WIDTH = "width";
public static final String LETTER_SPACING = "letter-spacing";
public static final String VERTICAL_ALIGN = "vertical-align";
public static final String LINE_HEIGHT = "line-height";
public static final String TEXT_ALIGN = "text-align";
public static final String TEXT_VALIGN = "text-valign";
public static final String TEXT_INDENT = "text-indent";
public static final String POSITION = "position";
public static final String EMPTY_CELLS = "empty-cells";
public static final String CELLPADDING = "cellpadding";
//deprecated
public static final String CELLPADDING_LEFT = "cellpadding-left";
public static final String CELLPADDING_TOP = "cellpadding-top";
public static final String CELLPADDING_RIGHT = "cellpadding-right";
public static final String CELLPADDING_BOTTOM = "cellpadding-bottom";
public static final String CAPTION_SIDE = "caption-side";
public static final String TAB_STOPS = "tab-stops";
public static final String XFA_TAB_STOPS = "xfa-tab-stops";
public static final String PAGE_BREAK_BEFORE = "page-break-before";
public static final String PAGE_BREAK_INSIDE = "page-break-inside";
public static final String PAGE_BREAK_AFTER = "page-break-after";
public static final String REPEAT_HEADER = "repeat-header";
public static final String REPEAT_FOOTER = "repeat-footer";
public static final String LEFT = "left";
public static final String DISPLAY = "display";
public static final String MIN_WIDTH = "min-width";
public static final String MAX_WIDTH = "max-width";
public static final String MIN_HEIGHT = "min-height";
public static final String MAX_HEIGHT = "max-height";
public static final String RIGHT = "right";
public static final String BOTTOM = "bottom";
public static final String FLOAT = "float";
public static final String DIRECTION = "direction";
}
}

105
fine-itext-old/src/com/fr/third/com/lowagie/text/html/CSSUtils.java

@ -0,0 +1,105 @@
package com.fr.third.com.lowagie.text.html;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
/**
* @author kerry
* @date 2018/4/9
*/
public class CSSUtils {
private static final Set<String> backgroundPositions = new HashSet<String>(
Arrays.asList(new String[] { CSS.Value.LEFT, CSS.Value.CENTER, CSS.Value.BOTTOM, CSS.Value.TOP, CSS.Value.RIGHT }));
public static Map<String, String> processBackground(final String background) {
Map<String, String> rules = new HashMap<String, String>();
String[] styles = splitComplexCssStyle(background);
for(String style : styles) {
if (style.contains("url(")) {
rules.put(CSS.Property.BACKGROUND_IMAGE, style);
} else if (style.equalsIgnoreCase(CSS.Value.REPEAT)
|| style.equalsIgnoreCase(CSS.Value.NO_REPEAT)
|| style.equalsIgnoreCase(CSS.Value.REPEAT_X)
|| style.equalsIgnoreCase(CSS.Value.REPEAT_Y)) {
rules.put(CSS.Property.BACKGROUND_REPEAT, style);
} else if (style.equalsIgnoreCase(CSS.Value.FIXED) || style.equalsIgnoreCase(CSS.Value.SCROLL)) {
rules.put(CSS.Property.BACKGROUND_ATTACHMENT, style);
} else if (backgroundPositions.contains(style)) {
if(rules.get(CSS.Property.BACKGROUND_POSITION) == null) {
rules.put(CSS.Property.BACKGROUND_POSITION, style);
} else {
style = style.concat(" "+rules.get(CSS.Property.BACKGROUND_POSITION));
rules.put(CSS.Property.BACKGROUND_POSITION, style);
}
} else if (isNumericValue(style) || isMetricValue(style) || isRelativeValue(style)) {
if(rules.get(CSS.Property.BACKGROUND_POSITION) == null) {
rules.put(CSS.Property.BACKGROUND_POSITION, style);
} else {
style = style.concat(" "+rules.get(CSS.Property.BACKGROUND_POSITION));
rules.put(CSS.Property.BACKGROUND_POSITION, style);
}
} else if(style.contains("rgb(") || style.contains("rgba(") || style.contains("#") || WebColors.NAMES.containsKey(style.toLowerCase())) {
rules.put(CSS.Property.BACKGROUND_COLOR, style);
}
}
return rules;
}
public static String[] splitComplexCssStyle(String s) {
s = s.replaceAll("\\s*,\\s*", ",") ;
return s.split("\\s");
}
public static boolean isMetricValue(final String value) {
return value.contains(CSS.Value.PX) || value.contains(CSS.Value.IN) || value.contains(CSS.Value.CM)
|| value.contains(CSS.Value.MM) || value.contains(CSS.Value.PC) || value.contains(CSS.Value.PT);
}
public static boolean isRelativeValue(final String value) {
return value.contains(CSS.Value.PERCENTAGE) || value.contains(CSS.Value.EM) || value.contains(CSS.Value.EX);
}
public static boolean isNumericValue(final String value) {
return value.matches("^-?\\d\\d*\\.\\d*$") || value.matches("^-?\\d\\d*$") || value.matches("^-?\\.\\d\\d*$");
}
public static String extractUrl(final String url) {
String str = null;
if (url.startsWith("url")) {
String urlString = url.substring(3).trim().replace("(", "").replace(")", "").trim();
if (urlString.startsWith("'") && urlString.endsWith("'")) {
str = urlString.substring(urlString.indexOf("'")+1, urlString.lastIndexOf("'"));
} else if ( urlString.startsWith("\"") && urlString.endsWith("\"") ) {
str = urlString.substring(urlString.indexOf('"')+1, urlString.lastIndexOf('"'));
} else {
str = urlString;
}
} else {
str = url;
}
return str;
}
public static Float parseFloat(String str){
float result = 0.0f;
try {
if(str.endsWith("px") || str.endsWith("pt")){
result = Float.parseFloat(str.substring(0, str.length() - 2));
}else{
result = Float.parseFloat(str);
}
}catch (NumberFormatException e){
}
return result;
}
}

55
fine-itext-old/src/com/fr/third/com/lowagie/text/html/IndentAttribute.java

@ -0,0 +1,55 @@
package com.fr.third.com.lowagie.text.html;
/**
* @author kerry
* @date 2018/5/9
*/
public class IndentAttribute {
private float top = 0.0f;
private float bottom = 0.0f;
private float left = 0.0f;
private float right = 0.0f;
public float getTop() {
return top;
}
public void setTop(float top) {
this.top = top;
}
public float getBottom() {
return bottom;
}
public void setBottom(float bottom) {
this.bottom = bottom;
}
public float getLeft() {
return left;
}
public void setLeft(float left) {
this.left = left;
}
public float getRight() {
return right;
}
public void setRight(float right) {
this.right = right;
}
public IndentAttribute(float top, float left, float bottom, float right){
this.top = top;
this.left = left;
this.bottom = bottom;
this.right = right;
}
public IndentAttribute(){
}
}

139
fine-itext-old/src/com/fr/third/com/lowagie/text/html/Markup.java

@ -44,7 +44,7 @@
* *
* Contributions by: * Contributions by:
* Lubos Strapko * Lubos Strapko
* *
* If you didn't download this code from the following link, you should check if * If you didn't download this code from the following link, you should check if
* you aren't using an obsolete version: * you aren't using an obsolete version:
* http://www.lowagie.com/iText/ * http://www.lowagie.com/iText/
@ -54,7 +54,6 @@ package com.fr.third.com.lowagie.text.html;
import java.awt.Color; import java.awt.Color;
import java.util.Properties; import java.util.Properties;
import java.util.StringTokenizer;
/** /**
* A class that contains all the possible tagnames and their attributes. * A class that contains all the possible tagnames and their attributes.
@ -272,14 +271,14 @@ public class Markup {
/** a CSS value for text decoration */ /** a CSS value for text decoration */
public static final String CSS_VALUE_UNDERLINE = "underline"; public static final String CSS_VALUE_UNDERLINE = "underline";
/** a default value for font-size /** a default value for font-size
* @since 2.1.3 * @since 2.1.3
*/ */
public static final float DEFAULT_FONT_SIZE = 12f; public static final float DEFAULT_FONT_SIZE = 12f;
/** /**
* Parses a length. * Parses a length.
* *
* @param string * @param string
* a length in the form of an optional + or -, followed by a * a length in the form of an optional + or -, followed by a
* number and a unit. * number and a unit.
@ -295,23 +294,23 @@ public class Markup {
boolean ok = true; boolean ok = true;
while (ok && pos < length) { while (ok && pos < length) {
switch (string.charAt(pos)) { switch (string.charAt(pos)) {
case '+': case '+':
case '-': case '-':
case '0': case '0':
case '1': case '1':
case '2': case '2':
case '3': case '3':
case '4': case '4':
case '5': case '5':
case '6': case '6':
case '7': case '7':
case '8': case '8':
case '9': case '9':
case '.': case '.':
pos++; pos++;
break; break;
default: default:
ok = false; ok = false;
} }
} }
if (pos == 0) if (pos == 0)
@ -342,7 +341,7 @@ public class Markup {
/** /**
* New method contributed by: Lubos Strapko * New method contributed by: Lubos Strapko
* *
* @since 2.1.3 * @since 2.1.3
*/ */
public static float parseLength(String string, float actualFontSize) { public static float parseLength(String string, float actualFontSize) {
@ -353,23 +352,23 @@ public class Markup {
boolean ok = true; boolean ok = true;
while (ok && pos < length) { while (ok && pos < length) {
switch (string.charAt(pos)) { switch (string.charAt(pos)) {
case '+': case '+':
case '-': case '-':
case '0': case '0':
case '1': case '1':
case '2': case '2':
case '3': case '3':
case '4': case '4':
case '5': case '5':
case '6': case '6':
case '7': case '7':
case '8': case '8':
case '9': case '9':
case '.': case '.':
pos++; pos++;
break; break;
default: default:
ok = false; ok = false;
} }
} }
if (pos == 0) if (pos == 0)
@ -410,7 +409,7 @@ public class Markup {
/** /**
* Converts a <CODE>Color</CODE> into a HTML representation of this <CODE> * Converts a <CODE>Color</CODE> into a HTML representation of this <CODE>
* Color</CODE>. * Color</CODE>.
* *
* @param s * @param s
* the <CODE>Color</CODE> that has to be converted. * the <CODE>Color</CODE> that has to be converted.
* @return the HTML representation of this <COLOR>Color </COLOR> * @return the HTML representation of this <COLOR>Color </COLOR>
@ -431,7 +430,7 @@ public class Markup {
/** /**
* This method parses a String with attributes and returns a Properties * This method parses a String with attributes and returns a Properties
* object. * object.
* *
* @param string * @param string
* a String of this form: 'key1="value1"; key2="value2";... * a String of this form: 'key1="value1"; key2="value2";...
* keyN="valueN" ' * keyN="valueN" '
@ -441,32 +440,48 @@ public class Markup {
Properties result = new Properties(); Properties result = new Properties();
if (string == null) if (string == null)
return result; return result;
StringTokenizer keyValuePairs = new StringTokenizer(string, ";");
StringTokenizer keyValuePair;
String key; String key;
String value; String value;
while (keyValuePairs.hasMoreTokens()) { //换种方式解析,style中background里面也有可能会有;符号
keyValuePair = new StringTokenizer(keyValuePairs.nextToken(), ":"); String[] styles = string.split(";");
if (keyValuePair.hasMoreTokens()) for (String s : styles) {
key = keyValuePair.nextToken().trim(); String[] part = s.split(":",2);
else if (part.length == 2) {
continue; key = stripDoubleSpacesAndTrim(part[0]).toLowerCase();
if (keyValuePair.hasMoreTokens()) value = stripDoubleSpacesAndTrim(part[1]);
value = keyValuePair.nextToken().trim(); if (value.startsWith("\"") || value.startsWith("\'") )
else value = value.substring(1);
continue; if (value.endsWith("\"") || value.endsWith("\'"))
if (value.startsWith("\"")) value = value.substring(0, value.length() - 1);
value = value.substring(1); result.setProperty(key.toLowerCase(), value);
if (value.endsWith("\"")) }
value = value.substring(0, value.length() - 1);
result.setProperty(key.toLowerCase(), value);
} }
return result; return result;
} }
public static String stripDoubleSpacesAndTrim(final String str) {
char[] charArray = str.toCharArray();
if (str.contains(" ")) {
StringBuilder builder = new StringBuilder();
for (int i = 0; i < charArray.length; i++) {
char c = charArray[i];
if (c != ' ') {
builder.append(c);
} else {
if (i + 1 < charArray.length && charArray[i + 1] != ' ') {
builder.append(' ');
}
}
}
return builder.toString().trim();
} else {
return String.valueOf(charArray).trim();
}
}
/** /**
* Removes the comments sections of a String. * Removes the comments sections of a String.
* *
* @param string * @param string
* the original String * the original String
* @param startComment * @param startComment
@ -476,7 +491,7 @@ public class Markup {
* @return the String stripped of its comment section * @return the String stripped of its comment section
*/ */
public static String removeComment(String string, String startComment, public static String removeComment(String string, String startComment,
String endComment) { String endComment) {
StringBuffer result = new StringBuffer(); StringBuffer result = new StringBuffer();
int pos = 0; int pos = 0;
int end = endComment.length(); int end = endComment.length();

84
fine-itext-old/src/com/fr/third/com/lowagie/text/html/ParseIndentAttrUtils.java

@ -0,0 +1,84 @@
package com.fr.third.com.lowagie.text.html;
import com.fr.third.com.lowagie.text.html.CSS;
import com.fr.third.com.lowagie.text.html.IndentAttribute;
import com.fr.third.com.lowagie.text.html.Markup;
import java.util.Iterator;
import java.util.Map;
/**
* @author kerry
* @date 2018/5/14
*/
public class ParseIndentAttrUtils {
public static IndentAttribute parseSpace(String indent){
String[] a = indent.split(" ");
if(a.length == 0){
return new IndentAttribute();
}
float indentTop = Markup.parseLength(a[0]);
if(a.length == 1){
return new IndentAttribute(indentTop, indentTop, indentTop, indentTop);
}
float indentLeft = Markup.parseLength(a[1]);
if(a.length == 2){
return new IndentAttribute(indentTop, indentLeft, indentTop, indentLeft);
}
float indentBottom = Markup.parseLength(a[2]);
if(a.length == 3){
return new IndentAttribute(indentTop, indentLeft, indentBottom, indentLeft);
}
float indentRight = Markup.parseLength(a[3]);
return new IndentAttribute(indentTop, indentLeft, indentBottom, indentRight);
}
public static IndentAttribute parsePaddingAttribute(Map map){
if (map == null){
return new IndentAttribute();
}
IndentAttribute indentAttribute = new IndentAttribute();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
String key = (String) entry.getKey();
if (CSS.Property.PADDING_LEFT.equals(key)) {
indentAttribute.setLeft(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_RIGHT.equals(key)) {
indentAttribute.setRight(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_TOP.equals(key)) {
indentAttribute.setTop(Markup.parseLength((String) entry.getValue()));
} else if (CSS.Property.PADDING_BOTTOM.equals(key)) {
indentAttribute.setBottom(Markup.parseLength((String) entry.getValue()));
}
}
return indentAttribute;
}
public static IndentAttribute parseMarginAttribute(Map map){
IndentAttribute indentAttribute = new IndentAttribute();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
String key = (String) entry.getKey();
float val = Markup.parseLength((String) entry.getValue());
if (CSS.Property.MARGIN_LEFT.equals(key)) {
indentAttribute.setLeft(val);
} else if (CSS.Property.MARGIN_RIGHT.equals(key)) {
indentAttribute.setRight(val);
} else if (CSS.Property.MARGIN_TOP.equals(key)) {
indentAttribute.setTop(val);
} else if (CSS.Property.MARGIN_BOTTOM.equals(key)) {
indentAttribute.setBottom(val);
}
}
return indentAttribute;
}
public static void createIndent(StringBuffer stringBuffer, String attr, IndentAttribute indentAttribute){
stringBuffer.append(attr).append("-").append("left").append(":").append(indentAttribute.getLeft()).append("px;")
.append(attr).append("-").append("right").append(":").append(indentAttribute.getRight()).append("px;")
.append(attr).append("-").append("top").append(":").append(indentAttribute.getTop()).append("px;")
.append(attr).append("-").append("bottom").append(":").append(indentAttribute.getBottom()).append("px;");
}
}

4
fine-itext-old/src/com/fr/third/com/lowagie/text/html/WebColors.java

@ -221,7 +221,7 @@ public class WebColors extends HashMap {
*/ */
public static Color getRGBColor(String name) public static Color getRGBColor(String name)
throws IllegalArgumentException { throws IllegalArgumentException {
int[] c = { 0, 0, 0, 0 }; int[] c = { 0, 0, 0, 255 };
if (name.startsWith("#")) { if (name.startsWith("#")) {
if (name.length() == 4) { if (name.length() == 4) {
c[0] = Integer.parseInt(name.substring(1, 2), 16) * 16; c[0] = Integer.parseInt(name.substring(1, 2), 16) * 16;
@ -258,6 +258,6 @@ public class WebColors extends HashMap {
throw new IllegalArgumentException("Color '" + name throw new IllegalArgumentException("Color '" + name
+ "' not found."); + "' not found.");
c = (int[]) NAMES.get(name); c = (int[]) NAMES.get(name);
return new Color(c[0], c[1], c[2], c[3]); return new Color(c[0], c[1], c[2], 255);
} }
} }

67
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/ChainedProperties.java

@ -75,6 +75,13 @@ public class ChainedProperties {
return null; return null;
} }
public String getLastChainProperty(String key){
Object obj[] = (Object[]) chain.get(chain.size()-1);
HashMap prop = (HashMap) obj[1];
return (String) prop.get(key);
}
public boolean hasProperty(String key) { public boolean hasProperty(String key) {
for (int k = chain.size() - 1; k >= 0; --k) { for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k); Object obj[] = (Object[]) chain.get(k);
@ -85,6 +92,66 @@ public class ChainedProperties {
return false; return false;
} }
public String getPropertyFromChain (String tag, String key) {
//块级元素不继承行内元素属性
if(HtmlConstants.BLOCK_ELEMENTS.contains(tag)){
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if(HtmlConstants.INLINE_ELEMENTS.contains(obj[0])){
continue;
}
HashMap prop = (HashMap) obj[1];
String ret = (String) prop.get(key);
if (ret != null)
return ret;
}
}else{
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if(HtmlConstants.BLOCK_ELEMENTS.contains(obj[0])){
return null;
}
HashMap prop = (HashMap) obj[1];
String ret = (String) prop.get(key);
if (ret != null)
return ret;
}
}
return null;
}
public boolean hasPropertyInChain(String tag, String key) {
if (HtmlConstants.BLOCK_ELEMENTS.contains(tag)) {
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if( HtmlConstants.INLINE_ELEMENTS.contains(obj[0])){
continue;
}
HashMap prop = (HashMap) obj[1];
if (prop.containsKey(key))
return true;
}
} else {
for (int k = chain.size() - 1; k >= 0; --k) {
Object obj[] = (Object[]) chain.get(k);
if( HtmlConstants.BLOCK_ELEMENTS.contains(obj[0])){
return false;
}
HashMap prop = (HashMap) obj[1];
if (prop.containsKey(key))
return true;
}
}
return false;
}
public void addToChain(String key, HashMap prop) { public void addToChain(String key, HashMap prop) {
// adjust the font size // adjust the font size
String value = (String) prop.get(ElementTags.SIZE); String value = (String) prop.get(ElementTags.SIZE);

82
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/FactoryProperties.java

@ -50,12 +50,6 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.awt.Color;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Properties;
import java.util.StringTokenizer;
import com.fr.third.com.lowagie.text.Chunk; import com.fr.third.com.lowagie.text.Chunk;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ElementTags; import com.fr.third.com.lowagie.text.ElementTags;
@ -64,12 +58,19 @@ import com.fr.third.com.lowagie.text.FontFactory;
import com.fr.third.com.lowagie.text.FontFactoryImp; import com.fr.third.com.lowagie.text.FontFactoryImp;
import com.fr.third.com.lowagie.text.ListItem; import com.fr.third.com.lowagie.text.ListItem;
import com.fr.third.com.lowagie.text.Paragraph; import com.fr.third.com.lowagie.text.Paragraph;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.html.HtmlTags; import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.pdf.BaseFont; import com.fr.third.com.lowagie.text.html.IndentAttribute;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.html.ParseIndentAttrUtils;
import com.fr.third.com.lowagie.text.pdf.HyphenationAuto; import com.fr.third.com.lowagie.text.pdf.HyphenationAuto;
import com.fr.third.com.lowagie.text.pdf.HyphenationEvent; import com.fr.third.com.lowagie.text.pdf.HyphenationEvent;
import java.awt.Color;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Properties;
import java.util.StringTokenizer;
/** /**
* *
* @author psoares * @author psoares
@ -85,16 +86,24 @@ public class FactoryProperties {
public Chunk createChunk(String text, ChainedProperties props) { public Chunk createChunk(String text, ChainedProperties props) {
Font font = getFont(props); Font font = getFont(props);
float size = font.getSize(); float size = font.getSize();
size /= 2; size /= 3;
Chunk ck = new Chunk(text, font); Chunk ck = new Chunk(text, font);
if (props.hasProperty("sub")) if (props.hasProperty("sub"))
ck.setTextRise(-size); ck.setTextRise(-size);
else if (props.hasProperty("sup")) else if (props.hasProperty("sup"))
ck.setTextRise(size); ck.setTextRise(size);
ck.setHyphenation(getHyphenation(props)); ck.setHyphenation(getHyphenation(props));
if(props.hasProperty("background")){
ck.setBackground(props.getProperty("background"));
}
for(String padding : HtmlConstants.PADDING){
if(props.hasPropertyInChain("span", padding)){
String ss = props.getPropertyFromChain("span", padding);
ck.setAttribute(padding, ss);
}
}
return ck; return ck;
} }
private static void setParagraphLeading(Paragraph p, String leading) { private static void setParagraphLeading(Paragraph p, String leading) {
if (leading == null) { if (leading == null) {
p.setLeading(0, 1.5f); p.setLeading(0, 1.5f);
@ -126,6 +135,34 @@ public class FactoryProperties {
else if (value.equalsIgnoreCase("justify")) else if (value.equalsIgnoreCase("justify"))
p.setAlignment(Element.ALIGN_JUSTIFIED); p.setAlignment(Element.ALIGN_JUSTIFIED);
} }
if(props.hasPropertyInChain("div", "background")){
p.setBackground(props.getPropertyFromChain("div", "background"));
}
if(props.hasProperty("line-height")){
p.setAttribute("line-height", props.getProperty("line-height"));
}
for(String margin : HtmlConstants.MARGIN){
if(props.hasPropertyInChain("div", margin)){
String ss = props.getPropertyFromChain("div", margin);
p.setAttribute(margin, ss);
}
}
for(String padding : HtmlConstants.PADDING){
if(props.hasPropertyInChain("div", padding)){
String ss = props.getPropertyFromChain("div", padding);
p.setAttribute(padding, ss);
}
}
if(props.hasPropertyInChain("div", "text-indent")){
String ss = props.getPropertyFromChain("div", "text-indent");
p.setFirstLineIndent(Markup.parseLength(ss));
}
if(props.hasPropertyInChain("div", "width")){
String ss = props.getPropertyFromChain("div", "width");
p.setAttribute("width", ss);
}
p.setHyphenation(getHyphenation(props)); p.setHyphenation(getHyphenation(props));
setParagraphLeading(p, props.getProperty("leading")); setParagraphLeading(p, props.getProperty("leading"));
value = props.getProperty("before"); value = props.getProperty("before");
@ -191,10 +228,7 @@ public class FactoryProperties {
if (value != null) if (value != null)
size = Float.parseFloat(value); size = Float.parseFloat(value);
Color color = Markup.decodeColor(props.getProperty("color")); Color color = Markup.decodeColor(props.getProperty("color"));
String encoding = props.getProperty("encoding"); return new Font(face, size, style, color);
if (encoding == null)
encoding = BaseFont.WINANSI;
return fontImp.getFont(face, encoding, true, size, style, color);
} }
/** /**
@ -309,13 +343,22 @@ public class FactoryProperties {
else { else {
h.put("leading", v + ",0"); h.put("leading", v + ",0");
} }
} else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) { } else if (key.equals(Markup.CSS_KEY_PADDING)) {
String ss = prop.getProperty(key).trim().toLowerCase();
IndentAttribute indentAttribute = ParseIndentAttrUtils.parseSpace(ss);
h.put(Markup.CSS_KEY_PADDINGTOP, indentAttribute.getTop() + "px");
h.put(Markup.CSS_KEY_PADDINGLEFT, indentAttribute.getLeft() + "px");
h.put(Markup.CSS_KEY_PADDINGBOTTOM, indentAttribute.getBottom() + "px");
h.put(Markup.CSS_KEY_PADDINGRIGHT, indentAttribute.getRight() + "px");
}
else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("align", ss); h.put("align", ss);
} }
} }
} }
/** /**
* New method contributed by Lubos Strapko * New method contributed by Lubos Strapko
* @param h * @param h
@ -380,12 +423,17 @@ public class FactoryProperties {
return; return;
} }
h.put("leading", v + ",0"); h.put("leading", v + ",0");
h.put("line-height", ss);
} else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) { } else if (key.equals(Markup.CSS_KEY_TEXTALIGN)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("align", ss); h.put("align", ss);
} else if (key.equals(Markup.CSS_KEY_PADDINGLEFT)) { } else if (key.equals(Markup.CSS_KEY_BGCOLOR)) {
String ss = prop.getProperty(key).trim().toLowerCase(); String ss = prop.getProperty(key).trim().toLowerCase();
h.put("indent", Float.toString(Markup.parseLength(ss))); h.put("background", ss);
}
else{
String ss = prop.getProperty(key).trim();
h.put(key, ss);
} }
} }
} }

89
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HTMLWorker.java

@ -50,16 +50,6 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.io.File;
import java.io.IOException;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Stack;
import java.util.StringTokenizer;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.Chunk; import com.fr.third.com.lowagie.text.Chunk;
import com.fr.third.com.lowagie.text.DocListener; import com.fr.third.com.lowagie.text.DocListener;
import com.fr.third.com.lowagie.text.DocumentException; import com.fr.third.com.lowagie.text.DocumentException;
@ -69,15 +59,32 @@ import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.FontFactoryImp; import com.fr.third.com.lowagie.text.FontFactoryImp;
import com.fr.third.com.lowagie.text.HeaderFooter; import com.fr.third.com.lowagie.text.HeaderFooter;
import com.fr.third.com.lowagie.text.Image; import com.fr.third.com.lowagie.text.Image;
import com.fr.third.com.lowagie.text.List;
import com.fr.third.com.lowagie.text.ListItem; import com.fr.third.com.lowagie.text.ListItem;
import com.fr.third.com.lowagie.text.Paragraph; import com.fr.third.com.lowagie.text.Paragraph;
import com.fr.third.com.lowagie.text.Phrase; import com.fr.third.com.lowagie.text.Phrase;
import com.fr.third.com.lowagie.text.Rectangle; import com.fr.third.com.lowagie.text.Rectangle;
import com.fr.third.com.lowagie.text.TextElementArray; import com.fr.third.com.lowagie.text.TextElementArray;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.PdfPTable; import com.fr.third.com.lowagie.text.pdf.PdfPTable;
import com.fr.third.com.lowagie.text.pdf.draw.LineSeparator; import com.fr.third.com.lowagie.text.pdf.draw.LineSeparator;
import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLDocHandler; import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLDocHandler;
import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLParser; import com.fr.third.com.lowagie.text.xml.simpleparser.SimpleXMLParser;
import sun.misc.BASE64Decoder;
import javax.imageio.ImageIO;
import java.awt.image.BufferedImage;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Stack;
import java.util.StringTokenizer;
public class HTMLWorker implements SimpleXMLDocHandler, DocListener { public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
@ -176,15 +183,23 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
cprops.addToChain("body", h); cprops.addToChain("body", h);
} }
public void startElement(String tag, HashMap h) { public void startElement(String tag, HashMap h) {
if (!tagsSupported.containsKey(tag)) if (!tagsSupported.containsKey(tag))
return; return;
try { try {
style.applyStyle(tag, h); style.applyStyle(tag, h);
if(tag.equals("p")){
h.put(Markup.CSS_KEY_MARGINTOP, "16px");
h.put(Markup.CSS_KEY_MARGINBOTTOM, "16px");
}
String follow = (String) FactoryProperties.followTags.get(tag); String follow = (String) FactoryProperties.followTags.get(tag);
if (follow != null) { if (follow != null) {
HashMap prop = new HashMap(); HashMap prop = new HashMap();
prop.put(follow, null); prop.put(follow, null);
FactoryProperties.insertStyle(h, this.cprops);
prop.putAll(h);
cprops.addToChain(follow, prop); cprops.addToChain(follow, prop);
return; return;
} }
@ -226,7 +241,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
int hrAlign = Element.ALIGN_CENTER; int hrAlign = Element.ALIGN_CENTER;
if (align != null) { if (align != null) {
if (align.equalsIgnoreCase("left")) if (align.equalsIgnoreCase("left"))
hrAlign = Element.ALIGN_LEFT; hrAlign = Element.ALIGN_LEFT;
if (align.equalsIgnoreCase("right")) if (align.equalsIgnoreCase("right"))
hrAlign = Element.ALIGN_RIGHT; hrAlign = Element.ALIGN_RIGHT;
} }
@ -285,6 +300,19 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
} }
} }
//处理base64编码图片
if(src.startsWith("data")){
BASE64Decoder decoder = new BASE64Decoder();
String[] srcArray = src.split(",");
String base64string = srcArray[srcArray.length -1];
byte[] bytes = decoder.decodeBuffer(base64string);
try {
img = Image.getInstance(bytes);
}catch (Exception e){
}
}
if (img == null) { if (img == null) {
if (!src.startsWith("http")) { if (!src.startsWith("http")) {
String path = cprops.getProperty("image_path"); String path = cprops.getProperty("image_path");
@ -294,6 +322,10 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
img = Image.getInstance(src); img = Image.getInstance(src);
} }
if(img == null){
return;
}
img.setSrcString(src);
String align = (String) h.get("align"); String align = (String) h.get("align");
String width = (String) h.get("width"); String width = (String) h.get("width");
String height = (String) h.get("height"); String height = (String) h.get("height");
@ -342,12 +374,22 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
document.add(img); document.add(img);
cprops.removeChain(tag); cprops.removeChain(tag);
} else { } else {
Chunk ck = new Chunk(img, 0, 0);
if(cprops.hasPropertyInChain("img", "padding-left")){
String ss = cprops.getPropertyFromChain("img", "padding-left");
ck.setAttribute("padding-left", Float.toString(Markup.parseLength(ss)));
}
if(cprops.hasPropertyInChain("img", "padding-right")){
String ss = cprops.getPropertyFromChain("img", "padding-right");
ck.setAttribute("padding-right", Float.toString(Markup.parseLength(ss)));
}
cprops.removeChain(tag); cprops.removeChain(tag);
if (currentParagraph == null) { if (currentParagraph == null) {
currentParagraph = FactoryProperties currentParagraph = FactoryProperties
.createParagraph(cprops); .createParagraph(cprops);
} }
currentParagraph.add(new Chunk(img, 0, 0));
currentParagraph.add(ck);
} }
return; return;
} }
@ -366,7 +408,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
endElement(HtmlTags.LISTITEM); endElement(HtmlTags.LISTITEM);
skipText = true; skipText = true;
cprops.addToChain(tag, h); cprops.addToChain(tag, h);
com.fr.third.com.lowagie.text.List list = new com.fr.third.com.lowagie.text.List(false); List list = new List(false);
try{ try{
list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue()); list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
}catch (Exception e) { }catch (Exception e) {
@ -381,7 +423,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
endElement(HtmlTags.LISTITEM); endElement(HtmlTags.LISTITEM);
skipText = true; skipText = true;
cprops.addToChain(tag, h); cprops.addToChain(tag, h);
com.fr.third.com.lowagie.text.List list = new com.fr.third.com.lowagie.text.List(true); List list = new List(true);
try{ try{
list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue()); list.setIndentationLeft(new Float(cprops.getProperty("indent")).floatValue());
}catch (Exception e) { }catch (Exception e) {
@ -443,6 +485,8 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
} }
public void endElement(String tag) { public void endElement(String tag) {
if (!tagsSupported.containsKey(tag)) if (!tagsSupported.containsKey(tag))
return; return;
@ -510,7 +554,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
if (stack.empty()) if (stack.empty())
return; return;
Object obj = stack.pop(); Object obj = stack.pop();
if (!(obj instanceof com.fr.third.com.lowagie.text.List)) { if (!(obj instanceof List)) {
stack.push(obj); stack.push(obj);
return; return;
} }
@ -536,12 +580,12 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
return; return;
} }
Object list = stack.pop(); Object list = stack.pop();
if (!(list instanceof com.fr.third.com.lowagie.text.List)) { if (!(list instanceof List)) {
stack.push(list); stack.push(list);
return; return;
} }
ListItem item = (ListItem) obj; ListItem item = (ListItem) obj;
((com.fr.third.com.lowagie.text.List) list).add(item); ((List) list).add(item);
ArrayList cks = item.getChunks(); ArrayList cks = item.getChunks();
if (!cks.isEmpty()) if (!cks.isEmpty())
item.getListSymbol() item.getListSymbol()
@ -588,6 +632,8 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
if (pendingTD) if (pendingTD)
endElement("td"); endElement("td");
pendingTR = false; pendingTR = false;
String rowHeightPx = cprops.getLastChainProperty("height");
cprops.removeChain("tr"); cprops.removeChain("tr");
ArrayList cells = new ArrayList(); ArrayList cells = new ArrayList();
IncTable table = null; IncTable table = null;
@ -601,8 +647,13 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
break; break;
} }
} }
float rowHeight = 0.0f;
if(rowHeightPx!=null){
rowHeight = CSSUtils.parseFloat(rowHeightPx);
}
table.addCols(cells); table.addCols(cells);
table.endRow(); table.endRow(rowHeight);
stack.push(table); stack.push(table);
skipText = true; skipText = true;
return; return;
@ -705,7 +756,7 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
} }
/** /**
* @see com.fr.third.com.lowagie.text.DocListener#setMarginMirroring(boolean) * @see DocListener#setMarginMirroring(boolean)
* @since 2.1.6 * @since 2.1.6
*/ */
public boolean setMarginMirroringTopBottom(boolean marginMirroring) { public boolean setMarginMirroringTopBottom(boolean marginMirroring) {

45
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/HtmlConstants.java

@ -0,0 +1,45 @@
package com.fr.third.com.lowagie.text.html.simpleparser;
import com.fr.third.com.lowagie.text.html.HtmlTags;
import com.fr.third.com.lowagie.text.html.Markup;
import java.util.ArrayList;
import java.util.List;
/**
* @author kerry
* @date 2018/5/2
*/
public class HtmlConstants {
//块级元素集合
public static final List<String> BLOCK_ELEMENTS = new ArrayList<String>();
//行内元素集合
public static final List<String> INLINE_ELEMENTS = new ArrayList<String>();
//支持解析的属性
public static final List<String> PADDING = new ArrayList<String>();
public static final List<String> MARGIN = new ArrayList<String>();
static {
BLOCK_ELEMENTS.add(HtmlTags.DIV);
BLOCK_ELEMENTS.add(HtmlTags.UNORDEREDLIST);
BLOCK_ELEMENTS.add(HtmlTags.PARAGRAPH);
BLOCK_ELEMENTS.add(HtmlTags.ORDEREDLIST);
BLOCK_ELEMENTS.add(HtmlTags.TABLE);
INLINE_ELEMENTS.add(HtmlTags.SPAN);
INLINE_ELEMENTS.add(HtmlTags.IMAGE);
INLINE_ELEMENTS.add(HtmlTags.STRONG);
INLINE_ELEMENTS.add(HtmlTags.ANCHOR);
INLINE_ELEMENTS.add(HtmlTags.SUB);
INLINE_ELEMENTS.add(HtmlTags.SUP);
INLINE_ELEMENTS.add(HtmlTags.I);
INLINE_ELEMENTS.add(HtmlTags.U);
INLINE_ELEMENTS.add(HtmlTags.EM);
PADDING.add(Markup.CSS_KEY_PADDINGLEFT);
PADDING.add(Markup.CSS_KEY_PADDINGRIGHT);
PADDING.add(Markup.CSS_KEY_PADDINGTOP);
PADDING.add(Markup.CSS_KEY_PADDINGBOTTOM);
MARGIN.add(Markup.CSS_KEY_MARGINLEFT);
MARGIN.add(Markup.CSS_KEY_MARGINRIGHT);
MARGIN.add(Markup.CSS_KEY_MARGINTOP);
MARGIN.add(Markup.CSS_KEY_MARGINBOTTOM);
}
}

94
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncCell.java

@ -48,22 +48,26 @@
package com.fr.third.com.lowagie.text.html.simpleparser; package com.fr.third.com.lowagie.text.html.simpleparser;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ElementListener; import com.fr.third.com.lowagie.text.ElementListener;
import com.fr.third.com.lowagie.text.Phrase;
import com.fr.third.com.lowagie.text.TextElementArray; import com.fr.third.com.lowagie.text.TextElementArray;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup; import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.PdfPCell; import com.fr.third.com.lowagie.text.pdf.PdfPCell;
import com.fr.third.com.lowagie.text.Phrase;
/** /**
* *
* @author psoares * @author psoares
*/ */
public class IncCell implements TextElementArray { public class IncCell implements TextElementArray {
private ArrayList chunks = new ArrayList(); private ArrayList chunks = new ArrayList();
private PdfPCell cell; private PdfPCell cell;
/** Creates a new instance of IncCell */ /** Creates a new instance of IncCell */
public IncCell(String tag, ChainedProperties props) { public IncCell(String tag, ChainedProperties props) {
cell = new PdfPCell((Phrase)null); cell = new PdfPCell((Phrase)null);
@ -94,52 +98,90 @@ public class IncCell implements TextElementArray {
value = props.getProperty("border"); value = props.getProperty("border");
float border = 0; float border = 0;
if (value != null) if (value != null)
border = Float.parseFloat(value); border = CSSUtils.parseFloat(value);
cell.setBorderWidth(border); cell.setBorderWidth(border);
value = props.getProperty("cellpadding"); value = props.getProperty("cellpadding");
if (value != null) if (value != null)
cell.setPadding(Float.parseFloat(value)); cell.setPadding(CSSUtils.parseFloat(value));
cell.setUseDescender(true); cell.setUseDescender(true);
value = props.getProperty("bgcolor"); value = props.getProperty("bgcolor");
cell.setBackgroundColor(Markup.decodeColor(value)); cell.setBackgroundColor(Markup.decodeColor(value));
//解析td上声明的width
value = props.getLastChainProperty("width");
if(value != null){
cell.setStyleWidth(CSSUtils.parseFloat(value));
}
//解析td上声明的height
value = props.getLastChainProperty("height");
if(value != null){
cell.setStyleHeight(CSSUtils.parseFloat(value));
}
//解析background相关属性并保存到cell对象
Map<String, String> backgroundRules = new HashMap<String, String>();
value = props.getLastChainProperty("background-size");
if(value!=null){
backgroundRules.put("background-size", value);
}
value = props.getLastChainProperty("background");
if(value!=null){
Map<String, String> backgroundStyles = CSSUtils.processBackground(value);
backgroundRules.putAll(backgroundStyles);
}
value = props.getLastChainProperty("background-color");
if(value!=null){
backgroundRules.put("background-color", value);
}
value = props.getLastChainProperty("background-position");
if(value!=null){
backgroundRules.put("background-position", value);
}
value = props.getLastChainProperty("background-repeat");
if(value!=null){
backgroundRules.put("background-repeat", value);
}
value = props.getLastChainProperty("background-image");
if(value!=null){
backgroundRules.put("background-image", value);
}
cell.setBackground(backgroundRules);
} }
public boolean add(Object o) { public boolean add(Object o) {
if (!(o instanceof Element)) if (!(o instanceof Element))
return false; return false;
cell.addElement((Element)o); cell.addElement((Element)o);
return true; return true;
} }
public ArrayList getChunks() { public ArrayList getChunks() {
return chunks; return chunks;
} }
public boolean process(ElementListener listener) { public boolean process(ElementListener listener) {
return true; return true;
} }
public int type() { public int type() {
return Element.RECTANGLE; return Element.RECTANGLE;
} }
public PdfPCell getCell() { public PdfPCell getCell() {
return cell; return cell;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isContent() * @see Element#isContent()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isContent() { public boolean isContent() {
return true; return true;
} }
/** /**
* @see com.fr.third.com.lowagie.text.Element#isNestable() * @see Element#isNestable()
* @since iText 2.0.8 * @since iText 2.0.8
*/ */
public boolean isNestable() { public boolean isNestable() {
return true; return true;
} }
} }

110
fine-itext-old/src/com/fr/third/com/lowagie/text/html/simpleparser/IncTable.java

@ -51,8 +51,12 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
import com.fr.third.com.lowagie.text.pdf.PdfPCell; import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup;
import com.fr.third.com.lowagie.text.pdf.BorderStyle;
import com.fr.third.com.lowagie.text.pdf.PdfPTable; import com.fr.third.com.lowagie.text.pdf.PdfPTable;
import com.fr.third.com.lowagie.text.pdf.PdfPCell;
import com.fr.third.com.lowagie.text.pdf.TableProperties;
/** /**
* *
@ -62,62 +66,126 @@ public class IncTable {
private HashMap props = new HashMap(); private HashMap props = new HashMap();
private ArrayList rows = new ArrayList(); private ArrayList rows = new ArrayList();
private ArrayList cols; private ArrayList cols;
private ArrayList<Float> rowHeights = new ArrayList<Float>();
/** Creates a new instance of IncTable */ /** Creates a new instance of IncTable */
public IncTable(HashMap props) { public IncTable(HashMap props) {
this.props.putAll(props); this.props.putAll(props);
} }
public void addCol(PdfPCell cell) { public void addCol(PdfPCell cell) {
if (cols == null) if (cols == null)
cols = new ArrayList(); cols = new ArrayList();
cols.add(cell); cols.add(cell);
} }
public void addCols(ArrayList ncols) { public void addCols(ArrayList ncols) {
if (cols == null) if (cols == null)
cols = new ArrayList(ncols); cols = new ArrayList(ncols);
else else
cols.addAll(ncols); cols.addAll(ncols);
} }
public void endRow() { public void endRow(float rowHeight) {
rowHeights.add(rowHeight);
if (cols != null) { if (cols != null) {
Collections.reverse(cols); Collections.reverse(cols);
rows.add(cols); rows.add(cols);
cols = null; cols = null;
} }
} }
public ArrayList getRows() { public ArrayList getRows() {
return rows; return rows;
} }
public PdfPTable buildTable() { public PdfPTable buildTable() {
if (rows.isEmpty()) if (rows.isEmpty())
return new PdfPTable(1); return new PdfPTable(1);
int ncol = 0; int ncol = 0;
ArrayList c0 = (ArrayList)rows.get(0); ArrayList c0 = (ArrayList)rows.get(0);
ArrayList<Float> colWidths = new ArrayList<Float>();
for (int k = 0; k < c0.size(); ++k) { for (int k = 0; k < c0.size(); ++k) {
ncol += ((PdfPCell)c0.get(k)).getColspan(); PdfPCell pCell = ((PdfPCell)c0.get(k));
int cellCols = pCell.getColspan();
ncol += cellCols;
if(cellCols > 1){
for(int a = 0; a < cellCols ; a++){
colWidths.add(pCell.getStyleWidth()/cellCols);
}
}else {
colWidths.add(pCell.getStyleWidth());
}
} }
PdfPTable table = new PdfPTable(ncol); PdfPTable table = new PdfPTable(ncol);
String width = (String)props.get("width"); try {
if (width == null) TableProperties tableProperties = parseTableProperties();
table.setWidthPercentage(100); table.setTableProperties(tableProperties);
else { String width = (String)props.get("width");
if (width.endsWith("%")) if (width == null)
table.setWidthPercentage(Float.parseFloat(width.substring(0, width.length() - 1))); table.setWidthPercentage(100);
else { else {
table.setTotalWidth(Float.parseFloat(width)); if (width.endsWith("%"))
table.setLockedWidth(true); table.setWidthPercentage(CSSUtils.parseFloat(width));
else {
//解析单元格宽度
float totalWidth = CSSUtils.parseFloat(width);
float[] floats = new float[colWidths.size()];
for (int a = 0; a < colWidths.size(); a++){
floats[a] = colWidths.get(a);
}
//解析px数值
table.setTotalWidth(totalWidth);
try {
table.setWidths(floats);
}catch (Exception e){
e.printStackTrace();
}
table.setLockedWidth(true);
}
} }
} for (int row = 0; row < rows.size(); ++row) {
for (int row = 0; row < rows.size(); ++row) { ArrayList col = (ArrayList)rows.get(row);
ArrayList col = (ArrayList)rows.get(row); for (int k = 0; k < col.size(); ++k) {
for (int k = 0; k < col.size(); ++k) { table.addCell((PdfPCell)col.get(k));
table.addCell((PdfPCell)col.get(k)); }
}
//调整行高
for(int a = 0; a < rowHeights.size(); a++){
table.getRow(a).setStyleHeight(rowHeights.get(a));
} }
}catch (Exception e){
e.printStackTrace();
} }
return table; return table;
} }
public TableProperties parseTableProperties(){
TableProperties tableProperties = new TableProperties();
BorderStyle borderStyle = new BorderStyle();
tableProperties.setBorderStyle(borderStyle);
String value = (String)props.get("border");
if(value != null){
borderStyle.setBorderWidth(CSSUtils.parseFloat(value));
}
value = (String)props.get("border-color");
if(value != null){
borderStyle.setBorderColor(Markup.decodeColor(value));
}
value = (String)props.get("border-collapse");
if(value != null){
tableProperties.setCollapse(value.equals("collapse"));
}
value = (String)props.get("cellspacing");
if(value != null){
tableProperties.setCellspacing(CSSUtils.parseFloat(value));
}
value = (String)props.get("cellpadding");
if(value != null){
tableProperties.setCellpadding(CSSUtils.parseFloat(value));
}
return tableProperties;
}
} }

58
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/BorderStyle.java

@ -0,0 +1,58 @@
package com.fr.third.com.lowagie.text.pdf;
import com.fr.third.com.lowagie.text.DocumentException;
import com.fr.third.com.lowagie.text.html.CSSUtils;
import com.fr.third.com.lowagie.text.html.Markup;
import java.awt.Color;
public class BorderStyle {
private float borderWidth = 0.0f;
private Color borderColor = Color.black;
private String borderPattern = "solid";
public float getBorderWidth() {
return borderWidth;
}
public void setBorderWidth(float borderWidth) {
this.borderWidth = borderWidth;
}
public Color getBorderColor() {
return borderColor;
}
public void setBorderColor(Color borderColor) {
this.borderColor = borderColor;
}
public String getBorderPattern() {
return borderPattern;
}
public void setBorderPattern(String borderPattern) {
this.borderPattern = borderPattern;
}
public BorderStyle() {
}
public BorderStyle(int borderWidth, String borderPattern, Color borderColor) {
this.borderWidth = borderWidth;
this.borderPattern = borderPattern;
this.borderWidth = borderWidth;
}
public static BorderStyle parseBorderStyle(String borderString) throws DocumentException {
BorderStyle borderStyle = new BorderStyle();
String[] borderPros = borderString.split(" ");
borderStyle.setBorderWidth(CSSUtils.parseFloat(borderPros[0]));
borderStyle.setBorderPattern(borderPros[1]);
borderStyle.setBorderColor(Markup.decodeColor(borderPros[2]));
return borderStyle;
}
}

539
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPCell.java

File diff suppressed because it is too large Load Diff

490
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPRow.java

@ -51,15 +51,15 @@ package com.fr.third.com.lowagie.text.pdf;
import java.awt.Color; import java.awt.Color;
import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.DocumentException; import com.fr.third.com.lowagie.text.DocumentException;
import com.fr.third.com.lowagie.text.Element; import com.fr.third.com.lowagie.text.Element;
import com.fr.third.com.lowagie.text.ExceptionConverter;
import com.fr.third.com.lowagie.text.Image; import com.fr.third.com.lowagie.text.Image;
import com.fr.third.com.lowagie.text.Rectangle; import com.fr.third.com.lowagie.text.Rectangle;
/** /**
* A row in a PdfPTable. * A row in a PdfPTable.
* *
* @author Paulo Soares (psoares@consiste.pt) * @author Paulo Soares (psoares@consiste.pt)
*/ */
public class PdfPRow { public class PdfPRow {
@ -75,7 +75,17 @@ public class PdfPRow {
protected PdfPCell cells[]; protected PdfPCell cells[];
protected float widths[]; protected float widths[];
private float styleHeight;
public float getStyleHeight() {
return styleHeight;
}
public void setStyleHeight(float styleHeight) {
this.styleHeight = styleHeight;
}
/** /**
* extra heights that needs to be added to a cell because of rowspans. * extra heights that needs to be added to a cell because of rowspans.
* @since 2.1.6 * @since 2.1.6
@ -83,15 +93,15 @@ public class PdfPRow {
protected float extraHeights[]; protected float extraHeights[];
protected float maxHeight = 0; protected float maxHeight = 0;
protected boolean calculated = false; protected boolean calculated = false;
private int[] canvasesPos; private int[] canvasesPos;
/** /**
* Constructs a new PdfPRow with the cells in the array that was passed * Constructs a new PdfPRow with the cells in the array that was passed
* as a parameter. * as a parameter.
* *
* @param cells * @param cells
*/ */
public PdfPRow(PdfPCell cells[]) { public PdfPRow(PdfPCell cells[]) {
@ -102,7 +112,7 @@ public class PdfPRow {
/** /**
* Makes a copy of an existing row. * Makes a copy of an existing row.
* *
* @param row * @param row
*/ */
public PdfPRow(PdfPRow row) { public PdfPRow(PdfPRow row) {
@ -120,7 +130,7 @@ public class PdfPRow {
/** /**
* Sets the widths of the columns in the row. * Sets the widths of the columns in the row.
* *
* @param widths * @param widths
* @return true if everything went right * @return true if everything went right
*/ */
@ -132,12 +142,12 @@ public class PdfPRow {
calculated = false; calculated = false;
for (int k = 0; k < widths.length; ++k) { for (int k = 0; k < widths.length; ++k) {
PdfPCell cell = cells[k]; PdfPCell cell = cells[k];
if (cell == null) { if (cell == null) {
total += widths[k]; total += widths[k];
continue; continue;
} }
cell.setLeft(total); cell.setLeft(total);
int last = k + cell.getColspan(); int last = k + cell.getColspan();
for (; k < last; ++k) for (; k < last; ++k)
@ -159,7 +169,7 @@ public class PdfPRow {
extraHeights[i] = 0; extraHeights[i] = 0;
} }
} }
/** /**
* Sets an extra height for a cell. * Sets an extra height for a cell.
* @param cell the index of the cell that needs an extra height * @param cell the index of the cell that needs an extra height
@ -171,48 +181,34 @@ public class PdfPRow {
return; return;
extraHeights[cell] = height; extraHeights[cell] = height;
} }
/** /**
* Calculates the heights of each cell in the row. * Calculates the heights of each cell in the row.
* *
* @return the maximum height of the row. * @return the maximum height of the row.
*/ */
public float calculateHeights() { public float calculateHeights() {
maxHeight = 0; maxHeight = 0;
// @change for (int k = 0; k < cells.length; ++k) {
int rowSpan = Integer.MAX_VALUE;
boolean hasAboveRowSpan = false;
float max_height = 0.0f;
for (int k = 0; k < cells.length;) {
PdfPCell cell = cells[k]; PdfPCell cell = cells[k];
float height = 0; float height = 0;
if (cell == null) { if (cell == null) {
hasAboveRowSpan = true;
k++;
continue; continue;
} }
else { else {
height = cell.getMaxHeight(); height = cell.getStyleHeight() == 0 ? cell.getContainer().getHeight() : cell.getStyleHeight();
if (cell.getRowspan() == rowSpan && height > max_height) { if ((height > maxHeight) && (cell.getRowspan() == 1))
max_height = height; maxHeight = height;
} else if (cell.getRowspan() < rowSpan) {
rowSpan = cell.getRowspan();
max_height = height;
}
k += cell.getColspan();
} }
} }
calculated = true; calculated = true;
// carl:假如有格子是从属于一个rowSpan的格子,而这个格子的主格不在这一行(当然这样的假设建立在格子是满的情况下。) return maxHeight = Math.max(styleHeight, maxHeight);
if (!hasAboveRowSpan || rowSpan == 1) {
maxHeight = max_height;
}
return maxHeight;
} }
/** /**
* Writes the border and background of one cell in the row. * Writes the border and background of one cell in the row.
* *
* @param xPos The x-coordinate where the table starts on the canvas * @param xPos The x-coordinate where the table starts on the canvas
* @param yPos The y-coordinate where the table starts on the canvas * @param yPos The y-coordinate where the table starts on the canvas
* @param currentMaxHeight The height of the cell to be drawn. * @param currentMaxHeight The height of the cell to be drawn.
@ -228,7 +224,7 @@ public class PdfPRow {
float top = cell.getTop() + yPos; float top = cell.getTop() + yPos;
float left = cell.getLeft() + xPos; float left = cell.getLeft() + xPos;
float bottom = top - currentMaxHeight; float bottom = top - currentMaxHeight;
if (background != null) { if (background != null) {
PdfContentByte backgr = canvases[PdfPTable.BACKGROUNDCANVAS]; PdfContentByte backgr = canvases[PdfPTable.BACKGROUNDCANVAS];
backgr.setColorFill(background); backgr.setColorFill(background);
@ -250,48 +246,48 @@ public class PdfPRow {
/** /**
* @since 2.1.6 private is now protected * @since 2.1.6 private is now protected
*/ */
protected void saveAndRotateCanvases(PdfContentByte[] canvases, float a, float b, float c, float d, float e, float f) { protected void saveAndRotateCanvases(PdfContentByte[] canvases, float a, float b, float c, float d, float e, float f) {
int last = PdfPTable.TEXTCANVAS + 1; int last = PdfPTable.TEXTCANVAS + 1;
if (canvasesPos == null) if (canvasesPos == null)
canvasesPos = new int[last * 2]; canvasesPos = new int[last * 2];
for (int k = 0; k < last; ++k) { for (int k = 0; k < last; ++k) {
ByteBuffer bb = canvases[k].getInternalBuffer(); ByteBuffer bb = canvases[k].getInternalBuffer();
canvasesPos[k * 2] = bb.size(); canvasesPos[k * 2] = bb.size();
canvases[k].saveState(); canvases[k].saveState();
canvases[k].concatCTM(a, b, c, d, e, f); canvases[k].concatCTM(a, b, c, d, e, f);
canvasesPos[k * 2 + 1] = bb.size(); canvasesPos[k * 2 + 1] = bb.size();
} }
} }
/** /**
* @since 2.1.6 private is now protected * @since 2.1.6 private is now protected
*/ */
protected void restoreCanvases(PdfContentByte[] canvases) { protected void restoreCanvases(PdfContentByte[] canvases) {
int last = PdfPTable.TEXTCANVAS + 1; int last = PdfPTable.TEXTCANVAS + 1;
for (int k = 0; k < last; ++k) { for (int k = 0; k < last; ++k) {
ByteBuffer bb = canvases[k].getInternalBuffer(); ByteBuffer bb = canvases[k].getInternalBuffer();
int p1 = bb.size(); int p1 = bb.size();
canvases[k].restoreState(); canvases[k].restoreState();
if (p1 == canvasesPos[k * 2 + 1]) if (p1 == canvasesPos[k * 2 + 1])
bb.setSize(canvasesPos[k * 2]); bb.setSize(canvasesPos[k * 2]);
} }
} }
/** /**
* @since 3.0.0 protected is now public static * @since 3.0.0 protected is now public static
*/ */
public static float setColumn(ColumnText ct, float left, float bottom, float right, float top) { public static float setColumn(ColumnText ct, float left, float bottom, float right, float top) {
if (left > right) if (left > right)
right = left; right = left;
if (bottom > top) if (bottom > top)
top = bottom; top = bottom;
ct.setSimpleColumn(left, bottom, right, top); ct.setSimpleColumn(left, bottom, right, top);
return top; return top;
} }
/** /**
* Writes a number of cells (not necessarily all cells). * Writes a number of cells (not necessarily all cells).
* *
* @param colStart The first column to be written. * @param colStart The first column to be written.
* Remember that the column index starts with 0. * Remember that the column index starts with 0.
* @param colEnd The last column to be written. * @param colEnd The last column to be written.
@ -311,7 +307,7 @@ public class PdfPRow {
colStart = 0; colStart = 0;
if (colStart >= colEnd) if (colStart >= colEnd)
return; return;
int newStart; int newStart;
for (newStart = colStart; newStart >= 0; --newStart) { for (newStart = colStart; newStart >= 0; --newStart) {
if (cells[newStart] != null) if (cells[newStart] != null)
@ -319,42 +315,42 @@ public class PdfPRow {
if (newStart > 0) if (newStart > 0)
xPos -= widths[newStart - 1]; xPos -= widths[newStart - 1];
} }
if (newStart < 0) if (newStart < 0)
newStart = 0; newStart = 0;
if (cells[newStart] != null) if (cells[newStart] != null)
xPos -= cells[newStart].getLeft(); xPos -= cells[newStart].getLeft();
for (int k = newStart; k < colEnd; ++k) { for (int k = newStart; k < colEnd; ++k) {
PdfPCell cell = cells[k]; PdfPCell cell = cells[k];
if (cell == null) if (cell == null)
continue; continue;
float currentMaxHeight = maxHeight + extraHeights[k]; float currentMaxHeight = maxHeight + extraHeights[k];
writeBorderAndBackground(xPos, yPos, currentMaxHeight, cell, canvases); writeBorderAndBackground(xPos, yPos, currentMaxHeight, cell, canvases);
Image img = cell.getImage(); Image img = cell.getImage();
float tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); float tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
if (cell.getHeight() <= currentMaxHeight) { if (cell.getHeight() <= currentMaxHeight) {
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
tly = cell.getTop() + yPos - currentMaxHeight + cell.getHeight() tly = cell.getTop() + yPos - currentMaxHeight + cell.getHeight()
- cell.getEffectivePaddingTop(); - cell.getEffectivePaddingTop();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
tly = cell.getTop() + yPos + (cell.getHeight() - currentMaxHeight) / 2 tly = cell.getTop() + yPos + (cell.getHeight() - currentMaxHeight) / 2
- cell.getEffectivePaddingTop(); - cell.getEffectivePaddingTop();
break; break;
default: default:
break; break;
} }
} }
if (img != null) { if (img != null) {
if (cell.getRotation() != 0) { if (cell.getRotation() != 0) {
img = Image.getInstance(img); img = Image.getInstance(img);
img.setRotation(img.getImageRotation() + (float)(cell.getRotation() * Math.PI / 180.0)); img.setRotation(img.getImageRotation() + (float)(cell.getRotation() * Math.PI / 180.0));
} }
boolean vf = false; boolean vf = false;
if (cell.getHeight() > currentMaxHeight) { if (cell.getHeight() > currentMaxHeight) {
img.scalePercent(100); img.scalePercent(100);
@ -368,20 +364,20 @@ public class PdfPRow {
+ cell.getEffectivePaddingLeft(); + cell.getEffectivePaddingLeft();
if (vf) { if (vf) {
switch (cell.getHorizontalAlignment()) { switch (cell.getHorizontalAlignment()) {
case Element.ALIGN_CENTER: case Element.ALIGN_CENTER:
left = xPos left = xPos
+ (cell.getLeft() + cell.getEffectivePaddingLeft() + (cell.getLeft() + cell.getEffectivePaddingLeft()
+ cell.getRight() + cell.getRight()
- cell.getEffectivePaddingRight() - img - cell.getEffectivePaddingRight() - img
.getScaledWidth()) / 2; .getScaledWidth()) / 2;
break; break;
case Element.ALIGN_RIGHT: case Element.ALIGN_RIGHT:
left = xPos + cell.getRight() left = xPos + cell.getRight()
- cell.getEffectivePaddingRight() - cell.getEffectivePaddingRight()
- img.getScaledWidth(); - img.getScaledWidth();
break; break;
default: default:
break; break;
} }
tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
} }
@ -392,128 +388,128 @@ public class PdfPRow {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} }
} else { } else {
// rotation sponsored by Connection GmbH // rotation sponsored by Connection GmbH
if (cell.getRotation() == 90 || cell.getRotation() == 270) { if (cell.getRotation() == 90 || cell.getRotation() == 270) {
float netWidth = currentMaxHeight - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom(); float netWidth = currentMaxHeight - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom();
float netHeight = cell.getWidth() - cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight(); float netHeight = cell.getWidth() - cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight();
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
ct.setSimpleColumn(0, 0, netWidth + 0.001f, -netHeight); ct.setSimpleColumn(0, 0, netWidth + 0.001f, -netHeight);
try { try {
ct.go(true); ct.go(true);
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} }
float calcHeight = -ct.getYLine(); float calcHeight = -ct.getYLine();
if (netWidth <= 0 || netHeight <= 0) if (netWidth <= 0 || netHeight <= 0)
calcHeight = 0; calcHeight = 0;
if (calcHeight > 0) { if (calcHeight > 0) {
if (cell.isUseDescender()) if (cell.isUseDescender())
calcHeight -= ct.getDescender(); calcHeight -= ct.getDescender();
ct = ColumnText.duplicate(cell.getColumn()); ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
ct.setSimpleColumn(-0.003f, -0.001f, netWidth + 0.003f, calcHeight); ct.setSimpleColumn(-0.003f, -0.001f, netWidth + 0.003f, calcHeight);
float pivotX; float pivotX;
float pivotY; float pivotY;
if (cell.getRotation() == 90) { if (cell.getRotation() == 90) {
pivotY = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom(); pivotY = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom();
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight(); pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() + calcHeight) / 2; pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() + calcHeight) / 2;
break; break;
default: //top default: //top
pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft() + calcHeight; pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft() + calcHeight;
break; break;
} }
saveAndRotateCanvases(canvases, 0,1,-1,0,pivotX,pivotY); saveAndRotateCanvases(canvases, 0,1,-1,0,pivotX,pivotY);
} }
else { else {
pivotY = cell.getTop() + yPos - cell.getEffectivePaddingTop(); pivotY = cell.getTop() + yPos - cell.getEffectivePaddingTop();
switch (cell.getVerticalAlignment()) { switch (cell.getVerticalAlignment()) {
case Element.ALIGN_BOTTOM: case Element.ALIGN_BOTTOM:
pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft(); pivotX = cell.getLeft() + xPos + cell.getEffectivePaddingLeft();
break; break;
case Element.ALIGN_MIDDLE: case Element.ALIGN_MIDDLE:
pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() - calcHeight) / 2; pivotX = cell.getLeft() + xPos + (cell.getWidth() + cell.getEffectivePaddingLeft() - cell.getEffectivePaddingRight() - calcHeight) / 2;
break; break;
default: //top default: //top
pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight() - calcHeight; pivotX = cell.getLeft() + xPos + cell.getWidth() - cell.getEffectivePaddingRight() - calcHeight;
break; break;
} }
saveAndRotateCanvases(canvases, 0,-1,1,0,pivotX,pivotY); saveAndRotateCanvases(canvases, 0,-1,1,0,pivotX,pivotY);
} }
try { try {
ct.go(); ct.go();
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} finally { } finally {
restoreCanvases(canvases); restoreCanvases(canvases);
} }
} }
} }
else { else {
float fixedHeight = cell.getFixedHeight(); float fixedHeight = cell.getFixedHeight();
float rightLimit = cell.getRight() + xPos float rightLimit = cell.getRight() + xPos
- cell.getEffectivePaddingRight(); - cell.getEffectivePaddingRight();
float leftLimit = cell.getLeft() + xPos float leftLimit = cell.getLeft() + xPos
+ cell.getEffectivePaddingLeft(); + cell.getEffectivePaddingLeft();
if (cell.isNoWrap()) { if (cell.isNoWrap()) {
switch (cell.getHorizontalAlignment()) { switch (cell.getHorizontalAlignment()) {
case Element.ALIGN_CENTER: case Element.ALIGN_CENTER:
rightLimit += 10000; rightLimit += 10000;
leftLimit -= 10000; leftLimit -= 10000;
break; break;
case Element.ALIGN_RIGHT: case Element.ALIGN_RIGHT:
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
rightLimit += RIGHT_LIMIT; rightLimit += RIGHT_LIMIT;
} }
else { else {
leftLimit -= RIGHT_LIMIT; leftLimit -= RIGHT_LIMIT;
} }
break; break;
default: default:
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
leftLimit -= RIGHT_LIMIT; leftLimit -= RIGHT_LIMIT;
} }
else { else {
rightLimit += RIGHT_LIMIT; rightLimit += RIGHT_LIMIT;
} }
break; break;
} }
} }
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
ct.setCanvases(canvases); ct.setCanvases(canvases);
float bry = tly float bry = tly
- (currentMaxHeight - (currentMaxHeight
- cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom()); - cell.getEffectivePaddingTop() - cell.getEffectivePaddingBottom());
if (fixedHeight > 0) { if (fixedHeight > 0) {
if (cell.getHeight() > currentMaxHeight) { if (cell.getHeight() > currentMaxHeight) {
tly = cell.getTop() + yPos - cell.getEffectivePaddingTop(); tly = cell.getTop() + yPos - cell.getEffectivePaddingTop();
bry = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom(); bry = cell.getTop() + yPos - currentMaxHeight + cell.getEffectivePaddingBottom();
} }
} }
if ((tly > bry || ct.zeroHeightElement()) && leftLimit < rightLimit) { if ((tly > bry || ct.zeroHeightElement()) && leftLimit < rightLimit) {
ct.setSimpleColumn(leftLimit, bry - 0.001f, rightLimit, tly); ct.setSimpleColumn(leftLimit, bry - 0.001f, rightLimit, tly);
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
float shx = leftLimit + rightLimit; float shx = leftLimit + rightLimit;
float shy = yPos + yPos - currentMaxHeight + cell.getEffectivePaddingBottom() - cell.getEffectivePaddingTop(); float shy = yPos + yPos - currentMaxHeight + cell.getEffectivePaddingBottom() - cell.getEffectivePaddingTop();
saveAndRotateCanvases(canvases, -1,0,0,-1,shx,shy); saveAndRotateCanvases(canvases, -1,0,0,-1,shx,shy);
} }
try { try {
ct.go(); ct.go();
} catch (DocumentException e) { } catch (DocumentException e) {
throw new ExceptionConverter(e); throw new ExceptionConverter(e);
} finally { } finally {
if (cell.getRotation() == 180) { if (cell.getRotation() == 180) {
restoreCanvases(canvases); restoreCanvases(canvases);
} }
} }
} }
} }
} }
PdfPCellEvent evt = cell.getCellEvent(); PdfPCellEvent evt = cell.getCellEvent();
if (evt != null) { if (evt != null) {
Rectangle rect = new Rectangle(cell.getLeft() + xPos, cell.getTop() Rectangle rect = new Rectangle(cell.getLeft() + xPos, cell.getTop()
@ -523,10 +519,10 @@ public class PdfPRow {
} }
} }
} }
/** /**
* Checks if the dimensions of the columns were calculated. * Checks if the dimensions of the columns were calculated.
* *
* @return true if the dimensions of the columns were calculated * @return true if the dimensions of the columns were calculated
*/ */
public boolean isCalculated() { public boolean isCalculated() {
@ -535,7 +531,7 @@ public class PdfPRow {
/** /**
* Gets the maximum height of the row (i.e. of the 'highest' cell). * Gets the maximum height of the row (i.e. of the 'highest' cell).
* *
* @return the maximum height of the row * @return the maximum height of the row
*/ */
public float getMaxHeights() { public float getMaxHeights() {
@ -547,7 +543,7 @@ public class PdfPRow {
/** /**
* Changes the maximum height of the row (to make it higher). * Changes the maximum height of the row (to make it higher).
* (added by Jin-Hsia Yang) * (added by Jin-Hsia Yang)
* *
* @param maxHeight the new maximum height * @param maxHeight the new maximum height
*/ */
public void setMaxHeights(float maxHeight) { public void setMaxHeights(float maxHeight) {
@ -578,7 +574,7 @@ public class PdfPRow {
* Splits a row to newHeight. * Splits a row to newHeight.
* The returned row is the remainder. It will return null if the newHeight * The returned row is the remainder. It will return null if the newHeight
* was so small that only an empty row would result. * was so small that only an empty row would result.
* *
* @param new_height the new height * @param new_height the new height
* @return the remainder row or null if the newHeight was so small that only * @return the remainder row or null if the newHeight was so small that only
* an empty row would result * an empty row would result
@ -619,22 +615,22 @@ public class PdfPRow {
} }
} }
else { else {
float y; float y;
ColumnText ct = ColumnText.duplicate(cell.getColumn()); ColumnText ct = ColumnText.duplicate(cell.getColumn());
float left = cell.getLeft() + cell.getEffectivePaddingLeft(); float left = cell.getLeft() + cell.getEffectivePaddingLeft();
float bottom = cell.getTop() + cell.getEffectivePaddingBottom() - newHeight; float bottom = cell.getTop() + cell.getEffectivePaddingBottom() - newHeight;
float right = cell.getRight() - cell.getEffectivePaddingRight(); float right = cell.getRight() - cell.getEffectivePaddingRight();
float top = cell.getTop() - cell.getEffectivePaddingTop(); float top = cell.getTop() - cell.getEffectivePaddingTop();
switch (cell.getRotation()) { switch (cell.getRotation()) {
case 90: case 90:
case 270: case 270:
y = setColumn(ct, bottom, left, top, right); y = setColumn(ct, bottom, left, top, right);
break; break;
default: default:
y = setColumn(ct, left, bottom, cell.isNoWrap() ? RIGHT_LIMIT : right, top); y = setColumn(ct, left, bottom, cell.isNoWrap() ? RIGHT_LIMIT : right, top);
break; break;
} }
int status; int status;
try { try {
status = ct.go(true); status = ct.go(true);
} }
@ -648,7 +644,7 @@ public class PdfPRow {
} }
else if ((status & ColumnText.NO_MORE_TEXT) == 0) { else if ((status & ColumnText.NO_MORE_TEXT) == 0) {
newCell.setColumn(ct); newCell.setColumn(ct);
ct.setFilledWidth(0); ct.setFilledWidth(0);
} }
else else
newCell.setPhrase(null); newCell.setPhrase(null);
@ -675,12 +671,12 @@ public class PdfPRow {
split.calculateHeights(); split.calculateHeights();
return split; return split;
} }
/** /**
* Returns the array of cells in the row. * Returns the array of cells in the row.
* Please be extremely careful with this method. * Please be extremely careful with this method.
* Use the cells as read only objects. * Use the cells as read only objects.
* *
* @return an array of cells * @return an array of cells
* @since 2.1.1 * @since 2.1.1
*/ */

1084
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/PdfPTable.java

File diff suppressed because it is too large Load Diff

54
fine-itext-old/src/com/fr/third/com/lowagie/text/pdf/TableProperties.java

@ -0,0 +1,54 @@
package com.fr.third.com.lowagie.text.pdf;
import com.fr.third.com.lowagie.text.pdf.BorderStyle;
/**
* 描述table的属性类
* 包括cellspacingcellpaddingborder等
*/
public class TableProperties {
private BorderStyle borderStyle = new BorderStyle();
private float cellspacing = 2.0f;
private float cellpadding = 1.0f;
private boolean collapse = false;
public BorderStyle getBorderStyle() {
return borderStyle;
}
public void setBorderStyle(BorderStyle borderStyle) {
this.borderStyle = borderStyle;
}
public float getCellspacing() {
return isCollapse() ? 0 : cellspacing;
}
public void setCellspacing(float cellspacing) {
this.cellspacing = cellspacing;
}
public float getCellpadding() {
return cellpadding;
}
public void setCellpadding(float cellpadding) {
this.cellpadding = cellpadding;
}
public boolean isCollapse() {
return collapse;
}
public void setCollapse(boolean collapse) {
this.collapse = collapse;
}
public String toHtmlString(){
StringBuffer sb = new StringBuffer();
sb.append("cellspacing").append("=").append(cellspacing).append(" ");
sb.append("cellpadding").append("=").append(cellpadding).append(" ");
sb.append("border").append("=").append(borderStyle.getBorderWidth()).append(" ");
return sb.toString();
}
}

4
fine-itext-old/src/com/fr/third/com/lowagie/text/rtf/text/RtfChunk.java

@ -49,7 +49,6 @@
package com.fr.third.com.lowagie.text.rtf.text; package com.fr.third.com.lowagie.text.rtf.text;
import java.awt.Color;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream; import java.io.OutputStream;
@ -59,6 +58,7 @@ import com.fr.third.com.lowagie.text.rtf.RtfElement;
import com.fr.third.com.lowagie.text.rtf.document.RtfDocument; import com.fr.third.com.lowagie.text.rtf.document.RtfDocument;
import com.fr.third.com.lowagie.text.rtf.style.RtfColor; import com.fr.third.com.lowagie.text.rtf.style.RtfColor;
import com.fr.third.com.lowagie.text.rtf.style.RtfFont; import com.fr.third.com.lowagie.text.rtf.style.RtfFont;
import com.fr.third.com.lowagie.text.html.Markup;
/** /**
@ -126,7 +126,7 @@ public class RtfChunk extends RtfElement {
this.superSubScript = ((Float)chunk.getAttributes().get(Chunk.SUBSUPSCRIPT)).floatValue(); this.superSubScript = ((Float)chunk.getAttributes().get(Chunk.SUBSUPSCRIPT)).floatValue();
} }
if(chunk.getAttributes() != null && chunk.getAttributes().get(Chunk.BACKGROUND) != null) { if(chunk.getAttributes() != null && chunk.getAttributes().get(Chunk.BACKGROUND) != null) {
this.background = new RtfColor(this.document, (Color) ((Object[]) chunk.getAttributes().get(Chunk.BACKGROUND))[0]); this.background = new RtfColor(this.document, Markup.decodeColor((String)((Object[]) chunk.getAttributes().get(Chunk.BACKGROUND))[0]));
} }
font = new RtfFont(doc, chunk.getFont()); font = new RtfFont(doc, chunk.getFont());
content = chunk.getContent(); content = chunk.getContent();

9
fine-itext/src/com/fr/third/v2/lowagie/text/html/simpleparser/HTMLWorker.java

@ -200,6 +200,8 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
if (follow != null) { if (follow != null) {
HashMap prop = new HashMap(); HashMap prop = new HashMap();
prop.put(follow, null); prop.put(follow, null);
FactoryProperties.insertStyle(h, this.cprops);
prop.putAll(h);
cprops.addToChain(follow, prop); cprops.addToChain(follow, prop);
return; return;
} }
@ -306,7 +308,12 @@ public class HTMLWorker implements SimpleXMLDocHandler, DocListener {
String[] srcArray = src.split(","); String[] srcArray = src.split(",");
String base64string = srcArray[srcArray.length -1]; String base64string = srcArray[srcArray.length -1];
byte[] bytes = decoder.decodeBuffer(base64string); byte[] bytes = decoder.decodeBuffer(base64string);
img = Image.getInstance(bytes); try {
img = Image.getInstance(bytes);
}catch (Exception e){
}
} }
if (img == null) { if (img == null) {
if (!src.startsWith("http")) { if (!src.startsWith("http")) {

11
fine-jackson/src/com/fr/third/fasterxml/jackson/databind/type/ClassFactory.java

@ -0,0 +1,11 @@
package com.fr.third.fasterxml.jackson.databind.type;
/**
* Created by juhaoyu on 2018/11/5.
*/
public interface ClassFactory {
Class<?> classForName(String className) throws ClassNotFoundException;
Class<?> classForName(String className, ClassLoader classLoader) throws ClassNotFoundException;
}

18
fine-jackson/src/com/fr/third/fasterxml/jackson/databind/type/TypeFactory.java

@ -103,13 +103,21 @@ public final class TypeFactory
* ClassLoader used by this factory (Issue #624) * ClassLoader used by this factory (Issue #624)
*/ */
protected final ClassLoader _classLoader; protected final ClassLoader _classLoader;
private ClassFactory classFactory;
/* /*
/********************************************************** /**********************************************************
/* Life-cycle /* Life-cycle
/********************************************************** /**********************************************************
*/ */
public void setClassFactory(ClassFactory classFactory) {
this.classFactory = classFactory;
}
private TypeFactory() { private TypeFactory() {
_parser = new TypeParser(this); _parser = new TypeParser(this);
_modifiers = null; _modifiers = null;
@ -247,10 +255,18 @@ public final class TypeFactory
protected Class<?> classForName(String name, boolean initialize, protected Class<?> classForName(String name, boolean initialize,
ClassLoader loader) throws ClassNotFoundException { ClassLoader loader) throws ClassNotFoundException {
if (classFactory != null) {
return classFactory.classForName(name, loader);
}
return Class.forName(name, true, loader); return Class.forName(name, true, loader);
} }
protected Class<?> classForName(String name) throws ClassNotFoundException { protected Class<?> classForName(String name) throws ClassNotFoundException {
if (classFactory != null) {
return classFactory.classForName(name);
}
return Class.forName(name); return Class.forName(name);
} }

BIN
fine-sense4/lib/jna-3.2.2.jar

Binary file not shown.

63
fine-sense4/src/Sense4/Elite4.java

@ -0,0 +1,63 @@
package Sense4;
/**
* @author Lanlan
* @date 2018/11/25
*/
public class Elite4 {
public static byte[] readElite4Serial() {
EliteLockIO eliteLockIO = LockUtils.getEliteLockIOInstance();
eliteLockIO.initS4(false);
byte[] serial = eliteLockIO.readEliteSerial();
eliteLockIO.closeS4();
return serial;
}
/*
* Write byte[] to elite4
*/
public static boolean writeBytes2ToElite4(byte[] bytes) {
EliteLockIO eliteLockIO = LockUtils.getEliteLockIOInstance();
eliteLockIO.initS4(true);
byte[] write_len_bytes = LockUtils.intToByteArray1(bytes.length + 4);
if (!eliteLockIO.write_internal_file(0, 4, write_len_bytes)) {
eliteLockIO.closeS4();
return false;
}
if (!eliteLockIO.write_internal_file(4, bytes.length, bytes)) {
eliteLockIO.closeS4();
return false;
}
eliteLockIO.closeS4();
return true;
}
/*
* Read byte[] from elite4
*/
public static byte[] readBytesFromElitee4() {
EliteLockIO eliteLockIO = LockUtils.getEliteLockIOInstance();
eliteLockIO.initS4(true);
byte[] len_out = eliteLockIO.read_internal_file(0, 4);
int read_len = LockUtils.byteArray2Int(len_out) - 4;
if (read_len < 0) {
eliteLockIO.closeS4();
return new byte[0];
}
byte read_bytes[] = eliteLockIO.read_internal_file(4, read_len);
eliteLockIO.closeS4();
return read_bytes;
}
public static String toHexString(byte[] b) {
return LockUtils.toHexString(b);
}
}

20
fine-sense4/src/Sense4/EliteLockIO.java

@ -0,0 +1,20 @@
package Sense4;
/**
* @author Lanlan
* @date 2018/11/25
*/
public interface EliteLockIO {
void initS4(boolean changeDir);
void closeS4();
boolean write_internal_file(int offset, int write_len, byte[] write_bytes);
byte[] read_internal_file(int offset, int read_len);
boolean uploadHexExeFile();
byte[] readEliteSerial();
}

277
fine-sense4/src/Sense4/EliteLockIO32.java

@ -0,0 +1,277 @@
package Sense4;
import java.io.File;
import java.io.FileInputStream;
import Sense4.Sense32.S4CREATEDIRINFO;
import Sense4.Sense32.S4OPENINFO;
import Sense4.Sense32.SENSE4_CONTEXT;
import com.sun.jna.ptr.IntByReference;
/**
* @author Lanlan
* @date 2018/11/25
*/
public class EliteLockIO32 implements EliteLockIO {
public static final int MAX_BUFF_SIZE = 0xf0;
public static final byte WRITE = 0;
public static final byte READ = 1;
public SENSE4_CONTEXT ctx= new SENSE4_CONTEXT();//[] = new Sense4.SENSE4_CONTEXT[2];
public Sense32 lib = Sense32.instance;
public EliteLockIO32() {}
public void initS4(boolean changeDir) {
IntByReference pSize = new IntByReference(0);
int ret = lib.S4Enum(ctx, pSize);
ret = lib.S4Enum(ctx, pSize);
if(ret!=0)
{
System.out.println("列举设备失败!");
}
ret = lib.S4Open(ctx);
if(ret!=0)
{
System.out.println("打开设备失败!");
}
if (changeDir) {
ret = lib.S4ChangeDir(ctx, "\\");
if(ret!=0)
{
System.out.println("切换目录失败!");
lib.S4Close(ctx);
}
ret = lib.S4VerifyPin(ctx, "12345678", 8, lib.S4_USER_PIN);
if(ret!=0)
{
System.out.println("校验用户pin失败!");
lib.S4Close(ctx);
}
}
}
public void closeS4() {
int ret = lib.S4Close(ctx);
if(ret!=0)
{
System.out.println("关闭设备失败!");
}
}
public boolean write_internal_file(int offset, int write_len, byte[] write_bytes) {
int write_offset = offset;
int old_offset = write_offset;
byte inBuffer[]=new byte[0xf8];
byte outBuffer[]=new byte[0xf8];
IntByReference pdwByteOut = new IntByReference(0);
inBuffer[0]=WRITE;
while (write_len > 0) {
old_offset = write_offset;
inBuffer[2]=(byte)((write_offset >> 8) & 0xFF);
inBuffer[3]=(byte)(write_offset & 0xFF);
if (write_len <= MAX_BUFF_SIZE) {
System.arraycopy(write_bytes, old_offset - offset, inBuffer, 4, write_len);
inBuffer[1] = (byte)(write_len & 0xFF);
write_len = 0;
write_offset += write_len;
} else {
System.arraycopy(write_bytes, old_offset - offset, inBuffer, 4, MAX_BUFF_SIZE);
inBuffer[1] = (byte)MAX_BUFF_SIZE;
write_len -= MAX_BUFF_SIZE;
write_offset += MAX_BUFF_SIZE;
}
int ret = lib.S4Execute(ctx,"ef21",inBuffer,0xf8,outBuffer,0xf8, pdwByteOut);
if(ret!=0)
{
System.out.println("执行锁内程序失败!");
lib.S4Close(ctx);
return false;
}
}
return true;
}
public byte[] read_internal_file(int offset, int read_len) {
if (read_len < 0) {
throw new IllegalArgumentException();
}
int read_offset = offset;
int old_offset = read_offset;
byte[] out = new byte[read_len];
IntByReference pdwByteOut = new IntByReference(0);
byte inBuffer[]=new byte[0xf8];
byte outBuffer[]=new byte[0xf8];
inBuffer[0]=READ;
while (read_len > 0) {
old_offset = read_offset;
// big-edian
inBuffer[2]=(byte)((read_offset >> 8) & 0xFF);
inBuffer[3]=(byte)(read_offset & 0xFF);
if (read_len <= MAX_BUFF_SIZE) {
inBuffer[1] = (byte)read_len;
read_len = 0;
read_offset += read_len;
} else {
inBuffer[1] = (byte)MAX_BUFF_SIZE;
read_len -= MAX_BUFF_SIZE;
read_offset += MAX_BUFF_SIZE;
}
int ret = lib.S4Execute(ctx, "ef21",inBuffer,0xf8,outBuffer,0xf8,pdwByteOut);
if(ret!=0 || pdwByteOut.getValue() < inBuffer[1])
{
System.out.println("执行锁内程序失败!");
lib.S4Close(ctx);
} else {
System.arraycopy(outBuffer, 0, out, old_offset - offset, pdwByteOut.getValue());
}
}
return out;
}
public boolean uploadHexExeFile() {
Sense32 lib = Sense32.instance;
IntByReference pSize = new IntByReference(0);
int ret = 0;
long errorCount = 0;
IntByReference lpBytesReturned = new IntByReference(0);
SENSE4_CONTEXT[] s4_context = new SENSE4_CONTEXT[0];
ret = lib.S4Enum(null, pSize);
s4_context = new SENSE4_CONTEXT[pSize.getValue() / 92];
for (int i = 0;i< pSize.getValue() / 92; i++){
s4_context[i] = new SENSE4_CONTEXT();
}
ret = lib.S4Enum(s4_context[0], pSize);
checkS4ExceptionResult(ret, "Enumerate Sense4");
errorCount += ret;
S4OPENINFO s4_OpenInfo = new S4OPENINFO();
s4_OpenInfo.dwS4OpenInfoSize = 8;
s4_OpenInfo.dwShareMode = lib.S4_EXCLUSIZE_MODE;
ret = lib.S4OpenEx(s4_context[0], s4_OpenInfo);
checkS4ExceptionResult(ret, "Open Sense4");
errorCount += ret;
byte [] frequency = {0x04};
ret = lib.S4Control(s4_context[0], lib.S4_LED_WINK, frequency, 1, null, 0, lpBytesReturned);
checkS4ExceptionResult(ret, "Sense4 LED wink");
errorCount += ret;
ret = lib.S4ChangeDir (s4_context[0], "\\");
checkS4ExceptionResult(ret, "Change Dir");
errorCount += ret;
ret = lib.S4VerifyPin(s4_context[0], "123456781234567812345678", 24, lib.S4_DEV_PIN);
checkS4ExceptionResult(ret, "Verify dev pin");
errorCount += ret;
ret = lib.S4EraseDir(s4_context[0], null);
checkS4ExceptionResult(ret, "Erase MF");
errorCount += ret;
S4CREATEDIRINFO s4_CreateDirInfo = new S4CREATEDIRINFO();
s4_CreateDirInfo.dwS4CreateDirInfoSize = 12;
s4_CreateDirInfo.szAtr[0] = (byte)0xFF;
s4_CreateDirInfo.szAtr[1] = (byte)0xFF;
s4_CreateDirInfo.szAtr[2] = (byte)0xFF;
s4_CreateDirInfo.szAtr[3] = (byte)0xFF;
s4_CreateDirInfo.szAtr[4] = (byte)0xFF;
s4_CreateDirInfo.szAtr[5] = (byte)0xFF;
s4_CreateDirInfo.szAtr[6] = (byte)0xFF;
s4_CreateDirInfo.szAtr[7] = (byte)0xFF;
ret = lib.S4CreateDirEx(s4_context[0], "\\", 0, lib.S4_CREATE_ROOT_DIR,s4_CreateDirInfo);
checkS4ExceptionResult(ret, "Create MF");
errorCount += ret;
ret = lib.S4VerifyPin (s4_context[0], "123456781234567812345678", 24, lib.S4_DEV_PIN );
checkS4ExceptionResult(ret, "Verify Dev Pin");
errorCount += ret;
// write bin file ef21
File demofile = new File("ReadData.bin");
long contentsize = demofile.length ();
byte [] content = new byte[1];
try
{
FileInputStream is = new FileInputStream (demofile);
content = new byte[(int)contentsize];
is.read(content, 0, (int)contentsize);
is.close();
}
catch(Exception e)
{
System.out.println("error: read hex bing file ");
}
ret = lib.S4WriteFile (s4_context[0], "ef21", 0, content, (int)contentsize, (int)contentsize + 20, lpBytesReturned,
lib.S4_CREATE_NEW , lib.S4_EXE_FILE );
checkS4ExceptionResult(ret, "Write hex bin file");
errorCount += ret;
// write data file bf21
byte[] data_file = new byte[0x6000];
ret = lib.S4WriteFile (s4_context[0], "bf21", 0, data_file, (int)data_file.length, (int)data_file.length + 20, lpBytesReturned,
lib.S4_CREATE_NEW , lib.S4_DATA_FILE );
checkS4ExceptionResult(ret, "Write data file");
errorCount += ret;
ret = lib.S4Control (s4_context[0], lib.S4_LED_DOWN, null, 0, null, 0, lpBytesReturned);
checkS4ExceptionResult(ret, "LED Down");
errorCount += ret;
ret = lib.S4Close(s4_context[0]);
checkS4ExceptionResult(ret, "Close Sense4");
errorCount += ret;
return errorCount == 0;
}
public byte[] readEliteSerial() {
byte[] serial = new byte[8];
int ret = lib.S4Control(ctx, lib.S4_GET_SERIAL_NUMBER, null, 0, serial, 8, null);
if (ret != 0) {
System.out.println("S4_GET_SERIAL_NUMBER: " + ret);
}
return serial;
}
private static void checkS4ExceptionResult(int ret, String info) {
if (ret != 0) {
System.out.println("Error Code: " + ret + " Info:" + info);
} else {
System.out.println("Success: " + info);
}
}
}

274
fine-sense4/src/Sense4/EliteLockIO64.java

@ -0,0 +1,274 @@
package Sense4;
import java.io.File;
import java.io.FileInputStream;
import Sense4.Sense64.S4CREATEDIRINFO;
import Sense4.Sense64.S4OPENINFO;
import Sense4.Sense64.SENSE4_CONTEXT;
import com.sun.jna.ptr.IntByReference;
import com.sun.jna.ptr.LongByReference;
/**
* @author Lanlan
* @date 2018/11/25
*/
public class EliteLockIO64 implements EliteLockIO {
public static final int MAX_BUFF_SIZE = 0xf0;
public static final byte WRITE = 0;
public static final byte READ = 1;
public SENSE4_CONTEXT ctx= new SENSE4_CONTEXT();//[] = new Sense4.SENSE4_CONTEXT[2];
public Sense64 lib = Sense64.instance;
public EliteLockIO64() {}
public void initS4(boolean changeDir) {
LongByReference pSize = new LongByReference(0);
long ret = lib.S4Enum(ctx, pSize);
ret = lib.S4Enum(ctx, pSize);
if(ret!=0)
{
System.out.println("List列举设备失败!" + ret);
}
ret = lib.S4Open(ctx);
if(ret!=0)
{
System.out.println("Open打开设备失败!" + ret);
}
if (changeDir) {
ret = lib.S4ChangeDir(ctx, "\\");
if(ret!=0)
{
System.out.println("Change切换目录失败!" + ret);
lib.S4Close(ctx);
}
ret = lib.S4VerifyPin(ctx, "12345678", 8, lib.S4_USER_PIN);
if(ret!=0)
{
System.out.println("Verify校验用户pin失败!" + ret);
lib.S4Close(ctx);
}
}
}
public void closeS4() {
long ret = lib.S4Close(ctx);
if(ret!=0)
{
System.out.println("Close关闭设备失败!" + ret);
}
}
public boolean write_internal_file(int offset, int write_len, byte[] write_bytes) {
int write_offset = offset;
int old_offset = write_offset;
byte inBuffer[]=new byte[0xf8];
byte outBuffer[]=new byte[0xf8];
IntByReference pdwByteOut = new IntByReference(0);
inBuffer[0]=WRITE;
while (write_len > 0) {
old_offset = write_offset;
inBuffer[2]=(byte)((write_offset >> 8) & 0xFF);
inBuffer[3]=(byte)(write_offset & 0xFF);
if (write_len <= MAX_BUFF_SIZE) {
System.arraycopy(write_bytes, old_offset - offset, inBuffer, 4, write_len);
inBuffer[1] = (byte)(write_len & 0xFF);
write_len = 0;
write_offset += write_len;
} else {
System.arraycopy(write_bytes, old_offset - offset, inBuffer, 4, MAX_BUFF_SIZE);
inBuffer[1] = (byte)MAX_BUFF_SIZE;
write_len -= MAX_BUFF_SIZE;
write_offset += MAX_BUFF_SIZE;
}
int ret = lib.S4Execute(ctx,"ef21",inBuffer,0xf8,outBuffer,0xf8, pdwByteOut);
if(ret!=0)
{
System.out.println("执行锁内程序失败!");
lib.S4Close(ctx);
return false;
}
}
return true;
}
public byte[] read_internal_file(int offset, int read_len) {
int read_offset = offset;
int old_offset = read_offset;
byte[] out = new byte[read_len];
IntByReference pdwByteOut = new IntByReference(0);
byte inBuffer[]=new byte[0xf8];
byte outBuffer[]=new byte[0xf8];
inBuffer[0]=READ;
while (read_len > 0) {
old_offset = read_offset;
inBuffer[2]=(byte)((read_offset >> 8) & 0xFF);
inBuffer[3]=(byte)(read_offset & 0xFF);
if (read_len <= MAX_BUFF_SIZE) {
inBuffer[1] = (byte)read_len;
read_len = 0;
read_offset += read_len;
} else {
inBuffer[1] = (byte)MAX_BUFF_SIZE;
read_len -= MAX_BUFF_SIZE;
read_offset += MAX_BUFF_SIZE;
}
long ret = lib.S4Execute(ctx, "ef21",inBuffer,0xf8,outBuffer,0xf8,pdwByteOut);
if(ret!=0 || pdwByteOut.getValue() < inBuffer[1])
{
System.out.println("执行锁内程序失败!");
lib.S4Close(ctx);
} else {
System.arraycopy(outBuffer, 0, out, old_offset - offset, (int)pdwByteOut.getValue());
}
}
return out;
}
public boolean uploadHexExeFile() {
Sense64 lib = Sense64.instance;
LongByReference pSize = new LongByReference(0);
long ret = 0;
long errorCount = 0;
LongByReference lpBytesReturned = new LongByReference(0);
SENSE4_CONTEXT[] s4_context = new SENSE4_CONTEXT[0];
ret = lib.S4Enum(null, pSize);
s4_context = new SENSE4_CONTEXT[(int)pSize.getValue() / 92];
for (int i = 0;i< pSize.getValue() / 92; i++){
s4_context[i] = new SENSE4_CONTEXT();
}
ret = lib.S4Enum(s4_context[0], pSize);
checkS4ExceptionResult(ret, "Enumerate Sense4");
errorCount += ret;
S4OPENINFO s4_OpenInfo = new S4OPENINFO();
s4_OpenInfo.dwS4OpenInfoSize = 8;
s4_OpenInfo.dwShareMode = lib.S4_EXCLUSIZE_MODE;
ret = lib.S4OpenEx(s4_context[0], s4_OpenInfo);
checkS4ExceptionResult(ret, "Open Sense4");
errorCount += ret;
byte [] frequency = {0x04};
ret = lib.S4Control(s4_context[0], lib.S4_LED_WINK, frequency, 1, null, 0, lpBytesReturned);
checkS4ExceptionResult(ret, "Sense4 LED wink");
errorCount += ret;
ret = lib.S4ChangeDir (s4_context[0], "\\");
checkS4ExceptionResult(ret, "Change Dir");
errorCount += ret;
ret = lib.S4VerifyPin(s4_context[0], "123456781234567812345678", 24, lib.S4_DEV_PIN);
checkS4ExceptionResult(ret, "Verify dev pin");
errorCount += ret;
ret = lib.S4EraseDir(s4_context[0], null);
checkS4ExceptionResult(ret, "Erase MF");
errorCount += ret;
S4CREATEDIRINFO s4_CreateDirInfo = new S4CREATEDIRINFO();
s4_CreateDirInfo.dwS4CreateDirInfoSize = 12;
s4_CreateDirInfo.szAtr[0] = (byte)0xFF;
s4_CreateDirInfo.szAtr[1] = (byte)0xFF;
s4_CreateDirInfo.szAtr[2] = (byte)0xFF;
s4_CreateDirInfo.szAtr[3] = (byte)0xFF;
s4_CreateDirInfo.szAtr[4] = (byte)0xFF;
s4_CreateDirInfo.szAtr[5] = (byte)0xFF;
s4_CreateDirInfo.szAtr[6] = (byte)0xFF;
s4_CreateDirInfo.szAtr[7] = (byte)0xFF;
ret = lib.S4CreateDirEx(s4_context[0], "\\", 0, lib.S4_CREATE_ROOT_DIR,s4_CreateDirInfo);
checkS4ExceptionResult(ret, "Create MF");
errorCount += ret;
ret = lib.S4VerifyPin (s4_context[0], "123456781234567812345678", 24, lib.S4_DEV_PIN );
checkS4ExceptionResult(ret, "Verify Dev Pin");
errorCount += ret;
// write bin file ef21
File demofile = new File("ReadData.bin");
long contentsize = demofile.length ();
byte [] content = new byte[1];
try
{
FileInputStream is = new FileInputStream (demofile);
content = new byte[(int)contentsize];
is.read(content, 0, (int)contentsize);
is.close();
}
catch(Exception e)
{
e.printStackTrace();
System.out.println("error: read hex bing file ");
}
ret = lib.S4WriteFile (s4_context[0], "ef21", 0, content, (int)contentsize, (int)contentsize + 20, lpBytesReturned,
lib.S4_CREATE_NEW , lib.S4_EXE_FILE );
checkS4ExceptionResult(ret, "Write hex bin file");
errorCount += ret;
// write data file bf21
byte[] data_file = new byte[0x6000];
ret = lib.S4WriteFile (s4_context[0], "bf21", 0, data_file, (int)data_file.length, (int)data_file.length + 20, lpBytesReturned,
lib.S4_CREATE_NEW , lib.S4_DATA_FILE );
checkS4ExceptionResult(ret, "Write data file");
errorCount += ret;
ret = lib.S4Control (s4_context[0], lib.S4_LED_DOWN, null, 0, null, 0, lpBytesReturned);
checkS4ExceptionResult(ret, "LED Down");
errorCount += ret;
ret = lib.S4Close(s4_context[0]);
checkS4ExceptionResult(ret, "Close Sense4");
errorCount += ret;
return errorCount == 0;
}
private static void checkS4ExceptionResult(long ret, String info) {
if (ret != 0) {
System.out.println("Error Code: " + ret + " Info:" + info);
} else {
System.out.println("Success: " + info);
}
}
public byte[] readEliteSerial() {
byte[] serial = new byte[8];
long ret = lib.S4Control(ctx, lib.S4_GET_SERIAL_NUMBER, null, 0, serial, 8, null);
if (ret != 0) {
System.out.println("S4_GET_SERIAL_NUMBER: " + ret);
}
return serial;
}
}

65
fine-sense4/src/Sense4/LockUtils.java

@ -0,0 +1,65 @@
package Sense4;
/**
* @author Lanlan
* @date 2018/11/25
*/
public abstract class LockUtils {
private static EliteLockIO intance;
public static boolean isJVMSystem32() {
String arch_model = System.getProperty("sun.arch.data.model");
return "32".equals(arch_model);
}
// big-endian
public static byte[] intToByteArray1(int i) {
byte[] result = new byte[4];
result[0] = (byte)((i >> 24) & 0xFF);
result[1] = (byte)((i >> 16) & 0xFF);
result[2] = (byte)((i >> 8) & 0xFF);
result[3] = (byte)(i & 0xFF);
return result;
}
// big-endian
public static int byteArray2Int(byte[] bytes) {
int res = 0;
res += (bytes[0] & 0xff) << 24;
res += (bytes[1] & 0xff) << 16;
res += (bytes[2] & 0xff)<< 8;
res += bytes[3] & 0xff;
return res;
}
public static String toHexString(byte[] b) {
StringBuilder sb = new StringBuilder();
for (int i = 0; i < b.length; i++) {
String hex = Integer.toHexString(b[i] & 0xFF);
if (hex.length() == 1) {
hex = "0" + hex;
}
sb.append(hex);
}
return sb.toString();
}
public static void main(String[] args) {
System.out.println("System is 32-bit: " + isJVMSystem32());
}
public static EliteLockIO getEliteLockIOInstance() {
if (intance == null) {
if (isJVMSystem32()) {
intance = new EliteLockIO32();
} else {
intance = new EliteLockIO64();
}
}
return intance;
}
}

218
fine-sense4/src/Sense4/Sense32.java

@ -0,0 +1,218 @@
package Sense4;
import com.sun.jna.Native;
import com.sun.jna.Structure;
import com.sun.jna.ptr.IntByReference;
import java.util.ArrayList;
import java.util.List;
public interface Sense32 extends com.sun.jna.Library
{
Sense32 instance = (Sense32) Native.loadLibrary("EL", Sense32.class);
public static final int S4_USER_PIN = 0x000000a1;
public static final int S4_DEV_PIN = 0x000000a2;
public static final int S4_AUTHEN_PIN = 0x000000a3;
public static final int S4_CREATE_NEW = 0x000000a5;
public static final int S4_UPDATE_FILE = 0x000000a6;
// #define S4_EXE_FILE 0x00000008 /** executable file of virtual machine*/
public static final byte S4_EXE_FILE = 0x00000008;
public static final byte S4_DATA_FILE = 0x00000009;
public static final int S4_FILE_EXIST = 0x00006a80;
// #define S4_LED_DOWN 0x00000008 /** LED down*/
public static final int S4_LED_DOWN = 0x00000008;
// #define S4_LED_WINK 0x00000028 /** LED wink*/
public static final int S4_LED_WINK = 0x00000028;
public static final int S4_GET_SERIAL_NUMBER = 0x00000026;
// #define S4_EXCLUSIZE_MODE 0 /** exclusive mode*/
// #define S4_SHARE_MODE 1 /** sharable mode*/
public static final int S4_EXCLUSIZE_MODE = 0x00000000;
public static final int S4_SHARE_MODE = 0x00000001;
// #define S4_CREATE_ROOT_DIR 0x000000ab /** create root directory*/
public static final int S4_CREATE_ROOT_DIR = 0x000000ab;
public static class RTC_TIME_T extends Structure
{
public byte second; /* second (0-59) */
public byte minute; /* minute (0-59) */
public byte hour; /* hour (0-23) */
public byte day; /* day of month (1-31) */
public byte week; /* day of week (0-6, sunday is 0) */
public byte month; /* month (0-11) */
public short year; /* year (0- 138, 1900 - 2038) */
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("second");
list.add("minute");
list.add("hour");
list.add("day");
list.add("week");
list.add("month");
list.add("year");
return list;
}
}
public static class SENSE4_CONTEXT extends Structure {
public int dwIndex; /** device index; index begins at zero*/
public int dwVersion; /** device version*/
public int hLock; /** device handle*/
public byte[] reserve = new byte[12*2]; /** reserved*/
public byte[] bAtr = new byte[56]; /** ATR*/
public byte[] bID = new byte[8]; /** device ID*/
public int dwAtrLen; /** ATR length*/
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwIndex");
list.add("dwVersion");
list.add("hLock");
list.add("reserve");
list.add("bAtr");
list.add("bID");
list.add("dwAtrLen");
return list;
}
}
/** Netlock Module infomation definition*/
// typedef struct _S4MODULEINFO {
// WORD wModuleID; /* Module ID*/
// WORD wLicenseCount; /* License Count */
// } S4MODULEINFO;
public static class S4MODULEINFO extends Structure {
public short wModuleID;
public short wLicenseCount;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("wModuleID");
list.add("wLicenseCount");
return list;
}
}
// typedef struct _S4NETCONFIG {
// DWORD dwLicenseMode; /* License Mode */
// DWORD dwModuleCount; /* Module Count */
// S4MODULEINFO ModuleInfo[16]; /* Module detail infomation */
// } S4NETCONFIG;
public static class S4NETCONFIG extends Structure {
public int dwLicenseMode;
public int dwModuleCount;
public S4MODULEINFO[] ModuleInfo = new S4MODULEINFO[16];
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwLicenseMode");
list.add("dwModuleCount");
list.add("ModuleInfo");
return list;
}
}
// S4CREATEDIRINFO structure definition
// typedef struct _S4CREATEDIRINFO {
// DWORD dwS4CreateDirInfoSize; /* size of the structure*/
// BYTE szAtr[8]; /* ATR information */
// S4NETCONFIG NetConfig; /* netlock config infomation */
// } S4CREATEDIRINFO;
public static class S4CREATEDIRINFO extends Structure {
public int dwS4CreateDirInfoSize;
public byte[] szAtr = new byte[8];
public S4NETCONFIG NetConfig;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwS4CreateDirInfoSize");
list.add("szAtr");
list.add("NetConfig");
return list;
}
}
// typedef struct _S4OPENINFO {
// DWORD dwS4OpenInfoSize; /* size of the structure*/
// DWORD dwShareMode; /* share mode*/
// } S4OPENINFO;
public static class S4OPENINFO extends Structure {
public int dwS4OpenInfoSize;
public int dwShareMode;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwS4OpenInfoSize");
list.add("dwShareMode");
return list;
}
}
public int S4Enum(SENSE4_CONTEXT ctx, IntByReference pSize);
public int S4Open(SENSE4_CONTEXT ctx);
// DWORD WINAPI S4Control(
// IN SENSE4_CONTEXT *pS4Ctx,
// IN DWORD dwCtlCode,
// IN VOID *pInBuffer,
// IN DWORD dwInBufferLen,
// OUT VOID *pOutBuffer,
// IN DWORD dwOutBufferLen,
// OUT DWORD *pdwBytesReturned
// );
public int S4Control(
SENSE4_CONTEXT ctx,
int dwCtlCode,
byte[] pInBuffer,
int dwInBufferLen,
byte[] pOutBuffer,
int dwOutBufferLen,
IntByReference pdwBytesReturned
);
public int S4ChangeDir(SENSE4_CONTEXT ctx, String dir);
//
public int S4EraseDir(SENSE4_CONTEXT ctx, String dir);
public int S4VerifyPin(SENSE4_CONTEXT ctx, String passwd, int passwdLen, int type);
public int S4WriteFile(SENSE4_CONTEXT ctx,
String lpszFileID,
int dwOffset,
byte lpBuffer[],
int dwBufferSize,
int dwFileSize,
IntByReference pdwBytesWritten,
int dwFlags,
byte bFileType);
public int S4Execute(SENSE4_CONTEXT ctx, String fileID, byte[] inputBuf, int inputSize, byte[] outputBuf, int outputSize, IntByReference pSize);
public int S4Close(SENSE4_CONTEXT ctx);
// DWORD WINAPI S4CreateDirEx(
// IN SENSE4_CONTEXT *pS4Ctx,
// IN LPCSTR lpszDirID,
// IN DWORD dwDirSize,
// IN DWORD dwFlags,
// IN S4CREATEDIRINFO *pCreateDirInfo
// );
public int S4CreateDirEx(
SENSE4_CONTEXT ctx,
String lpszDirID,
int dwDirSize,
int dwFlags,
S4CREATEDIRINFO pCreateDirInfo
);
// DWORD WINAPI S4OpenEx(
// IN OUT SENSE4_CONTEXT *pS4Ctx,
// IN S4OPENINFO *pS4OpenInfo
// );
public int S4OpenEx(SENSE4_CONTEXT ctx, S4OPENINFO pS4OpenInfo);
}

219
fine-sense4/src/Sense4/Sense64.java

@ -0,0 +1,219 @@
package Sense4;
import com.sun.jna.Native;
import com.sun.jna.Structure;
import com.sun.jna.ptr.IntByReference;
import com.sun.jna.ptr.LongByReference;
import java.util.ArrayList;
import java.util.List;
public interface Sense64 extends com.sun.jna.Library
{
Sense64 instance = (Sense64) Native.loadLibrary("EL", Sense64.class);
public static final long S4_USER_PIN = 0x000000a1;
public static final long S4_DEV_PIN = 0x000000a2;
public static final long S4_AUTHEN_PIN = 0x000000a3;
public static final long S4_CREATE_NEW = 0x000000a5;
public static final long S4_UPDATE_FILE = 0x000000a6;
// #define S4_EXE_FILE 0x00000008 /** executable file of virtual machine*/
public static final byte S4_EXE_FILE = 0x00000008;
public static final byte S4_DATA_FILE = 0x00000009;
public static final long S4_FILE_EXIST = 0x00006a80;
// #define S4_LED_DOWN 0x00000008 /** LED down*/
public static final long S4_LED_DOWN = 0x00000008;
// #define S4_LED_WINK 0x00000028 /** LED wink*/
public static final long S4_LED_WINK = 0x00000028;
public static final long S4_GET_SERIAL_NUMBER = 0x00000026;
// #define S4_EXCLUSIZE_MODE 0 /** exclusive mode*/
// #define S4_SHARE_MODE 1 /** sharable mode*/
public static final long S4_EXCLUSIZE_MODE = 0x00000000;
public static final long S4_SHARE_MODE = 0x00000001;
// #define S4_CREATE_ROOT_DIR 0x000000ab /** create root directory*/
public static final long S4_CREATE_ROOT_DIR = 0x000000ab;
public static class RTC_TIME_T extends Structure
{
public byte second; /* second (0-59) */
public byte minute; /* minute (0-59) */
public byte hour; /* hour (0-23) */
public byte day; /* day of month (1-31) */
public byte week; /* day of week (0-6, sunday is 0) */
public byte month; /* month (0-11) */
public short year; /* year (0- 138, 1900 - 2038) */
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("second");
list.add("minute");
list.add("hour");
list.add("day");
list.add("week");
list.add("month");
list.add("year");
return list;
}
}
public static class SENSE4_CONTEXT extends Structure {
public long dwIndex; /** device index; index begins at zero*/
public long dwVersion; /** device version*/
public long hLock; /** device handle*/
public byte[] reserve = new byte[12*2]; /** reserved*/
public byte[] bAtr = new byte[56]; /** ATR*/
public byte[] bID = new byte[8]; /** device ID*/
public long dwAtrLen; /** ATR length*/
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwIndex");
list.add("dwVersion");
list.add("hLock");
list.add("reserve");
list.add("bAtr");
list.add("bID");
list.add("dwAtrLen");
return list;
}
}
/** Netlock Module infomation definition*/
// typedef struct _S4MODULEINFO {
// WORD wModuleID; /* Module ID*/
// WORD wLicenseCount; /* License Count */
// } S4MODULEINFO;
public static class S4MODULEINFO extends Structure {
public int wModuleID;
public int wLicenseCount;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("wModuleID");
list.add("wLicenseCount");
return list;
}
}
// typedef struct _S4NETCONFIG {
// DWORD dwLicenseMode; /* License Mode */
// DWORD dwModuleCount; /* Module Count */
// S4MODULEINFO ModuleInfo[16]; /* Module detail infomation */
// } S4NETCONFIG;
public static class S4NETCONFIG extends Structure {
public long dwLicenseMode;
public long dwModuleCount;
public S4MODULEINFO[] ModuleInfo = new S4MODULEINFO[16];
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwLicenseMode");
list.add("dwModuleCount");
list.add("ModuleInfo");
return list;
}
}
// S4CREATEDIRINFO structure definition
// typedef struct _S4CREATEDIRINFO {
// DWORD dwS4CreateDirInfoSize; /* size of the structure*/
// BYTE szAtr[8]; /* ATR information */
// S4NETCONFIG NetConfig; /* netlock config infomation */
// } S4CREATEDIRINFO;
public static class S4CREATEDIRINFO extends Structure {
public long dwS4CreateDirInfoSize;
public byte[] szAtr = new byte[8];
public S4NETCONFIG NetConfig;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwS4CreateDirInfoSize");
list.add("szAtr");
list.add("NetConfig");
return list;
}
}
// typedef struct _S4OPENINFO {
// DWORD dwS4OpenInfoSize; /* size of the structure*/
// DWORD dwShareMode; /* share mode*/
// } S4OPENINFO;
public static class S4OPENINFO extends Structure {
public long dwS4OpenInfoSize;
public long dwShareMode;
protected List<String> getFieldOrder() {
List<String> list = new ArrayList<String>();
list.add("dwS4OpenInfoSize");
list.add("dwShareMode");
return list;
}
}
public long S4Enum(SENSE4_CONTEXT ctx, LongByReference pSize);
public long S4Open(SENSE4_CONTEXT ctx);
// DWORD WINAPI S4Control(
// IN SENSE4_CONTEXT *pS4Ctx,
// IN DWORD dwCtlCode,
// IN VOID *pInBuffer,
// IN DWORD dwInBufferLen,
// OUT VOID *pOutBuffer,
// IN DWORD dwOutBufferLen,
// OUT DWORD *pdwBytesReturned
// );
public long S4Control(
SENSE4_CONTEXT ctx,
long dwCtlCode,
byte[] pInBuffer,
long dwInBufferLen,
byte[] pOutBuffer,
long dwOutBufferLen,
LongByReference pdwBytesReturned
);
public long S4ChangeDir(SENSE4_CONTEXT ctx, String dir);
//
public long S4EraseDir(SENSE4_CONTEXT ctx, String dir);
public long S4VerifyPin(SENSE4_CONTEXT ctx, String passwd, long passwdLen, long type);
public long S4WriteFile(SENSE4_CONTEXT ctx,
String lpszFileID,
long dwOffset,
byte lpBuffer[],
long dwBufferSize,
long dwFileSize,
LongByReference pdwBytesWritten,
long dwFlags,
byte bFileType);
public int S4Execute(Sense64.SENSE4_CONTEXT ctx, String fileID, byte[] inputBuf, int inputSize, byte[] outputBuf, int outputSize, IntByReference pSize);
public long S4Close(SENSE4_CONTEXT ctx);
// DWORD WINAPI S4CreateDirEx(
// IN SENSE4_CONTEXT *pS4Ctx,
// IN LPCSTR lpszDirID,
// IN DWORD dwDirSize,
// IN DWORD dwFlags,
// IN S4CREATEDIRINFO *pCreateDirInfo
// );
public long S4CreateDirEx(
SENSE4_CONTEXT ctx,
String lpszDirID,
long dwDirSize,
long dwFlags,
S4CREATEDIRINFO pCreateDirInfo
);
// DWORD WINAPI S4OpenEx(
// IN OUT SENSE4_CONTEXT *pS4Ctx,
// IN S4OPENINFO *pS4OpenInfo
// );
public long S4OpenEx(SENSE4_CONTEXT ctx, S4OPENINFO pS4OpenInfo);
}

690
fine-sense4/src/Sense4/sense4.h

@ -0,0 +1,690 @@
/**************************************************************************************
* Copyright (c) 2008, Senselock Software Technology Co., Ltd
* All rights reserved.
*
* filename: sense4.h
*
* briefs: EliteIV library interface declaration, return value and some constant definition.
*
* date: 2008.04.08
* version: 3.1
*******************************************************************************************/
#ifndef __SENSE4_H__
#define __SENSE4_H__
#ifdef _MSC_VER
#pragma comment(linker, "/defaultlib:setupapi.lib")
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if defined WIN32 || defined _WIN32 || defined _WIN64
#include <windows.h>
typedef HANDLE S4HANDLE;
#elif defined __MACH__
typedef io_connect_t S4HANDLE;
#else
typedef void* S4HANDLE;
#endif /* defined WIN32 || defined _WIN32 || defined _WIN64 */
#ifndef IN
#define IN
#endif
#ifndef OUT
#define OUT
#endif
#if !defined _WINDOWS_
#define WINAPI
#define CONST const
typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef unsigned int UINT;
typedef unsigned long ULONG;
typedef char CHAR;
typedef char TCHAR;
typedef void VOID;
#ifndef _BYTE_DEFINED
#define _BYTE_DEFINED
typedef unsigned char BYTE;
#endif
#ifndef _WORD_DEFINED
#define _WORD_DEFINED
typedef unsigned short WORD;
#endif
#ifndef _DWORD_DEFINED
#define _DWORD_DEFINED
typedef unsigned long DWORD;
#endif
typedef VOID* LPVOID;
typedef CHAR* LPSTR;
typedef CONST CHAR* LPCSTR;
typedef CONST TCHAR* LPCTSTR;
typedef BYTE* LPBYTE;
typedef WORD* LPWORD;
typedef DWORD* LPDWORD;
#endif /* !defined _WINDOWS */
//@{
/**
device share mode definition
*/
#define S4_EXCLUSIZE_MODE 0 /** exclusive mode*/
#define S4_SHARE_MODE 1 /** sharable mode*/
//@}
//@{
/**
the control code value definition
*/
#define S4_LED_UP 0x00000004 /** LED up*/
#define S4_LED_DOWN 0x00000008 /** LED down*/
#define S4_LED_WINK 0x00000028 /** LED wink*/
#define S4_GET_DEVICE_TYPE 0x00000025 /** get the device type*/
#define S4_GET_SERIAL_NUMBER 0X00000026 /** get the device serial number*/
#define S4_GET_VM_TYPE 0X00000027 /** get the virtual machine type*/
#define S4_GET_DEVICE_USABLE_SPACE 0x00000029 /** get the total space of the device*/
#define S4_SET_DEVICE_ID 0x0000002a /** set the device ID*/
#define S4_RESET_DEVICE 0x00000002 /** reset the device*/
#define S4_DF_AVAILABLE_SPACE 0x00000031 /** get the free space of current directory*/
#define S4_EF_INFO 0x00000032 /** get specified file information in current directory*/
#define S4_SET_USB_MODE 0x00000041 /** set the device as a normal usb device*/
#define S4_SET_HID_MODE 0x00000042 /** set the device as a HID device*/
#define S4_GET_CUSTOMER_NAME 0x0000002b /** get the customer number*/
#define S4_GET_MANUFACTURE_DATE 0x0000002c /** get the manufacture date of the device*/
#define S4_GET_CURRENT_TIME 0x0000002d /** get the current time of the clock device*/
#define S4_SET_NET_CONFIG 0x00000030 /** set netlock config */
//@}
//@}
//@{
/**
device type definition
*/
#define S4_LOCAL_DEVICE 0x00 /** local device*/
#define S4_MASTER_DEVICE 0x01 /** net master device*/
#define S4_SLAVE_DEVICE 0x02 /** net slave device*/
//@}
//@{
/**
virtual machine type definition
*/
#define S4_VM_51 0x00 /** inter 51*/
#define S4_VM_251_BINARY 0x01 /** inter 251, binary mode*/
#define S4_VM_251_SOURCE 0X02 /** inter 251, source mode*/
//@}
//@{
/**
NetLock license mode
*/
#define S4_MODULE_MODE 0x00000000 /** Module mode*/
#define S4_IP_MODE 0x00000001 /** IP mode*/
//@}
//@{
/**
PIN and key type definition
*/
#define S4_USER_PIN 0x000000a1 /** user PIN*/
#define S4_DEV_PIN 0x000000a2 /** developer PIN*/
#define S4_AUTHEN_PIN 0x000000a3 /** authentication key of net device*/
//@}
//@{
/**
file type definition
*/
#define S4_RSA_PUBLIC_FILE 0x00000006 /** RSA public key file*/
#define S4_RSA_PRIVATE_FILE 0x00000007 /** RSA private key file*/
#define S4_EXE_FILE 0x00000008 /** executable file of virtual machine*/
#define S4_DATA_FILE 0x00000009 /** data file*/
#define S4_XA_EXE_FILE 0x0000000b /** executable file of XA User mode*/
//@}
//@{
/**
flag value definition
*/
#define S4_CREATE_NEW 0x000000a5 /** create a new file*/
#define S4_UPDATE_FILE 0x000000a6 /** write data to the specified file*/
#define S4_KEY_GEN_RSA_FILE 0x000000a7 /** generate RSA key pair files*/
#define S4_SET_LICENCES 0x000000a8 /** set the max license number of the current module for the net device*/
#define S4_CREATE_ROOT_DIR 0x000000ab /** create root directory*/
#define S4_CREATE_SUB_DIR 0x000000ac /** create child directory for current directory*/
#define S4_CREATE_MODULE 0x000000ad /** create a module directory for the net device */
/** the following three flags can only be used when creating a new executable file */
#define S4_FILE_READ_WRITE 0x00000000 /** the new executable file can be read and written by executable file */
#define S4_FILE_EXECUTE_ONLY 0x00000100 /** the new executable file can't be read or written by executable file*/
#define S4_CREATE_PEDDING_FILE 0x00002000 /** create a padding file*/
//@}
//@{
/**
execuable file executing mode definition
*/
#define S4_VM_EXE 0x00000000 /** executing on virtual machine*/
#define S4_XA_EXE 0x00000001 /** executing on XA User mode */
//@}
//@{
/**
return value definition
*/
#define S4_SUCCESS 0x00000000 /** success*/
#define S4_UNPOWERED 0x00000001 /** the device has been powered off*/
#define S4_INVALID_PARAMETER 0x00000002 /** invalid parameter*/
#define S4_COMM_ERROR 0x00000003 /** communication error*/
#define S4_PROTOCOL_ERROR 0x00000004 /** communication protocol error*/
#define S4_DEVICE_BUSY 0x00000005 /** the device is busy*/
#define S4_KEY_REMOVED 0x00000006 /** the device has been removed */
#define S4_INSUFFICIENT_BUFFER 0x00000011 /** the input buffer is insufficient*/
#define S4_NO_LIST 0x00000012 /** find no device*/
#define S4_GENERAL_ERROR 0x00000013 /** general error, commonly indicates not enough memory*/
#define S4_UNSUPPORTED 0x00000014 /** the function isn't supported*/
#define S4_DEVICE_TYPE_MISMATCH 0x00000020 /** the device type doesn't match*/
#define S4_FILE_SIZE_CROSS_7FFF 0x00000021 /** the execuable file crosses address 0x7FFF*/
#define S4_CURRENT_DF_ISNOT_MF 0x00000201 /** a net module must be child directory of the root directory*/
#define S4_INVAILABLE_MODULE_DF 0x00000202 /** the current directory is not a module*/
#define S4_FILE_SIZE_TOO_LARGE 0x00000203 /** the file size is beyond address 0x7FFF*/
#define S4_DF_SIZE 0x00000204 /** the specified directory size is too small*/
#define S4_DEVICE_UNSUPPORTED 0x00006a81 /** the request can't be supported by the device*/
#define S4_FILE_NOT_FOUND 0x00006a82 /** the specified file or directory can't be found */
#define S4_INSUFFICIENT_SECU_STATE 0x00006982 /** the security state doesn't match*/
#define S4_DIRECTORY_EXIST 0x00006901 /** the specified directory has already existed*/
#define S4_FILE_EXIST 0x00006a80 /** the specified file or directory has already existed*/
#define S4_INSUFFICIENT_SPACE 0x00006a84 /** the space is insufficient*/
#define S4_OFFSET_BEYOND 0x00006B00 /** the offset is beyond the file size*/
#define S4_PIN_BLOCK 0x00006983 /** the specified pin or key has been locked*/
#define S4_FILE_TYPE_MISMATCH 0x00006981 /** the file type doesn't match*/
#define S4_CRYPTO_KEY_NOT_FOUND 0x00009403 /** the specified pin or key cann't be found*/
#define S4_APPLICATION_TEMP_BLOCK 0x00006985 /** the directory has been temporarily locked*/
#define S4_APPLICATION_PERM_BLOCK 0x00009303 /** the directory has been locked*/
#define S4_DATA_BUFFER_LENGTH_ERROR 0x00006700 /** invalid data length*/
#define S4_CODE_RANGE 0x00010000 /** the PC register of the virtual machine is out of range*/
#define S4_CODE_RESERVED_INST 0x00020000 /** invalid instruction*/
#define S4_CODE_RAM_RANGE 0x00040000 /** internal ram address is out of range*/
#define S4_CODE_BIT_RANGE 0x00080000 /** bit address is out of range*/
#define S4_CODE_SFR_RANGE 0x00100000 /** SFR address is out of range*/
#define S4_CODE_XRAM_RANGE 0x00200000 /** external ram address is out of range*/
#define S4_ERROR_UNKNOWN 0xffffffff /** unknown error*/
//@}
#define MAX_ATR_LEN 56 /** max ATR length */
#define MAX_ID_LEN 8 /** max device ID length */
#define S4_RSA_MODULUS_LEN 128 /** RSA key modules length,in bytes */
#define S4_RSA_PRIME_LEN 64 /** RSA key prime length,in bytes*/
//@{
/**
structure definition
*/
/* file information definition*/
typedef struct{
WORD EfID; /* file ID*/
BYTE EfType; /* file type*/
WORD EfSize; /* file size*/
}EFINFO,*PEFINFO;
/* device production date structure definition*/
typedef struct {
WORD wYear; /* year*/
BYTE byMonth; /* month*/
BYTE byDay; /* the day of the month */
}S4_MANUFACTURE_DATE;
/* current time structure definition*/
#ifndef _TM_DEFINED
typedef struct {
int tm_sec; /* seconds after the minute - [0,59] */
int tm_min; /* minutes after the hour - [0,59] */
int tm_hour; /* hours since midnight - [0,23] */
int tm_mday; /* day of the month - [1,31] */
int tm_mon; /* months since January - [0,11] */
int tm_year; /* years since 1900 */
int tm_wday; /* days since Sunday - [0,6] */
int tm_yday; /* days since January 1 - [0,365] */
int tm_isdst; /* daylight savings time flag */
} TM;
#define _TM_DEFINED
#endif
/**
device version definition
*/
typedef enum{
SENSE4_CARD_TYPE_V2_00 = 0x00020000, /** version 2.00*/
SENSE4_CARD_TYPE_V2_01 = 0x00020001, /** version 2.10*/
SENSE4_CARD_TYPE_V2_02 = 0x00020002, /** version 2.20*/
SENSE4_CARD_TYPE_V2_05 = 0x00020005, /** version 2.05*/
SENSE4_CARD_TYPE_V2_30 = 0x00020300 /** version 2.30*/
}CARD_VERSION;
/**
device information structure definition
*/
typedef struct {
DWORD dwIndex; /** device index; index begins at zero*/
DWORD dwVersion; /** device version*/
S4HANDLE hLock; /** device handle*/
BYTE reserve[12]; /** reserved*/
BYTE bAtr[MAX_ATR_LEN]; /** ATR*/
BYTE bID[MAX_ID_LEN]; /** device ID*/
DWORD dwAtrLen; /** ATR length*/
}SENSE4_CONTEXT,*PSENSE4_CONTEXT;
/** RSA public key structure*/
typedef struct {
unsigned char modulus[S4_RSA_MODULUS_LEN]; /* modulus*/
unsigned char exponent[S4_RSA_MODULUS_LEN]; /* public exponent*/
} S4_RSA_PUBLIC_KEY;
/** RSA private key structure*/
typedef struct {
unsigned char modulus[S4_RSA_MODULUS_LEN]; /* modulus*/
unsigned char publicExponent[S4_RSA_MODULUS_LEN]; /* public exponent*/
unsigned char exponent[S4_RSA_MODULUS_LEN]; /* private exponent*/
unsigned char prime[2][S4_RSA_PRIME_LEN]; /* prime factors*/
unsigned char primeExponent[2][S4_RSA_PRIME_LEN]; /* exponents for CRT*/
unsigned char coefficient[S4_RSA_PRIME_LEN]; /* CRT coefficient*/
} S4_RSA_PRIVATE_KEY;
/** Netlock Module infomation definition*/
typedef struct _S4MODULEINFO {
WORD wModuleID; /* Module ID*/
WORD wLicenseCount; /* License Count */
} S4MODULEINFO;
typedef struct _S4NETCONFIG {
DWORD dwLicenseMode; /* License Mode */
DWORD dwModuleCount; /* Module Count */
S4MODULEINFO ModuleInfo[16]; /* Module detail infomation */
} S4NETCONFIG;
/** S4CREATEDIRINFO structure definition*/
typedef struct _S4CREATEDIRINFO {
DWORD dwS4CreateDirInfoSize; /* size of the structure*/
BYTE szAtr[8]; /* ATR information */
S4NETCONFIG NetConfig; /* netlock config infomation */
} S4CREATEDIRINFO;
/** S4OPENINFO structure definition*/
typedef struct _S4OPENINFO {
DWORD dwS4OpenInfoSize; /* size of the structure*/
DWORD dwShareMode; /* share mode*/
} S4OPENINFO;
//@}
//@{
/**
@function interface
*/
/*
reserved
*/
unsigned long WINAPI S4Startup(
VOID
);
/*
reserved
*/
unsigned long WINAPI S4Cleanup(
VOID
);
/**
enumerate all EliteIV devices plugged in the computer.
if pS4CtxList is NULL, the pdwCtxListSize will return the required buffer size
@paramter pS4CtxList [out] return the device list
@paramter pdwCtxListSize [in][out] return the amount of storage of device list, in bytes.
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4Enum(
OUT SENSE4_CONTEXT *pS4CtxList,
IN OUT DWORD *pdwCtxListSize
);
/**
open the EliteIV device with sharable mode
@paramter pS4Ctx [in][out] the context pointer of the device
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4Open(
IN OUT SENSE4_CONTEXT *pS4Ctx
);
/**
close the EliteIV device
@parameter pS4Ctx [in] the context pointer of the device
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4Close(
IN SENSE4_CONTEXT *pS4Ctx
);
/**
Send control command to device
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter dwCtlCode [in] control code
@parameter pInBuffer [in] input buffer
@parameter dwInBufferLen [in] the length of input data,in bytes
@parameter pOutBuffer [out] return output data
@parameter dwOutBufferLen [in] output buffer size, in bytes
@parameter pdwBytesReturned [out] the length of output data, cannot be NULL
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4Control(
IN SENSE4_CONTEXT *pS4Ctx,
IN DWORD dwCtlCode,
IN VOID *pInBuffer,
IN DWORD dwInBufferLen,
OUT VOID *pOutBuffer,
IN DWORD dwOutBufferLen,
OUT DWORD *pdwBytesReturned
);
/**
create a new child directory for the current directory, and set current directory to the new directory
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszDirID [in] ID of the new directory
@parameter dwDirSize [in] size of the new directory
@parameter dwFlags [in] flag
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4CreateDir(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszDirID,
IN DWORD dwDirSize,
IN DWORD dwFlags
);
/**
set the current directory
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszPath [in] ID of the specified directory
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4ChangeDir(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszPath
);
/**
erase the root and empty the device if the specified direcotry is the device root,
otherwise erase all files or child direcotries of the specified directory.
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszDirID [in] reserved, must be NULL
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4EraseDir(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCTSTR lpszDirID
);
/**
verify the pin, to reach a security status before call S4CreateDir,S4EraseDir,S4Execute,S4WriteFile.
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter pbPin [in] PIN value
@parameter dwPinLen [in] the PIN value length, the length of User PIN is 8 bytesthe length of developer PIN is 24 bytes
@parameter dwPinType [in] PIN type
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4VerifyPin(
IN SENSE4_CONTEXT *pS4Ctx,
IN BYTE *pbPin,
IN DWORD dwPinLen,
IN DWORD dwPinType
);
/**
change PIN or key value
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter pbOldPin [in] old PIN or key value
@parameter dwOldPinLen [in] the length of old PIN or key value
@parameter pbNewPin [in] new PIN or key value
@parameter dwNewPinLen [in] the legnth of new PIN or key value
@parameter dwPinType [in] PIN or key type
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4ChangePin(
IN SENSE4_CONTEXT *pS4Ctx,
IN BYTE *pbOldPin,
IN DWORD dwOldPinLen,
IN BYTE *pbNewPin,
IN DWORD dwNewPinLen,
IN DWORD dwPinType
);
/**
create a new file or update file data
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszFileID [in] ID of the specified file
@parameter dwOffset [in] offset to write the file
@parameter pBuffer [in] input data buffer
@parameter dwBufferSize [in] input data length
@parameter dwFileSize [in] file size
@parameter pdwBytesWritten [out] return the length of data written into the file
@parameter dwFlags [in] flag
@parameter bFileType [in] file type
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4WriteFile(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszFileID,
IN DWORD dwOffset,
IN VOID *pBuffer,
IN DWORD dwBufferSize,
IN DWORD dwFileSize,
OUT DWORD *pdwBytesWritten,
IN DWORD dwFlags,
IN BYTE bFileType
);
/**
execute the specified executable file of current directory on virtual machine
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszFileID [in] ID of the executable file
@parameter pInBuffer [in] input data buffer
@parameter dwInbufferSize [in] input data length
@parameter pOutBuffer [out] output data buffer
@parameter dwOutBufferSize [in] output data buffer size
@parameter pdwBytesReturned [out] output data length
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4Execute(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszFileID,
IN VOID *pInBuffer,
IN DWORD dwInbufferSize,
OUT VOID *pOutBuffer,
IN DWORD dwOutBufferSize,
OUT DWORD *pdwBytesReturned
);
/**
execute the specified executable file of current directory on virtual machine
or on XA User mode
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszFileID [in] ID of the executable file
@parameter dwFlag [in] executing mode
@parameter pInBuffer [in] input data buffer
@parameter dwInbufferSize [in] input data length
@parameter pOutBuffer [out] output data buffer
@parameter dwOutBufferSize [in] output data buffer size
@parameter pdwBytesReturned [out] output data length
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4ExecuteEx(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszFileID,
IN DWORD dwFlag,
IN VOID *pInBuffer,
IN DWORD dwInbufferSize,
OUT VOID *pOutBuffer,
IN DWORD dwOutBufferSize,
OUT DWORD *pdwBytesReturned
);
/**
create a new child directory for the current directory, and set the new
directory to current directory. if creating the root directory, the function
will create a ATR file at the same time.
@parameter pS4Ctx [in] the context pointer of the device, the device must has been opened
@parameter lpszDirID [in] ID of the new directory
@parameter dwDirSize [in] size of the new directory
@parameter dwFlags [in] flag
@parameter pCreateDirInfo [in] S4CREATEDIRINFO structure pointer
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4CreateDirEx(
IN SENSE4_CONTEXT *pS4Ctx,
IN LPCSTR lpszDirID,
IN DWORD dwDirSize,
IN DWORD dwFlags,
IN S4CREATEDIRINFO *pCreateDirInfo
);
/**
open the EliteIV device using specific mode
@paramter pS4Ctx [in][out] the context pointer of the device
@paramter pS4OpenInfo [in] S4OPENINFO structure pointer
@return value
if the function succeeds,the return vlaue is S4_SUCCESS, otherwise return other defined return value.
*/
DWORD WINAPI S4OpenEx(
IN OUT SENSE4_CONTEXT *pS4Ctx,
IN S4OPENINFO *pS4OpenInfo
);
//@}
#ifdef __cplusplus
}
#endif
#endif //__SENSE4_H__
Loading…
Cancel
Save