10 changed files with 326 additions and 33 deletions
@ -0,0 +1,92 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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.thingsboard.server.transport.lwm2m.server; |
|||
|
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.eclipse.californium.core.coap.CoAP; |
|||
import org.eclipse.californium.core.coap.Response; |
|||
import org.eclipse.californium.core.server.resources.CoapExchange; |
|||
import org.eclipse.leshan.core.californium.LwM2mCoapResource; |
|||
import org.thingsboard.server.common.transport.TransportServiceCallback; |
|||
|
|||
@Slf4j |
|||
public abstract class AbstractLwm2mTransportResource extends LwM2mCoapResource { |
|||
protected final LwM2mTransportMsgHandler handler; |
|||
|
|||
public AbstractLwm2mTransportResource(LwM2mTransportMsgHandler handler, String name) { |
|||
super(name); |
|||
this.handler = handler; |
|||
} |
|||
|
|||
@Override |
|||
public void handleGET(CoapExchange exchange) { |
|||
processHandleGet(exchange); |
|||
} |
|||
|
|||
@Override |
|||
public void handlePOST(CoapExchange exchange) { |
|||
processHandlePost(exchange); |
|||
} |
|||
|
|||
protected abstract void processHandleGet(CoapExchange exchange); |
|||
|
|||
protected abstract void processHandlePost(CoapExchange exchange); |
|||
|
|||
public static class CoapOkCallback implements TransportServiceCallback<Void> { |
|||
private final CoapExchange exchange; |
|||
private final CoAP.ResponseCode onSuccessResponse; |
|||
private final CoAP.ResponseCode onFailureResponse; |
|||
|
|||
public CoapOkCallback(CoapExchange exchange, CoAP.ResponseCode onSuccessResponse, CoAP.ResponseCode onFailureResponse) { |
|||
this.exchange = exchange; |
|||
this.onSuccessResponse = onSuccessResponse; |
|||
this.onFailureResponse = onFailureResponse; |
|||
} |
|||
|
|||
@Override |
|||
public void onSuccess(Void msg) { |
|||
Response response = new Response(onSuccessResponse); |
|||
response.setAcknowledged(isConRequest()); |
|||
exchange.respond(response); |
|||
} |
|||
|
|||
@Override |
|||
public void onError(Throwable e) { |
|||
exchange.respond(onFailureResponse); |
|||
} |
|||
|
|||
private boolean isConRequest() { |
|||
return exchange.advanced().getRequest().isConfirmable(); |
|||
} |
|||
} |
|||
|
|||
public static class CoapNoOpCallback implements TransportServiceCallback<Void> { |
|||
private final CoapExchange exchange; |
|||
|
|||
CoapNoOpCallback(CoapExchange exchange) { |
|||
this.exchange = exchange; |
|||
} |
|||
|
|||
@Override |
|||
public void onSuccess(Void msg) { |
|||
} |
|||
|
|||
@Override |
|||
public void onError(Throwable e) { |
|||
exchange.respond(CoAP.ResponseCode.INTERNAL_SERVER_ERROR); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,145 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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.thingsboard.server.transport.lwm2m.server; |
|||
|
|||
import lombok.extern.slf4j.Slf4j; |
|||
import org.eclipse.californium.core.coap.CoAP; |
|||
import org.eclipse.californium.core.coap.Request; |
|||
import org.eclipse.californium.core.coap.Response; |
|||
import org.eclipse.californium.core.network.Exchange; |
|||
import org.eclipse.californium.core.observe.ObserveRelation; |
|||
import org.eclipse.californium.core.server.resources.CoapExchange; |
|||
import org.eclipse.californium.core.server.resources.Resource; |
|||
import org.eclipse.californium.core.server.resources.ResourceObserver; |
|||
|
|||
import java.util.UUID; |
|||
import java.util.concurrent.ConcurrentHashMap; |
|||
import java.util.concurrent.ConcurrentMap; |
|||
import java.util.concurrent.atomic.AtomicInteger; |
|||
|
|||
@Slf4j |
|||
public class LwM2mTransportCoapResource extends AbstractLwm2mTransportResource { |
|||
private final ConcurrentMap<String, ObserveRelation> tokenToObserveRelationMap = new ConcurrentHashMap<>(); |
|||
private final ConcurrentMap<String, AtomicInteger> tokenToObserveNotificationSeqMap = new ConcurrentHashMap<>(); |
|||
|
|||
public LwM2mTransportCoapResource(LwM2mTransportMsgHandler handler, String name) { |
|||
super(handler, name); |
|||
this.setObservable(true); // enable observing
|
|||
this.addObserver(new CoapResourceObserver()); |
|||
} |
|||
|
|||
|
|||
@Override |
|||
public void checkObserveRelation(Exchange exchange, Response response) { |
|||
String token = getTokenFromRequest(exchange.getRequest()); |
|||
final ObserveRelation relation = exchange.getRelation(); |
|||
if (relation == null || relation.isCanceled()) { |
|||
return; // because request did not try to establish a relation
|
|||
} |
|||
if (CoAP.ResponseCode.isSuccess(response.getCode())) { |
|||
|
|||
if (!relation.isEstablished()) { |
|||
relation.setEstablished(); |
|||
addObserveRelation(relation); |
|||
} |
|||
AtomicInteger notificationCounter = tokenToObserveNotificationSeqMap.computeIfAbsent(token, s -> new AtomicInteger(0)); |
|||
response.getOptions().setObserve(notificationCounter.getAndIncrement()); |
|||
} // ObserveLayer takes care of the else case
|
|||
} |
|||
|
|||
|
|||
@Override |
|||
protected void processHandleGet(CoapExchange exchange) { |
|||
log.warn("1) processHandleGet [{}]", exchange); |
|||
// exchange.respond(CoAP.ResponseCode.BAD_REQUEST);
|
|||
// int ver = 10;
|
|||
int ver = 9; |
|||
UUID currentId; |
|||
if (ver == 10) { |
|||
long mSB = 4951557297924280811L; |
|||
long lSb = -8451242882176289074L; |
|||
currentId = new UUID(mSB, lSb); |
|||
} else { |
|||
long mSB = 9085827945869414891L; |
|||
long lSb = -9086716326447629319L; |
|||
currentId = new UUID(mSB, lSb); |
|||
} |
|||
String resource = exchange.getRequestOptions().getUriPath().get(0); |
|||
String token = exchange.getRequestOptions().getUriPath().get(1); |
|||
exchange.respond(CoAP.ResponseCode.CONTENT, this.getFwData(currentId)); |
|||
|
|||
} |
|||
|
|||
@Override |
|||
protected void processHandlePost(CoapExchange exchange) { |
|||
log.warn("2) processHandleGet [{}]", exchange); |
|||
} |
|||
|
|||
/** |
|||
* Override the default behavior so that requests to sub resources (typically /{name}/{token}) are handled by |
|||
* /name resource. |
|||
*/ |
|||
@Override |
|||
public Resource getChild(String name) { |
|||
return this; |
|||
} |
|||
|
|||
|
|||
private String getTokenFromRequest(Request request) { |
|||
return (request.getSourceContext() != null ? request.getSourceContext().getPeerAddress().getAddress().getHostAddress() : "null") |
|||
+ ":" + (request.getSourceContext() != null ? request.getSourceContext().getPeerAddress().getPort() : -1) + ":" + request.getTokenString(); |
|||
} |
|||
|
|||
public class CoapResourceObserver implements ResourceObserver { |
|||
|
|||
@Override |
|||
public void changedName(String old) { |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public void changedPath(String old) { |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public void addedChild(Resource child) { |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public void removedChild(Resource child) { |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public void addedObserveRelation(ObserveRelation relation) { |
|||
|
|||
} |
|||
|
|||
@Override |
|||
public void removedObserveRelation(ObserveRelation relation) { |
|||
|
|||
} |
|||
} |
|||
|
|||
private byte[] getFwData(UUID currentId) { |
|||
int chunkSize = 0; |
|||
int chunk = 0; |
|||
return ((DefaultLwM2MTransportMsgHandler) handler).otaPackageDataCache.get(currentId.toString(), chunkSize, chunk); |
|||
} |
|||
|
|||
} |
|||
Loading…
Reference in new issue