blob: a30c5adaaa99ace0aa1b78532ca77b3348144000 [file] [log] [blame]
/*
* 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.vxquery.context;
import java.util.Arrays;
import java.util.Map;
import javax.xml.namespace.QName;
import org.apache.vxquery.datamodel.accessors.atomic.XSDateTimePointable;
import org.apache.hyracks.api.context.IHyracksJobletContext;
import org.apache.hyracks.data.std.primitive.VoidPointable;
import org.apache.hyracks.data.std.util.ArrayBackedValueStorage;
class DynamicContextImplFactory implements IDynamicContextFactory {
private static final long serialVersionUID = 1L;
private final IStaticContextFactory scFactory;
private final byte[] currentDateTime;
private final QName[] variableNames;
private final int[] valueOffsets;
private final byte[] variableValues;
private DynamicContextImplFactory(IStaticContextFactory scFactory, byte[] currentDateTime, QName[] variableNames,
int[] valueOffsets, byte[] variableValues) {
this.scFactory = scFactory;
this.currentDateTime = currentDateTime;
this.variableNames = variableNames;
this.valueOffsets = valueOffsets;
this.variableValues = variableValues;
}
@Override
public DynamicContext createDynamicContext(IHyracksJobletContext ctx) {
StaticContext sCtx = scFactory.createStaticContext();
DynamicContextImpl dCtx = new DynamicContextImpl(sCtx);
VoidPointable vp = new VoidPointable();
vp.set(currentDateTime, 0, currentDateTime.length);
dCtx.setCurrentDateTime(vp);
for (int i = 0; i < variableNames.length; ++i) {
QName vName = variableNames[i];
int vStart = i == 0 ? 0 : valueOffsets[i - 1];
int vEnd = valueOffsets[i];
vp.set(variableValues, vStart, vEnd - vStart);
dCtx.bindVariable(vName, vp);
}
return dCtx;
}
static IDynamicContextFactory createInstance(DynamicContextImpl dCtx) {
IStaticContextFactory scFactory = dCtx.getStaticContext().createFactory();
final int dtLen = XSDateTimePointable.TYPE_TRAITS.getFixedLength();
byte[] currentDateTime = new byte[dtLen];
XSDateTimePointable datetimep = new XSDateTimePointable();
datetimep.set(currentDateTime, 0, dtLen);
datetimep.setCurrentDateTime();
Map<QName, ArrayBackedValueStorage> vMap = dCtx.getVariableMap();
int nVars = vMap.size();
QName[] variableNames = new QName[nVars];
int[] valueOffsets = new int[nVars];
ArrayBackedValueStorage abvs = new ArrayBackedValueStorage();
int i = 0;
for (Map.Entry<QName, ArrayBackedValueStorage> e : vMap.entrySet()) {
variableNames[i] = e.getKey();
abvs.append(e.getValue());
valueOffsets[i] = abvs.getLength();
++i;
}
return new DynamicContextImplFactory(scFactory, currentDateTime, variableNames, valueOffsets,
Arrays.copyOfRange(abvs.getByteArray(), abvs.getStartOffset(), abvs.getLength()));
}
}