Update lanterna, fix bugs, implement save...
[jvcard.git] / src / be / nikiroo / jvcard / Card.java
index 65ab6fa5225b91fdacdd3430fdc52abdbb317395..e82ce7cc933ebb864a2b7b405875d09865d12cf9 100644 (file)
@@ -6,6 +6,7 @@ import java.io.File;
 import java.io.FileReader;
 import java.io.FileWriter;
 import java.io.IOException;
+import java.util.ArrayList;
 import java.util.Arrays;
 import java.util.LinkedList;
 import java.util.List;
@@ -25,9 +26,11 @@ public class Card {
        private File file;
        private boolean dirty;
        private String name;
+       private Format format;
 
        public Card(File file, Format format) throws IOException {
                this.file = file;
+               this.format = format;
 
                if (file != null) {
                        name = file.getName();
@@ -39,15 +42,42 @@ public class Card {
                                .readLine()) {
                        lines.add(line);
                }
+               buffer.close();
 
                load(lines, format);
-               dirty = false; // initial load, so no change yet
+               dirty = false; // initial load, so no change yet, so no need to call
+                                               // setPristine()
        }
 
-       public List<Contact> getContacts() {
+       /**
+        * Return the full list of {@link Contact}s. Please use responsibly (this is
+        * the original list, do not modify the list itself).
+        * 
+        * @return the list of {@link Contact}s
+        */
+       public List<Contact> getContactsList() {
                return contacts;
        }
 
+       /**
+        * Return the list of {@link Contact}s. Note that this list is a copy.
+        * 
+        * @return the list of {@link Contact}s
+        */
+       public List<Contact> getContacts() {
+               ArrayList<Contact> list = new ArrayList<Contact>(size());
+               list.addAll(contacts);
+               return list;
+       }
+
+       public int size() {
+               return contacts.size();
+       }
+
+       public Contact get(int index) {
+               return contacts.get(index);
+       }
+
        public boolean saveAs(File file, Format format) throws IOException {
                if (file == null)
                        return false;
@@ -57,13 +87,13 @@ public class Card {
                writer.close();
 
                if (file.equals(this.file)) {
-                       dirty = false;
+                       setPristine();
                }
 
                return true;
        }
 
-       public boolean save(Format format, boolean bKeys) throws IOException {
+       public boolean save() throws IOException {
                return saveAs(file, format);
        }
 
@@ -109,4 +139,15 @@ public class Card {
        void setDirty() {
                dirty = true;
        }
+
+       /**
+        * Notify this element <i>and all its descendants</i> that it is in pristine
+        * state (as opposed to dirty).
+        */
+       void setPristine() {
+               dirty = false;
+               for (Contact contact : contacts) {
+                       contact.setPristine();
+               }
+       }
 }