Java tutorial
/** * Copyright 2017 Lending Club, Inc. * * 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.lendingclub.mercator.aws; import java.util.Optional; import java.util.stream.Collectors; import org.lendingclub.neorx.NeoRxClient; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.base.Strings; public class RouteTableScanner extends AbstractEC2Scanner { public RouteTableScanner(AWSScannerBuilder builder) { super(builder); setNeo4jLabel("AwsRouteTable"); jsonConverter.withFlattenNestedObjects(true); } @Override protected void doScan() { GraphNodeGarbageCollector gc = newGarbageCollector().bindScannerContext(); getClient().describeRouteTables().getRouteTables().forEach(rt -> { ObjectNode n = convertAwsObject(rt, getRegion()); NeoRxClient neo4j = getNeoRxClient(); try { String cypher = "merge (x:AwsRouteTable {aws_arn:{arn}}) set x+={props}, x.updateTs=timestamp() return x"; String arn = n.path("aws_arn").asText(); neo4j.execCypher(cypher, "arn", arn, "props", n).forEach(it -> { gc.MERGE_ACTION.accept(it); }); LinkageHelper subnetLinkage = new LinkageHelper().withNeo4j(neo4j).withFromLabel(getNeo4jLabel()) .withFromArn(arn).withTargetLabel("AwsSubnet").withLinkLabel("ATTACHED_TO") .withTargetValues(rt.getAssociations().stream() .filter(a -> !Strings.isNullOrEmpty(a.getSubnetId())) .map(a -> createEc2Arn("subnet", a.getSubnetId())).collect(Collectors.toList())); subnetLinkage.execute(); incrementEntityCount(); } catch (RuntimeException e) { gc.markException(e); maybeThrow(e); } }); } @Override public Optional<String> computeArn(JsonNode n) { return Optional.of(createEc2Arn("route-table", n.path("aws_routeTableId").asText())); } }