Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

introduced duplicatable V2XMessage functionality #390

Merged
merged 4 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Copyright (c) 2024 Fraunhofer FOKUS and others. All rights reserved.
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contact: [email protected]
*/

package org.eclipse.mosaic.lib.objects.v2x;

/**
* A message that can duplicate itself.
* @param <T> a class that extends {@link V2xMessage}
*/
public interface DuplicatableMessage<T extends V2xMessage> {

/**
* Creates a copy of the V2xMessage.
* The message gets a new ID and routing (to use current vehicle position).
* Only its contents (e.g. payload, type, ...) are copied.
*
* @param routing contains current vehicle position
* @return cloned message
*/
T duplicate(MessageRouting routing);
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
/**
* This {@link V2xMessage} implementation can be used for simple message exchange between entities.
*/
public final class GenericV2xMessage extends V2xMessage {
public final class GenericV2xMessage extends V2xMessage implements DuplicatableMessage<GenericV2xMessage> {

private static final long serialVersionUID = 1L;

Expand Down Expand Up @@ -82,4 +82,9 @@ public String toString() {
+ ", encodedPayload=" + payload + '}';
}

@Override
public GenericV2xMessage duplicate(MessageRouting routing) {
schwepmo marked this conversation as resolved.
Show resolved Hide resolved
return new GenericV2xMessage(routing, messageType, payload.getEffectiveLength());
}

}
Loading