org.labkey.freezerpro.export.ExportUserFieldsResponse.java Source code

Java tutorial

Introduction

Here is the source code for org.labkey.freezerpro.export.ExportUserFieldsResponse.java

Source

/*
 * Copyright (c) 2014 LabKey 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 org.labkey.freezerpro.export;

import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.JsonToken;
import org.labkey.api.pipeline.PipelineJob;
import org.labkey.api.util.JsonUtil;

import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Created by klum on 5/23/2014.
 */
public class ExportUserFieldsResponse extends FreezerProCommandResonse {
    public ExportUserFieldsResponse(FreezerProExport export, String text, int statusCode, PipelineJob job) {
        super(export, text, statusCode, null, job);
    }

    /**
     * Position the parser to the start of the data array object
     * @param parser
     * @param dataNodeName
     * @return
     * @throws java.io.IOException
     */
    protected boolean ensureDataNode(JsonParser parser, String dataNodeName) throws IOException {
        parser.nextToken();
        JsonUtil.expectObjectStart(parser);

        return true;
    }

    /**
     * Parse the array of objects into a list of row maps
     * @param parser
     * @param data
     */
    protected void parseDataArray(JsonParser parser, List<Map<String, Object>> data) throws IOException {
        Map node = _parser.readValueAs(Map.class);
        if (node != null && !node.isEmpty()) {
            Map<String, Object> row = new HashMap<>();
            for (Object key : node.keySet()) {
                row.put(String.valueOf(key), node.get(key));
            }
            data.add(row);
        }
    }
}