com.simiacryptus.mindseye.layers.PlaceholderLayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindseye-core Show documentation
Show all versions of mindseye-core Show documentation
Core Neural Networks Framework
/*
* Copyright (c) 2019 by Andrew Charneski.
*
* The author 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 com.simiacryptus.mindseye.layers;
import com.google.gson.JsonObject;
import com.simiacryptus.mindseye.lang.DataSerializer;
import com.simiacryptus.mindseye.lang.LayerBase;
import com.simiacryptus.mindseye.lang.Result;
import com.simiacryptus.ref.lang.RefUtil;
import com.simiacryptus.ref.wrappers.RefList;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Map;
import java.util.UUID;
@SuppressWarnings("serial")
public final class PlaceholderLayer extends LayerBase {
@Nullable
private final T key;
public PlaceholderLayer(@Nullable final T key) {
if (null == key)
throw new UnsupportedOperationException();
this.key = key;
setName(getClass().getSimpleName() + "/" + getId());
}
@Nonnull
@Override
public UUID getId() {
assertAlive();
T key = this.getKey();
return key == null ? UUID.randomUUID() : UUID.nameUUIDFromBytes(key.toString().getBytes());
}
@Nullable
public T getKey() {
return key;
}
@Nonnull
@Override
public Result eval(@Nullable final Result... array) {
if (null != array)
RefUtil.freeRef(array);
throw new UnsupportedOperationException();
}
@Nonnull
@Override
public JsonObject getJson(Map resources, DataSerializer dataSerializer) {
throw new UnsupportedOperationException();
}
@Nonnull
@Override
public RefList state() {
throw new UnsupportedOperationException();
}
public void _free() {
RefUtil.freeRef(key);
super._free();
}
@Nonnull
public @Override
@SuppressWarnings("unused")
PlaceholderLayer addRef() {
return (PlaceholderLayer) super.addRef();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy