blob: 2daa09db694138028ff56aaa651b50f6b77b57c9 [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.hyracks.storage.am.lsm.invertedindex.tokenizers;
import org.apache.hyracks.api.exceptions.HyracksDataException;
import org.apache.hyracks.api.io.IJsonSerializable;
import org.apache.hyracks.api.io.IPersistedResourceRegistry;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;
public class HashedUTF8NGramTokenFactory extends AbstractUTF8TokenFactory {
private static final long serialVersionUID = 1L;
public HashedUTF8NGramTokenFactory() {
super();
}
public HashedUTF8NGramTokenFactory(byte tokenTypeTag, byte countTypeTag) {
super(tokenTypeTag, countTypeTag);
}
@Override
public IToken createToken() {
return new HashedUTF8NGramToken(tokenTypeTag, countTypeTag);
}
@Override
public JsonNode toJson(IPersistedResourceRegistry registry) throws HyracksDataException {
final ObjectNode json = registry.getClassIdentifier(getClass(), serialVersionUID);
json.put("tokenTypeTag", tokenTypeTag);
json.put("countTypeTag", countTypeTag);
return json;
}
@SuppressWarnings("squid:S1172") // unused parameter
public static IJsonSerializable fromJson(IPersistedResourceRegistry registry, JsonNode json) {
final byte tokenTypeTag = (byte) json.get("tokenTypeTag").asInt();
final byte countTypeTag = (byte) json.get("countTypeTag").asInt();
return new HashedUTF8NGramTokenFactory(tokenTypeTag, countTypeTag);
}
}