file_id
stringlengths 4
10
| content
stringlengths 91
42.8k
| repo
stringlengths 7
108
| path
stringlengths 7
251
| token_length
int64 34
8.19k
| original_comment
stringlengths 11
11.5k
| comment_type
stringclasses 2
values | detected_lang
stringclasses 1
value | prompt
stringlengths 34
42.8k
|
---|---|---|---|---|---|---|---|---|
208615_5 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // // Label om de gebruiker te informeren over welke informatie hij moet invoeren. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om<SUF>
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_6 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Label om de gebruiker te informeren over welke informatie hij moet invoeren. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om<SUF>
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_7 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hiermee maakt de gebruiker een artiest aan. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt<SUF>
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_8 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hiermee annuleer je het proces van het toevoegen van een artiest. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer<SUF>
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_9 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier worden de knoppen van de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden<SUF>
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_10 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // De knoppen worden 10 pixels apart geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen<SUF>
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_11 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Alle knoppen worden toegevoegd aan de buttonsBox. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen<SUF>
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_12 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Label om de gebruiker te informeren over welke informatie hij moet invoeren. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om<SUF>
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_13 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel ) | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan<SUF>
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_14 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier worden de labels en textfields van de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden<SUF>
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_15 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // De labels en textfields worden 10 pixels apart geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels<SUF>
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_16 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Alle labels en textfields worden toegevoegd aan de artistAdd. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels<SUF>
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_17 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de venster gemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt<SUF>
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_18 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt<SUF>
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_19 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de width van de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt<SUF>
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_20 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de height van de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt<SUF>
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_21 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de titel van de venster geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt<SUF>
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_22 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de venster getoond. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt<SUF>
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_23 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de createButton aangemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt<SUF>
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_24 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de<SUF>
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_25 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de alert gemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt<SUF>
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_26 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hierin wordt de inhoud van de alert geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt<SUF>
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_27 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de alert getoond. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt<SUF>
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_28 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de artiest gemaakt met een beschrijving. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt<SUF>
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_29 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt een alert gemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt<SUF>
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_30 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hierin wordt de header geplaatst | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt<SUF>
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_31 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hierin wordt de inhoud geplaatst. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt<SUF>
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_32 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de alert getoond. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt<SUF>
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_33 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de venster gesloten. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt<SUF>
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_34 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de cancel button aangemaakt. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt<SUF>
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
|
208615_35 | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt de venster gesloten.
});
}
}
| 589Hours/FestivalPlanner | src/Application/Create/ArtistAdd.java | 1,174 | // Hier wordt de venster gesloten. | line_comment | nl | package Application.Create;
import data.Artist;
import data.FestivalPlan;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ArtistAdd {
public ArtistAdd(FestivalPlan festivalPlan){
Stage artistStage = new Stage(); // Hier wordt de venster aangemaakt waarin de gebruiker de artiestgegevens zal invoeren.
TextField artistNameText = new TextField(); // Naam van de artiest.
TextField artistGenreText = new TextField(); // Genre van de artiest.
TextField artistPop = new TextField(); // Populariteit van de artiest.
Label artistName = new Label("Please enter the name of the artist:"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistGenre = new Label("Please enter the genre in which this artist performs:"); // // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Label artistPopularity = new Label("Please enter the expected for this artist ranging from 0-100"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
Button createButton = new Button("Create"); // Hiermee maakt de gebruiker een artiest aan.
Button cancelButton = new Button("Cancel"); // Hiermee annuleer je het proces van het toevoegen van een artiest.
HBox buttonsBox = new HBox(); // Hier worden de knoppen van de venster geplaatst.
buttonsBox.setSpacing(10); // De knoppen worden 10 pixels apart geplaatst.
buttonsBox.getChildren().addAll(createButton, cancelButton); // Alle knoppen worden toegevoegd aan de buttonsBox.
Label artistDescription = new Label("Description of artist"); // Label om de gebruiker te informeren over welke informatie hij moet invoeren.
TextArea description = new TextArea("Optional"); // Hierin kan de gebruiker een beschrijving van de artiest invoeren. ( Optioneel )
VBox artistAdd = new VBox(); // Hier worden de labels en textfields van de venster geplaatst.
artistAdd.setSpacing(10); // De labels en textfields worden 10 pixels apart geplaatst.
artistAdd.getChildren().addAll(artistName, artistNameText, artistGenre, artistGenreText, artistPopularity, artistPop, artistDescription, description, buttonsBox); // Alle labels en textfields worden toegevoegd aan de artistAdd.
Scene artistScene = new Scene(artistAdd); // Hier wordt de venster gemaakt.
artistStage.setScene(artistScene); // Hier wordt de venster geplaatst.
artistStage.setWidth(750); // Hier wordt de width van de venster geplaatst.
artistStage.setHeight(500); // Hier wordt de height van de venster geplaatst.
artistStage.setTitle("Artist"); // Hier wordt de titel van de venster geplaatst.
artistStage.show(); // Hier wordt de venster getoond.
createButton.setOnAction(event -> { // Hier wordt de createButton aangemaakt.
if (artistNameText.getText().isEmpty() || artistGenreText.getText().isEmpty() || Integer.parseInt(artistPop.getText()) < 0 || Integer.parseInt(artistPop.getText()) > 100) { // Als de gebruiker geen gegevens heeft ingevuld, dan wordt er een alert gemaakt.
Alert error = new Alert(Alert.AlertType.ERROR); // Hier wordt de alert gemaakt.
error.getDialogPane().setContent(new Label("Either a textfield is left empty or the given popularity is not between 0-100")); // Hierin wordt de inhoud van de alert geplaatst.
error.show(); // Hier wordt de alert getoond.
} else {
for (Artist artist : festivalPlan.getArtists()) {
if (artist.getName().equals(artistNameText.getText())){
Alert error = new Alert(Alert.AlertType.ERROR);
error.getDialogPane().setContent(new Label("This artist already exists!"));
error.show();
return;
}
}
if (description.getText().equals("Optional")){
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText()));
} else {
festivalPlan.addArtist(new Artist(artistNameText.getText(), Integer.parseInt(artistPop.getText()), artistGenreText.getText(), description.getText())); // Hier wordt de artiest gemaakt met een beschrijving.
}
}
Alert confirmation = new Alert(Alert.AlertType.INFORMATION); // Hier wordt een alert gemaakt.
confirmation.setHeaderText("Succes!"); // Hierin wordt de header geplaatst
confirmation.setContentText("The Artist was succesfully added!"); // Hierin wordt de inhoud geplaatst.
confirmation.showAndWait(); // Hier wordt de alert getoond.
artistStage.close(); // Hier wordt de venster gesloten.
}); //haha
cancelButton.setOnAction(event -> { // Hier wordt de cancel button aangemaakt.
artistStage.close(); // Hier wordt<SUF>
});
}
}
|
208631_13 | /*******************************************************************************
*
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
* for the latest version of iBioSim.
*
* Copyright (C) 2017 University of Utah
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the Apache License. A copy of the license agreement is provided
* in the file named "LICENSE.txt" included with this software distribution
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
*
*******************************************************************************/
package edu.utah.ece.async.ibiosim.gui.verificationView;
import javax.swing.*;
import edu.utah.ece.async.ibiosim.dataModels.biomodel.util.Utility;
import edu.utah.ece.async.ibiosim.dataModels.util.GlobalConstants;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.AbstractRunnableNamedButton;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.PropertyList;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.Runnable;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
/**
* This class creates a GUI front end for the Verification tool. It provides the
* necessary options to run an atacs simulation of the circuit and manage the
* results from the BioSim GUI.
*
* @author Kevin Jones
* @author Chris Myers
* @author <a href="http://www.async.ece.utah.edu/ibiosim#Credits"> iBioSim Contributors </a>
* @version %I%
*/
public class ParameterEditor extends JPanel implements ActionListener {
private static final long serialVersionUID = -5806315070287184299L;
//private JButton save, run, viewCircuit, viewTrace, viewLog, addComponent, removeComponent;
private JLabel algorithm, timingMethod, timingOptions, otherOptions, otherOptions2,
compilation, bddSizeLabel, advTiming, abstractLabel;
private JRadioButton untimed, geometric, posets, bag, bap, baptdc, verify, vergate, orbits,
search, trace, bdd, dbm, smt, lhpn, view, none, simplify, abstractLhpn;
private JCheckBox abst, partialOrder, dot, verbose, graph, genrg, timsubset, superset, infopt,
orbmatch, interleav, prune, disabling, nofail, keepgoing, explpn, nochecks, reduction,
newTab, postProc, redCheck, xForm2, expandRate;
private JTextField bddSize;
//private JTextField backgroundField, componentField;
private ButtonGroup timingMethodGroup, algorithmGroup, abstractionGroup;
private PropertyList variables;
private String root;
//private String directory, verFile, oldBdd, sourceFileNoPath;
public String verifyFile;
//private boolean change, atacs;
//private JTabbedPane bigTab;
//private PropertyList componentList;
//private AbstPane abstPane;
//private Log log;
//private BioSim biosim;
/**
* This is the constructor for the Verification class. It initializes all
* the input fields, puts them on panels, adds the panels to the frame, and
* then displays the frame.
*/
public ParameterEditor(String directory, boolean lema, boolean atacs) {
String[] tempDir = GlobalConstants.splitPath(directory);
root = tempDir[0];
for (int i = 1; i < tempDir.length - 1; i++) {
root = root + File.separator + tempDir[i];
}
JPanel abstractionPanel = new JPanel();
abstractionPanel.setMaximumSize(new Dimension(1000, 35));
JPanel timingRadioPanel = new JPanel();
timingRadioPanel.setMaximumSize(new Dimension(1000, 35));
JPanel timingCheckBoxPanel = new JPanel();
timingCheckBoxPanel.setMaximumSize(new Dimension(1000, 30));
JPanel otherPanel = new JPanel();
otherPanel.setMaximumSize(new Dimension(1000, 35));
JPanel algorithmPanel = new JPanel();
algorithmPanel.setMaximumSize(new Dimension(1000, 35));
//JPanel buttonPanel = new JPanel();
JPanel compilationPanel = new JPanel();
compilationPanel.setMaximumSize(new Dimension(1000, 35));
JPanel advancedPanel = new JPanel();
advancedPanel.setMaximumSize(new Dimension(1000, 35));
JPanel bddPanel = new JPanel();
bddPanel.setMaximumSize(new Dimension(1000, 35));
JPanel pruningPanel = new JPanel();
pruningPanel.setMaximumSize(new Dimension(1000, 35));
JPanel advTimingPanel = new JPanel();
advTimingPanel.setMaximumSize(new Dimension(1000, 62));
advTimingPanel.setPreferredSize(new Dimension(1000, 62));
bddSize = new JTextField("");
bddSize.setPreferredSize(new Dimension(40, 18));
//oldBdd = bddSize.getText();
//componentField = new JTextField("");
//componentList = new PropertyList("");
abstractLabel = new JLabel("Abstraction:");
algorithm = new JLabel("Verification Algorithm:");
timingMethod = new JLabel("Timing Method:");
timingOptions = new JLabel("Timing Options:");
otherOptions = new JLabel("Other Options:");
otherOptions2 = new JLabel("Other Options:");
compilation = new JLabel("Compilation Options:");
bddSizeLabel = new JLabel("BDD Linkspace Size:");
advTiming = new JLabel("Timing Options:");
// Initializes the radio buttons and check boxes
// Abstraction Options
none = new JRadioButton("None");
simplify = new JRadioButton("Simplification");
abstractLhpn = new JRadioButton("Abstraction");
// Timing Methods
if (atacs) {
untimed = new JRadioButton("Untimed");
geometric = new JRadioButton("Geometric");
posets = new JRadioButton("POSETs");
bag = new JRadioButton("BAG");
bap = new JRadioButton("BAP");
baptdc = new JRadioButton("BAPTDC");
}
else {
bdd = new JRadioButton("BDD");
dbm = new JRadioButton("DBM");
smt = new JRadioButton("SMT");
}
lhpn = new JRadioButton("LPN");
view = new JRadioButton("View");
// Basic Timing Options
abst = new JCheckBox("Abstract");
partialOrder = new JCheckBox("Partial Order");
// Other Basic Options
dot = new JCheckBox("Dot");
verbose = new JCheckBox("Verbose");
graph = new JCheckBox("Show State Graph");
// Verification Algorithms
verify = new JRadioButton("Verify");
vergate = new JRadioButton("Verify Gates");
orbits = new JRadioButton("Orbits");
search = new JRadioButton("Search");
trace = new JRadioButton("Trace");
verify.addActionListener(this);
vergate.addActionListener(this);
orbits.addActionListener(this);
search.addActionListener(this);
trace.addActionListener(this);
// Compilations Options
newTab = new JCheckBox("New Tab");
postProc = new JCheckBox("Post Processing");
redCheck = new JCheckBox("Redundancy Check");
xForm2 = new JCheckBox("Don't Use Transform 2");
expandRate = new JCheckBox("Expand Rate");
newTab.addActionListener(this);
postProc.addActionListener(this);
redCheck.addActionListener(this);
xForm2.addActionListener(this);
expandRate.addActionListener(this);
// Advanced Timing Options
genrg = new JCheckBox("Generate RG");
timsubset = new JCheckBox("Subsets");
superset = new JCheckBox("Supersets");
infopt = new JCheckBox("Infinity Optimization");
orbmatch = new JCheckBox("Orbits Match");
interleav = new JCheckBox("Interleave");
prune = new JCheckBox("Prune");
disabling = new JCheckBox("Disabling");
nofail = new JCheckBox("No fail");
keepgoing = new JCheckBox("Keep going");
explpn = new JCheckBox("Expand LPN");
genrg.addActionListener(this);
timsubset.addActionListener(this);
superset.addActionListener(this);
infopt.addActionListener(this);
orbmatch.addActionListener(this);
interleav.addActionListener(this);
prune.addActionListener(this);
disabling.addActionListener(this);
nofail.addActionListener(this);
keepgoing.addActionListener(this);
explpn.addActionListener(this);
// Other Advanced Options
nochecks = new JCheckBox("No checks");
reduction = new JCheckBox("Reduction");
nochecks.addActionListener(this);
reduction.addActionListener(this);
// Component List
//addComponent = new JButton("Add Component");
//removeComponent = new JButton("Remove Component");
// addComponent.addActionListener(this);
// removeComponent.addActionListener(this);
GridBagConstraints constraints = new GridBagConstraints();
variables = new PropertyList("Variable List");
EditButton editVar = new EditButton("Edit Variable");
JPanel varPanel = Utility.createPanel(this, "Variables", variables, null, null, editVar);
constraints.gridx = 0;
constraints.gridy = 1;
abstractionGroup = new ButtonGroup();
timingMethodGroup = new ButtonGroup();
algorithmGroup = new ButtonGroup();
abstractLhpn.setSelected(true);
if (lema) {
dbm.setSelected(true);
}
else {
untimed.setSelected(true);
}
verify.setSelected(true);
// Groups the radio buttons
abstractionGroup.add(none);
abstractionGroup.add(simplify);
abstractionGroup.add(abstractLhpn);
if (lema) {
timingMethodGroup.add(bdd);
timingMethodGroup.add(dbm);
timingMethodGroup.add(smt);
}
else {
timingMethodGroup.add(untimed);
timingMethodGroup.add(geometric);
timingMethodGroup.add(posets);
timingMethodGroup.add(bag);
timingMethodGroup.add(bap);
timingMethodGroup.add(baptdc);
}
timingMethodGroup.add(lhpn);
timingMethodGroup.add(view);
algorithmGroup.add(verify);
algorithmGroup.add(vergate);
algorithmGroup.add(orbits);
algorithmGroup.add(search);
algorithmGroup.add(trace);
JPanel basicOptions = new JPanel();
// Adds the buttons to their panels
abstractionPanel.add(abstractLabel);
abstractionPanel.add(none);
abstractionPanel.add(simplify);
abstractionPanel.add(abstractLhpn);
timingRadioPanel.add(timingMethod);
if (lema) {
timingRadioPanel.add(bdd);
timingRadioPanel.add(dbm);
timingRadioPanel.add(smt);
}
else {
timingRadioPanel.add(untimed);
timingRadioPanel.add(geometric);
timingRadioPanel.add(posets);
timingRadioPanel.add(bag);
timingRadioPanel.add(bap);
timingRadioPanel.add(baptdc);
}
timingRadioPanel.add(lhpn);
timingRadioPanel.add(view);
timingCheckBoxPanel.add(timingOptions);
timingCheckBoxPanel.add(abst);
timingCheckBoxPanel.add(partialOrder);
otherPanel.add(otherOptions);
otherPanel.add(dot);
otherPanel.add(verbose);
otherPanel.add(graph);
algorithmPanel.add(algorithm);
algorithmPanel.add(verify);
algorithmPanel.add(vergate);
algorithmPanel.add(orbits);
algorithmPanel.add(search);
algorithmPanel.add(trace);
compilationPanel.add(compilation);
compilationPanel.add(newTab);
compilationPanel.add(postProc);
compilationPanel.add(redCheck);
compilationPanel.add(xForm2);
compilationPanel.add(expandRate);
advTimingPanel.add(advTiming);
advTimingPanel.add(genrg);
advTimingPanel.add(timsubset);
advTimingPanel.add(superset);
advTimingPanel.add(infopt);
advTimingPanel.add(orbmatch);
advTimingPanel.add(interleav);
advTimingPanel.add(prune);
advTimingPanel.add(disabling);
advTimingPanel.add(nofail);
advTimingPanel.add(keepgoing);
advTimingPanel.add(explpn);
advancedPanel.add(otherOptions2);
advancedPanel.add(nochecks);
advancedPanel.add(reduction);
bddPanel.add(bddSizeLabel);
bddPanel.add(bddSize);
basicOptions.add(varPanel);
}
@Override
public void actionPerformed(ActionEvent e) {
}
public class EditButton extends AbstractRunnableNamedButton {
/**
*
*/
private static final long serialVersionUID = 1L;
public EditButton(String name) {
super(name);
}
@Override
public void run() {
new EditCommand().run();
}
}
private class EditCommand implements Runnable {
public EditCommand() {
// this.name = name;
//this.list = list;
}
@Override
public void run() {
}
/*
public String getName() {
return name;
}
private String name = null;
*/
//private PropertyList list = null;
}
} | MyersResearchGroup/iBioSim | gui/src/main/java/edu/utah/ece/async/ibiosim/gui/verificationView/ParameterEditor.java | 3,428 | //oldBdd = bddSize.getText(); | line_comment | nl | /*******************************************************************************
*
* This file is part of iBioSim. Please visit <http://www.async.ece.utah.edu/ibiosim>
* for the latest version of iBioSim.
*
* Copyright (C) 2017 University of Utah
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the Apache License. A copy of the license agreement is provided
* in the file named "LICENSE.txt" included with this software distribution
* and also available online at <http://www.async.ece.utah.edu/ibiosim/License>.
*
*******************************************************************************/
package edu.utah.ece.async.ibiosim.gui.verificationView;
import javax.swing.*;
import edu.utah.ece.async.ibiosim.dataModels.biomodel.util.Utility;
import edu.utah.ece.async.ibiosim.dataModels.util.GlobalConstants;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.AbstractRunnableNamedButton;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.PropertyList;
import edu.utah.ece.async.ibiosim.gui.modelEditor.util.Runnable;
import java.awt.*;
import java.awt.event.*;
import java.io.File;
/**
* This class creates a GUI front end for the Verification tool. It provides the
* necessary options to run an atacs simulation of the circuit and manage the
* results from the BioSim GUI.
*
* @author Kevin Jones
* @author Chris Myers
* @author <a href="http://www.async.ece.utah.edu/ibiosim#Credits"> iBioSim Contributors </a>
* @version %I%
*/
public class ParameterEditor extends JPanel implements ActionListener {
private static final long serialVersionUID = -5806315070287184299L;
//private JButton save, run, viewCircuit, viewTrace, viewLog, addComponent, removeComponent;
private JLabel algorithm, timingMethod, timingOptions, otherOptions, otherOptions2,
compilation, bddSizeLabel, advTiming, abstractLabel;
private JRadioButton untimed, geometric, posets, bag, bap, baptdc, verify, vergate, orbits,
search, trace, bdd, dbm, smt, lhpn, view, none, simplify, abstractLhpn;
private JCheckBox abst, partialOrder, dot, verbose, graph, genrg, timsubset, superset, infopt,
orbmatch, interleav, prune, disabling, nofail, keepgoing, explpn, nochecks, reduction,
newTab, postProc, redCheck, xForm2, expandRate;
private JTextField bddSize;
//private JTextField backgroundField, componentField;
private ButtonGroup timingMethodGroup, algorithmGroup, abstractionGroup;
private PropertyList variables;
private String root;
//private String directory, verFile, oldBdd, sourceFileNoPath;
public String verifyFile;
//private boolean change, atacs;
//private JTabbedPane bigTab;
//private PropertyList componentList;
//private AbstPane abstPane;
//private Log log;
//private BioSim biosim;
/**
* This is the constructor for the Verification class. It initializes all
* the input fields, puts them on panels, adds the panels to the frame, and
* then displays the frame.
*/
public ParameterEditor(String directory, boolean lema, boolean atacs) {
String[] tempDir = GlobalConstants.splitPath(directory);
root = tempDir[0];
for (int i = 1; i < tempDir.length - 1; i++) {
root = root + File.separator + tempDir[i];
}
JPanel abstractionPanel = new JPanel();
abstractionPanel.setMaximumSize(new Dimension(1000, 35));
JPanel timingRadioPanel = new JPanel();
timingRadioPanel.setMaximumSize(new Dimension(1000, 35));
JPanel timingCheckBoxPanel = new JPanel();
timingCheckBoxPanel.setMaximumSize(new Dimension(1000, 30));
JPanel otherPanel = new JPanel();
otherPanel.setMaximumSize(new Dimension(1000, 35));
JPanel algorithmPanel = new JPanel();
algorithmPanel.setMaximumSize(new Dimension(1000, 35));
//JPanel buttonPanel = new JPanel();
JPanel compilationPanel = new JPanel();
compilationPanel.setMaximumSize(new Dimension(1000, 35));
JPanel advancedPanel = new JPanel();
advancedPanel.setMaximumSize(new Dimension(1000, 35));
JPanel bddPanel = new JPanel();
bddPanel.setMaximumSize(new Dimension(1000, 35));
JPanel pruningPanel = new JPanel();
pruningPanel.setMaximumSize(new Dimension(1000, 35));
JPanel advTimingPanel = new JPanel();
advTimingPanel.setMaximumSize(new Dimension(1000, 62));
advTimingPanel.setPreferredSize(new Dimension(1000, 62));
bddSize = new JTextField("");
bddSize.setPreferredSize(new Dimension(40, 18));
//oldBdd =<SUF>
//componentField = new JTextField("");
//componentList = new PropertyList("");
abstractLabel = new JLabel("Abstraction:");
algorithm = new JLabel("Verification Algorithm:");
timingMethod = new JLabel("Timing Method:");
timingOptions = new JLabel("Timing Options:");
otherOptions = new JLabel("Other Options:");
otherOptions2 = new JLabel("Other Options:");
compilation = new JLabel("Compilation Options:");
bddSizeLabel = new JLabel("BDD Linkspace Size:");
advTiming = new JLabel("Timing Options:");
// Initializes the radio buttons and check boxes
// Abstraction Options
none = new JRadioButton("None");
simplify = new JRadioButton("Simplification");
abstractLhpn = new JRadioButton("Abstraction");
// Timing Methods
if (atacs) {
untimed = new JRadioButton("Untimed");
geometric = new JRadioButton("Geometric");
posets = new JRadioButton("POSETs");
bag = new JRadioButton("BAG");
bap = new JRadioButton("BAP");
baptdc = new JRadioButton("BAPTDC");
}
else {
bdd = new JRadioButton("BDD");
dbm = new JRadioButton("DBM");
smt = new JRadioButton("SMT");
}
lhpn = new JRadioButton("LPN");
view = new JRadioButton("View");
// Basic Timing Options
abst = new JCheckBox("Abstract");
partialOrder = new JCheckBox("Partial Order");
// Other Basic Options
dot = new JCheckBox("Dot");
verbose = new JCheckBox("Verbose");
graph = new JCheckBox("Show State Graph");
// Verification Algorithms
verify = new JRadioButton("Verify");
vergate = new JRadioButton("Verify Gates");
orbits = new JRadioButton("Orbits");
search = new JRadioButton("Search");
trace = new JRadioButton("Trace");
verify.addActionListener(this);
vergate.addActionListener(this);
orbits.addActionListener(this);
search.addActionListener(this);
trace.addActionListener(this);
// Compilations Options
newTab = new JCheckBox("New Tab");
postProc = new JCheckBox("Post Processing");
redCheck = new JCheckBox("Redundancy Check");
xForm2 = new JCheckBox("Don't Use Transform 2");
expandRate = new JCheckBox("Expand Rate");
newTab.addActionListener(this);
postProc.addActionListener(this);
redCheck.addActionListener(this);
xForm2.addActionListener(this);
expandRate.addActionListener(this);
// Advanced Timing Options
genrg = new JCheckBox("Generate RG");
timsubset = new JCheckBox("Subsets");
superset = new JCheckBox("Supersets");
infopt = new JCheckBox("Infinity Optimization");
orbmatch = new JCheckBox("Orbits Match");
interleav = new JCheckBox("Interleave");
prune = new JCheckBox("Prune");
disabling = new JCheckBox("Disabling");
nofail = new JCheckBox("No fail");
keepgoing = new JCheckBox("Keep going");
explpn = new JCheckBox("Expand LPN");
genrg.addActionListener(this);
timsubset.addActionListener(this);
superset.addActionListener(this);
infopt.addActionListener(this);
orbmatch.addActionListener(this);
interleav.addActionListener(this);
prune.addActionListener(this);
disabling.addActionListener(this);
nofail.addActionListener(this);
keepgoing.addActionListener(this);
explpn.addActionListener(this);
// Other Advanced Options
nochecks = new JCheckBox("No checks");
reduction = new JCheckBox("Reduction");
nochecks.addActionListener(this);
reduction.addActionListener(this);
// Component List
//addComponent = new JButton("Add Component");
//removeComponent = new JButton("Remove Component");
// addComponent.addActionListener(this);
// removeComponent.addActionListener(this);
GridBagConstraints constraints = new GridBagConstraints();
variables = new PropertyList("Variable List");
EditButton editVar = new EditButton("Edit Variable");
JPanel varPanel = Utility.createPanel(this, "Variables", variables, null, null, editVar);
constraints.gridx = 0;
constraints.gridy = 1;
abstractionGroup = new ButtonGroup();
timingMethodGroup = new ButtonGroup();
algorithmGroup = new ButtonGroup();
abstractLhpn.setSelected(true);
if (lema) {
dbm.setSelected(true);
}
else {
untimed.setSelected(true);
}
verify.setSelected(true);
// Groups the radio buttons
abstractionGroup.add(none);
abstractionGroup.add(simplify);
abstractionGroup.add(abstractLhpn);
if (lema) {
timingMethodGroup.add(bdd);
timingMethodGroup.add(dbm);
timingMethodGroup.add(smt);
}
else {
timingMethodGroup.add(untimed);
timingMethodGroup.add(geometric);
timingMethodGroup.add(posets);
timingMethodGroup.add(bag);
timingMethodGroup.add(bap);
timingMethodGroup.add(baptdc);
}
timingMethodGroup.add(lhpn);
timingMethodGroup.add(view);
algorithmGroup.add(verify);
algorithmGroup.add(vergate);
algorithmGroup.add(orbits);
algorithmGroup.add(search);
algorithmGroup.add(trace);
JPanel basicOptions = new JPanel();
// Adds the buttons to their panels
abstractionPanel.add(abstractLabel);
abstractionPanel.add(none);
abstractionPanel.add(simplify);
abstractionPanel.add(abstractLhpn);
timingRadioPanel.add(timingMethod);
if (lema) {
timingRadioPanel.add(bdd);
timingRadioPanel.add(dbm);
timingRadioPanel.add(smt);
}
else {
timingRadioPanel.add(untimed);
timingRadioPanel.add(geometric);
timingRadioPanel.add(posets);
timingRadioPanel.add(bag);
timingRadioPanel.add(bap);
timingRadioPanel.add(baptdc);
}
timingRadioPanel.add(lhpn);
timingRadioPanel.add(view);
timingCheckBoxPanel.add(timingOptions);
timingCheckBoxPanel.add(abst);
timingCheckBoxPanel.add(partialOrder);
otherPanel.add(otherOptions);
otherPanel.add(dot);
otherPanel.add(verbose);
otherPanel.add(graph);
algorithmPanel.add(algorithm);
algorithmPanel.add(verify);
algorithmPanel.add(vergate);
algorithmPanel.add(orbits);
algorithmPanel.add(search);
algorithmPanel.add(trace);
compilationPanel.add(compilation);
compilationPanel.add(newTab);
compilationPanel.add(postProc);
compilationPanel.add(redCheck);
compilationPanel.add(xForm2);
compilationPanel.add(expandRate);
advTimingPanel.add(advTiming);
advTimingPanel.add(genrg);
advTimingPanel.add(timsubset);
advTimingPanel.add(superset);
advTimingPanel.add(infopt);
advTimingPanel.add(orbmatch);
advTimingPanel.add(interleav);
advTimingPanel.add(prune);
advTimingPanel.add(disabling);
advTimingPanel.add(nofail);
advTimingPanel.add(keepgoing);
advTimingPanel.add(explpn);
advancedPanel.add(otherOptions2);
advancedPanel.add(nochecks);
advancedPanel.add(reduction);
bddPanel.add(bddSizeLabel);
bddPanel.add(bddSize);
basicOptions.add(varPanel);
}
@Override
public void actionPerformed(ActionEvent e) {
}
public class EditButton extends AbstractRunnableNamedButton {
/**
*
*/
private static final long serialVersionUID = 1L;
public EditButton(String name) {
super(name);
}
@Override
public void run() {
new EditCommand().run();
}
}
private class EditCommand implements Runnable {
public EditCommand() {
// this.name = name;
//this.list = list;
}
@Override
public void run() {
}
/*
public String getName() {
return name;
}
private String name = null;
*/
//private PropertyList list = null;
}
} |
208686_1 | package edu.anadolu.similarities;
import org.apache.lucene.search.similarities.BasicStats;
import org.apache.lucene.search.similarities.ModelBase;
/**
* This class implements the DPH hypergeometric weighting model. P
* stands for Popper's normalization. This is a parameter-free
* weighting model. Even if the user specifies a parameter value, it will <b>NOT</b>
* affect the results. It is highly recommended to use the model with query expansion.
* <p><b>References</b>
* <ol>
* <li>FUB, IASI-CNR and University of Tor Vergata at TREC 2007 Blog Track. G. Amati
* and E. Ambrosi and M. Bianchi and C. Gaibisso and G. Gambosi. Proceedings of
* the 16th Text REtrieval Conference (TREC-2007), 2008.</li>
* <li>Frequentist and Bayesian approach to Information Retrieval. G. Amati. In
* Proceedings of the 28th European Conference on IR Research (ECIR 2006).
* LNCS vol 3936, pages 13--24.</li>
* </ol>
*/
public class DPH extends ModelBase {
protected float score(BasicStats stats, float freq, float docLen) {
double f = freq / docLen;
double norm = (1d - f) * (1d - f) / (freq + 1d);
// averageDocumentLength => stats.getAvgFieldLength()
// numberOfDocuments => stats.getNumberOfDocuments()
// termFrequency => stats.getTotalTermFreq()
double returnValue = norm
* (freq * log2((freq *
stats.getAvgFieldLength() / docLen) *
stats.getNumberOfDocuments() / stats.getTotalTermFreq())
+ 0.5d * log2(2d * Math.PI * freq * (1d - f))
);
return (float) returnValue;
}
@Override
public double score(double tf, long docLength, double averageDocumentLength, double keyFrequency, double documentFrequency, double termFrequency, double numberOfDocuments, double numberOfTokens) {
double f = relativeFrequency(tf, docLength);
double norm = (1d - f) * (1d - f) / (tf + 1d);
return keyFrequency * norm
* (tf * log2((tf *
averageDocumentLength / docLength) *
(numberOfDocuments / termFrequency))
+ 0.5d * log2(2d * Math.PI * tf * (1d - f))
);
}
@Override
public String toString() {
return "DPH";
}
}
| iorixxx/lucene-clueweb-retrieval | src/main/java/edu/anadolu/similarities/DPH.java | 648 | // averageDocumentLength => stats.getAvgFieldLength() | line_comment | nl | package edu.anadolu.similarities;
import org.apache.lucene.search.similarities.BasicStats;
import org.apache.lucene.search.similarities.ModelBase;
/**
* This class implements the DPH hypergeometric weighting model. P
* stands for Popper's normalization. This is a parameter-free
* weighting model. Even if the user specifies a parameter value, it will <b>NOT</b>
* affect the results. It is highly recommended to use the model with query expansion.
* <p><b>References</b>
* <ol>
* <li>FUB, IASI-CNR and University of Tor Vergata at TREC 2007 Blog Track. G. Amati
* and E. Ambrosi and M. Bianchi and C. Gaibisso and G. Gambosi. Proceedings of
* the 16th Text REtrieval Conference (TREC-2007), 2008.</li>
* <li>Frequentist and Bayesian approach to Information Retrieval. G. Amati. In
* Proceedings of the 28th European Conference on IR Research (ECIR 2006).
* LNCS vol 3936, pages 13--24.</li>
* </ol>
*/
public class DPH extends ModelBase {
protected float score(BasicStats stats, float freq, float docLen) {
double f = freq / docLen;
double norm = (1d - f) * (1d - f) / (freq + 1d);
// averageDocumentLength =><SUF>
// numberOfDocuments => stats.getNumberOfDocuments()
// termFrequency => stats.getTotalTermFreq()
double returnValue = norm
* (freq * log2((freq *
stats.getAvgFieldLength() / docLen) *
stats.getNumberOfDocuments() / stats.getTotalTermFreq())
+ 0.5d * log2(2d * Math.PI * freq * (1d - f))
);
return (float) returnValue;
}
@Override
public double score(double tf, long docLength, double averageDocumentLength, double keyFrequency, double documentFrequency, double termFrequency, double numberOfDocuments, double numberOfTokens) {
double f = relativeFrequency(tf, docLength);
double norm = (1d - f) * (1d - f) / (tf + 1d);
return keyFrequency * norm
* (tf * log2((tf *
averageDocumentLength / docLength) *
(numberOfDocuments / termFrequency))
+ 0.5d * log2(2d * Math.PI * tf * (1d - f))
);
}
@Override
public String toString() {
return "DPH";
}
}
|
208687_28 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#sleep(int)}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}<SUF>*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_30 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#wake(int)}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}<SUF>*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_34 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#helo()}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}<SUF>*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_35 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#disconnect()}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}<SUF>*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_36 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#disconnect()}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}<SUF>*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_37 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#close()}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}<SUF>*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208687_38 | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}
*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
| simon622/mqtt-sn | mqtt-sn-client/src/main/java/org/slj/mqtt/sn/client/impl/MqttsnClient.java | 7,823 | /**
* @see {@link IMqttsnClient#getClientId()}
*/ | block_comment | nl | /*
* Copyright (c) 2021 Simon Johnson <simon622 AT gmail DOT com>
*
* Find me on GitHub:
* https://github.com/simon622
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.slj.mqtt.sn.client.impl;
import org.slj.mqtt.sn.MqttsnConstants;
import org.slj.mqtt.sn.MqttsnSpecificationValidator;
import org.slj.mqtt.sn.PublishData;
import org.slj.mqtt.sn.client.MqttsnClientConnectException;
import org.slj.mqtt.sn.client.impl.examples.Example;
import org.slj.mqtt.sn.client.spi.IMqttsnClient;
import org.slj.mqtt.sn.client.spi.MqttsnClientOptions;
import org.slj.mqtt.sn.impl.AbstractMqttsnRuntime;
import org.slj.mqtt.sn.model.*;
import org.slj.mqtt.sn.model.session.ISession;
import org.slj.mqtt.sn.model.session.impl.QueuedPublishMessageImpl;
import org.slj.mqtt.sn.model.session.impl.WillDataImpl;
import org.slj.mqtt.sn.spi.*;
import org.slj.mqtt.sn.utils.MqttsnUtils;
import org.slj.mqtt.sn.wire.version1_2.payload.MqttsnHelo;
import java.util.Optional;
import java.util.concurrent.TimeUnit;
/**
* Provides a blocking command implementation, with the ability to handle transparent reconnection
* during unsolicited disconnection events.
*
* Publishing occurs asynchronously and is managed by a FIFO queue. The size of the queue is determined
* by the configuration supplied.
*
* Connect, subscribe, unsubscribe and disconnect ( & sleep) are blocking calls which are considered successful on
* receipt of the correlated acknowledgement message.
*
* Management of the sleeping client state can either be supervised by the application, or by the client itself. During
* the sleep cycle, underlying resources (threads) are intelligently started and stopped. For example during sleep, the
* queue processing is closed down, and restarted during the Connected state.
*
* The client is {@link java.io.Closeable}. On close, a remote DISCONNECT operation is run (if required) and all encapsulated
* state (timers and threads) are stopped gracefully at best attempt. Once a client has been closed, it should be discarded and a new instance created
* should a new connection be required.
*
* For example use, please refer to {@link Example}.
*/
public class MqttsnClient extends AbstractMqttsnRuntime implements IMqttsnClient {
private volatile ISession session;
private volatile int keepAlive;
private volatile boolean cleanSession;
private int errorRetryCounter = 0;
private Thread managedConnectionThread = null;
private final Object sleepMonitor = new Object();
private final Object connectionMonitor = new Object();
private final Object functionMutex = new Object();
private final boolean managedConnection;
private final boolean autoReconnect;
/**
* Construct a new client instance whose connection is NOT automatically managed. It will be up to the application
* to monitor and manage the connection lifecycle.
*
* If you wish to have the client supervise your connection (including active pings and unsolicited disconnect handling) then you
* should use the constructor which specifies managedConnected = true.
*/
public MqttsnClient(){
this(false, false);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* and issue PINGS where neccessary to keep your session alive
*/
public MqttsnClient(boolean managedConnection){
this(managedConnection, true);
}
/**
* Construct a new client instance specifying whether you want to client to automatically handle unsolicited DISCONNECT
* events.
*
* @param managedConnection - You can choose to use managed connections which will actively monitor your connection with the remote gateway,
* * and issue PINGS where neccessary to keep your session alive
*
* @param autoReconnect - When operating in managedConnection mode, should we attempt to silently reconnect if we detected a dropped
* connection
*/
public MqttsnClient(boolean managedConnection, boolean autoReconnect){
this.managedConnection = managedConnection;
this.autoReconnect = autoReconnect;
registerConnectionListener(connectionListener);
}
protected void resetErrorState(){
errorRetryCounter = 0;
}
@Override
protected void notifyServicesStarted() {
try {
Optional<INetworkContext> optionalContext = registry.getNetworkRegistry().first();
if(!registry.getOptions().isEnableDiscovery() &&
!optionalContext.isPresent()){
throw new MqttsnRuntimeException("unable to launch non-discoverable client without configured gateway");
}
} catch(NetworkRegistryException e){
throw new MqttsnRuntimeException("error using network registry", e);
}
}
@Override
public boolean isConnected() {
try {
synchronized(functionMutex){
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ACTIVE;
}
} catch(MqttsnException e){
logger.warn("error checking connection state", e);
return false;
}
}
@Override
public boolean isAsleep() {
try {
ISession state = checkSession(false);
if(state == null) return false;
return state.getClientState() == ClientState.ASLEEP;
} catch(MqttsnException e){
return false;
}
}
@Override
/**
* @see {@link IMqttsnClient#connect(int, boolean)}
*/
public void connect(int keepAlive, boolean cleanSession) throws MqttsnException, MqttsnClientConnectException{
this.keepAlive = keepAlive;
this.cleanSession = cleanSession;
ISession session = checkSession(false);
synchronized (functionMutex) {
//-- its assumed regardless of being already connected or not, if connect is called
//-- local state should be discarded
clearState(cleanSession);
if (session.getClientState() != ClientState.ACTIVE) {
startProcessing(false);
try {
MqttsnSecurityOptions securityOptions = registry.getOptions().getSecurityOptions();
IMqttsnMessage message = registry.getMessageFactory().createConnect(
registry.getOptions().getContextId(), keepAlive,
registry.getWillRegistry().hasWillMessage(session),
(securityOptions != null && securityOptions.getAuthHandler() != null),
cleanSession,
registry.getOptions().getMaxProtocolMessageSize(),
registry.getOptions().getDefaultMaxAwakeMessages(),
registry.getOptions().getSessionExpiryInterval());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
stateChangeResponseCheck(session, token, response, ClientState.ACTIVE);
getRegistry().getSessionRegistry().modifyKeepAlive(session, keepAlive);
startProcessing(true);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing CONNECT, disconnect");
getRegistry().getSessionRegistry().modifyClientState(session, ClientState.DISCONNECTED);
stopProcessing(true);
throw new MqttsnClientConnectException(e);
}
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData(WillDataImpl)}
*/
public void setWillData(WillDataImpl willData) throws MqttsnException {
//if connected, we need to update the existing session
ISession session = checkSession(false);
registry.getWillRegistry().setWillMessage(session, willData);
if (session.getClientState() == ClientState.ACTIVE) {
try {
//-- topic update first
IMqttsnMessage message = registry.getMessageFactory().createWillTopicupd(
willData.getQos(),willData.isRetained(), willData.getTopicPath().toString());
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
//-- then the data udpate
message = registry.getMessageFactory().createWillMsgupd(willData.getData());
token = registry.getMessageStateService().sendMessage(session.getContext(), message);
response =
registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
} catch(MqttsnExpectationFailedException e){
//-- something was not correct with the CONNECT, shut it down again
logger.warn("error issuing WILL UPDATE", e);
throw e;
}
}
}
@Override
/**
* @see {@link IMqttsnClient#setWillData()}
*/
public void clearWillData() throws MqttsnException {
ISession session = checkSession(false);
registry.getWillRegistry().clear(session);
}
@Override
/**
* @see {@link IMqttsnClient#waitForCompletion(MqttsnWaitToken, long)}
*/
public Optional<IMqttsnMessage> waitForCompletion(MqttsnWaitToken token, long customWaitTime) throws MqttsnExpectationFailedException {
synchronized (functionMutex){
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(
session.getContext(), token, (int) customWaitTime);
MqttsnUtils.responseCheck(token, response);
return response;
}
}
@Override
/**
* @see {@link IMqttsnClient#publish(String, int, boolean, byte[])}
*/
public MqttsnWaitToken publish(String topicName, int QoS, boolean retained, byte[] data) throws MqttsnException, MqttsnQueueAcceptException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validatePublishPath(topicName);
MqttsnSpecificationValidator.validatePublishData(data);
if(QoS == -1){
if(topicName.length() > 2){
Integer alias = registry.getTopicRegistry().lookupPredefined(session, topicName);
if(alias == null)
throw new MqttsnExpectationFailedException("can only publish to PREDEFINED topics or SHORT topics at QoS -1");
}
}
ISession session = checkSession(QoS >= 0);
if(MqttsnUtils.in(session.getClientState(),
ClientState.ASLEEP, ClientState.DISCONNECTED)){
startProcessing(true);
}
PublishData publishData = new PublishData(topicName, QoS, retained);
IDataRef dataRef = registry.getMessageRegistry().add(data);
return registry.getMessageQueue().offerWithToken(session,
new QueuedPublishMessageImpl(
dataRef, publishData));
}
@Override
/**
* @see {@link IMqttsnClient#subscribe(String, int)}
*/
public void subscribe(String topicName, int QoS) throws MqttsnException{
MqttsnSpecificationValidator.validateQoS(QoS);
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createSubscribe(QoS, topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createSubscribe(QoS, info.getType(), info.getTopicId());
}
synchronized (this){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#unsubscribe(String)}
*/
public void unsubscribe(String topicName) throws MqttsnException{
MqttsnSpecificationValidator.validateSubscribePath(topicName);
ISession session = checkSession(true);
TopicInfo info = registry.getTopicRegistry().lookup(session, topicName, true);
IMqttsnMessage message;
if(info == null || info.getType() == MqttsnConstants.TOPIC_TYPE.SHORT ||
info.getType() == MqttsnConstants.TOPIC_TYPE.NORMAL){
//-- the spec is ambiguous here; where a normalId has been obtained, it still requires use of
//-- topicName string
message = registry.getMessageFactory().createUnsubscribe(topicName);
}
else {
//-- only predefined should use the topicId as an uint16
message = registry.getMessageFactory().createUnsubscribe(info.getType(), info.getTopicId());
}
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(session.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(session.getContext(), token);
MqttsnUtils.responseCheck(token, response);
}
}
@Override
/**
* @see {@link IMqttsnClient#supervisedSleepWithWake(int, int, int, boolean)}
*/
public void supervisedSleepWithWake(int duration, int wakeAfterIntervalSeconds, int maxWaitTimeMillis, boolean connectOnFinish)
throws MqttsnException, MqttsnClientConnectException {
MqttsnSpecificationValidator.validateDuration(duration);
if(wakeAfterIntervalSeconds > duration)
throw new MqttsnExpectationFailedException("sleep duration must be greater than the wake after period");
long now = System.currentTimeMillis();
long sleepUntil = now + (duration * 1000L);
sleep(duration);
while(sleepUntil > (now = System.currentTimeMillis())){
long timeLeft = sleepUntil - now;
long period = (int) Math.min(duration, timeLeft / 1000);
//-- sleep for the wake after period
try {
long wake = Math.min(wakeAfterIntervalSeconds, period);
if(wake > 0){
logger.info("will wake after {} seconds", wake);
synchronized (sleepMonitor){
//TODO protect against spurious wake up here
sleepMonitor.wait(wake * 1000);
}
wake(maxWaitTimeMillis);
} else {
break;
}
} catch(InterruptedException e){
Thread.currentThread().interrupt();
throw new MqttsnException(e);
}
}
if(connectOnFinish){
ISession state = checkSession(false);
connect(state.getKeepAlive(), false);
} else {
startProcessing(false);
disconnect();
}
}
@Override
/**
* @see {@link IMqttsnClient#sleep(int)}
*/
public void sleep(long sessionExpiryInterval) throws MqttsnException{
MqttsnSpecificationValidator.validateSessionExpiry(sessionExpiryInterval);
logger.info("sleeping for {} seconds", sessionExpiryInterval);
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createDisconnect(sessionExpiryInterval, false);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
getRegistry().getSessionRegistry().modifyKeepAlive(state, 0);
clearState(false);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
}
}
@Override
/**
* @see {@link IMqttsnClient#wake()}
*/
public void wake() throws MqttsnException{
wake(registry.getOptions().getMaxWait());
}
@Override
/**
* @see {@link IMqttsnClient#wake(int)}
*/
public void wake(int waitTime) throws MqttsnException{
ISession state = checkSession(false);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
if(MqttsnUtils.in(state.getClientState(),
ClientState.ASLEEP)){
startProcessing(false);
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.AWAKE);
try {
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token,
waitTime);
stateChangeResponseCheck(state, token, response, ClientState.ASLEEP);
stopProcessing(((MqttsnClientOptions)registry.getOptions()).getSleepStopsTransport());
} catch(MqttsnExpectationFailedException e){
//-- this means NOTHING was received after my sleep - gateway may have gone, so disconnect and
//-- force CONNECT to be next operation
disconnect(false, false,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
throw new MqttsnExpectationFailedException("gateway did not respond to AWAKE state; disconnected");
}
} else {
throw new MqttsnExpectationFailedException("client cannot wake from a non-sleep state");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#ping()}
*/
public void ping() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createPingreq(registry.getOptions().getContextId());
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
registry.getMessageStateService().waitForCompletion(state.getContext(), token);
}
}
@Override
/**
* @see {@link IMqttsnClient#helo()}
*/
public String helo() throws MqttsnException{
ISession state = checkSession(true);
IMqttsnMessage message = registry.getMessageFactory().createHelo(null);
synchronized (functionMutex){
MqttsnWaitToken token = registry.getMessageStateService().sendMessage(state.getContext(), message);
Optional<IMqttsnMessage> response = registry.getMessageStateService().waitForCompletion(state.getContext(), token);
if(response.isPresent()){
return ((MqttsnHelo)response.get()).getUserAgent();
}
}
return null;
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect() throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(),
registry.getOptions().getMaxWait(), TimeUnit.MILLISECONDS);
}
@Override
/**
* @see {@link IMqttsnClient#disconnect()}
*/
public void disconnect(long wait, TimeUnit unit) throws MqttsnException {
disconnect(true, false,
((MqttsnClientOptions) registry.getOptions()).getDisconnectStopsTransport(), wait, unit);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport) throws MqttsnException {
disconnect(sendRemoteDisconnect, deepClean, stopTransport, 0, TimeUnit.MILLISECONDS);
}
private void disconnect(boolean sendRemoteDisconnect, boolean deepClean, boolean stopTransport, long waitTime, TimeUnit unit)
throws MqttsnException {
long start = System.currentTimeMillis();
boolean needsDisconnection = false;
try {
ISession state = checkSession(false);
needsDisconnection = state != null && MqttsnUtils.in(state.getClientState(),
ClientState.ACTIVE, ClientState.ASLEEP, ClientState.AWAKE);
if (needsDisconnection) {
getRegistry().getSessionRegistry().modifyClientState(state, ClientState.DISCONNECTED);
if(sendRemoteDisconnect){
IMqttsnMessage message = registry.getMessageFactory().createDisconnect();
MqttsnWaitToken wait = registry.getMessageStateService().sendMessage(state.getContext(), message);
if(waitTime > 0){
waitForCompletion(wait, unit.toMillis(waitTime));
}
}
synchronized (functionMutex) {
if(state != null){
clearState(deepClean);
}
}
}
} finally {
if(needsDisconnection) {
stopProcessing(stopTransport);
logger.info("disconnecting client took [{}] interactive ? [{}], deepClean ? [{}], sent remote disconnect ? {}",
System.currentTimeMillis() - start, waitTime > 0, deepClean, sendRemoteDisconnect);
} else {
logger.trace("client already disconnected");
}
}
}
@Override
/**
* @see {@link IMqttsnClient#close()}
*/
public void close() {
try {
disconnect(true, false, true);
} catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
try {
if(registry != null)
stop();
}
catch(MqttsnException e){
throw new RuntimeException(e);
} finally {
if(managedConnectionThread != null){
synchronized (connectionMonitor){
connectionMonitor.notifyAll();
}
}
}
}
}
/**
* @see {@link IMqttsnClient#getClientId()}<SUF>*/
public String getClientId(){
return registry.getOptions().getContextId();
}
private void stateChangeResponseCheck(ISession session, MqttsnWaitToken token, Optional<IMqttsnMessage> response, ClientState newState)
throws MqttsnExpectationFailedException {
try {
MqttsnUtils.responseCheck(token, response);
if(response.isPresent() &&
!response.get().isErrorMessage()){
getRegistry().getSessionRegistry().modifyClientState(session, newState);
}
} catch(MqttsnExpectationFailedException e){
logger.error("operation could not be completed, error in response");
throw e;
}
}
private ISession discoverGatewaySession() throws MqttsnException {
if(session == null){
synchronized (functionMutex){
if(session == null){
try {
logger.info("discovering gateway...");
Optional<INetworkContext> optionalMqttsnContext =
registry.getNetworkRegistry().waitForContext(registry.getOptions().getDiscoveryTime(), TimeUnit.SECONDS);
if(optionalMqttsnContext.isPresent()){
INetworkContext networkContext = optionalMqttsnContext.get();
session = registry.getSessionRegistry().createNewSession(registry.getNetworkRegistry().getMqttsnContext(networkContext));
logger.info("discovery located a gateway for use {}", networkContext);
} else {
throw new MqttsnException("unable to discovery gateway within specified timeout");
}
} catch(NetworkRegistryException | InterruptedException e){
throw new MqttsnException("discovery was interrupted and no gateway was found", e);
}
}
}
}
return session;
}
public int getPingDelta(){
return (Math.max(keepAlive, 60) / registry.getOptions().getPingDivisor());
}
private void activateManagedConnection(){
if(managedConnectionThread == null){
managedConnectionThread = new Thread(() -> {
while(running){
try {
synchronized (connectionMonitor){
long delta = errorRetryCounter > 0 ? registry.getOptions().getMaxErrorRetryTime() : getPingDelta() * 1000L;
logger.debug("managed connection monitor is running at time delta {}, keepAlive {}...", delta, keepAlive);
connectionMonitor.wait(delta);
if(running){
synchronized (functionMutex){ //-- we could receive a unsolicited disconnect during passive reconnection | ping..
ISession state = checkSession(false);
if(state != null){
if(state.getClientState() == ClientState.DISCONNECTED){
if(autoReconnect){
logger.info("client connection set to auto-reconnect...");
connect(keepAlive, false);
resetErrorState();
}
}
else if(state.getClientState() == ClientState.ACTIVE){
if(keepAlive > 0){ //-- keepAlive 0 means alive forever, dont bother pinging
Long lastMessageSent = registry.getMessageStateService().
getMessageLastSentToContext(state.getContext());
if(lastMessageSent == null || System.currentTimeMillis() >
lastMessageSent + delta ){
logger.info("managed connection issuing ping...");
ping();
resetErrorState();
}
}
}
}
}
}
}
} catch(Exception e){
try {
if(errorRetryCounter++ >= registry.getOptions().getMaxErrorRetries()){
logger.error("error on connection manager thread, DISCONNECTING", e);
resetErrorState();
disconnect(false, true, true);
} else {
registry.getMessageStateService().clearInflight(getSessionState().getContext());
logger.warn("error on connection manager thread, execute retransmission", e);
}
} catch(Exception ex){
logger.warn("error handling re-tranmission on connection manager thread, execute retransmission", e);
}
}
}
logger.warn("managed-connection closing down");
}, "mqtt-sn-managed-connection");
managedConnectionThread.setPriority(Thread.MIN_PRIORITY);
managedConnectionThread.setDaemon(true);
managedConnectionThread.start();
}
}
public void resetConnection(IClientIdentifierContext context, Throwable t, boolean attemptRestart) {
try {
logger.warn("connection lost at transport layer", t);
disconnect(false, true, true);
//attempt to restart transport
ITransport transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(context));
callShutdown(transport);
if(attemptRestart){
callStartup(transport);
if(managedConnectionThread != null){
try {
synchronized (connectionMonitor){
connectionMonitor.notify();
}
} catch(Exception e){
logger.warn("error encountered when trying to recover from unsolicited disconnect", e);
}
}
}
} catch(Exception e){
logger.warn("error encountered resetting connection", e);
}
}
protected ITransport getCurrentTransport() throws MqttsnException {
ISession session = checkSession(false);
ITransport transport = null;
if(session != null){
transport = getRegistry().getTransportLocator().
getTransport(
getRegistry().getNetworkRegistry().getContext(session.getContext()));
} else {
transport = registry.getDefaultTransport();
}
return transport;
}
private ISession checkSession(boolean validateConnected) throws MqttsnException {
ISession session = discoverGatewaySession();
if(validateConnected && session.getClientState() != ClientState.ACTIVE)
throw new MqttsnRuntimeException("client not connected");
return session;
}
private void stopProcessing(boolean stopTransport) throws MqttsnException {
//-- ensure we stop message queue sending when we are not connected
registry.getMessageStateService().unscheduleFlush(session.getContext());
callShutdown(registry.getMessageHandler());
callShutdown(registry.getMessageStateService());
if(stopTransport){
callShutdown(getCurrentTransport());
}
}
private void startProcessing(boolean processQueue) throws MqttsnException {
callStartup(registry.getMessageStateService());
callStartup(registry.getMessageHandler());
//this shouldnt matter - if the service isnt started it will
callStartup(getCurrentTransport());
if(processQueue){
if(managedConnection){
activateManagedConnection();
}
}
}
private void clearState(boolean deepClear) throws MqttsnException {
//-- unsolicited disconnect notify to the application
ISession session = checkSession(false);
if(session != null){
logger.info("clearing state, deep clean ? {}", deepClear);
registry.getMessageStateService().clearInflight(session.getContext());
registry.getTopicRegistry().clear(session,
deepClear || registry.getOptions().isSleepClearsRegistrations());
if(getSessionState() != null) {
getRegistry().getSessionRegistry().modifyKeepAlive(session, 0);
}
if(deepClear){
registry.getSubscriptionRegistry().clear(session);
}
}
}
public long getQueueSize() throws MqttsnException {
if(session != null){
return registry.getMessageQueue().queueSize(session);
}
return 0;
}
public long getIdleTime() throws MqttsnException {
if(session != null){
Long l = registry.getMessageStateService().getLastActiveMessage(session.getContext());
if(l != null){
return System.currentTimeMillis() - l;
}
}
return 0;
}
public ISession getSessionState(){
return session;
}
protected IMqttsnConnectionStateListener connectionListener =
new IMqttsnConnectionStateListener() {
@Override
public void notifyConnected(IClientIdentifierContext context) {
}
@Override
public void notifyRemoteDisconnect(IClientIdentifierContext context) {
try {
disconnect(false, true,
((MqttsnClientOptions)registry.getOptions()).getDisconnectStopsTransport());
} catch(Exception e){
logger.warn("error encountered handling remote disconnect", e);
}
}
@Override
public void notifyActiveTimeout(IClientIdentifierContext context) {
}
@Override
public void notifyLocalDisconnect(IClientIdentifierContext context, Throwable t) {
}
@Override
public void notifyConnectionLost(IClientIdentifierContext context, Throwable t) {
resetConnection(context, t, autoReconnect);
}
};
}
|
208704_9 | /*
* @(#)ServerGatewayImpl.java
*
* Copyright 2004 by EkoLiving Pty Ltd. All Rights Reserved.
*
* This software is the proprietary information of EkoLiving Pty Ltd.
* Use is subject to license terms.
*/
package org.openmaji.implementation.server.gateway;
import java.io.Serializable;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.security.PrivilegedAction;
import java.security.PrivilegedExceptionAction;
import java.util.Hashtable;
import javax.security.auth.Subject;
import org.openmaji.implementation.server.genesis.ShutdownHelper;
import org.openmaji.implementation.server.manager.gateway.GatewayManagerWedge;
import org.openmaji.implementation.server.manager.lifecycle.meemkit.MeemkitLifeCycleManager;
import org.openmaji.implementation.server.manager.user.UserManagerMeem;
import org.openmaji.implementation.server.security.DoAsMeem;
import org.openmaji.implementation.server.security.auth.AuthenticatorLookup;
import org.openmaji.implementation.server.security.auth.MeemCoreRootAuthority;
import org.openmaji.meem.Facet;
import org.openmaji.meem.Meem;
import org.openmaji.meem.MeemClient;
import org.openmaji.meem.MeemPath;
import org.openmaji.meem.filter.FacetDescriptor;
import org.openmaji.meem.filter.Filter;
import org.openmaji.meem.space.Space;
import org.openmaji.meem.wedge.reference.Reference;
import org.openmaji.server.helper.EssentialMeemHelper;
import org.openmaji.server.helper.LifeCycleManagerHelper;
import org.openmaji.server.helper.ReferenceHelper;
import org.openmaji.system.gateway.AsyncCallback;
import org.openmaji.system.gateway.FacetConsumer;
import org.openmaji.system.gateway.ServerGateway;
import org.openmaji.system.manager.lifecycle.EssentialLifeCycleManager;
import org.openmaji.system.manager.registry.MeemRegistry;
import org.openmaji.system.meem.wedge.reference.ContentClient;
import org.openmaji.system.meemkit.core.MeemkitManager;
import org.openmaji.system.meemserver.MeemServer;
import org.openmaji.system.meemserver.controller.MeemServerController;
import org.openmaji.system.space.hyperspace.HyperSpace;
import org.openmaji.system.space.meemstore.MeemStore;
import org.openmaji.system.space.resolver.MeemResolver;
/**
* TODO allow clients to get Targets of Meems whose calls are wrapped in the Subject associated with this SeverGateway e.g. Facet getTarget(final Meem meem, final String
* facetIdentifier, final Class specification)
*/
public class ServerGatewayImpl implements ServerGateway {
private Subject subject;
private static Hashtable<String, String> lookUp;
private static String essentialPath;
static {
// hack used to locate essential Meems
lookUp = new Hashtable<String, String>();
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/persistingLifeCycleManager", EssentialLifeCycleManager.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/transientLifeCycleManager", "_TRANSIENT_LCM");
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemStore", MeemStore.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemServerController", MeemServerController.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/userManager", UserManagerMeem.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemRegistry", MeemRegistry.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/hyperSpace", HyperSpace.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemResolver", MeemResolver.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemkitManager", MeemkitManager.spi.getIdentifier());
// lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/licenseStoreFactory", LicenseStoreFactoryMeem.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemkitLifeCycleManager", MeemkitLifeCycleManager.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/authenticatorLookup", AuthenticatorLookup.spi.getIdentifier());
essentialPath = MeemServer.spi.getEssentialMeemsCategoryLocation();
}
/**
* Default constructor - use the current subject.
*/
public ServerGatewayImpl() {
this(Subject.getSubject(java.security.AccessController.getContext()));
}
/**
* Create a gateway for the passed in subject.
*
* @param subject
* the current access credentials.
*/
public ServerGatewayImpl(Subject subject) {
if (!MeemCoreRootAuthority.isValidSubject(subject)) {
throw new IllegalArgumentException("invalid subject passed to ServerGateway constructor.");
}
this.subject = subject;
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getEssentialMeem(java.lang.String)
*/
public Meem getEssentialMeem(String meemIdentifier) {
return new DoAsMeem(EssentialMeemHelper.getEssentialMeem(meemIdentifier), subject);
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getMeem(org.openmaji.meem.MeemPath)
*/
public Meem getMeem(MeemPath path) {
if (path.getSpace().equals(Space.HYPERSPACE) && path.getLocation().startsWith(essentialPath)) {
String meemIdentifier = (String) lookUp.get(path.getLocation());
if (meemIdentifier.equals("_TRANSIENT_LCM")) {
return new DoAsMeem(LifeCycleManagerHelper.getTransientLCM(), subject);
}
Meem meem = EssentialMeemHelper.getEssentialMeem(meemIdentifier);
if (meem == null) {
return null;
}
return new DoAsMeem(meem, subject);
}
return new DoAsMeem(Meem.spi.get(path), subject);
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTargetFor(org.openmaji.meem.Facet, java.lang.Class)
*/
public <T extends Facet> T getTargetFor(final T facet, final Class<T> specification) {
return ((T) Subject.doAs(subject, new PrivilegedAction<T>() {
public T run() {
return (T) GatewayManagerWedge.getTargetFor(facet, specification);
}
}));
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#revokeTarget(org.openmaji.meem.Facet, org.openmaji.meem.Facet)
*/
public void revokeTarget(final Facet proxy, final Facet implementation) {
Subject.doAs(subject, new PrivilegedAction<Void>() {
public Void run() {
GatewayManagerWedge.revokeTarget(proxy, implementation);
return null;
}
});
}
/**
* Asynchronous method to get a facet target.
*/
public <T extends Facet> void getTarget(final Meem meem, final String facetIdentifier, final Class<T> specification, final AsyncCallback<T> callback) {
Subject.doAs(subject, new PrivilegedAction<Void>() {
public Void run() {
MeemClient proxy = MeemClientImpl.getProxy(meem, new FacetConsumer<T>() {
public void facet(Meem meem, String facetId, T target) {
callback.result(target);
};
});
Filter filter = new FacetDescriptor(facetIdentifier, specification);
Reference<MeemClient> targetReference = Reference.spi.create("meemClientFacet", proxy, true, filter);
meem.addOutboundReference(targetReference, true); // a one-off retrieval of content
return null;
}
});
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTarget(Meem, String, Class)
*/
public <T extends Facet> T getTarget(final Meem meem, final String facetIdentifier, final Class<T> specification) {
return Subject.doAs(subject, new PrivilegedAction<T>() {
public T run() {
T facet = ReferenceHelper.getTarget(meem, facetIdentifier, specification);
if (facet == null) {
return null;
}
@SuppressWarnings("unchecked")
T reference = (T) Proxy.newProxyInstance(specification.getClassLoader(), getClasses(facet, specification), new SubjectInvocationHandler(subject, facet));
return reference;
}
});
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTarget(Facet, Class)
*/
public <T extends Facet> T getTarget(final T facet, final Class<T> specification) {
@SuppressWarnings("unchecked")
T reference = (T) Proxy.newProxyInstance(specification.getClassLoader(), getClasses(facet, specification), new SubjectInvocationHandler(subject, facet));
return reference;
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#shutdown()
*/
public boolean shutdown() {
return Subject.doAs(subject, new PrivilegedAction<Boolean>() {
public Boolean run() {
return Boolean.valueOf(ShutdownHelper.shutdownMaji());
}
}).booleanValue();
}
private Class<?>[] getClasses(Facet facet, Class<?> specification) {
Class<?>[] classes;
int classesSize = 1;
boolean isMeem = false;
boolean isContentClient = false;
if (facet instanceof Meem) {
isMeem = true;
classesSize++;
}
if (facet instanceof ContentClient) {
isContentClient = true;
classesSize++;
}
int upto = 0;
classes = new Class[classesSize];
classes[upto] = specification;
if (isMeem) {
classes[++upto] = Meem.class;
}
if (isContentClient) {
classes[++upto] = ContentClient.class;
}
return classes;
}
/**
* Invokes methods on a Facet target in the context of the logged in user.
*/
private static final class SubjectInvocationHandler implements InvocationHandler, Serializable {
private static final long serialVersionUID = 1948264783905L;
private Object targetObject;
private transient Subject subject = null;
public SubjectInvocationHandler(Subject subject, Object object) {
this.subject = subject;
this.targetObject = object;
}
public Object invoke(final Object obj, final Method method, final Object[] args) throws Throwable {
if (subject == null) {
return method.invoke(targetObject, args);
}
else {
PrivilegedExceptionAction<Object> action = new PrivilegedExceptionAction<Object>() {
public Object run() throws Exception {
return method.invoke(targetObject, args);
}
};
return Subject.doAs(subject, action);
}
}
};
/**
*
*/
private static final class MeemClientImpl <T extends Facet> implements MeemClient, ContentClient {
private Meem meem;
private FacetConsumer<T> consumer;
private MeemClient proxy;
public static <T extends Facet> MeemClient getProxy(Meem meem, FacetConsumer<T> consumer) {
MeemClientImpl<T> meemClient = new MeemClientImpl<T>(meem, consumer);
return meemClient.getProxy();
}
private MeemClientImpl(Meem meem, FacetConsumer<T> consumer) {
this.meem = meem;
this.consumer = consumer;
}
@SuppressWarnings("unchecked")
public void referenceAdded(Reference<?> reference) {
T facet = (T) reference.getTarget();
consumer.facet(meem, reference.getFacetIdentifier(), facet);
}
public void referenceRemoved(Reference<?> reference) {
consumer.facet(meem, reference.getFacetIdentifier(), null);
}
public void contentSent() {
if (consumer instanceof ContentClient) {
((ContentClient) consumer).contentSent();
}
revokeProxy();
}
public void contentFailed(String reason) {
if (consumer instanceof ContentClient) {
((ContentClient) consumer).contentFailed(reason);
}
revokeProxy();
}
private MeemClient getProxy() {
if (proxy == null) {
this.proxy = GatewayManagerWedge.getTargetFor(this, MeemClient.class);
}
return proxy;
}
private void revokeProxy() {
GatewayManagerWedge.revokeTarget(proxy, this);
proxy = null;
}
}
}
| ekoliving/Meemplex | meemplex-meemserver/src/main/java/org/openmaji/implementation/server/gateway/ServerGatewayImpl.java | 3,461 | /*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#revokeTarget(org.openmaji.meem.Facet, org.openmaji.meem.Facet)
*/ | block_comment | nl | /*
* @(#)ServerGatewayImpl.java
*
* Copyright 2004 by EkoLiving Pty Ltd. All Rights Reserved.
*
* This software is the proprietary information of EkoLiving Pty Ltd.
* Use is subject to license terms.
*/
package org.openmaji.implementation.server.gateway;
import java.io.Serializable;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.security.PrivilegedAction;
import java.security.PrivilegedExceptionAction;
import java.util.Hashtable;
import javax.security.auth.Subject;
import org.openmaji.implementation.server.genesis.ShutdownHelper;
import org.openmaji.implementation.server.manager.gateway.GatewayManagerWedge;
import org.openmaji.implementation.server.manager.lifecycle.meemkit.MeemkitLifeCycleManager;
import org.openmaji.implementation.server.manager.user.UserManagerMeem;
import org.openmaji.implementation.server.security.DoAsMeem;
import org.openmaji.implementation.server.security.auth.AuthenticatorLookup;
import org.openmaji.implementation.server.security.auth.MeemCoreRootAuthority;
import org.openmaji.meem.Facet;
import org.openmaji.meem.Meem;
import org.openmaji.meem.MeemClient;
import org.openmaji.meem.MeemPath;
import org.openmaji.meem.filter.FacetDescriptor;
import org.openmaji.meem.filter.Filter;
import org.openmaji.meem.space.Space;
import org.openmaji.meem.wedge.reference.Reference;
import org.openmaji.server.helper.EssentialMeemHelper;
import org.openmaji.server.helper.LifeCycleManagerHelper;
import org.openmaji.server.helper.ReferenceHelper;
import org.openmaji.system.gateway.AsyncCallback;
import org.openmaji.system.gateway.FacetConsumer;
import org.openmaji.system.gateway.ServerGateway;
import org.openmaji.system.manager.lifecycle.EssentialLifeCycleManager;
import org.openmaji.system.manager.registry.MeemRegistry;
import org.openmaji.system.meem.wedge.reference.ContentClient;
import org.openmaji.system.meemkit.core.MeemkitManager;
import org.openmaji.system.meemserver.MeemServer;
import org.openmaji.system.meemserver.controller.MeemServerController;
import org.openmaji.system.space.hyperspace.HyperSpace;
import org.openmaji.system.space.meemstore.MeemStore;
import org.openmaji.system.space.resolver.MeemResolver;
/**
* TODO allow clients to get Targets of Meems whose calls are wrapped in the Subject associated with this SeverGateway e.g. Facet getTarget(final Meem meem, final String
* facetIdentifier, final Class specification)
*/
public class ServerGatewayImpl implements ServerGateway {
private Subject subject;
private static Hashtable<String, String> lookUp;
private static String essentialPath;
static {
// hack used to locate essential Meems
lookUp = new Hashtable<String, String>();
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/persistingLifeCycleManager", EssentialLifeCycleManager.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/transientLifeCycleManager", "_TRANSIENT_LCM");
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemStore", MeemStore.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemServerController", MeemServerController.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/userManager", UserManagerMeem.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemRegistry", MeemRegistry.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/hyperSpace", HyperSpace.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemResolver", MeemResolver.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemkitManager", MeemkitManager.spi.getIdentifier());
// lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/licenseStoreFactory", LicenseStoreFactoryMeem.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/meemkitLifeCycleManager", MeemkitLifeCycleManager.spi.getIdentifier());
lookUp.put(MeemServer.spi.getEssentialMeemsCategoryLocation() + "/authenticatorLookup", AuthenticatorLookup.spi.getIdentifier());
essentialPath = MeemServer.spi.getEssentialMeemsCategoryLocation();
}
/**
* Default constructor - use the current subject.
*/
public ServerGatewayImpl() {
this(Subject.getSubject(java.security.AccessController.getContext()));
}
/**
* Create a gateway for the passed in subject.
*
* @param subject
* the current access credentials.
*/
public ServerGatewayImpl(Subject subject) {
if (!MeemCoreRootAuthority.isValidSubject(subject)) {
throw new IllegalArgumentException("invalid subject passed to ServerGateway constructor.");
}
this.subject = subject;
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getEssentialMeem(java.lang.String)
*/
public Meem getEssentialMeem(String meemIdentifier) {
return new DoAsMeem(EssentialMeemHelper.getEssentialMeem(meemIdentifier), subject);
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getMeem(org.openmaji.meem.MeemPath)
*/
public Meem getMeem(MeemPath path) {
if (path.getSpace().equals(Space.HYPERSPACE) && path.getLocation().startsWith(essentialPath)) {
String meemIdentifier = (String) lookUp.get(path.getLocation());
if (meemIdentifier.equals("_TRANSIENT_LCM")) {
return new DoAsMeem(LifeCycleManagerHelper.getTransientLCM(), subject);
}
Meem meem = EssentialMeemHelper.getEssentialMeem(meemIdentifier);
if (meem == null) {
return null;
}
return new DoAsMeem(meem, subject);
}
return new DoAsMeem(Meem.spi.get(path), subject);
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTargetFor(org.openmaji.meem.Facet, java.lang.Class)
*/
public <T extends Facet> T getTargetFor(final T facet, final Class<T> specification) {
return ((T) Subject.doAs(subject, new PrivilegedAction<T>() {
public T run() {
return (T) GatewayManagerWedge.getTargetFor(facet, specification);
}
}));
}
/*
* (non-Javadoc)
<SUF>*/
public void revokeTarget(final Facet proxy, final Facet implementation) {
Subject.doAs(subject, new PrivilegedAction<Void>() {
public Void run() {
GatewayManagerWedge.revokeTarget(proxy, implementation);
return null;
}
});
}
/**
* Asynchronous method to get a facet target.
*/
public <T extends Facet> void getTarget(final Meem meem, final String facetIdentifier, final Class<T> specification, final AsyncCallback<T> callback) {
Subject.doAs(subject, new PrivilegedAction<Void>() {
public Void run() {
MeemClient proxy = MeemClientImpl.getProxy(meem, new FacetConsumer<T>() {
public void facet(Meem meem, String facetId, T target) {
callback.result(target);
};
});
Filter filter = new FacetDescriptor(facetIdentifier, specification);
Reference<MeemClient> targetReference = Reference.spi.create("meemClientFacet", proxy, true, filter);
meem.addOutboundReference(targetReference, true); // a one-off retrieval of content
return null;
}
});
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTarget(Meem, String, Class)
*/
public <T extends Facet> T getTarget(final Meem meem, final String facetIdentifier, final Class<T> specification) {
return Subject.doAs(subject, new PrivilegedAction<T>() {
public T run() {
T facet = ReferenceHelper.getTarget(meem, facetIdentifier, specification);
if (facet == null) {
return null;
}
@SuppressWarnings("unchecked")
T reference = (T) Proxy.newProxyInstance(specification.getClassLoader(), getClasses(facet, specification), new SubjectInvocationHandler(subject, facet));
return reference;
}
});
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#getTarget(Facet, Class)
*/
public <T extends Facet> T getTarget(final T facet, final Class<T> specification) {
@SuppressWarnings("unchecked")
T reference = (T) Proxy.newProxyInstance(specification.getClassLoader(), getClasses(facet, specification), new SubjectInvocationHandler(subject, facet));
return reference;
}
/*
* (non-Javadoc)
*
* @see org.openmaji.system.gateway.ServerGateway#shutdown()
*/
public boolean shutdown() {
return Subject.doAs(subject, new PrivilegedAction<Boolean>() {
public Boolean run() {
return Boolean.valueOf(ShutdownHelper.shutdownMaji());
}
}).booleanValue();
}
private Class<?>[] getClasses(Facet facet, Class<?> specification) {
Class<?>[] classes;
int classesSize = 1;
boolean isMeem = false;
boolean isContentClient = false;
if (facet instanceof Meem) {
isMeem = true;
classesSize++;
}
if (facet instanceof ContentClient) {
isContentClient = true;
classesSize++;
}
int upto = 0;
classes = new Class[classesSize];
classes[upto] = specification;
if (isMeem) {
classes[++upto] = Meem.class;
}
if (isContentClient) {
classes[++upto] = ContentClient.class;
}
return classes;
}
/**
* Invokes methods on a Facet target in the context of the logged in user.
*/
private static final class SubjectInvocationHandler implements InvocationHandler, Serializable {
private static final long serialVersionUID = 1948264783905L;
private Object targetObject;
private transient Subject subject = null;
public SubjectInvocationHandler(Subject subject, Object object) {
this.subject = subject;
this.targetObject = object;
}
public Object invoke(final Object obj, final Method method, final Object[] args) throws Throwable {
if (subject == null) {
return method.invoke(targetObject, args);
}
else {
PrivilegedExceptionAction<Object> action = new PrivilegedExceptionAction<Object>() {
public Object run() throws Exception {
return method.invoke(targetObject, args);
}
};
return Subject.doAs(subject, action);
}
}
};
/**
*
*/
private static final class MeemClientImpl <T extends Facet> implements MeemClient, ContentClient {
private Meem meem;
private FacetConsumer<T> consumer;
private MeemClient proxy;
public static <T extends Facet> MeemClient getProxy(Meem meem, FacetConsumer<T> consumer) {
MeemClientImpl<T> meemClient = new MeemClientImpl<T>(meem, consumer);
return meemClient.getProxy();
}
private MeemClientImpl(Meem meem, FacetConsumer<T> consumer) {
this.meem = meem;
this.consumer = consumer;
}
@SuppressWarnings("unchecked")
public void referenceAdded(Reference<?> reference) {
T facet = (T) reference.getTarget();
consumer.facet(meem, reference.getFacetIdentifier(), facet);
}
public void referenceRemoved(Reference<?> reference) {
consumer.facet(meem, reference.getFacetIdentifier(), null);
}
public void contentSent() {
if (consumer instanceof ContentClient) {
((ContentClient) consumer).contentSent();
}
revokeProxy();
}
public void contentFailed(String reason) {
if (consumer instanceof ContentClient) {
((ContentClient) consumer).contentFailed(reason);
}
revokeProxy();
}
private MeemClient getProxy() {
if (proxy == null) {
this.proxy = GatewayManagerWedge.getTargetFor(this, MeemClient.class);
}
return proxy;
}
private void revokeProxy() {
GatewayManagerWedge.revokeTarget(proxy, this);
proxy = null;
}
}
}
|
208705_2 | package gateway;
import com.google.gson.Gson;
import domain.Verplaatsing;
import services.VerplaatsingsService;
import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import javax.inject.Inject;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.TextMessage;
import java.io.Serializable;
@Singleton
@Startup
public class DisplacementReceiverGateway implements IGatewayImplementor {
private Gateway gateway;
private final String senderChannel = "";
private final String receiverChannel = "DISPLACEMENTSYSTEM_DISPLACEMENTREGISTRATOR";
private final Gson gson = new Gson();
@Inject
private VerplaatsingsService service;
public void setService(VerplaatsingsService service) {
this.service = service;
}
@PostConstruct
public void init() {
gateway = new Gateway(this, senderChannel, receiverChannel);
}
// public DisplacementReceiverGateway() {
// gateway = new Gateway(this, senderChannel, receiverChannel);
// }
@Override
public void SendObject(Serializable obj) {
gateway.SendMessage(obj);
}
@Override
public void ProcessReceivedObject(Message message) {
try {
Verplaatsing verplaatsing = gson.fromJson(((TextMessage) message).getText(), Verplaatsing.class);
//Verplaatsing verplaatsing = (Verplaatsing) ((ObjectMessage) message).getObject();
service.create(verplaatsing);
} catch (JMSException e) {
e.printStackTrace();
}
catch (NullPointerException npe)
{
System.out.println("is null mogol");
}
}
} | Lehcim1995/Rekeningrijden | allmodules/verplaatsingsmodule/src/main/java/gateway/DisplacementReceiverGateway.java | 411 | //Verplaatsing verplaatsing = (Verplaatsing) ((ObjectMessage) message).getObject(); | line_comment | nl | package gateway;
import com.google.gson.Gson;
import domain.Verplaatsing;
import services.VerplaatsingsService;
import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import javax.inject.Inject;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.TextMessage;
import java.io.Serializable;
@Singleton
@Startup
public class DisplacementReceiverGateway implements IGatewayImplementor {
private Gateway gateway;
private final String senderChannel = "";
private final String receiverChannel = "DISPLACEMENTSYSTEM_DISPLACEMENTREGISTRATOR";
private final Gson gson = new Gson();
@Inject
private VerplaatsingsService service;
public void setService(VerplaatsingsService service) {
this.service = service;
}
@PostConstruct
public void init() {
gateway = new Gateway(this, senderChannel, receiverChannel);
}
// public DisplacementReceiverGateway() {
// gateway = new Gateway(this, senderChannel, receiverChannel);
// }
@Override
public void SendObject(Serializable obj) {
gateway.SendMessage(obj);
}
@Override
public void ProcessReceivedObject(Message message) {
try {
Verplaatsing verplaatsing = gson.fromJson(((TextMessage) message).getText(), Verplaatsing.class);
//Verplaatsing verplaatsing<SUF>
service.create(verplaatsing);
} catch (JMSException e) {
e.printStackTrace();
}
catch (NullPointerException npe)
{
System.out.println("is null mogol");
}
}
} |
208755_8 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // // test input seed met alleen "82" | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input<SUF>
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_10 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | //sourcerange (sourceMin en sourceMax) zijn de seeds. | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin<SUF>
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_11 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // Destinationrange vanuit de mapping | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit<SUF>
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_12 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // sourcesrange vanuit de mapping | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit<SUF>
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_13 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange<SUF>
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_14 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // - na de sourcerange (hoeft niet gemapt te worden) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na<SUF>
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_15 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in<SUF>
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_17 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | //sourcerange begint voor de sourcesrange | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint<SUF>
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_18 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt<SUF>
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_23 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd<SUF>
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208755_24 | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
| MRensen/aoc2023 | src/main/java/nl/markrensen/aoc/days/Day05.java | 2,302 | // sourcerange begint na de sourcesrange (geen beforeSource en geen sources[]) | line_comment | nl | package nl.markrensen.aoc.days;
import nl.markrensen.aoc.common.Day;
import java.util.*;
public class Day05 implements Day<Long> {
@Override
public Long part1(List<String> input) {
ArrayList<Long[]> sourcesCollection = new ArrayList<>();
Long[] sources = new Long[10];
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
sources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(Arrays.copyOf(sources, sources.length));
section = s;
}
}
}
Arrays.sort(sources);
return sources[0];
}
private void convertSources(Long[] sources, List<Long[]> mappingList, String s){
if (mappingList.isEmpty()){
return;
}
for (int source = 0; source < sources.length; source++) {
for (Long[] mapping : mappingList) {
// Long[] destinationRange = new Long[mapping[2].intValue()];
// Long[] sourcesRange = new Long[mapping[2].intValue()];
Long destinationMin = mapping[0];
Long destinationMax = mapping[0]+mapping[2];
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2];
// for (int i = 0; i < mapping[2]; i++) {
// destinationRange[i] = mapping[0] + i;
// sourcesRange[i] = mapping[1] + i;
// }
Long j = sourcesMax - sources[source] >= 0?sources[source] - sourcesMin:-1;
// int j = java.util.Arrays.asList(sourcesRange).indexOf(sources[source]);
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin+j;
break;
}
// if (sources[source].equals(sourcesRange[j])) {
// sources[source] = destinationRange[j];
// break;
// }
}
}
System.out.println();
}
@Override
public Long part2(List<String> input) {
ArrayList<Long[][]> sourcesCollection = new ArrayList<>();
List<Long[]> sources = new ArrayList<>();
String section = "";
ArrayList<Long[]> currentMapping = new ArrayList<>();
for(String s : input){
if(s.startsWith("seeds")){
Long[] tempsources = Arrays.stream(s.substring(7).trim().split(" ")).map(Long::parseLong).toArray(Long[]::new);
for(int i = 0; i < tempsources.length; i+=2){
sources.add(new Long[]{tempsources[i], tempsources[i+1]});
}
sourcesCollection.add(sources.toArray(Long[][]::new));
// // test input seed met alleen "82"
// sources = new ArrayList<>();
// sources.add(new Long[]{82L,1L});
}
else if(!s.isEmpty()) {
if (!s.contains(":")) {
currentMapping.add(Arrays.stream(s.split(" ")).map(Long::parseLong).toArray(Long[]::new));
} else {
convertSources2(sources, currentMapping, section);
currentMapping = new ArrayList<>();
System.out.println();
sourcesCollection.add(sources.toArray(Long[][]::new));
section = s;
}
}
}
convertSources2(sources, currentMapping, section);
sourcesCollection.add(sources.toArray(Long[][]::new));
// Arrays.sort(sources);
sources.sort((a,b)->{return a[0].compareTo(b[0]);});
return sources.get(0)[0];
}
private void convertSources2(List<Long[]> sourcesList, List<Long[]> mappingList, String s){
int SOURCESLENGTH = 2;
Long[][] sourcesArray = sourcesList.toArray(Long[][]::new);
if (mappingList.isEmpty()){
return;
}
long first = 0L;
for (int index = 0; index < sourcesArray.length; index++) {
Long[] sourceListGet = sourcesList.get(index);
//sourcerange (sourceMin en sourceMax) zijn de seeds.
Long sourceMin = sourceListGet[0];
Long sourceMax = sourceMin + (sourceListGet[1]-1);
boolean convert = true;
for (Long[] mapping : mappingList) {
// Destinationrange vanuit de mapping
Long destinationMin = mapping[0];
Long destinationMax = mapping[0] + mapping[2] -1;
// sourcesrange vanuit de mapping
Long sourcesMin = mapping[1];
Long sourcesMax = mapping[1] + mapping[2] -1;
// split sourcerange op in 3 delen: - voor de sourcerange (hoeft niet gemapt te worden)
// - na de sourcerange (hoeft niet gemapt te worden)
// - in de sourcerange(moet gemapt worden van sourcesrange naar destinationrange)
Long beforeSourceMax = (sourceMin < sourcesMin) ?
(sourceMax < sourcesMin) ?
sourceMax
:
sourcesMin - 1
: -1;
Long beforeSourceMin = beforeSourceMax == -1 ? -1 : sourceMin;
Long afterSourceMin = (sourceMax > sourcesMax) ?
(sourceMin < sourcesMax) ?
sourcesMax + 1
:
sourceMin
:
-1;
Long afterSourceMax = afterSourceMin == -1 ? -1 : sourceMax;
// Long toInt = sourcesMax - sourcesMin;
Long[] sources = new Long[SOURCESLENGTH];
sources[0] =
sourceMin < sourcesMin ?
//sourcerange begint voor de sourcesrange
sourceMax < sourcesMin ?
// sourcerange eindigt voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
// sourcerange eindigt in of na de sourcesrange
sourcesMin
:
// sourcerange begint na of in de sourcesrange
sourceMin <= sourcesMax ?
//sourcerange begint in de sourcesrange
sourceMin
:
//sourcerange begint na de sourcesrange (geen beforeSource en geen sources[])
-1
;
sources[1] =
sourceMax < sourcesMin ?
// sourcerange eindigd voor de sourcesrange (geen sources[] en geen afterSource)
-1
:
sourceMin > sourcesMax ?
// sourcerange begint<SUF>
-1
:
sourceMax > sourcesMax ?
sourcesMax
:
sourceMax
;
// for (Long i = sourceStart; i < sourceEnd; i++) {
// Long sourcesIndex = i - sourceStart;
// sources[sourcesIndex.intValue()] = i;
// }
for (int source = 0; source < SOURCESLENGTH; source++) {
Long j = sourcesMax - sources[source] >= 0 ? sources[source] - sourcesMin : -1;
if (j < 0L) {
continue;
} else {
sources[source] = destinationMin + j;
}
}
boolean isSet = false;
if(s.contains("to-temperature")){
System.out.println();
}
for (Long[] toSet : new Long[][]{
new Long[]{sources[0], (sources[1]-sources[0])+1},
new Long[]{beforeSourceMin, (beforeSourceMax-beforeSourceMin)+1},
new Long[]{afterSourceMin, (afterSourceMax-afterSourceMin)+1}}) {
isSet = setSourcesList(sourcesList, index, toSet, isSet);
}
if(!Arrays.equals(sourcesArray[index],(sourcesList.get(index)))){
break;
}
System.out.println();
// if(beforeSourceMin >= 0 && beforeSourceMax>=0) {
// sourcesList.add(new Long[]{beforeSourceMin, beforeSourceMax});
// }
// if(afterSourceMin >= 0 && afterSourceMax>=0){
// sourcesList.add(new Long[]{afterSourceMin, afterSourceMax});
// }
}
}
System.out.println();
}
private static boolean setSourcesList(List<Long[]> sourcesList, int index, Long[] sources, boolean isSet) {
if(sources[0]>=0 && sources[1]>=0) {
if(isSet) {
sourcesList.add(sources);
} else {
sourcesList.set(index, sources);
}
return true;
}
return isSet;
}
}
|
208783_1 | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain" van Handler classes
*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/
public abstract boolean check(String email, String password);
/**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} | hogeschoolnovi/design-patterns-voorbeelden | src/main/java/nl/novi/Behavioral/ChainOfResponsibility/ChainOfResponsibility/Handler.java | 242 | /**
* Bouwt een "chain" van Handler classes
*/ | block_comment | nl | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain"<SUF>*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/
public abstract boolean check(String email, String password);
/**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} |
208783_2 | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain" van Handler classes
*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/
public abstract boolean check(String email, String password);
/**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} | hogeschoolnovi/design-patterns-voorbeelden | src/main/java/nl/novi/Behavioral/ChainOfResponsibility/ChainOfResponsibility/Handler.java | 242 | /**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/ | block_comment | nl | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain" van Handler classes
*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal<SUF>*/
public abstract boolean check(String email, String password);
/**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} |
208783_3 | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain" van Handler classes
*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/
public abstract boolean check(String email, String password);
/**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} | hogeschoolnovi/design-patterns-voorbeelden | src/main/java/nl/novi/Behavioral/ChainOfResponsibility/ChainOfResponsibility/Handler.java | 242 | /**
* Voert de check van het volgende Handler object in de chain uit.
* Het beeindigt de link als er geen volgend HAndler object is.
*/ | block_comment | nl | package nl.novi.Behavioral.ChainOfResponsibility.ChainOfResponsibility;
/**
* Basis Handler klasse
*/
public abstract class Handler {
private Handler next;
/**
* Bouwt een "chain" van Handler classes
*/
public static Handler link(Handler first, Handler... chain) {
Handler head = first;
for (Handler nextInChain: chain) {
head.next = nextInChain;
head = nextInChain;
}
return first;
}
/**
* Elke subklasse zal deze methode implementeren met eigen logica.
*/
public abstract boolean check(String email, String password);
/**
* Voert de check<SUF>*/
protected boolean checkNext(String email, String password) {
if (next == null) {
return true;
}
return next.check(email, password);
}
} |
208799_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Verblijfplaats converteerder.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
<SUF>*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_3 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
<SUF>*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_4 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking<SUF>*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_5 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te<SUF>*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_6 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet<SUF>*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_8 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet<SUF>*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_10 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
<SUF>*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_13 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet<SUF>*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_14 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet<SUF>*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_16 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking() | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt<SUF>
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_17 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet<SUF>*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_19 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
<SUF>*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_20 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking() | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt<SUF>
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_21 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet<SUF>*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_23 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | /*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
<SUF>*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_24 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens. | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is<SUF>
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_26 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens. | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is<SUF>
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_27 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep<SUF>
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_28 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // gegevens niet overschrijven. | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet<SUF>
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208799_29 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder mag deze gegevens wel altijd overschrijven
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
| EdwinSmink/OperatieBRP | 02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-conversie-regels/src/main/java/nl/bzk/migratiebrp/conversie/regels/proces/brpnaarlo3/attributen/BrpVerblijfplaatsConverteerder.java | 7,651 | // De AdresConverteerder mag deze gegevens wel altijd overschrijven | line_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen;
import java.util.ArrayList;
import java.util.List;
import nl.bzk.algemeenbrp.util.common.logging.Logger;
import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory;
import nl.bzk.migratiebrp.conversie.model.Definitie;
import nl.bzk.migratiebrp.conversie.model.Definities;
import nl.bzk.migratiebrp.conversie.model.Requirement;
import nl.bzk.migratiebrp.conversie.model.Requirements;
import nl.bzk.migratiebrp.conversie.model.brp.BrpActie;
import nl.bzk.migratiebrp.conversie.model.brp.BrpGroep;
import nl.bzk.migratiebrp.conversie.model.brp.BrpStapel;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpLandOfGebiedCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortActieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpSoortMigratieCode;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpString;
import nl.bzk.migratiebrp.conversie.model.brp.attribuut.BrpValidatie;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpAdresInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpGroepInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpMigratieInhoud;
import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpOnverwerktDocumentAanwezigIndicatieInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Categorie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Historie;
import nl.bzk.migratiebrp.conversie.model.lo3.Lo3Stapel;
import nl.bzk.migratiebrp.conversie.model.lo3.categorie.Lo3VerblijfplaatsInhoud;
import nl.bzk.migratiebrp.conversie.model.lo3.codes.Lo3AangifteAdreshoudingEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Datum;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3String;
import nl.bzk.migratiebrp.conversie.model.lo3.element.Lo3Validatie;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3CategorieEnum;
import nl.bzk.migratiebrp.conversie.model.lo3.herkomst.Lo3Herkomst;
/**
* Verblijfplaats converteerder.
*/
@Requirement(Requirements.CCA08)
public final class BrpVerblijfplaatsConverteerder extends AbstractBrpCategorieConverteerder<Lo3VerblijfplaatsInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private final BrpAttribuutConverteerder attribuutConverteerder;
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BrpVerblijfplaatsConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
this.attribuutConverteerder = attribuutConverteerder;
}
/*
* (non-Javadoc)
*
* @see
* nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.AbstractBrpCategorieConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
protected <B extends BrpGroepInhoud> BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> bepaalConverteerder(final B inhoud) {
final BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud> result;
if (inhoud instanceof BrpAdresInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new AdresConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpBijhoudingInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new BijhoudingConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpMigratieInhoud) {
result = (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new MigratieConverteerder(attribuutConverteerder);
} else if (inhoud instanceof BrpOnverwerktDocumentAanwezigIndicatieInhoud) {
return (BrpGroepConverteerder<B, Lo3VerblijfplaatsInhoud>) new OnverwerktDocumentAanwezigConverteerder(attribuutConverteerder);
} else {
throw new IllegalArgumentException("BrpVerblijfplaatsConverteerder bevat geen Groep converteerder voor: " + inhoud);
}
return result;
}
private <T extends BrpGroepInhoud> BrpGroep<T> getBrpGroepVoorVoorkomen(
final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen,
final BrpStapel<T> brpStapel) {
BrpGroep<T> result = null;
if (brpStapel != null) {
final Long documentId = voorkomen.getDocumentatie().getId();
for (final BrpGroep<T> brpGroep : brpStapel.getGroepen()) {
if (documentId.equals(brpGroep.getActieInhoud().getId())) {
result = brpGroep;
break;
}
}
}
return result;
}
/**
* Doet een nabewerking stap voor het vullen van datum velden in de inhoud vanuit de historie.
* @param verblijfplaatsStapel verblijfplaatsStapel
* @param brpMigratieStapel brp stapel voor Migratie
* @param brpBijhoudingStapel brp stapel voor Bijhouding
* @return verblijfplaatsStapel waarin de inhoud is aangevuld vanuit de historie.
*/
public Lo3Stapel<Lo3VerblijfplaatsInhoud> nabewerking(
final Lo3Stapel<Lo3VerblijfplaatsInhoud> verblijfplaatsStapel,
final BrpStapel<? extends BrpGroepInhoud> brpMigratieStapel,
final BrpStapel<? extends BrpGroepInhoud> brpBijhoudingStapel) {
Lo3Stapel<Lo3VerblijfplaatsInhoud> result = null;
if (verblijfplaatsStapel != null) {
final List<Lo3Categorie<Lo3VerblijfplaatsInhoud>> lo3Categorieen = new ArrayList<>();
for (final Lo3Categorie<Lo3VerblijfplaatsInhoud> voorkomen : verblijfplaatsStapel.getCategorieen()) {
final BrpGroep<? extends BrpGroepInhoud> brpMigratieGroep = getBrpGroepVoorVoorkomen(voorkomen, brpMigratieStapel);
final BrpGroep<? extends BrpGroepInhoud> brpBijhoudingGroep = getBrpGroepVoorVoorkomen(voorkomen, brpBijhoudingStapel);
final Lo3VerblijfplaatsInhoud lo3Inhoud = voorkomen.getInhoud();
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
final Lo3Datum datumInschrijving;
final Lo3Datum datumMigratie;
if (brpBijhoudingGroep != null) {
datumInschrijving = brpBijhoudingGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumInschrijving = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
builder.datumInschrijving(datumInschrijving);
if (brpMigratieGroep != null) {
datumMigratie = brpMigratieGroep.getHistorie().getDatumAanvangGeldigheid().converteerNaarLo3Datum();
} else {
datumMigratie = voorkomen.getHistorie().getIngangsdatumGeldigheid();
}
Lo3Datum ingangsdatumGeldigheid = voorkomen.getHistorie().getIngangsdatumGeldigheid();
if (lo3Inhoud.isEmigratie()) {
builder.vertrekUitNederland(datumMigratie);
ingangsdatumGeldigheid = datumMigratie.compareTo(datumInschrijving) > 0 ? datumMigratie : datumInschrijving;
}
if (lo3Inhoud.isImmigratie()) {
builder.vestigingInNederland(datumMigratie);
}
final Lo3Historie historie =
new Lo3Historie(voorkomen.getHistorie().getIndicatieOnjuist(), ingangsdatumGeldigheid, voorkomen.getHistorie().getDatumVanOpneming());
lo3Categorieen.add(new Lo3Categorie<>(builder.build(), voorkomen.getDocumentatie(), historie, voorkomen.getLo3Herkomst()));
}
result = new Lo3Stapel<>(lo3Categorieen);
}
return result;
}
private static void verwerkBuitenlandsAdres(
final Lo3VerblijfplaatsInhoud.Builder builder,
final BrpAttribuutConverteerder converteerder,
final BrpString buitenlandsAdresRegel1,
final BrpString buitenlandsAdresRegel2,
final BrpString buitenlandsAdresRegel3,
final BrpLandOfGebiedCode landOfGebiedCode) {
if (alleenBuitenlandsAdresRegel1(buitenlandsAdresRegel1, buitenlandsAdresRegel2, buitenlandsAdresRegel3)) {
// DEF045
builder.adresBuitenland1(null);
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland3(null);
} else {
// DEF046
builder.adresBuitenland1(converteerder.converteerString(buitenlandsAdresRegel1));
builder.adresBuitenland2(converteerder.converteerString(buitenlandsAdresRegel2));
builder.adresBuitenland3(converteerder.converteerString(buitenlandsAdresRegel3));
}
builder.landAdresBuitenland(converteerder.converteerLandCode(landOfGebiedCode));
}
private static boolean alleenBuitenlandsAdresRegel1(final BrpString brpRegel1, final BrpString brpRegel2, final BrpString brpRegel3) {
final String regel1 = BrpString.unwrap(brpRegel1);
final String regel2 = BrpString.unwrap(brpRegel2);
final String regel3 = BrpString.unwrap(brpRegel3);
final boolean regel1Aanwezig = regel1 != null && !regel1.isEmpty();
final boolean regel2Aanwezig = regel2 != null && !regel2.isEmpty();
final boolean regel3Aanwezig = regel3 != null && !regel3.isEmpty();
return regel1Aanwezig && !regel2Aanwezig && !regel3Aanwezig;
}
private static boolean bepaalAanvullen(final BrpActie actie, final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper) {
final BrpSoortActieCode soortActieCode = actie.getSoortActieCode();
final boolean isConversie = BrpSoortActieCode.CONVERSIE_GBA.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_LEEG_CATEGORIE_ONJUIST.equals(soortActieCode)
|| BrpSoortActieCode.CONVERSIE_GBA_MATERIELE_HISTORIE.equals(soortActieCode);
if (isConversie) {
final Long documentatieId =
categorieWrapper.getLo3Categorie().getDocumentatie() == null ? null : categorieWrapper.getLo3Categorie().getDocumentatie().getId();
return actie.getId().equals(documentatieId);
}
return false;
}
/**
* Bepaal de te converteren Bijhouding groepen. Het kan zijn zo zijn dat de heenconversie een groep bijhouding is
* geconverteerd uit categorie 7. Deze bijhouding, voortgekomen uit categorie 7, moeten we op de terugweg negeren.
* @param bijhoudingStapel De bijhouding stapel
* @return De bijhouding stapel zonder groepen voortgekomen uit categorie 7.
*/
@Requirement(Requirements.CCA08_BL05)
public BrpStapel<BrpBijhoudingInhoud> bepaalBijhoudingGroepen(final BrpStapel<BrpBijhoudingInhoud> bijhoudingStapel) {
BrpStapel<BrpBijhoudingInhoud> result = null;
if (bijhoudingStapel != null) {
final List<BrpGroep<BrpBijhoudingInhoud>> gefilterdeBijhoudingGroepen = new ArrayList<>();
for (final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep : bijhoudingStapel.getGroepen()) {
final Lo3Herkomst lo3Herkomst = bijhoudingGroep.getActieInhoud().getLo3Herkomst();
if (lo3Herkomst == null || !Lo3CategorieEnum.CATEGORIE_07.equals(lo3Herkomst.getCategorie())) {
gefilterdeBijhoudingGroepen.add(brpBijhoudingGroepFilterActieGeldigheid(bijhoudingGroep));
}
}
result = new BrpStapel<>(gefilterdeBijhoudingGroepen);
}
return result;
}
private BrpGroep<BrpBijhoudingInhoud> brpBijhoudingGroepFilterActieGeldigheid(final BrpGroep<BrpBijhoudingInhoud> bijhoudingGroep) {
final BrpGroep<BrpBijhoudingInhoud> result;
if (bijhoudingGroep.getActieGeldigheid() == null
|| bijhoudingGroep.getActieGeldigheid().getLo3Herkomst() == null
|| !bijhoudingGroep.getActieGeldigheid().getLo3Herkomst().getCategorie().equals(Lo3CategorieEnum.CATEGORIE_07)) {
result = bijhoudingGroep;
} else {
result =
new BrpGroep<>(
bijhoudingGroep.getInhoud(),
bijhoudingGroep.getHistorie(),
bijhoudingGroep.getActieInhoud(),
bijhoudingGroep.getActieVerval(),
null);
}
return result;
}
/**
* Converteerder die weet hoe je een Lo3VerblijfplaatsInhoud rij moet aanmaken.
* @param <T> BRP Inhoud
*/
public abstract static class AbstractConverteerder<T extends BrpGroepInhoud> extends AbstractBrpGroepConverteerder<T, Lo3VerblijfplaatsInhoud> {
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AbstractConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
public final Lo3VerblijfplaatsInhoud maakNieuweInhoud() {
return new Lo3VerblijfplaatsInhoud(
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
Lo3AangifteAdreshoudingEnum.ONBEKEND.asElement(),
null);
}
}
/**
* Converteerder die weet hoe een BrpAdresInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
public static final class AdresConverteerder extends AbstractConverteerder<BrpAdresInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
private static final String PUNT = ".";
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public AdresConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Definitie({Definities.DEF023, Definities.DEF024, Definities.DEF045, Definities.DEF046})
@Requirement({Requirements.CCA08_BL01, Requirements.CCA08_BL02, Requirements.CCA08_BL03})
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpAdresInhoud brpInhoud,
final BrpAdresInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
builder.resetAdresVelden();
if (brpInhoud != null) {
// CCA08_BL01 Adreshouding
builder.aangifteAdreshouding(
getAttribuutConverteerder()
.converteerAangifteAdreshouding(brpInhoud.getRedenWijzigingAdresCode(), brpInhoud.getAangeverAdreshoudingCode()));
// CCA08_BL02 Nederlands adres
if (BrpValidatie.isAttribuutGevuld(brpInhoud.getGemeenteCode())) {
verwerkNederlandsAdres(builder, brpInhoud);
} else {
// CCA08_BL03
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
// Datum aanvang adres buitenland wordt gevuld in de nabewerking methode
}
}
return builder.build();
}
private void verwerkNederlandsAdres(final Lo3VerblijfplaatsInhoud.Builder builder, final BrpAdresInhoud brpInhoud) {
builder.aanvangAdreshouding(getAttribuutConverteerder().converteerDatum(brpInhoud.getDatumAanvangAdreshouding()));
builder.functieAdres(getAttribuutConverteerder().converteerFunctieAdres(brpInhoud.getSoortAdresCode()));
if (isAdresNietBekend(brpInhoud)) {
// DEF023
builder.straatnaam(Lo3String.wrap(PUNT));
} else {
// DEF024
final Lo3String
identificatiecodeAdresseerbaarObject =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeAdresseerbaarObject());
final Lo3String
identificatiecodeNummeraanduiding =
getAttribuutConverteerder().converteerString(brpInhoud.getIdentificatiecodeNummeraanduiding());
final Lo3String naamOpenbareRuimte = getAttribuutConverteerder().converteerString(brpInhoud.getNaamOpenbareRuimte());
Lo3String woonplaatsnaam = getAttribuutConverteerder().converteerString(brpInhoud.getWoonplaatsnaam());
final boolean woonplaatsnaamGevuld = woonplaatsnaam != null && woonplaatsnaam.isInhoudelijkGevuld();
final boolean identificatiecodeAdresseerbaarObjectGevuld =
identificatiecodeAdresseerbaarObject != null && identificatiecodeAdresseerbaarObject.isInhoudelijkGevuld();
final boolean identificatiecodeNummeraanduidingGevuld =
identificatiecodeNummeraanduiding != null && identificatiecodeNummeraanduiding.isInhoudelijkGevuld();
final boolean naamOpenbareRuimteGevuld = naamOpenbareRuimte != null && naamOpenbareRuimte.isInhoudelijkGevuld();
if (!woonplaatsnaamGevuld
&& identificatiecodeAdresseerbaarObjectGevuld
&& identificatiecodeNummeraanduidingGevuld
&& naamOpenbareRuimteGevuld) {
woonplaatsnaam = new Lo3String(PUNT, null);
}
builder.identificatiecodeVerblijfplaats(identificatiecodeAdresseerbaarObject);
builder.identificatiecodeNummeraanduiding(identificatiecodeNummeraanduiding);
builder.naamOpenbareRuimte(naamOpenbareRuimte);
builder.straatnaam(getAttribuutConverteerder().converteerString(brpInhoud.getAfgekorteNaamOpenbareRuimte()));
builder.gemeenteDeel(getAttribuutConverteerder().converteerString(brpInhoud.getGemeentedeel()));
builder.huisnummer(getAttribuutConverteerder().converteerHuisnummer(brpInhoud.getHuisnummer()));
builder.huisletter(getAttribuutConverteerder().converteerCharacter(brpInhoud.getHuisletter()));
builder.huisnummertoevoeging(getAttribuutConverteerder().converteerString(brpInhoud.getHuisnummertoevoeging()));
builder.postcode(getAttribuutConverteerder().converteerString(brpInhoud.getPostcode()));
builder.woonplaatsnaam(woonplaatsnaam);
builder.aanduidingHuisnummer(getAttribuutConverteerder().converteerAanduidingHuisnummer(brpInhoud.getLocatieTovAdres()));
builder.locatieBeschrijving(getAttribuutConverteerder().converteerString(brpInhoud.getLocatieOmschrijving()));
}
}
/**
* Adres is niet bekend als uitsluitend gemeente en land/gebied is ingevuld.
* @param brpInhoud BRP adres inhoud
* @return true als alleen gemeente en land/gebied is ingevuld
*/
@Definitie({Definities.DEF023, Definities.DEF024})
private boolean isAdresNietBekend(final BrpAdresInhoud brpInhoud) {
return BrpValidatie.isEenParameterGevuld(brpInhoud.getGemeenteCode(), brpInhoud.getLandOfGebiedCode())
&& !BrpValidatie.isEenParameterGevuld(
brpInhoud.getAfgekorteNaamOpenbareRuimte(),
brpInhoud.getGemeentedeel(),
brpInhoud.getHuisletter(),
brpInhoud.getHuisnummer(),
brpInhoud.getHuisnummertoevoeging(),
brpInhoud.getIdentificatiecodeAdresseerbaarObject(),
brpInhoud.getIdentificatiecodeNummeraanduiding(),
brpInhoud.getLocatieOmschrijving(),
brpInhoud.getLocatieTovAdres(),
brpInhoud.getNaamOpenbareRuimte(),
brpInhoud.getPostcode(),
brpInhoud.getWoonplaatsnaam());
}
}
/**
* Converteerder die weet hoe een {@link BrpOnverwerktDocumentAanwezigIndicatieInhoud} omgezet moet worden naar
* L{@link Lo3VerblijfplaatsInhoud}.
*/
public static final class OnverwerktDocumentAanwezigConverteerder extends AbstractConverteerder<BrpOnverwerktDocumentAanwezigIndicatieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public OnverwerktDocumentAanwezigConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpInhoud,
final BrpOnverwerktDocumentAanwezigIndicatieInhoud brpVorige) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
builder.indicatieDocument(getAttribuutConverteerder().converteerIndicatieDocument(brpInhoud.getIndicatie()));
}
return builder.build();
}
}
/**
* Converteerder die weet hoe een BrpBijhoudingInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL05)
public static final class BijhoudingConverteerder extends AbstractConverteerder<BrpBijhoudingInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public BijhoudingConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpBijhoudingInhoud brpInhoud,
final BrpBijhoudingInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud == null) {
builder.gemeenteInschrijving(null);
builder.datumInschrijving(null);
builder.indicatieDocument(null);
} else {
builder.gemeenteInschrijving(getAttribuutConverteerder().converteerGemeenteCode(brpInhoud.getBijhoudingspartijCode()));
// datumInschrijving wordt gevuld door datumAanvangGeldigheid uit de Lo3Historie, zie #nabewerking()
builder.datumInschrijving(null);
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
/**
* Converteerder die weet hoe een BrpImmigratieInhoud omgezet moet worden naar Lo3VerblijfplaatsInhoud.
*/
@Requirement(Requirements.CCA08_BL04)
@Definitie({Definities.DEF074, Definities.DEF075, Definities.DEF076})
public static final class MigratieConverteerder extends AbstractConverteerder<BrpMigratieInhoud> {
private static final Logger LOG = LoggerFactory.getLogger();
/**
* Constructor.
* @param attribuutConverteerder attribuut converteerder
*/
public MigratieConverteerder(final BrpAttribuutConverteerder attribuutConverteerder) {
super(attribuutConverteerder);
}
/*
* (non-Javadoc)
*
* @see nl.bzk.migratiebrp.conversie.regels.proces.brpnaarlo3.attributen.BrpGroepConverteerder#getLogger()
*/
@Override
protected Logger getLogger() {
return LOG;
}
@Override
public Lo3VerblijfplaatsInhoud vulInhoud(
final Lo3VerblijfplaatsInhoud lo3Inhoud,
final BrpMigratieInhoud brpInhoud,
final BrpMigratieInhoud brpVorigeInhoud) {
final Lo3VerblijfplaatsInhoud.Builder builder = new Lo3VerblijfplaatsInhoud.Builder(lo3Inhoud);
if (brpInhoud != null) {
if (BrpSoortMigratieCode.IMMIGRATIE.equals(brpInhoud.getSoortMigratieCode())) {
// DEF076
// Dit is een Immigratie. Deze beeindigt eventueel aanwezige emigratie-gegevens.
builder.resetEmigratieVelden();
builder.landVanwaarIngeschreven(getAttribuutConverteerder().converteerLandCode(brpInhoud.getLandOfGebiedCode()));
// Datum vestiging in NL wordt gevuld in de methode nabewerking
} else {
// Dit is een emigratie. Deze beeindigt eventueel aanwezige immigratie-gegevens.
builder.resetImmigratieVelden();
// Als groep 13 al is ingevuld door AdresConverteerder, dan mag de MigratieConverteerder deze
// gegevens niet overschrijven.
// De AdresConverteerder<SUF>
if (!Lo3Validatie.isEenParameterGevuld(
lo3Inhoud.getAdresBuitenland1(),
lo3Inhoud.getAdresBuitenland2(),
lo3Inhoud.getAdresBuitenland3(),
lo3Inhoud.getLandAdresBuitenland())) {
// DEF074 DEF075
verwerkBuitenlandsAdres(
builder,
getAttribuutConverteerder(),
brpInhoud.getBuitenlandsAdresRegel1(),
brpInhoud.getBuitenlandsAdresRegel2(),
brpInhoud.getBuitenlandsAdresRegel3(),
brpInhoud.getLandOfGebiedCode());
}
}
}
return builder.build();
}
@Override
protected boolean bepaalVoorkomenAanvullen(
final BrpActie actie,
final Lo3CategorieWrapper<Lo3VerblijfplaatsInhoud> categorieWrapper,
final Lo3Datum ingang) {
return bepaalAanvullen(actie, categorieWrapper);
}
}
}
|
208802_0 | import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Scanner;
public class Sommeren {
/**
* Wat als je nu een berekening wil doen met meer getallen? Ook daar weet een programmeur het antwoord op!
* Schrijf een programma dat de som kan berekenen van een willekeurig aantal getallen.
* De gebruiker geeft telkens een getal in en eindigt door 0 in te geven.
*/
public static void main(String[] args) {
ArrayList<Integer> val = new ArrayList<>();
Scanner sc = new Scanner(System.in);
do {
System.out.print("Geef een getal (stop met 0): ");
val.add(sc.nextInt());
} while (val.get(val.size() - 1) != 0);
int sum = val.stream().reduce(0, Integer::sum);
int size = val.size() - 1;
System.out.printf("""
De som van deze getallen is: %d
Het gemiddelde van deze getallen is: %d
Aantal ingegeven getallen: %d
Einde programma!""", sum, sum / size, size);
}
}
| GillesClsns/Programming-OO-Concepts | P1-2022/P1-W1/Iterations-and-conditions/Sommeren/src/Sommeren.java | 296 | /**
* Wat als je nu een berekening wil doen met meer getallen? Ook daar weet een programmeur het antwoord op!
* Schrijf een programma dat de som kan berekenen van een willekeurig aantal getallen.
* De gebruiker geeft telkens een getal in en eindigt door 0 in te geven.
*/ | block_comment | nl | import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Scanner;
public class Sommeren {
/**
* Wat als je<SUF>*/
public static void main(String[] args) {
ArrayList<Integer> val = new ArrayList<>();
Scanner sc = new Scanner(System.in);
do {
System.out.print("Geef een getal (stop met 0): ");
val.add(sc.nextInt());
} while (val.get(val.size() - 1) != 0);
int sum = val.stream().reduce(0, Integer::sum);
int size = val.size() - 1;
System.out.printf("""
De som van deze getallen is: %d
Het gemiddelde van deze getallen is: %d
Aantal ingegeven getallen: %d
Einde programma!""", sum, sum / size, size);
}
}
|
208804_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import nl.bzk.brp.model.logisch.kern.basis.PersoonVoornaamBasis;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaam.java | 487 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import nl.bzk.brp.model.logisch.kern.basis.PersoonVoornaamBasis;
/**
* Voornaam van een<SUF>*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
|
208805_3 | /*
* Copyright (C) 2015 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.viewer.util;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestName;
/**
* Extend this class to get logging of your test methods.
*
* @author Mark Prins
*/
public class LoggingTestUtil {
private static final Log LOG = LogFactory.getLog(LoggingTestUtil.class);
/**
* logging rule.
*/
@Rule
public TestName testName = new TestName();
/**
* Log de naam van de test als deze begint.
*/
@Before
public void startTest() {
LOG.info("==== Start test methode: " + testName.getMethodName());
}
/**
* Log de naam van de test als deze eindigt.
*/
@After
public void endTest() {
LOG.info("==== Einde test methode: " + testName.getMethodName());
}
}
| B3Partners/tailormap | viewer-config-persistence/src/test/java/nl/b3p/viewer/util/LoggingTestUtil.java | 440 | /**
* Log de naam van de test als deze begint.
*/ | block_comment | nl | /*
* Copyright (C) 2015 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.viewer.util;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestName;
/**
* Extend this class to get logging of your test methods.
*
* @author Mark Prins
*/
public class LoggingTestUtil {
private static final Log LOG = LogFactory.getLog(LoggingTestUtil.class);
/**
* logging rule.
*/
@Rule
public TestName testName = new TestName();
/**
* Log de naam<SUF>*/
@Before
public void startTest() {
LOG.info("==== Start test methode: " + testName.getMethodName());
}
/**
* Log de naam van de test als deze eindigt.
*/
@After
public void endTest() {
LOG.info("==== Einde test methode: " + testName.getMethodName());
}
}
|
208805_4 | /*
* Copyright (C) 2015 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.viewer.util;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestName;
/**
* Extend this class to get logging of your test methods.
*
* @author Mark Prins
*/
public class LoggingTestUtil {
private static final Log LOG = LogFactory.getLog(LoggingTestUtil.class);
/**
* logging rule.
*/
@Rule
public TestName testName = new TestName();
/**
* Log de naam van de test als deze begint.
*/
@Before
public void startTest() {
LOG.info("==== Start test methode: " + testName.getMethodName());
}
/**
* Log de naam van de test als deze eindigt.
*/
@After
public void endTest() {
LOG.info("==== Einde test methode: " + testName.getMethodName());
}
}
| B3Partners/tailormap | viewer-config-persistence/src/test/java/nl/b3p/viewer/util/LoggingTestUtil.java | 440 | /**
* Log de naam van de test als deze eindigt.
*/ | block_comment | nl | /*
* Copyright (C) 2015 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.viewer.util;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.rules.TestName;
/**
* Extend this class to get logging of your test methods.
*
* @author Mark Prins
*/
public class LoggingTestUtil {
private static final Log LOG = LogFactory.getLog(LoggingTestUtil.class);
/**
* logging rule.
*/
@Rule
public TestName testName = new TestName();
/**
* Log de naam van de test als deze begint.
*/
@Before
public void startTest() {
LOG.info("==== Start test methode: " + testName.getMethodName());
}
/**
* Log de naam<SUF>*/
@After
public void endTest() {
LOG.info("==== Einde test methode: " + testName.getMethodName());
}
}
|
208806_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import nl.bzk.brp.model.bericht.kern.basis.AbstractPersoonVoornaamBericht;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/bericht/kern/PersoonVoornaamBericht.java | 518 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import nl.bzk.brp.model.bericht.kern.basis.AbstractPersoonVoornaamBericht;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
/**
* Voornaam van een<SUF>*/
public class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
}
|
208807_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
/**
* Voornaam van een persoon
* <p/>
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van voornamen zoals 'Jan Peter', 'Aberto di
* Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar
* te plakken met een koppelteken.
* <p/>
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
* <p/>
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
* <p/>
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel
* kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede begint). Daarnaast is
* er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan
* aangepast?
* <p/>
* De BRP is wel al voorbereid op het kunnen bevatten van spaties. RvdP 5 augustus 2011
*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaam.java | 461 | /**
* Voornaam van een persoon
* <p/>
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van voornamen zoals 'Jan Peter', 'Aberto di
* Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar
* te plakken met een koppelteken.
* <p/>
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
* <p/>
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
* <p/>
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel
* kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede begint). Daarnaast is
* er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan
* aangepast?
* <p/>
* De BRP is wel al voorbereid op het kunnen bevatten van spaties. RvdP 5 augustus 2011
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
/**
* Voornaam van een<SUF>*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
|
208808_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.HisMomentGenerator")
public interface PersoonVoornaamHisMoment extends PersoonVoornaam {
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
HisPersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaamHisMoment.java | 527 | /**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
/**
* Voornaam van een<SUF>*/
@Generated(value = "nl.bzk.brp.generatoren.java.HisMomentGenerator")
public interface PersoonVoornaamHisMoment extends PersoonVoornaam {
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
HisPersoonVoornaamStandaardGroep getStandaard();
}
|
208808_2 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.HisMomentGenerator")
public interface PersoonVoornaamHisMoment extends PersoonVoornaam {
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
HisPersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaamHisMoment.java | 527 | /**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.HisMomentGenerator")
public interface PersoonVoornaamHisMoment extends PersoonVoornaam {
/**
* Retourneert Standaard van<SUF>*/
HisPersoonVoornaamStandaardGroep getStandaard();
}
|
208809_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/logisch/kern/basis/PersoonVoornaamBasis.java | 693 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een<SUF>*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208809_2 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/logisch/kern/basis/PersoonVoornaamBasis.java | 693 | /**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van<SUF>*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208809_3 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/logisch/kern/basis/PersoonVoornaamBasis.java | 693 | /**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van<SUF>*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208810_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaamBasis.java | 664 | /**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een<SUF>*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208810_2 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaamBasis.java | 664 | /**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van<SUF>*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208810_3 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaamBasis.java | 664 | /**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import javax.annotation.Generated;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.VolgnummerAttribuut;
import nl.bzk.brp.model.basis.BrpObject;
/**
* Voornaam van een persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als één enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te
* worden (zodat voornamen individueel kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar
* over waar de ene voornaam eindigt en een tweede begint). Daarnaast is er ook nog geen duidelijkheid over de wijze
* waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
*
*
*
*/
@Generated(value = "nl.bzk.brp.generatoren.java.LogischModelGenerator")
public interface PersoonVoornaamBasis extends BrpObject {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van<SUF>*/
VolgnummerAttribuut getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208811_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import nl.bzk.brp.model.logisch.kern.basis.PersoonVoornaamBasis;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.1.8.
* Gegenereerd op: Tue Nov 27 12:05:00 CET 2012.
*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/BRP/branches/brp-stappen-refactoring/model/src/main/java/nl/bzk/brp/model/logisch/kern/PersoonVoornaam.java | 562 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.1.8.
* Gegenereerd op: Tue Nov 27 12:05:00 CET 2012.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern;
import nl.bzk.brp.model.logisch.kern.basis.PersoonVoornaamBasis;
/**
* Voornaam van een<SUF>*/
public interface PersoonVoornaam extends PersoonVoornaamBasis {
}
|
208812_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import nl.bzk.brp.model.bericht.kern.basis.AbstractPersoonVoornaamBericht;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.BerichtModelGenerator.
* Metaregister versie: 1.1.8.
* Generator versie: 1.0-SNAPSHOT.
* Generator gebouwd op: 2012-11-27 12:02:51.
* Gegenereerd op: Tue Nov 27 13:50:43 CET 2012.
*/
public class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/BRP/branches/brp-stappen-refactoring/model/src/main/java/nl/bzk/brp/model/bericht/kern/PersoonVoornaamBericht.java | 619 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.BerichtModelGenerator.
* Metaregister versie: 1.1.8.
* Generator versie: 1.0-SNAPSHOT.
* Generator gebouwd op: 2012-11-27 12:02:51.
* Gegenereerd op: Tue Nov 27 13:50:43 CET 2012.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import nl.bzk.brp.model.bericht.kern.basis.AbstractPersoonVoornaamBericht;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
/**
* Voornaam van een<SUF>*/
public class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
}
|
208813_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/operationeel/kern/PersoonVoornaamModel.java | 919 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een<SUF>*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
|
208813_3 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/operationeel/kern/PersoonVoornaamModel.java | 919 | /**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die<SUF>*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
|
208813_4 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/algemeen/model/trunk/src/main/java/nl/bzk/brp/model/operationeel/kern/PersoonVoornaamModel.java | 919 | /**
* Copy constructor om vanuit het bericht model een instantie van het operationeel model te maken.
*
* @param persoonVoornaam Te kopieren object type.
* @param persoon Bijbehorende Persoon.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.operationeel.kern;
import javax.persistence.Entity;
import javax.persistence.Table;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import nl.bzk.brp.model.operationeel.kern.basis.AbstractPersoonVoornaamModel;
import org.apache.commons.lang.builder.CompareToBuilder;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
*/
@Entity
@Table(schema = "Kern", name = "PersVoornaam")
public class PersoonVoornaamModel extends AbstractPersoonVoornaamModel
implements PersoonVoornaam, Comparable<PersoonVoornaamModel>
{
/**
* Standaard constructor (t.b.v. Hibernate/JPA).
*
*/
protected PersoonVoornaamModel() {
super();
}
/**
* Standaard constructor die direct alle identificerende attributen instantieert of doorgeeft.
*
* @param persoon persoon van Persoon \ Voornaam.
* @param volgnummer volgnummer van Persoon \ Voornaam.
*/
public PersoonVoornaamModel(final PersoonModel persoon, final Volgnummer volgnummer) {
super(persoon, volgnummer);
}
/**
* Copy constructor om<SUF>*/
public PersoonVoornaamModel(final PersoonVoornaam persoonVoornaam, final PersoonModel persoon) {
super(persoonVoornaam, persoon);
}
@Override
public int compareTo(final PersoonVoornaamModel o) {
return new CompareToBuilder().append(getVolgnummer(), o.getVolgnummer()).toComparison();
}
}
|
208814_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import javax.validation.Valid;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
/**
* Voornaam van een Persoon
* <p/>
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van voornamen zoals 'Jan Peter', 'Aberto di
* Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar
* te plakken met een koppelteken.
* <p/>
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
* <p/>
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
* <p/>
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel
* kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede begint). Daarnaast is
* er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan
* aangepast?
* <p/>
* De BRP is wel al voorbereid op het kunnen bevatten van spaties. RvdP 5 augustus 2011
*/
public final class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
private static final int HASHCODE_NIET_NUL_ONEVEN_GETAL = 11;
private static final int HASHCODE_MULTIPLIER_NIET_NUL_ONEVEN_GETAL = 21;
@Valid
@Override
public PersoonVoornaamStandaardGroepBericht getStandaard() {
return super.getStandaard();
}
@Override
public boolean equals(final Object obj) {
final boolean resultaat;
if (!(obj instanceof PersoonVoornaamBericht)) {
resultaat = false;
} else {
if (this == obj) {
resultaat = true;
} else {
final PersoonVoornaamBericht pv = (PersoonVoornaamBericht) obj;
resultaat =
new EqualsBuilder().append(getPersoon(), pv.getPersoon())
.append(getVolgnummer(), pv.getVolgnummer()).isEquals();
}
}
return resultaat;
}
@Override
public int hashCode() {
return new HashCodeBuilder(HASHCODE_NIET_NUL_ONEVEN_GETAL, HASHCODE_MULTIPLIER_NIET_NUL_ONEVEN_GETAL)
.append(getPersoon()).append(getVolgnummer()).toHashCode();
}
}
| MinBZK/OperatieBRP | 2016/brp 2016-02-09/algemeen/algemeen-model/model/src/main/java/nl/bzk/brp/model/bericht/kern/PersoonVoornaamBericht.java | 864 | /**
* Voornaam van een Persoon
* <p/>
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van voornamen zoals 'Jan Peter', 'Aberto di
* Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar
* te plakken met een koppelteken.
* <p/>
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
* <p/>
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
* <p/>
* Een voornaam mag voorlopig nog geen spatie bevatten. Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel
* kunnen worden vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede begint). Daarnaast is
* er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de burger hier simpelweg om verzoeken en wordt het dan
* aangepast?
* <p/>
* De BRP is wel al voorbereid op het kunnen bevatten van spaties. RvdP 5 augustus 2011
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.bericht.kern;
import javax.validation.Valid;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaam;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
/**
* Voornaam van een<SUF>*/
public final class PersoonVoornaamBericht extends AbstractPersoonVoornaamBericht implements PersoonVoornaam {
private static final int HASHCODE_NIET_NUL_ONEVEN_GETAL = 11;
private static final int HASHCODE_MULTIPLIER_NIET_NUL_ONEVEN_GETAL = 21;
@Valid
@Override
public PersoonVoornaamStandaardGroepBericht getStandaard() {
return super.getStandaard();
}
@Override
public boolean equals(final Object obj) {
final boolean resultaat;
if (!(obj instanceof PersoonVoornaamBericht)) {
resultaat = false;
} else {
if (this == obj) {
resultaat = true;
} else {
final PersoonVoornaamBericht pv = (PersoonVoornaamBericht) obj;
resultaat =
new EqualsBuilder().append(getPersoon(), pv.getPersoon())
.append(getVolgnummer(), pv.getVolgnummer()).isEquals();
}
}
return resultaat;
}
@Override
public int hashCode() {
return new HashCodeBuilder(HASHCODE_NIET_NUL_ONEVEN_GETAL, HASHCODE_MULTIPLIER_NIET_NUL_ONEVEN_GETAL)
.append(getPersoon()).append(getVolgnummer()).toHashCode();
}
}
|
208815_2 | /*
* Copyright (C) 2016 - 2017 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.topnl;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.DataSource;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverter;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverterFactory;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hsqldb.jdbc.JDBCDataSource;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.TestInfo;
/**
* @author Meine Toonen [email protected]
* @author mprins
*/
public class TestUtil {
private static final Log LOG = LogFactory.getLog(TestUtil.class);
protected DataSource datasource;
protected boolean useDB = false;
protected QueryRunner run;
/** Log de naam van de test als deze begint. */
@BeforeEach
public void startTest(TestInfo testInfo) {
LOG.info("==== Start test methode: " + testInfo.getDisplayName());
}
@BeforeEach
public void setUpClass(TestInfo testInfo) throws SQLException, IOException {
if (useDB) {
JDBCDataSource ds = new JDBCDataSource();
String testname = testInfo.getDisplayName().replace(':', '-').replace(' ', '_');
ds.setUrl(
"jdbc:hsqldb:file:./target/unittest-hsqldb_"
+ testname
+ "_"
+ System.currentTimeMillis()
+ "/db;shutdown=true");
datasource = ds;
initDB("initdb250nl.sql");
initDB("initdb100nl.sql");
initDB("initdb50nl.sql");
initDB("initdb10nl.sql");
GeometryJdbcConverter gjc =
GeometryJdbcConverterFactory.getGeometryJdbcConverter(datasource.getConnection());
run = new QueryRunner(datasource, gjc.isPmdKnownBroken());
}
}
/** Log de naam van de test als deze eindigt. */
@AfterEach
public void endTest(TestInfo testInfo) {
LOG.info("==== Einde test methode: " + testInfo.getDisplayName());
}
private void initDB(String file) throws IOException {
try {
Reader f = new InputStreamReader(TestUtil.class.getResourceAsStream(file));
executeScript(f);
} catch (SQLException sqle) {
LOG.error("Error initializing testdb:", sqle);
}
}
public void executeScript(Reader f) throws IOException, SQLException {
try (Connection conn = datasource.getConnection()) {
ScriptRunner sr = new ScriptRunner(conn, true, true);
sr.runScript(f);
conn.commit();
}
}
}
| B3Partners/brmo | brmo-topnl-loader/src/test/java/nl/b3p/topnl/TestUtil.java | 912 | /** Log de naam van de test als deze begint. */ | block_comment | nl | /*
* Copyright (C) 2016 - 2017 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.topnl;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.DataSource;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverter;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverterFactory;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hsqldb.jdbc.JDBCDataSource;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.TestInfo;
/**
* @author Meine Toonen [email protected]
* @author mprins
*/
public class TestUtil {
private static final Log LOG = LogFactory.getLog(TestUtil.class);
protected DataSource datasource;
protected boolean useDB = false;
protected QueryRunner run;
/** Log de naam<SUF>*/
@BeforeEach
public void startTest(TestInfo testInfo) {
LOG.info("==== Start test methode: " + testInfo.getDisplayName());
}
@BeforeEach
public void setUpClass(TestInfo testInfo) throws SQLException, IOException {
if (useDB) {
JDBCDataSource ds = new JDBCDataSource();
String testname = testInfo.getDisplayName().replace(':', '-').replace(' ', '_');
ds.setUrl(
"jdbc:hsqldb:file:./target/unittest-hsqldb_"
+ testname
+ "_"
+ System.currentTimeMillis()
+ "/db;shutdown=true");
datasource = ds;
initDB("initdb250nl.sql");
initDB("initdb100nl.sql");
initDB("initdb50nl.sql");
initDB("initdb10nl.sql");
GeometryJdbcConverter gjc =
GeometryJdbcConverterFactory.getGeometryJdbcConverter(datasource.getConnection());
run = new QueryRunner(datasource, gjc.isPmdKnownBroken());
}
}
/** Log de naam van de test als deze eindigt. */
@AfterEach
public void endTest(TestInfo testInfo) {
LOG.info("==== Einde test methode: " + testInfo.getDisplayName());
}
private void initDB(String file) throws IOException {
try {
Reader f = new InputStreamReader(TestUtil.class.getResourceAsStream(file));
executeScript(f);
} catch (SQLException sqle) {
LOG.error("Error initializing testdb:", sqle);
}
}
public void executeScript(Reader f) throws IOException, SQLException {
try (Connection conn = datasource.getConnection()) {
ScriptRunner sr = new ScriptRunner(conn, true, true);
sr.runScript(f);
conn.commit();
}
}
}
|
208815_3 | /*
* Copyright (C) 2016 - 2017 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.topnl;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.DataSource;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverter;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverterFactory;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hsqldb.jdbc.JDBCDataSource;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.TestInfo;
/**
* @author Meine Toonen [email protected]
* @author mprins
*/
public class TestUtil {
private static final Log LOG = LogFactory.getLog(TestUtil.class);
protected DataSource datasource;
protected boolean useDB = false;
protected QueryRunner run;
/** Log de naam van de test als deze begint. */
@BeforeEach
public void startTest(TestInfo testInfo) {
LOG.info("==== Start test methode: " + testInfo.getDisplayName());
}
@BeforeEach
public void setUpClass(TestInfo testInfo) throws SQLException, IOException {
if (useDB) {
JDBCDataSource ds = new JDBCDataSource();
String testname = testInfo.getDisplayName().replace(':', '-').replace(' ', '_');
ds.setUrl(
"jdbc:hsqldb:file:./target/unittest-hsqldb_"
+ testname
+ "_"
+ System.currentTimeMillis()
+ "/db;shutdown=true");
datasource = ds;
initDB("initdb250nl.sql");
initDB("initdb100nl.sql");
initDB("initdb50nl.sql");
initDB("initdb10nl.sql");
GeometryJdbcConverter gjc =
GeometryJdbcConverterFactory.getGeometryJdbcConverter(datasource.getConnection());
run = new QueryRunner(datasource, gjc.isPmdKnownBroken());
}
}
/** Log de naam van de test als deze eindigt. */
@AfterEach
public void endTest(TestInfo testInfo) {
LOG.info("==== Einde test methode: " + testInfo.getDisplayName());
}
private void initDB(String file) throws IOException {
try {
Reader f = new InputStreamReader(TestUtil.class.getResourceAsStream(file));
executeScript(f);
} catch (SQLException sqle) {
LOG.error("Error initializing testdb:", sqle);
}
}
public void executeScript(Reader f) throws IOException, SQLException {
try (Connection conn = datasource.getConnection()) {
ScriptRunner sr = new ScriptRunner(conn, true, true);
sr.runScript(f);
conn.commit();
}
}
}
| B3Partners/brmo | brmo-topnl-loader/src/test/java/nl/b3p/topnl/TestUtil.java | 912 | /** Log de naam van de test als deze eindigt. */ | block_comment | nl | /*
* Copyright (C) 2016 - 2017 B3Partners B.V.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package nl.b3p.topnl;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.sql.Connection;
import java.sql.SQLException;
import javax.sql.DataSource;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverter;
import nl.b3p.jdbc.util.converter.GeometryJdbcConverterFactory;
import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hsqldb.jdbc.JDBCDataSource;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.TestInfo;
/**
* @author Meine Toonen [email protected]
* @author mprins
*/
public class TestUtil {
private static final Log LOG = LogFactory.getLog(TestUtil.class);
protected DataSource datasource;
protected boolean useDB = false;
protected QueryRunner run;
/** Log de naam van de test als deze begint. */
@BeforeEach
public void startTest(TestInfo testInfo) {
LOG.info("==== Start test methode: " + testInfo.getDisplayName());
}
@BeforeEach
public void setUpClass(TestInfo testInfo) throws SQLException, IOException {
if (useDB) {
JDBCDataSource ds = new JDBCDataSource();
String testname = testInfo.getDisplayName().replace(':', '-').replace(' ', '_');
ds.setUrl(
"jdbc:hsqldb:file:./target/unittest-hsqldb_"
+ testname
+ "_"
+ System.currentTimeMillis()
+ "/db;shutdown=true");
datasource = ds;
initDB("initdb250nl.sql");
initDB("initdb100nl.sql");
initDB("initdb50nl.sql");
initDB("initdb10nl.sql");
GeometryJdbcConverter gjc =
GeometryJdbcConverterFactory.getGeometryJdbcConverter(datasource.getConnection());
run = new QueryRunner(datasource, gjc.isPmdKnownBroken());
}
}
/** Log de naam<SUF>*/
@AfterEach
public void endTest(TestInfo testInfo) {
LOG.info("==== Einde test methode: " + testInfo.getDisplayName());
}
private void initDB(String file) throws IOException {
try {
Reader f = new InputStreamReader(TestUtil.class.getResourceAsStream(file));
executeScript(f);
} catch (SQLException sqle) {
LOG.error("Error initializing testdb:", sqle);
}
}
public void executeScript(Reader f) throws IOException, SQLException {
try (Connection conn = datasource.getConnection()) {
ScriptRunner sr = new ScriptRunner(conn, true, true);
sr.runScript(f);
conn.commit();
}
}
}
|
208816_1 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.6.0.
* Gegenereerd op: Tue Jan 15 12:53:52 CET 2013.
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/BRP/branches/brp-stappen-refactoring/model/src/main/java/nl/bzk/brp/model/logisch/kern/basis/PersoonVoornaamBasis.java | 747 | /**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.6.0.
* Gegenereerd op: Tue Jan 15 12:53:52 CET 2013.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een<SUF>*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|
208816_2 | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.6.0.
* Gegenereerd op: Tue Jan 15 12:53:52 CET 2013.
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
| MinBZK/OperatieBRP | 2013/brp 2013-02-07/BRP/branches/brp-stappen-refactoring/model/src/main/java/nl/bzk/brp/model/logisch/kern/basis/PersoonVoornaamBasis.java | 747 | /**
* Retourneert Persoon van Persoon \ Voornaam.
*
* @return Persoon.
*/ | block_comment | nl | /**
* This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations).
* It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation.
* The project of which this file is part, may be found at https://github.com/MinBZK/operatieBRP.
*/
package nl.bzk.brp.model.logisch.kern.basis;
import nl.bzk.brp.model.algemeen.attribuuttype.kern.Volgnummer;
import nl.bzk.brp.model.basis.ObjectType;
import nl.bzk.brp.model.logisch.kern.Persoon;
import nl.bzk.brp.model.logisch.kern.PersoonVoornaamStandaardGroep;
/**
* Voornaam van een Persoon
*
* Voornamen worden in de BRP los van elkaar geregistreerd. Het LO BRP is voorbereid op het kunnen vastleggen van
* voornamen zoals 'Jan Peter', 'Aberto di Maria' of 'Wonder op aarde' als ��n enkele voornaam. In de BRP is het
* namelijk niet noodzakelijk (conform LO 3.x) om de verschillende woorden aan elkaar te plakken met een koppelteken.
*
* Het gebruik van de spatie als koppelteken is echter (nog) niet toegestaan.
*
* Indien er sprake is van een namenreeks wordt dit opgenomen als geslachtsnaam; er is dan geen sprake van een Voornaam.
*
* Een voornaam mag voorlopig nog geen spatie bevatten.
* Hiertoe dient eerst de akten van burgerlijke stand aangepast te worden (zodat voornamen individueel kunnen worden
* vastgelegd, en er geen interpretatie meer nodig is van de ambtenaar over waar de ene voornaam eindigt en een tweede
* begint).
* Daarnaast is er ook nog geen duidelijkheid over de wijze waarop bestaande namen aangepast kunnen worden: kan de
* burger hier simpelweg om verzoeken en wordt het dan aangepast?
*
* De BRP is wel al voorbereid op het kunnen bevatten van spaties.
* RvdP 5 augustus 2011
*
*
*
* Generator: nl.bzk.brp.generatoren.java.LogischModelGenerator.
* Generator versie: 1.0-SNAPSHOT.
* Metaregister versie: 1.6.0.
* Gegenereerd op: Tue Jan 15 12:53:52 CET 2013.
*/
public interface PersoonVoornaamBasis extends ObjectType {
/**
* Retourneert Persoon van<SUF>*/
Persoon getPersoon();
/**
* Retourneert Volgnummer van Persoon \ Voornaam.
*
* @return Volgnummer.
*/
Volgnummer getVolgnummer();
/**
* Retourneert Standaard van Persoon \ Voornaam.
*
* @return Standaard.
*/
PersoonVoornaamStandaardGroep getStandaard();
}
|