|
| 1 | +/* |
| 2 | + * Licensed to the Apache Software Foundation (ASF) under one |
| 3 | + * or more contributor license agreements. See the NOTICE file |
| 4 | + * distributed with this work for additional information |
| 5 | + * regarding copyright ownership. The ASF licenses this file |
| 6 | + * to you under the Apache License, Version 2.0 (the |
| 7 | + * "License"); you may not use this file except in compliance |
| 8 | + * with the License. You may obtain a copy of the License at |
| 9 | + * |
| 10 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + * |
| 12 | + * Unless required by applicable law or agreed to in writing, |
| 13 | + * software distributed under the License is distributed on an |
| 14 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | + * KIND, either express or implied. See the License for the |
| 16 | + * specific language governing permissions and limitations |
| 17 | + * under the License. |
| 18 | + */ |
| 19 | +package org.apache.olingo.server.sample.data; |
| 20 | + |
| 21 | +import java.net.URI; |
| 22 | +import java.net.URISyntaxException; |
| 23 | +import java.util.HashMap; |
| 24 | +import java.util.List; |
| 25 | +import java.util.Map; |
| 26 | +import org.apache.olingo.commons.api.ex.ODataException; |
| 27 | +import org.apache.olingo.commons.api.ex.ODataRuntimeException; |
| 28 | +import org.apache.olingo.commons.api.data.Entity; |
| 29 | +import org.apache.olingo.commons.api.data.EntityCollection; |
| 30 | +import org.apache.olingo.commons.api.data.Property; |
| 31 | +import org.apache.olingo.commons.api.data.ValueType; |
| 32 | +import org.apache.olingo.commons.api.data.ComplexValue; |
| 33 | +import org.apache.olingo.commons.api.edm.EdmEntitySet; |
| 34 | +import org.apache.olingo.commons.api.edm.EdmEntityType; |
| 35 | +import org.apache.olingo.commons.api.edm.EdmPrimitiveType; |
| 36 | +import org.apache.olingo.commons.api.edm.EdmPrimitiveTypeException; |
| 37 | +import org.apache.olingo.commons.api.edm.EdmProperty; |
| 38 | +import org.apache.olingo.server.api.uri.UriParameter; |
| 39 | +import org.apache.olingo.server.sample.edmprovider.CarsEdmProvider; |
| 40 | + |
| 41 | +public class DataProvider { |
| 42 | + |
| 43 | + private final Map<String, EntityCollection> data; |
| 44 | + |
| 45 | + public DataProvider() { |
| 46 | + data = new HashMap<String, EntityCollection>(); |
| 47 | + data.put("Cars", createCars()); |
| 48 | + data.put("Manufacturers", createManufacturers()); |
| 49 | + } |
| 50 | + |
| 51 | + public EntityCollection readAll(EdmEntitySet edmEntitySet) { |
| 52 | + return data.get(edmEntitySet.getName()); |
| 53 | + } |
| 54 | + |
| 55 | + public Entity read(final EdmEntitySet edmEntitySet, final List<UriParameter> keys) throws DataProviderException { |
| 56 | + final EdmEntityType entityType = edmEntitySet.getEntityType(); |
| 57 | + final EntityCollection entitySet = data.get(edmEntitySet.getName()); |
| 58 | + if (entitySet == null) { |
| 59 | + return null; |
| 60 | + } else { |
| 61 | + try { |
| 62 | + for (final Entity entity : entitySet.getEntities()) { |
| 63 | + boolean found = true; |
| 64 | + for (final UriParameter key : keys) { |
| 65 | + final EdmProperty property = (EdmProperty) entityType.getProperty(key.getName()); |
| 66 | + final EdmPrimitiveType type = (EdmPrimitiveType) property.getType(); |
| 67 | + if (!type.valueToString(entity.getProperty(key.getName()).getValue(), |
| 68 | + property.isNullable(), property.getMaxLength(), property.getPrecision(), property.getScale(), |
| 69 | + property.isUnicode()) |
| 70 | + .equals(key.getText())) { |
| 71 | + found = false; |
| 72 | + break; |
| 73 | + } |
| 74 | + } |
| 75 | + if (found) { |
| 76 | + return entity; |
| 77 | + } |
| 78 | + } |
| 79 | + return null; |
| 80 | + } catch (final EdmPrimitiveTypeException e) { |
| 81 | + throw new DataProviderException("Wrong key!", e); |
| 82 | + } |
| 83 | + } |
| 84 | + } |
| 85 | + |
| 86 | + public static class DataProviderException extends ODataException { |
| 87 | + private static final long serialVersionUID = 5098059649321796156L; |
| 88 | + |
| 89 | + public DataProviderException(String message, Throwable throwable) { |
| 90 | + super(message, throwable); |
| 91 | + } |
| 92 | + |
| 93 | + public DataProviderException(String message) { |
| 94 | + super(message); |
| 95 | + } |
| 96 | + } |
| 97 | + |
| 98 | + private EntityCollection createCars() { |
| 99 | + EntityCollection entitySet = new EntityCollection(); |
| 100 | + Entity el = new Entity() |
| 101 | + .addProperty(createPrimitive("Id", 1)) |
| 102 | + .addProperty(createPrimitive("Model", "F1 W03")) |
| 103 | + .addProperty(createPrimitive("ModelYear", "2012")) |
| 104 | + .addProperty(createPrimitive("Price", 189189.43)) |
| 105 | + .addProperty(createPrimitive("Currency", "EUR")); |
| 106 | + el.setId(createId(CarsEdmProvider.ES_CARS_NAME, 1)); |
| 107 | + entitySet.getEntities().add(el); |
| 108 | + |
| 109 | + el = new Entity() |
| 110 | + .addProperty(createPrimitive("Id", 2)) |
| 111 | + .addProperty(createPrimitive("Model", "F1 W04")) |
| 112 | + .addProperty(createPrimitive("ModelYear", "2013")) |
| 113 | + .addProperty(createPrimitive("Price", 199999.99)) |
| 114 | + .addProperty(createPrimitive("Currency", "EUR")); |
| 115 | + el.setId(createId(CarsEdmProvider.ES_CARS_NAME, 2)); |
| 116 | + entitySet.getEntities().add(el); |
| 117 | + |
| 118 | + el = new Entity() |
| 119 | + .addProperty(createPrimitive("Id", 3)) |
| 120 | + .addProperty(createPrimitive("Model", "F2012")) |
| 121 | + .addProperty(createPrimitive("ModelYear", "2012")) |
| 122 | + .addProperty(createPrimitive("Price", 137285.33)) |
| 123 | + .addProperty(createPrimitive("Currency", "EUR")); |
| 124 | + el.setId(createId(CarsEdmProvider.ES_CARS_NAME, 3)); |
| 125 | + entitySet.getEntities().add(el); |
| 126 | + |
| 127 | + el = new Entity() |
| 128 | + .addProperty(createPrimitive("Id", 4)) |
| 129 | + .addProperty(createPrimitive("Model", "F2013")) |
| 130 | + .addProperty(createPrimitive("ModelYear", "2013")) |
| 131 | + .addProperty(createPrimitive("Price", 145285.00)) |
| 132 | + .addProperty(createPrimitive("Currency", "EUR")); |
| 133 | + el.setId(createId(CarsEdmProvider.ES_CARS_NAME, 4)); |
| 134 | + entitySet.getEntities().add(el); |
| 135 | + |
| 136 | + el = new Entity() |
| 137 | + .addProperty(createPrimitive("Id", 5)) |
| 138 | + .addProperty(createPrimitive("Model", "F1 W02")) |
| 139 | + .addProperty(createPrimitive("ModelYear", "2011")) |
| 140 | + .addProperty(createPrimitive("Price", 167189.00)) |
| 141 | + .addProperty(createPrimitive("Currency", "EUR")); |
| 142 | + el.setId(createId(CarsEdmProvider.ES_CARS_NAME, 5)); |
| 143 | + entitySet.getEntities().add(el); |
| 144 | + |
| 145 | + for (Entity entity:entitySet.getEntities()) { |
| 146 | + entity.setType(CarsEdmProvider.ET_CAR.getFullQualifiedNameAsString()); |
| 147 | + } |
| 148 | + return entitySet; |
| 149 | + } |
| 150 | + |
| 151 | + private EntityCollection createManufacturers() { |
| 152 | + EntityCollection entitySet = new EntityCollection(); |
| 153 | + |
| 154 | + Entity el = new Entity() |
| 155 | + .addProperty(createPrimitive("Id", 1)) |
| 156 | + .addProperty(createPrimitive("Name", "Star Powered Racing")) |
| 157 | + .addProperty(createAddress("Star Street 137", "Stuttgart", "70173", "Germany")); |
| 158 | + el.setId(createId(CarsEdmProvider.ES_MANUFACTURER_NAME, 1)); |
| 159 | + entitySet.getEntities().add(el); |
| 160 | + |
| 161 | + el = new Entity() |
| 162 | + .addProperty(createPrimitive("Id", 2)) |
| 163 | + .addProperty(createPrimitive("Name", "Horse Powered Racing")) |
| 164 | + .addProperty(createAddress("Horse Street 1", "Maranello", "41053", "Italy")); |
| 165 | + el.setId(createId(CarsEdmProvider.ES_MANUFACTURER_NAME, 2)); |
| 166 | + entitySet.getEntities().add(el); |
| 167 | + |
| 168 | + for (Entity entity:entitySet.getEntities()) { |
| 169 | + entity.setType(CarsEdmProvider.ET_MANUFACTURER.getFullQualifiedNameAsString()); |
| 170 | + } |
| 171 | + return entitySet; |
| 172 | + } |
| 173 | + |
| 174 | + private Property createAddress(final String street, final String city, final String zipCode, final String country) { |
| 175 | + ComplexValue complexValue=new ComplexValue(); |
| 176 | + List<Property> addressProperties = complexValue.getValue(); |
| 177 | + addressProperties.add(createPrimitive("Street", street)); |
| 178 | + addressProperties.add(createPrimitive("City", city)); |
| 179 | + addressProperties.add(createPrimitive("ZipCode", zipCode)); |
| 180 | + addressProperties.add(createPrimitive("Country", country)); |
| 181 | + return new Property(null, "Address", ValueType.COMPLEX, complexValue); |
| 182 | + } |
| 183 | + |
| 184 | + private Property createPrimitive(final String name, final Object value) { |
| 185 | + return new Property(null, name, ValueType.PRIMITIVE, value); |
| 186 | + } |
| 187 | + |
| 188 | + private URI createId(String entitySetName, Object id) { |
| 189 | + try { |
| 190 | + return new URI(entitySetName + "(" + String.valueOf(id) + ")"); |
| 191 | + } catch (URISyntaxException e) { |
| 192 | + throw new ODataRuntimeException("Unable to create id for entity: " + entitySetName, e); |
| 193 | + } |
| 194 | + } |
| 195 | +} |
0 commit comments