P15GEN2\59518
2024-05-29 d4210c7c4b04abde20037ea8aa0f54ef8a2649aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package foundation.io.file.pull;
 
import org.apache.poi.ss.usermodel.BuiltinFormats;
import org.apache.poi.ss.usermodel.DataFormatter;
import org.apache.poi.xssf.model.SharedStringsTable;
import org.apache.poi.xssf.model.StylesTable;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFRichTextString;
import org.xml.sax.Attributes;
 
 
public class CellRuntime {
 
    private SharedStringsTable sharedStrings;
    private StylesTable stylesTable;
    
    private String columnName;
    private int columIndex;
    private CellType dataType;
    private StringBuilder rawData;
    private int formatIndex;
    private String formatString;
    private DataFormatter formatter;
    protected boolean[] dataFlag;
    
    
    public CellRuntime(SharedStringsTable sharedStrings, StylesTable stylesTable) {
        this.sharedStrings = sharedStrings;
        this.stylesTable = stylesTable;
        
        rawData = new StringBuilder();
        formatter = new DataFormatter();
    }
    
    public void init(boolean[] dataFlag) {
        this.dataFlag = dataFlag;
    }
 
    public void readAttributes(Attributes attributes) {
        //1. 
        columnName = attributes.getValue("r");
        columIndex = columnNameToIndex(columnName);
        
        //2.
        dataType = getCellDataType(attributes);
    }
 
    @SuppressWarnings("deprecation")
    public String parseToString() {
        String value = null;
        
        if (CellType.BOOL == dataType) {
            char first = rawData.charAt(0);
            value = first == '0' ? "false" : "true";
        }
        else if (CellType.ERROR == dataType) {
            value = "error";
        }
        else if (CellType.FORMULA == dataType) {
            value = null;
        }
        else if (CellType.INLINESTR == dataType) {
            XSSFRichTextString rtsi = new XSSFRichTextString(getRawDataString());
            value = rtsi.toString();
        }
        else if (CellType.SSTINDEX == dataType) {
            String sstIndex = getRawDataString();
            try {
                int idx = Integer.parseInt(sstIndex);
                XSSFRichTextString rtss = new XSSFRichTextString(sharedStrings.getEntryAt(idx));
                value = rtss.toString();
                
                if (value != null) {
                    value = value.trim();
                }
            }
            catch (NumberFormatException ex) {
            }
        }
        else if (CellType.NUMBER == dataType) {
            try {
                value = getRawDataString();
            }
            catch (Exception ex) {
                value = null;
            }
        }
        else if (CellType.DATE == dataType) {
            try {
                value = formatter.formatRawCellContents(Double.parseDouble(getRawDataString()), formatIndex, formatString);
            }
            catch (Exception ex) {
                value = getRawDataString();
            }
            
            value = value.trim();
        }
        else {
            value = null;
        }
        
        return value;
    }
    
    @SuppressWarnings("deprecation")
    public String parseToFormatString() {
        String value = null;
        
        if (CellType.BOOL == dataType) {
            char first = rawData.charAt(0);
            value = first == '0' ? "false" : "true";
        }
        else if (CellType.ERROR == dataType) {
            value = "\"error: " + getRawDataString() + '"';
        }
        else if (CellType.FORMULA == dataType) {
            value = rawData.toString();
        }
        else if (CellType.INLINESTR == dataType) {
            XSSFRichTextString rtsi = new XSSFRichTextString(getRawDataString());
            value = rtsi.toString();
        }
        else if (CellType.SSTINDEX == dataType) {
            String sstIndex = getRawDataString();
            try {
                int idx = Integer.parseInt(sstIndex);
                XSSFRichTextString rtss = new XSSFRichTextString(sharedStrings.getEntryAt(idx));
                value = rtss.toString();
                
                if (value != null) {
                    value = value.trim();
                }
            }
            catch (NumberFormatException ex) {
            }
        }
        else if (CellType.NUMBER == dataType) {
            try {
                value = getRawDataString();
                if (this.formatString != null) {
                    value = formatter.formatRawCellContents(Double.parseDouble(value), this.formatIndex, this.formatString);
                }
            }
            catch (Exception ex) {
                value = "error: " + ex.getMessage();
            }
        }
        else if (CellType.DATE == dataType) {
            try {
                value = formatter.formatRawCellContents(Double.parseDouble(getRawDataString()), formatIndex, formatString);
            }
            catch (Exception ex) {
                value = getRawDataString();
            }
            
            value = value.trim();
        }
        else {
            value = null;
        }
        
        return value;
    }
    
    public CellType getDataType() {
        return dataType;
    }
 
    public void setDataType(CellType dataType) {
        this.dataType = dataType;
    }
 
    public int getColumnIndex() {
        return columIndex;
    }
 
    public void clearRawData() {
        rawData.setLength(0);
    }
 
    public int columnNameToIndex(String columnName) {
        int result = -1;    
        
        for (int i = 0; i < columnName.length(); ++i) {  
            if (Character.isDigit(columnName.charAt(i))) {  
                break;  
            }  
            
            int c = columnName.charAt(i);    
            result = (result + 1) * 26 + c - 'A';    
        }    
        
        return result;    
    }
    
    public CellType getCellDataType(Attributes attributes) {
        CellType dataType = CellType.NUMBER;
 
        String cellType = attributes.getValue("t");
        String cellStyleStr = attributes.getValue("s");
        
        if ("b".equals(cellType)) {
            dataType = CellType.BOOL;
        }
        else if ("e".equals(cellType)) {
            dataType = CellType.ERROR;
        }
        else if ("inlineStr".equals(cellType)) {
            dataType = CellType.INLINESTR;
        }
        else if ("s".equals(cellType)) {
            dataType = CellType.SSTINDEX;
        }
        else if ("str".equals(cellType)) {
            dataType = CellType.FORMULA;
        }
        
        if (cellStyleStr != null) {
            int styleIndex = Integer.parseInt(cellStyleStr);
            XSSFCellStyle style = stylesTable.getStyleAt(styleIndex);
            formatIndex = style.getDataFormat();
            formatString = style.getDataFormatString();
 
            if ("m/d/yy" == formatString) {
                dataType = CellType.DATE;
                formatString = "yyyy-MM-dd";
            }
            if (formatString == null) {
                dataType = CellType.NULL;
                formatString = BuiltinFormats.getBuiltinFormat(formatIndex);
            }
        }
        
        return dataType;
    }
 
    public void appendValue(char[] ch, int start, int length) {
        rawData.append(ch, start, length);
    }
    
    public String getRawDataString() {
        String result = rawData.toString();
        
        if (result == null) {
            return null;
        }
        
        return result.trim();
    }
 
    public boolean isIgnore() {
        return false;
        //return !dataFlag[columIndex];
    }
}