org.htmlunit.javascript.host.file.File Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xlt Show documentation
Show all versions of xlt Show documentation
XLT (Xceptance LoadTest) is an extensive load and performance test tool developed and maintained by Xceptance.
The newest version!
/*
* Copyright (c) 2002-2024 Gargoyle Software Inc.
*
* Licensed 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
* https://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.htmlunit.javascript.host.file;
import static org.htmlunit.javascript.configuration.SupportedBrowser.CHROME;
import static org.htmlunit.javascript.configuration.SupportedBrowser.EDGE;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF;
import static org.htmlunit.javascript.configuration.SupportedBrowser.FF_ESR;
import static org.htmlunit.javascript.configuration.SupportedBrowser.IE;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.time.FastDateFormat;
import org.htmlunit.BrowserVersion;
import org.htmlunit.corejs.javascript.NativeArray;
import org.htmlunit.corejs.javascript.ScriptableObject;
import org.htmlunit.javascript.JavaScriptEngine;
import org.htmlunit.javascript.configuration.JsxClass;
import org.htmlunit.javascript.configuration.JsxConstructor;
import org.htmlunit.javascript.configuration.JsxFunction;
import org.htmlunit.javascript.configuration.JsxGetter;
/**
* A JavaScript object for {@code File}.
*
* @author Ahmed Ashour
* @author Ronald Brill
*/
@JsxClass
public class File extends Blob {
private static final String LAST_MODIFIED_DATE_FORMAT = "EEE MMM dd yyyy HH:mm:ss 'GMT'Z (zzzz)";
private static class FileBackend extends Backend {
private final java.io.File file_;
FileBackend(final String pathname) {
file_ = new java.io.File(pathname);
}
@Override
public String getName() {
return file_.getName();
}
@Override
public long getLastModified() {
return file_.lastModified();
}
@Override
public long getSize() {
return file_.length();
}
@Override
public String getType(final BrowserVersion browserVersion) {
return browserVersion.getUploadMimeType(file_);
}
@Override
public String getText() throws IOException {
return FileUtils.readFileToString(file_, StandardCharsets.UTF_8);
}
@Override
public java.io.File getFile() {
return file_;
}
@Override
byte[] getBytes(final int start, final int end) {
final byte[] result = new byte[end - start];
try {
System.arraycopy(FileUtils.readFileToByteArray(file_), start, result, 0, result.length);
}
catch (final IOException e) {
// TODO
}
return result;
}
}
/**
* Prototye ctor.
*/
public File() {
}
/**
* Creates an instance.
* @param fileBits the bits
* @param fileName the Name
* @param properties the properties
*/
@JsxConstructor({CHROME, EDGE, FF, FF_ESR})
public void jsConstructor(final NativeArray fileBits, final String fileName, final ScriptableObject properties) {
if (fileBits == null
|| JavaScriptEngine.isUndefined(fileBits)
|| fileName == null
|| JavaScriptEngine.isUndefined(fileName)) {
throw JavaScriptEngine.typeError("Failed to construct 'File': 2 arguments required.");
}
setBackend(InMemoryBackend.create(fileBits, fileName,
extractFileTypeOrDefault(properties),
extractLastModifiedOrDefault(properties)));
}
File(final String pathname) {
setBackend(new FileBackend(pathname));
}
/**
* Returns the {@code name} property.
* @return the {@code name} property
*/
@JsxGetter
public String getName() {
return getBackend().getName();
}
/**
* Returns the {@code lastModifiedDate} property.
* @return the {@code lastModifiedDate} property
*/
@JsxGetter({CHROME, EDGE, IE})
public String getLastModifiedDate() {
final Date date = new Date(getLastModified());
final BrowserVersion browser = getBrowserVersion();
final Locale locale = browser.getBrowserLocale();
final TimeZone timezone = browser.getSystemTimezone();
final FastDateFormat format = FastDateFormat.getInstance(LAST_MODIFIED_DATE_FORMAT, timezone, locale);
return format.format(date);
}
/**
* Returns the {@code lastModified} property.
* @return the {@code lastModified} property
*/
@JsxGetter({CHROME, EDGE, FF, FF_ESR})
public long getLastModified() {
return getBackend().getLastModified();
}
/**
* Returns the {@code webkitRelativePath} property.
* @return the {@code webkitRelativePath} property
*/
@JsxGetter({CHROME, EDGE, FF, FF_ESR})
public String getWebkitRelativePath() {
return "";
}
/**
* Slices the file.
*/
@JsxFunction
public void slice() {
}
/**
* Closes the file.
*/
@JsxFunction(IE)
public void msClose() {
}
/**
* Returns the underlying file.
* @return the underlying file
*/
public java.io.File getFile() {
return getBackend().getFile();
}
}