2019-11-29 20:33:42 +01:00
|
|
|
package envoy.client;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.FileInputStream;
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.ObjectInputStream;
|
|
|
|
import java.io.ObjectOutputStream;
|
|
|
|
import java.time.Instant;
|
|
|
|
import java.util.ArrayList;
|
2019-12-14 10:53:20 +01:00
|
|
|
import java.util.HashMap;
|
2019-11-29 20:33:42 +01:00
|
|
|
import java.util.List;
|
2019-12-14 10:53:20 +01:00
|
|
|
import java.util.Map;
|
2019-11-29 20:33:42 +01:00
|
|
|
import java.util.logging.Logger;
|
|
|
|
|
|
|
|
import javax.xml.datatype.DatatypeConfigurationException;
|
|
|
|
import javax.xml.datatype.DatatypeFactory;
|
|
|
|
|
2019-12-07 11:22:47 +01:00
|
|
|
import envoy.client.event.EventBus;
|
|
|
|
import envoy.client.event.MessageCreationEvent;
|
2019-12-20 11:59:11 +01:00
|
|
|
import envoy.client.util.EnvoyLog;
|
2019-11-29 20:33:42 +01:00
|
|
|
import envoy.exception.EnvoyException;
|
|
|
|
import envoy.schema.Message;
|
|
|
|
import envoy.schema.Message.Metadata.MessageState;
|
|
|
|
import envoy.schema.ObjectFactory;
|
|
|
|
import envoy.schema.Sync;
|
|
|
|
import envoy.schema.User;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Project: <strong>envoy-client</strong><br>
|
|
|
|
* File: <strong>LocalDB.java</strong><br>
|
|
|
|
* Created: <strong>27.10.2019</strong><br>
|
|
|
|
*
|
|
|
|
* @author Kai S. K. Engelbart
|
|
|
|
* @author Maximilian Käfer
|
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
public class LocalDB {
|
|
|
|
|
2019-12-14 11:30:00 +01:00
|
|
|
private File localDBDir, localDBFile, usersFile;
|
|
|
|
private User user;
|
2019-12-14 10:53:20 +01:00
|
|
|
private Map<String, User> users = new HashMap<>();
|
2019-12-14 11:30:00 +01:00
|
|
|
private List<Chat> chats = new ArrayList<>();
|
2019-12-14 08:44:03 +01:00
|
|
|
|
2019-11-29 20:33:42 +01:00
|
|
|
private ObjectFactory objectFactory = new ObjectFactory();
|
|
|
|
private DatatypeFactory datatypeFactory;
|
|
|
|
|
|
|
|
private Sync unreadMessagesSync = objectFactory.createSync();
|
|
|
|
private Sync sync = objectFactory.createSync();
|
|
|
|
private Sync readMessages = objectFactory.createSync();
|
|
|
|
|
2019-12-20 12:30:53 +01:00
|
|
|
private static final Logger logger = EnvoyLog.getLogger(LocalDB.class.getSimpleName());
|
2019-12-07 11:22:47 +01:00
|
|
|
|
2019-11-29 20:33:42 +01:00
|
|
|
/**
|
2019-12-14 08:44:03 +01:00
|
|
|
* Constructs an empty local database. To serialize any chats to the file
|
2019-12-20 12:53:40 +01:00
|
|
|
* system, call {@link LocalDB#initializeDBFile()}.
|
2019-11-29 20:33:42 +01:00
|
|
|
*
|
2019-12-14 11:30:00 +01:00
|
|
|
* @param localDBDir the directory in which to store users and chats
|
2019-12-20 20:25:54 +01:00
|
|
|
* @throws IOException if the LocalDB could not be initialized
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
2019-12-14 10:53:20 +01:00
|
|
|
public LocalDB(File localDBDir) throws IOException {
|
|
|
|
this.localDBDir = localDBDir;
|
2019-12-14 11:30:00 +01:00
|
|
|
|
2019-11-29 20:33:42 +01:00
|
|
|
try {
|
|
|
|
datatypeFactory = DatatypeFactory.newInstance();
|
|
|
|
} catch (DatatypeConfigurationException e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
2019-12-14 11:30:00 +01:00
|
|
|
|
2019-12-14 10:53:20 +01:00
|
|
|
// Initialize local database directory
|
|
|
|
if (localDBDir.exists() && !localDBDir.isDirectory())
|
|
|
|
throw new IOException(String.format("LocalDBDir '%s' is not a directory!", localDBDir.getAbsolutePath()));
|
2019-12-14 11:30:00 +01:00
|
|
|
usersFile = new File(localDBDir, "users.db");
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-12-14 11:30:00 +01:00
|
|
|
* Creates a database file for a user-specific list of chats.
|
2019-11-29 20:33:42 +01:00
|
|
|
*
|
2019-12-14 11:30:00 +01:00
|
|
|
* @throws NullPointerException if the client user is not yet specified
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
2019-12-14 11:30:00 +01:00
|
|
|
public void initializeDBFile() {
|
2019-12-14 08:44:03 +01:00
|
|
|
if (user == null) throw new NullPointerException("Client user is null");
|
2019-12-14 11:30:00 +01:00
|
|
|
localDBFile = new File(localDBDir, user.getID() + ".db");
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
|
2019-11-23 09:20:54 +01:00
|
|
|
/**
|
2019-12-14 11:30:00 +01:00
|
|
|
* Stores all users to the local database. If the client user is specified, the
|
|
|
|
* chats related to this user are stored as well.
|
2019-11-29 20:33:42 +01:00
|
|
|
*
|
|
|
|
* @throws IOException if something went wrong during saving
|
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
2019-12-14 08:44:03 +01:00
|
|
|
public void save() throws IOException {
|
|
|
|
// Save users
|
|
|
|
write(usersFile, users);
|
|
|
|
|
|
|
|
// Save chats
|
|
|
|
write(localDBFile, chats);
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
|
2019-12-14 11:30:00 +01:00
|
|
|
/**
|
|
|
|
* Loads all users that are stored in the local database.
|
2019-12-20 20:25:54 +01:00
|
|
|
*
|
2019-12-14 11:30:00 +01:00
|
|
|
* @throws EnvoyException if the loading process failed
|
|
|
|
* @since Envoy v0.2-alpha
|
|
|
|
*/
|
2019-12-14 08:44:03 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
2019-12-14 11:30:00 +01:00
|
|
|
public void loadUsers() throws EnvoyException { users = read(usersFile, HashMap.class); }
|
2019-12-14 08:44:03 +01:00
|
|
|
|
2019-11-23 09:20:54 +01:00
|
|
|
/**
|
2019-11-29 20:33:42 +01:00
|
|
|
* Loads all chats saved by Envoy for the client user.
|
|
|
|
*
|
2019-12-14 11:30:00 +01:00
|
|
|
* @throws EnvoyException if the loading process failed
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
@SuppressWarnings("unchecked")
|
2019-12-14 11:30:00 +01:00
|
|
|
public void loadChats() throws EnvoyException { chats = read(localDBFile, ArrayList.class); }
|
2019-12-14 08:44:03 +01:00
|
|
|
|
2019-12-14 11:30:00 +01:00
|
|
|
private <T> T read(File file, Class<T> serializedClass) throws EnvoyException {
|
|
|
|
if (file == null) throw new NullPointerException("File is null");
|
2019-12-14 08:44:03 +01:00
|
|
|
try (ObjectInputStream in = new ObjectInputStream(new FileInputStream(file))) {
|
|
|
|
return serializedClass.cast(in.readObject());
|
2019-11-29 20:33:42 +01:00
|
|
|
} catch (ClassNotFoundException | IOException e) {
|
2019-12-14 11:30:00 +01:00
|
|
|
throw new EnvoyException("Could not load serialized object", e);
|
2019-12-14 08:44:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private <T> void write(File file, T obj) throws IOException {
|
|
|
|
if (file == null) throw new NullPointerException("File is null");
|
2019-12-14 11:30:00 +01:00
|
|
|
if (obj == null) throw new NullPointerException("Object to serialize is null");
|
2019-12-14 08:44:03 +01:00
|
|
|
if (!file.exists()) {
|
|
|
|
file.getParentFile().mkdirs();
|
|
|
|
file.createNewFile();
|
|
|
|
}
|
|
|
|
try (ObjectOutputStream out = new ObjectOutputStream(new FileOutputStream(file))) {
|
|
|
|
out.writeObject(obj);
|
|
|
|
} catch (IOException e) {
|
|
|
|
throw e;
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-23 09:20:54 +01:00
|
|
|
/**
|
2019-11-29 20:33:42 +01:00
|
|
|
* Creates a {@link Message} object serializable to XML.
|
2019-12-07 11:22:47 +01:00
|
|
|
*
|
2019-11-29 20:33:42 +01:00
|
|
|
* @param textContent The content (text) of the message
|
2019-12-07 14:50:20 +01:00
|
|
|
* @param recipientID The recipient of the message
|
2019-11-29 20:33:42 +01:00
|
|
|
* @return prepared {@link Message} object
|
2019-11-29 20:48:21 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
2019-11-29 20:33:42 +01:00
|
|
|
*/
|
2019-12-07 14:50:20 +01:00
|
|
|
public Message createMessage(String textContent, long recipientID) {
|
2019-11-29 20:33:42 +01:00
|
|
|
Message.Metadata metaData = objectFactory.createMessageMetadata();
|
2019-12-14 08:44:03 +01:00
|
|
|
metaData.setSender(user.getID());
|
2019-12-07 14:50:20 +01:00
|
|
|
metaData.setRecipient(recipientID);
|
2019-11-29 20:33:42 +01:00
|
|
|
metaData.setState(MessageState.WAITING);
|
|
|
|
metaData.setDate(datatypeFactory.newXMLGregorianCalendar(Instant.now().toString()));
|
|
|
|
|
|
|
|
Message.Content content = objectFactory.createMessageContent();
|
|
|
|
content.setType("text");
|
|
|
|
content.setText(textContent);
|
|
|
|
|
|
|
|
Message message = objectFactory.createMessage();
|
|
|
|
message.setMetadata(metaData);
|
|
|
|
message.getContent().add(content);
|
|
|
|
|
|
|
|
return message;
|
|
|
|
}
|
|
|
|
|
2019-12-14 08:44:03 +01:00
|
|
|
/**
|
2019-12-07 11:22:47 +01:00
|
|
|
* Creates a {@link Sync} object filled with the changes that occurred to the
|
|
|
|
* local database since the last synchronization.
|
2019-12-20 20:25:54 +01:00
|
|
|
*
|
2019-12-07 11:22:47 +01:00
|
|
|
* @param userId the ID of the user that is synchronized by this client
|
|
|
|
* @return {@link Sync} object filled with the current changes
|
2019-12-14 08:44:03 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
2019-12-07 11:22:47 +01:00
|
|
|
*/
|
2019-11-29 20:33:42 +01:00
|
|
|
public Sync fillSync(long userId) {
|
|
|
|
addWaitingMessagesToSync();
|
|
|
|
|
|
|
|
sync.getMessages().addAll(readMessages.getMessages());
|
|
|
|
readMessages.getMessages().clear();
|
|
|
|
|
2019-12-07 10:44:25 +01:00
|
|
|
logger.finest(String.format("Filled sync with %d messages.", sync.getMessages().size()));
|
2019-11-29 20:33:42 +01:00
|
|
|
return sync;
|
|
|
|
}
|
|
|
|
|
2019-12-07 11:22:47 +01:00
|
|
|
/**
|
|
|
|
* Applies the changes carried by a {@link Sync} object to the local database
|
2019-12-20 20:25:54 +01:00
|
|
|
*
|
2019-12-07 11:22:47 +01:00
|
|
|
* @param returnSync the {@link Sync} object to apply
|
2019-12-14 08:44:03 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
2019-11-23 09:20:54 +01:00
|
|
|
*/
|
2019-11-29 20:33:42 +01:00
|
|
|
public void applySync(Sync returnSync) {
|
|
|
|
for (int i = 0; i < returnSync.getMessages().size(); i++) {
|
|
|
|
|
2019-12-07 11:22:47 +01:00
|
|
|
// The message has an ID
|
|
|
|
if (returnSync.getMessages().get(i).getMetadata().getMessageId() != 0) {
|
2019-11-29 20:33:42 +01:00
|
|
|
|
2019-12-07 11:22:47 +01:00
|
|
|
// Messages are processes differently corresponding to their state
|
|
|
|
switch (returnSync.getMessages().get(i).getMetadata().getState()) {
|
|
|
|
case SENT:
|
|
|
|
// Update previously waiting and now sent messages that were assigned an ID by
|
|
|
|
// the server
|
|
|
|
sync.getMessages().get(i).getMetadata().setMessageId(returnSync.getMessages().get(i).getMetadata().getMessageId());
|
|
|
|
sync.getMessages().get(i).getMetadata().setState(returnSync.getMessages().get(i).getMetadata().getState());
|
|
|
|
break;
|
|
|
|
case RECEIVED:
|
|
|
|
if (returnSync.getMessages().get(i).getMetadata().getSender() != 0) {
|
|
|
|
// these are the unread Messages from the server
|
|
|
|
unreadMessagesSync.getMessages().add(returnSync.getMessages().get(i));
|
2019-11-29 20:33:42 +01:00
|
|
|
|
2019-12-07 11:22:47 +01:00
|
|
|
// Create and dispatch message creation event
|
|
|
|
EventBus.getInstance().dispatch(new MessageCreationEvent(returnSync.getMessages().get(i)));
|
|
|
|
} else {
|
|
|
|
// Update Messages in localDB to state RECEIVED
|
|
|
|
for (Chat chat : getChats())
|
|
|
|
if (chat.getRecipient().getID() == returnSync.getMessages().get(i).getMetadata().getRecipient())
|
|
|
|
for (int j = 0; j < chat.getModel().getSize(); j++)
|
|
|
|
if (chat.getModel().get(j).getMetadata().getMessageId() == returnSync.getMessages()
|
|
|
|
.get(i)
|
|
|
|
.getMetadata()
|
|
|
|
.getMessageId())
|
|
|
|
chat.getModel().get(j).getMetadata().setState(returnSync.getMessages().get(i).getMetadata().getState());
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
2019-12-07 11:22:47 +01:00
|
|
|
break;
|
|
|
|
case READ:
|
|
|
|
// Update local Messages to state READ
|
|
|
|
logger.info("Message with ID: " + returnSync.getMessages().get(i).getMetadata().getMessageId()
|
|
|
|
+ "was initialized to be set to READ in localDB.");
|
|
|
|
for (Chat chat : getChats())
|
|
|
|
if (chat.getRecipient().getID() == returnSync.getMessages().get(i).getMetadata().getRecipient()) {
|
|
|
|
logger.info("Chat with: " + chat.getRecipient().getID() + "was selected.");
|
|
|
|
for (int k = 0; k < chat.getModel().getSize(); k++)
|
|
|
|
if (chat.getModel().get(k).getMetadata().getMessageId() == returnSync.getMessages()
|
|
|
|
.get(i)
|
|
|
|
.getMetadata()
|
|
|
|
.getMessageId()) {
|
|
|
|
logger.info("Message with ID: " + chat.getModel().get(k).getMetadata().getMessageId() + "was selected.");
|
|
|
|
chat.getModel().get(k).getMetadata().setState(returnSync.getMessages().get(i).getMetadata().getState());
|
|
|
|
logger.info("Message State is now: " + chat.getModel().get(k).getMetadata().getState());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Updating UserStatus of all users in LocalDB
|
2019-12-07 11:22:47 +01:00
|
|
|
for (User user : returnSync.getUsers())
|
|
|
|
for (Chat chat : getChats())
|
|
|
|
if (user.getID() == chat.getRecipient().getID()) {
|
|
|
|
chat.getRecipient().setStatus(user.getStatus());
|
|
|
|
logger.info(chat.getRecipient().getStatus().toString());
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sync.getMessages().clear();
|
|
|
|
sync.getUsers().clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds the unread messages returned from the server in the latest sync to the
|
|
|
|
* right chats in the LocalDB.
|
2019-12-07 11:22:47 +01:00
|
|
|
*
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
public void addUnreadMessagesToLocalDB() {
|
2019-12-07 11:22:47 +01:00
|
|
|
for (Message message : unreadMessagesSync.getMessages())
|
|
|
|
for (Chat chat : getChats())
|
|
|
|
if (message.getMetadata().getSender() == chat.getRecipient().getID()) {
|
|
|
|
chat.appendMessage(message);
|
|
|
|
break;
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes all messages with state {@code RECEIVED} of a specific chat to state
|
|
|
|
* {@code READ}.
|
|
|
|
* <br>
|
|
|
|
* Adds these messages to the {@code readMessages} {@link Sync} object.
|
2019-12-07 11:22:47 +01:00
|
|
|
*
|
2019-12-07 10:44:25 +01:00
|
|
|
* @param currentChat the {@link Chat} that was just opened
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
public void setMessagesToRead(Chat currentChat) {
|
|
|
|
for (int i = currentChat.getModel().size() - 1; i >= 0; --i)
|
|
|
|
if (currentChat.getModel().get(i).getMetadata().getRecipient() != currentChat.getRecipient().getID())
|
|
|
|
if (currentChat.getModel().get(i).getMetadata().getState() == MessageState.RECEIVED) {
|
|
|
|
currentChat.getModel().get(i).getMetadata().setState(MessageState.READ);
|
|
|
|
readMessages.getMessages().add(currentChat.getModel().get(i));
|
|
|
|
} else break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds all messages with state {@code WAITING} from the {@link LocalDB} to the
|
|
|
|
* {@link Sync} object.
|
2019-12-07 11:22:47 +01:00
|
|
|
*
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
private void addWaitingMessagesToSync() {
|
|
|
|
for (Chat chat : getChats())
|
|
|
|
for (int i = 0; i < chat.getModel().size(); i++)
|
|
|
|
if (chat.getModel().get(i).getMetadata().getState() == MessageState.WAITING) {
|
|
|
|
logger.info("Got Waiting Message");
|
|
|
|
sync.getMessages().add(chat.getModel().get(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clears the {@code unreadMessagesSync} {@link Sync} object.
|
2019-12-07 11:22:47 +01:00
|
|
|
*
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
*/
|
|
|
|
public void clearUnreadMessagesSync() { unreadMessagesSync.getMessages().clear(); }
|
|
|
|
|
2019-12-14 08:44:03 +01:00
|
|
|
/**
|
2019-12-14 11:30:00 +01:00
|
|
|
* @return a {@code Map<String, User>} of all users stored locally with their user names as keys
|
|
|
|
* @since Envoy v0.2-alpha
|
2019-12-14 08:44:03 +01:00
|
|
|
*/
|
2019-12-14 10:53:20 +01:00
|
|
|
public Map<String, User> getUsers() { return users; }
|
2019-12-14 08:44:03 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param users the users to set
|
|
|
|
*/
|
2019-12-14 10:53:20 +01:00
|
|
|
public void setUsers(Map<String, User> users) { this.users = users; }
|
2019-12-14 08:44:03 +01:00
|
|
|
|
2019-11-29 20:33:42 +01:00
|
|
|
/**
|
2019-12-07 11:22:47 +01:00
|
|
|
* @return all saved {@link Chat} objects that list the client user as the
|
|
|
|
* sender
|
2019-11-29 20:33:42 +01:00
|
|
|
* @since Envoy v0.1-alpha
|
|
|
|
**/
|
|
|
|
public List<Chat> getChats() { return chats; }
|
|
|
|
|
2019-12-14 08:44:03 +01:00
|
|
|
/**
|
|
|
|
* @param chats the chats to set
|
|
|
|
*/
|
|
|
|
public void setChats(List<Chat> chats) { this.chats = chats; }
|
|
|
|
|
2019-11-29 20:33:42 +01:00
|
|
|
/**
|
|
|
|
* @return the {@link User} who initialized the local database
|
2019-12-14 08:44:03 +01:00
|
|
|
* @since Envoy v0.2-alpha
|
|
|
|
*/
|
|
|
|
public User getUser() { return user; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param user the user to set
|
|
|
|
* @since Envoy v0.2-alpha
|
2019-11-23 09:20:54 +01:00
|
|
|
*/
|
2019-12-14 08:44:03 +01:00
|
|
|
public void setUser(User user) { this.user = user; }
|
2019-11-29 20:33:42 +01:00
|
|
|
}
|