blob: 71bd27d2a900c7afc67498f2929ba2f3e4d92813 [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.knox.gateway.shell.table;
import java.io.File;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import org.apache.commons.io.FileUtils;
import com.fasterxml.jackson.core.JsonFactory;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.module.SimpleModule;
public class JSONKnoxShellTableBuilder extends KnoxShellTableBuilder {
JSONKnoxShellTableBuilder(long id) {
super(id);
}
public KnoxShellTable fromJson(String json) throws IOException {
return toKnoxShellTable(json);
}
// introduced a private method so that it can be invoked from both public ones and AspectJ will not intercept it
private KnoxShellTable toKnoxShellTable(String json) throws IOException {
final ObjectMapper mapper = new ObjectMapper(new JsonFactory());
final SimpleModule module = new SimpleModule();
module.addDeserializer(KnoxShellTable.class, new KnoxShellTableRowDeserializer());
mapper.registerModule(module);
final KnoxShellTable table = mapper.readValue(json, new TypeReference<KnoxShellTable>() {
});
if (title != null) {
table.title(title);
}
table.id(id);
return table;
}
public KnoxShellTable path(String path) throws IOException {
return toKnoxShellTable(FileUtils.readFileToString(new File(path), StandardCharsets.UTF_8));
}
}