mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793594 13f79535-47bb-0310-9956-ffa450edef68
106 lines
4.4 KiB
Java
106 lines
4.4 KiB
Java
/* ====================================================================
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
==================================================================== */
|
|
package org.apache.poi.hpsf;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
import java.io.UnsupportedEncodingException;
|
|
|
|
import org.apache.poi.util.CodePageUtil;
|
|
import org.apache.poi.util.Internal;
|
|
import org.apache.poi.util.LittleEndian;
|
|
import org.apache.poi.util.LittleEndianByteArrayInputStream;
|
|
import org.apache.poi.util.LittleEndianConsts;
|
|
import org.apache.poi.util.POILogFactory;
|
|
import org.apache.poi.util.POILogger;
|
|
|
|
@Internal
|
|
class CodePageString {
|
|
private final static POILogger LOG = POILogFactory.getLogger( CodePageString.class );
|
|
|
|
private byte[] _value;
|
|
|
|
|
|
CodePageString() {}
|
|
|
|
void read( LittleEndianByteArrayInputStream lei ) {
|
|
int offset = lei.getReadIndex();
|
|
int size = lei.readInt();
|
|
_value = new byte[size];
|
|
if (size == 0) {
|
|
return;
|
|
}
|
|
|
|
// If Size is zero, this field MUST be zero bytes in length. If Size is
|
|
// nonzero and the CodePage property set's CodePage property has the value CP_WINUNICODE
|
|
// (0x04B0), then the value MUST be a null-terminated array of 16-bit Unicode characters,
|
|
// followed by zero padding to a multiple of 4 bytes. If Size is nonzero and the property set's
|
|
// CodePage property has any other value, it MUST be a null-terminated array of 8-bit characters
|
|
// from the code page identified by the CodePage property, followed by zero padding to a
|
|
// multiple of 4 bytes. The string represented by this field MAY contain embedded or additional
|
|
// trailing null characters and an OLEPS implementation MUST be able to handle such strings.
|
|
|
|
lei.readFully(_value);
|
|
if (_value[size - 1] != 0 ) {
|
|
// TODO Some files, such as TestVisioWithCodepage.vsd, are currently
|
|
// triggering this for values that don't look like codepages
|
|
// See Bug #52258 for details
|
|
String msg = "CodePageString started at offset #" + offset + " is not NULL-terminated";
|
|
LOG.log(POILogger.WARN, msg);
|
|
}
|
|
|
|
TypedPropertyValue.skipPadding(lei);
|
|
}
|
|
|
|
String getJavaValue( int codepage ) throws UnsupportedEncodingException {
|
|
int cp = ( codepage == -1 ) ? Property.DEFAULT_CODEPAGE : codepage;
|
|
String result = CodePageUtil.getStringFromCodePage(_value, cp);
|
|
|
|
|
|
final int terminator = result.indexOf( '\0' );
|
|
if ( terminator == -1 ) {
|
|
String msg =
|
|
"String terminator (\\0) for CodePageString property value not found." +
|
|
"Continue without trimming and hope for the best.";
|
|
LOG.log(POILogger.WARN, msg);
|
|
return result;
|
|
}
|
|
if ( terminator != result.length() - 1 ) {
|
|
String msg =
|
|
"String terminator (\\0) for CodePageString property value occured before the end of string. "+
|
|
"Trimming and hope for the best.";
|
|
LOG.log(POILogger.WARN, msg );
|
|
}
|
|
return result.substring( 0, terminator );
|
|
}
|
|
|
|
int getSize() {
|
|
return LittleEndianConsts.INT_SIZE + _value.length;
|
|
}
|
|
|
|
void setJavaValue( String string, int codepage ) throws UnsupportedEncodingException {
|
|
int cp = ( codepage == -1 ) ? Property.DEFAULT_CODEPAGE : codepage;
|
|
_value = CodePageUtil.getBytesInCodePage(string + "\0", cp);
|
|
}
|
|
|
|
int write( OutputStream out ) throws IOException {
|
|
LittleEndian.putUInt( _value.length, out );
|
|
out.write( _value );
|
|
return LittleEndianConsts.INT_SIZE + _value.length;
|
|
}
|
|
}
|