com.marklogic.mapreduce.functions.ValueMatch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of marklogic-mapreduce2 Show documentation
Show all versions of marklogic-mapreduce2 Show documentation
MarkLogic Connector for Hadoop MapReduce
/*
* Copyright 2003-2017 MarkLogic Corporation
*
* 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
*
* 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 com.marklogic.mapreduce.functions;
import java.util.ArrayList;
import java.util.Collection;
import com.marklogic.mapreduce.functions.ValuesOrWordsFunction.WordsFunction;
/**
* Wrapper class for the cts:value-match
lexicon
* function. Subclass this class to generate map input based on a lexicon.
*
*
* Use this class with {@link com.marklogic.mapreduce.ValueInputFormat}.
*
*
* To generate map input using the lexicon function,
* create a subclass of this class and provide implementations
* of the methods that correspond to the function parameters you
* want to include in the call.
*
*
* For details, see "Using a Lexicon to Generate Key-Value Pairs"
* in the MarkLogic Connector for Hadoop Developer's Guide.
*
*
* @author jchen
*/
public abstract class ValueMatch extends ValueOrWordMatchFunction {
/**
* Get the value of the $range-indexes parameter to the lexicon
* function call, as an array of References.
*
* @return an array of References.
*/
public abstract Reference[] getReferences();
@Override
void appendFunctionName(StringBuilder buf) {
buf.append("cts:value-match");
}
@Override
void appendNamesParams(StringBuilder buf) {
Reference[] refs = getReferences();
buf.append("(");
for (int i = 0; i < refs.length; i++) {
if (i > 0) {
buf.append(",");
}
refs[i].append(buf);
}
buf.append("),\n");
}
public static void main(String[] args) {
ValueMatch matchFunc = new ValueMatchFunction();
Collection nsbindings = new ArrayList();
for (int i = 0; i < args.length; i++) {
nsbindings.add(args[i]);
}
System.out.println(matchFunc.getInputQuery(nsbindings, 1, 1000));
}
static class ValueMatchFunction extends ValueMatch {
@Override
public String getPattern() {
return "\"?3\"";
}
@Override
public Reference[] getReferences() {
PathReference pathRef = new MyPathReference();
return new Reference[] {pathRef};
}
}
static class MyPathReference extends PathReference {
@Override
public String getPathExpression() {
return "/my:a[@his:b='B1']/my:c";
}
}
}