当前位置: 首页>>代码示例>>Java>>正文


Java Datastream.setThing方法代码示例

本文整理汇总了Java中de.fraunhofer.iosb.ilt.sta.model.Datastream.setThing方法的典型用法代码示例。如果您正苦于以下问题:Java Datastream.setThing方法的具体用法?Java Datastream.setThing怎么用?Java Datastream.setThing使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在de.fraunhofer.iosb.ilt.sta.model.Datastream的用法示例。


在下文中一共展示了Datastream.setThing方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: create

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
@Override
public Datastream create(Tuple tuple, Query query, DataSize dataSize) {
    Set<Property> select = query == null ? Collections.emptySet() : query.getSelect();

    Datastream entity = new Datastream();
    entity.setName(tuple.get(qInstance.name));
    entity.setDescription(tuple.get(qInstance.description));
    UUID id = tuple.get(qInstance.id);
    if (id != null) {
        entity.setId(new UuidId(tuple.get(qInstance.id)));
    }
    entity.setObservationType(tuple.get(qInstance.observationType));

    String observedArea = tuple.get(qInstance.observedArea.asText());
    if (observedArea != null) {
        try {
            Polygon polygon = GeoHelper.parsePolygon(observedArea);
            entity.setObservedArea(polygon);
        } catch (IllegalArgumentException e) {
            // It's not a polygon, probably a point or a line.
        }
    }
    ObservedProperty op = observedProperyFromId(tuple.get(qInstance.obsPropertyId));
    entity.setObservedProperty(op);

    Timestamp pTimeStart = tuple.get(qInstance.phenomenonTimeStart);
    Timestamp pTimeEnd = tuple.get(qInstance.phenomenonTimeEnd);
    if (pTimeStart != null && pTimeEnd != null) {
        entity.setPhenomenonTime(intervalFromTimes(pTimeStart, pTimeEnd));
    }

    Timestamp rTimeStart = tuple.get(qInstance.resultTimeStart);
    Timestamp rTimeEnd = tuple.get(qInstance.resultTimeEnd);
    if (rTimeStart != null && rTimeEnd != null) {
        entity.setResultTime(intervalFromTimes(rTimeStart, rTimeEnd));
    }

    if (select.isEmpty() || select.contains(EntityProperty.Properties)) {
        String props = tuple.get(qInstance.properties);
        entity.setProperties(jsonToObject(props, Map.class));
    }

    entity.setSensor(sensorFromId(tuple.get(qInstance.sensorId)));
    entity.setThing(thingFromId(tuple.get(qInstance.thingId)));

    entity.setUnitOfMeasurement(new UnitOfMeasurement(tuple.get(qInstance.unitName), tuple.get(qInstance.unitSymbol), tuple.get(qInstance.unitDefinition)));
    return entity;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:49,代码来源:PropertyHelper.java

示例2: insertThing

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
public boolean insertThing(Thing t) throws NoSuchEntityException, IncompleteEntityException {
    SQLQueryFactory qFactory = pm.createQueryFactory();
    QThings qt = QThings.things;
    SQLInsertClause insert = qFactory.insert(qt);
    insert.set(qt.name, t.getName());
    insert.set(qt.description, t.getDescription());
    insert.set(qt.properties, objectToJson(t.getProperties()));

    UUID thingId = insert.executeWithKey(qt.id);
    LOGGER.info("Inserted Thing. Created id = {}.", thingId);
    t.setId(new UuidId(thingId));

    // Create new Locations, if any.
    List<UUID> locationIds = new ArrayList<>();
    for (Location l : t.getLocations()) {
        entityExistsOrCreate(l);
        UUID lId = (UUID) l.getId().getValue();

        QThingsLocations qtl = QThingsLocations.thingsLocations;
        insert = qFactory.insert(qtl);
        insert.set(qtl.thingId, thingId);
        insert.set(qtl.locationId, lId);
        insert.execute();
        LOGGER.debug("Linked Location {} to Thing {}.", lId, thingId);
        locationIds.add(lId);
    }

    // Now link the new locations also to a historicalLocation.
    if (!locationIds.isEmpty()) {
        QHistLocations qhl = QHistLocations.histLocations;
        insert = qFactory.insert(qhl);
        insert.set(qhl.thingId, thingId);
        insert.set(qhl.time, new Timestamp(Calendar.getInstance().getTimeInMillis()));
        UUID histLocationId = insert.executeWithKey(qhl.id);
        LOGGER.debug("Created historicalLocation {}", histLocationId);

        QLocationsHistLocations qlhl = QLocationsHistLocations.locationsHistLocations;
        for (UUID locId : locationIds) {
            qFactory.insert(qlhl)
                    .set(qlhl.histLocationId, histLocationId)
                    .set(qlhl.locationId, locId)
                    .execute();
            LOGGER.info("Linked location {} to historicalLocation {}.", locId, histLocationId);
        }
    }

    // Create new datastreams, if any.
    for (Datastream ds : t.getDatastreams()) {
        ds.setThing(new ThingBuilder().setId(t.getId()).build());
        ds.complete();
        pm.insert(ds);
    }

    // TODO: if we allow the creation of historicalLocations through Things
    // then we have to be able to link those to Locations we might have just created.
    // However, id juggling will be needed!
    return true;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:59,代码来源:EntityInserter.java

示例3: create

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
@Override
public Datastream create(Tuple tuple, Query query, DataSize dataSize) {
    Set<Property> select = query == null ? Collections.emptySet() : query.getSelect();

    Datastream entity = new Datastream();
    entity.setName(tuple.get(qInstance.name));
    entity.setDescription(tuple.get(qInstance.description));
    Long id = tuple.get(qInstance.id);
    if (id != null) {
        entity.setId(new LongId(tuple.get(qInstance.id)));
    }
    entity.setObservationType(tuple.get(qInstance.observationType));

    String observedArea = tuple.get(qInstance.observedArea.asText());
    if (observedArea != null) {
        try {
            Polygon polygon = GeoHelper.parsePolygon(observedArea);
            entity.setObservedArea(polygon);
        } catch (IllegalArgumentException e) {
            // It's not a polygon, probably a point or a line.
        }
    }
    ObservedProperty op = observedProperyFromId(tuple.get(qInstance.obsPropertyId));
    entity.setObservedProperty(op);

    Timestamp pTimeStart = tuple.get(qInstance.phenomenonTimeStart);
    Timestamp pTimeEnd = tuple.get(qInstance.phenomenonTimeEnd);
    if (pTimeStart != null && pTimeEnd != null) {
        entity.setPhenomenonTime(intervalFromTimes(pTimeStart, pTimeEnd));
    }

    Timestamp rTimeStart = tuple.get(qInstance.resultTimeStart);
    Timestamp rTimeEnd = tuple.get(qInstance.resultTimeEnd);
    if (rTimeStart != null && rTimeEnd != null) {
        entity.setResultTime(intervalFromTimes(rTimeStart, rTimeEnd));
    }

    if (select.isEmpty() || select.contains(EntityProperty.Properties)) {
        String props = tuple.get(qInstance.properties);
        entity.setProperties(jsonToObject(props, Map.class));
    }

    entity.setSensor(sensorFromId(tuple.get(qInstance.sensorId)));
    entity.setThing(thingFromId(tuple.get(qInstance.thingId)));

    entity.setUnitOfMeasurement(new UnitOfMeasurement(tuple.get(qInstance.unitName), tuple.get(qInstance.unitSymbol), tuple.get(qInstance.unitDefinition)));
    return entity;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:49,代码来源:PropertyHelper.java

示例4: insertThing

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
public boolean insertThing(Thing t) throws NoSuchEntityException, IncompleteEntityException {
    SQLQueryFactory qFactory = pm.createQueryFactory();
    QThings qt = QThings.things;
    SQLInsertClause insert = qFactory.insert(qt);
    insert.set(qt.name, t.getName());
    insert.set(qt.description, t.getDescription());
    insert.set(qt.properties, objectToJson(t.getProperties()));

    Long thingId = insert.executeWithKey(qt.id);
    LOGGER.info("Inserted Thing. Created id = {}.", thingId);
    t.setId(new LongId(thingId));

    // Create new Locations, if any.
    List<Long> locationIds = new ArrayList<>();
    for (Location l : t.getLocations()) {
        entityExistsOrCreate(l);
        Long lId = (Long) l.getId().getValue();

        QThingsLocations qtl = QThingsLocations.thingsLocations;
        insert = qFactory.insert(qtl);
        insert.set(qtl.thingId, thingId);
        insert.set(qtl.locationId, lId);
        insert.execute();
        LOGGER.debug("Linked Location {} to Thing {}.", lId, thingId);
        locationIds.add(lId);
    }

    // Now link the new locations also to a historicalLocation.
    if (!locationIds.isEmpty()) {
        QHistLocations qhl = QHistLocations.histLocations;
        insert = qFactory.insert(qhl);
        insert.set(qhl.thingId, thingId);
        insert.set(qhl.time, new Timestamp(Calendar.getInstance().getTimeInMillis()));
        Long histLocationId = insert.executeWithKey(qhl.id);
        LOGGER.debug("Created historicalLocation {}", histLocationId);

        QLocationsHistLocations qlhl = QLocationsHistLocations.locationsHistLocations;
        for (Long locId : locationIds) {
            qFactory.insert(qlhl)
                    .set(qlhl.histLocationId, histLocationId)
                    .set(qlhl.locationId, locId)
                    .execute();
            LOGGER.info("Linked location {} to historicalLocation {}.", locId, histLocationId);
        }
    }

    // Create new datastreams, if any.
    for (Datastream ds : t.getDatastreams()) {
        ds.setThing(new ThingBuilder().setId(t.getId()).build());
        ds.complete();
        pm.insert(ds);
    }

    // TODO: if we allow the creation of historicalLocations through Things
    // then we have to be able to link those to Locations we might have just created.
    // However, id juggling will be needed!
    return true;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:59,代码来源:EntityInserter.java

示例5: create

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
@Override
public Datastream create(Tuple tuple, Query query, DataSize dataSize) {
    Set<Property> select = query == null ? Collections.emptySet() : query.getSelect();

    Datastream entity = new Datastream();
    entity.setName(tuple.get(qInstance.name));
    entity.setDescription(tuple.get(qInstance.description));
    String id = tuple.get(qInstance.id);
    if (id != null) {
        entity.setId(new StringId(tuple.get(qInstance.id)));
    }
    entity.setObservationType(tuple.get(qInstance.observationType));

    String observedArea = tuple.get(qInstance.observedArea.asText());
    if (observedArea != null) {
        try {
            Polygon polygon = GeoHelper.parsePolygon(observedArea);
            entity.setObservedArea(polygon);
        } catch (IllegalArgumentException e) {
            // It's not a polygon, probably a point or a line.
        }
    }
    ObservedProperty op = observedProperyFromId(tuple.get(qInstance.obsPropertyId));
    entity.setObservedProperty(op);

    Timestamp pTimeStart = tuple.get(qInstance.phenomenonTimeStart);
    Timestamp pTimeEnd = tuple.get(qInstance.phenomenonTimeEnd);
    if (pTimeStart != null && pTimeEnd != null) {
        entity.setPhenomenonTime(intervalFromTimes(pTimeStart, pTimeEnd));
    }

    Timestamp rTimeStart = tuple.get(qInstance.resultTimeStart);
    Timestamp rTimeEnd = tuple.get(qInstance.resultTimeEnd);
    if (rTimeStart != null && rTimeEnd != null) {
        entity.setResultTime(intervalFromTimes(rTimeStart, rTimeEnd));
    }

    if (select.isEmpty() || select.contains(EntityProperty.Properties)) {
        String props = tuple.get(qInstance.properties);
        entity.setProperties(jsonToObject(props, Map.class));
    }

    entity.setSensor(sensorFromId(tuple.get(qInstance.sensorId)));
    entity.setThing(thingFromId(tuple.get(qInstance.thingId)));

    entity.setUnitOfMeasurement(new UnitOfMeasurement(tuple.get(qInstance.unitName), tuple.get(qInstance.unitSymbol), tuple.get(qInstance.unitDefinition)));
    return entity;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:49,代码来源:PropertyHelper.java

示例6: insertThing

import de.fraunhofer.iosb.ilt.sta.model.Datastream; //导入方法依赖的package包/类
public boolean insertThing(Thing t) throws NoSuchEntityException, IncompleteEntityException {
    SQLQueryFactory qFactory = pm.createQueryFactory();
    QThings qt = QThings.things;
    SQLInsertClause insert = qFactory.insert(qt);
    insert.set(qt.name, t.getName());
    insert.set(qt.description, t.getDescription());
    insert.set(qt.properties, objectToJson(t.getProperties()));

    String thingId = insert.executeWithKey(qt.id);
    LOGGER.info("Inserted Thing. Created id = {}.", thingId);
    t.setId(new StringId(thingId));

    // Create new Locations, if any.
    List<String> locationIds = new ArrayList<>();
    for (Location l : t.getLocations()) {
        entityExistsOrCreate(l);
        String lId = (String) l.getId().getValue();

        QThingsLocations qtl = QThingsLocations.thingsLocations;
        insert = qFactory.insert(qtl);
        insert.set(qtl.thingId, thingId);
        insert.set(qtl.locationId, lId);
        insert.execute();
        LOGGER.debug("Linked Location {} to Thing {}.", lId, thingId);
        locationIds.add(lId);
    }

    // Now link the new locations also to a historicalLocation.
    if (!locationIds.isEmpty()) {
        QHistLocations qhl = QHistLocations.histLocations;
        insert = qFactory.insert(qhl);
        insert.set(qhl.thingId, thingId);
        insert.set(qhl.time, new Timestamp(Calendar.getInstance().getTimeInMillis()));
        String histLocationId = insert.executeWithKey(qhl.id);
        LOGGER.debug("Created historicalLocation {}", histLocationId);

        QLocationsHistLocations qlhl = QLocationsHistLocations.locationsHistLocations;
        for (String locId : locationIds) {
            qFactory.insert(qlhl)
                    .set(qlhl.histLocationId, histLocationId)
                    .set(qlhl.locationId, locId)
                    .execute();
            LOGGER.info("Linked location {} to historicalLocation {}.", locId, histLocationId);
        }
    }

    // Create new datastreams, if any.
    for (Datastream ds : t.getDatastreams()) {
        ds.setThing(new ThingBuilder().setId(t.getId()).build());
        ds.complete();
        pm.insert(ds);
    }

    // TODO: if we allow the creation of historicalLocations through Things
    // then we have to be able to link those to Locations we might have just created.
    // However, id juggling will be needed!
    return true;
}
 
开发者ID:FraunhoferIOSB,项目名称:SensorThingsServer,代码行数:59,代码来源:EntityInserter.java


注:本文中的de.fraunhofer.iosb.ilt.sta.model.Datastream.setThing方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。