com.xmlcalabash.extensions.osutils.Info Maven / Gradle / Ivy
The newest version!
package com.xmlcalabash.extensions.osutils;
import com.xmlcalabash.core.XMLCalabash;
import com.xmlcalabash.library.DefaultStep;
import com.xmlcalabash.io.WritablePipe;
import com.xmlcalabash.core.XProcRuntime;
import com.xmlcalabash.core.XProcException;
import com.xmlcalabash.core.XProcConstants;
import com.xmlcalabash.runtime.XAtomicStep;
import com.xmlcalabash.model.RuntimeValue;
import com.xmlcalabash.util.TreeWriter;
import net.sf.saxon.s9api.QName;
import net.sf.saxon.s9api.SaxonApiException;
import java.net.URI;
import java.io.File;
import java.io.IOException;
/**
* Created by IntelliJ IDEA.
* User: ndw
* Date: Jun 3, 2009
* Time: 7:48:27 PM
* To change this template use File | Settings | File Templates.
*/
@XMLCalabash(
name = "pos:info",
type = "{http://exproc.org/proposed/steps/os}info " +
"{http://xmlcalabash.com/ns/extensions/osutils}info")
public class Info extends DefaultStep {
private WritablePipe result = null;
/*
* Creates a new instance of UriInfo
*/
public Info(XProcRuntime runtime, XAtomicStep step) {
super(runtime,step);
}
public void setOutput(String port, WritablePipe pipe) {
result = pipe;
}
public void reset() {
result.resetWriter();
}
public void run() throws SaxonApiException {
super.run();
TreeWriter tree = new TreeWriter(runtime);
tree.startDocument(step.getNode().getBaseURI());
tree.addStartElement(XProcConstants.c_result);
tree.addAttribute(new QName("file-separator"), System.getProperty("file.separator"));
tree.addAttribute(new QName("path-separator"), System.getProperty("path.separator"));
tree.addAttribute(new QName("os-architecture"), System.getProperty("os.arch"));
tree.addAttribute(new QName("os-name"), System.getProperty("os.name"));
tree.addAttribute(new QName("os-version"), System.getProperty("os.version"));
tree.addAttribute(new QName("cwd"), System.getProperty("user.dir"));
tree.addAttribute(new QName("user-name"), System.getProperty("user.name"));
tree.addAttribute(new QName("user-home"), System.getProperty("user.home"));
tree.startContent();
tree.addEndElement();
tree.endDocument();
result.write(tree.getResult());
}
}