blob: a246c070fec026c6e158c0de97f710f3ff1eb334 [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.royale.compiler.internal.embedding.transcoders;
import java.util.Collection;
import java.util.Collections;
import java.util.Map;
import org.apache.royale.compiler.common.ISourceLocation;
import org.apache.royale.compiler.internal.embedding.EmbedData;
import org.apache.royale.compiler.internal.workspaces.Workspace;
import org.apache.royale.compiler.problems.ICompilerProblem;
import org.apache.royale.swf.tags.DefineBinaryDataTag;
import org.apache.royale.swf.tags.ICharacterTag;
import org.apache.royale.swf.tags.ITag;
/**
* Handle the embedding of data using a ByteArray
*/
public class DataTranscoder extends TranscoderBase
{
/**
* Constructor.
*
* @param data The embedding data.
* @param workspace The workspace.
*/
public DataTranscoder(EmbedData data, Workspace workspace)
{
super(data, workspace);
}
public static String embedClassName = CORE_PACKAGE + ".ByteArrayAsset";
@Override
public boolean analyze(ISourceLocation location, Collection<ICompilerProblem> problems)
{
boolean result = super.analyze(location, problems);
baseClassQName = embedClassName;
return result;
}
@Override
protected Map<String, ICharacterTag> doTranscode(Collection<ITag> tags, Collection<ICompilerProblem> problems)
{
return doTranscode(data.getQName(), tags, problems);
}
protected Map<String, ICharacterTag> doTranscode(String qName, Collection<ITag> tags, Collection<ICompilerProblem> problems)
{
DefineBinaryDataTag assetTag = buildBinaryDataTag(problems);
if (assetTag == null)
return null;
return Collections.singletonMap(qName, (ICharacterTag)assetTag);
}
}