1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
|
/*
* Folder.java
* Copyright (C) 2002, 2004 The Free Software Foundation
*
* This file is part of GNU JavaMail, a library.
*
* GNU JavaMail is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* GNU JavaMail 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* As a special exception, if you link this library with other files to
* produce an executable, this library does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* This exception does not however invalidate any other reasons why the
* executable file might be covered by the GNU General Public License.
*/
package javax.mail;
import java.util.ArrayList;
import javax.mail.event.ConnectionEvent;
import javax.mail.event.ConnectionListener;
import javax.mail.event.FolderEvent;
import javax.mail.event.FolderListener;
import javax.mail.event.MailEvent;
import javax.mail.event.MessageChangedEvent;
import javax.mail.event.MessageChangedListener;
import javax.mail.event.MessageCountEvent;
import javax.mail.event.MessageCountListener;
import javax.mail.search.SearchTerm;
/**
* Folder is an abstract class that represents a folder for mail messages.
* Subclasses implement protocol specific Folders.
* <p>
* Folders can contain Messages, other Folders or both, thus providing a
* tree-like hierarchy rooted at the Store's default folder.
* (Note that some Folder implementations may not allow both Messages and
* other Folders in the same Folder).
* <p>
* The interpretation of folder names is implementation dependent.
* The different levels of hierarchy in a folder's full name are separated
* from each other by the hierarchy delimiter character.
* <p>
* The case-insensitive full folder name (that is, the full name relative
* to the default folder for a Store) INBOX is reserved to mean the
* "primary folder for this user on this server". Not all Stores will
* provide an INBOX folder, and not all users will have an INBOX folder
* at all times. The name INBOX is reserved to refer to this folder, when
* it exists, in Stores that provide it.
* <p>
* A Folder object obtained from a Store need not actually exist in the
* backend store. The <code>exists()</code> method tests whether the folder
* exists or not. The <code>create()</code> method creates a Folder.
* <p>
* A Folder is initially in the closed state.
* Certain methods are valid in this state; the documentation for those
* methods note this. A Folder is opened by calling its 'open' method.
* All Folder methods, except <code>open()</code>, <code>delete()</code>
* and <code>renameTo()</code>, are valid in this state.
* <p>
* The only way to get a Folder is by invoking the <code>getFolder()</code>
* method on Store or Folder, or by invoking the <code>list()</code> or
* <code>listSubscribed()</code> methods on Folder. Folder objects
* returned by the above methods are not cached by the Store. Thus,
* invoking <code>getFolder(folder_name)</code> on the same
* <code>folder_name</code> multiple times will return distinct Folder
* objects. Likewise for <code>list()</code> and
* <code>listSubscribed()</code>.
* <p>
* The Message objects within the Folder are cached by the Folder.
* Thus, invoking <code>getMessage(msgno)</code> on the same message number
* multiple times will return the same Message object, until an expunge
* is done on this Folder.
* <p>
* Note that a Message's message number can change within a session if the
* containing Folder is expunged using the expunge method. Clients that use
* message numbers as references to messages should be aware of this and
* should be prepared to deal with situation (probably by flushing out
* existing message number references and reloading them).
* Because of this complexity, it is better for clients to use Message
* objects as references to messages, rather than message numbers.
* Expunged Message objects still have to be pruned, but other Message
* objects in that folder are not affected by the expunge.
*
* @author <a href="mailto:dog@gnu.org">Chris Burdess</a>
* @version 1.3
*/
public abstract class Folder
{
/**
* This folder can contain messages.
*/
public static final int HOLDS_MESSAGES = 1;
/**
* This folder can contain other folders.
*/
public static final int HOLDS_FOLDERS = 2;
/**
* The Folder is read only.
* The state and contents of this folder cannot be modified.
*/
public static final int READ_ONLY = 1;
/**
* The state and contents of this folder can be modified.
*/
public static final int READ_WRITE = 2;
/**
* The parent store.
*/
protected Store store;
/**
* The open mode of this folder.
* The open mode is Folder.READ_ONLY, Folder.READ_WRITE, or -1 if not known.
*/
protected int mode = -1;
// -- Event listener lists --
private volatile ArrayList connectionListeners = null;
private volatile ArrayList folderListeners = null;
private volatile ArrayList messageCountListeners = null;
private volatile ArrayList messageChangedListeners = null;
/**
* Constructor that takes a Store object.
* @param store the Store that holds this folder
*/
protected Folder(Store store)
{
this.store = store;
}
/**
* Returns the name of this Folder.
* <p>
* This method can be invoked on a closed Folder.
*/
public abstract String getName();
/**
* Returns the full name of this Folder.
* If the folder resides under the root hierarchy of this Store,
* the returned name is relative to the root.
* Otherwise an absolute name, starting with the hierarchy delimiter,
* is returned.
* <p>
* This method can be invoked on a closed Folder.
*/
public abstract String getFullName();
/**
* Return a URLName representing this folder.
* The returned URLName does not include the password
* used to access the store.
*/
public URLName getURLName()
throws MessagingException
{
URLName url = getStore().getURLName();
String name = getFullName();
return new URLName(url.getProtocol(),
url.getHost(), url.getPort(), name,
url.getUsername(), null);
}
/**
* Returns the Store that owns this Folder object.
* This method can be invoked on a closed Folder.
*/
public Store getStore()
{
return store;
}
/**
* Returns the parent folder of this folder.
* This method can be invoked on a closed Folder.
* If this folder is the top of a folder hierarchy, this method returns
* null.
* <p>
* Note that since Folder objects are not cached, invoking this method
* returns a new distinct Folder object.
*/
public abstract Folder getParent()
throws MessagingException;
/**
* Indicates if this folder physically exists on the Store.
* This method can be invoked on a closed Folder.
*/
public abstract boolean exists()
throws MessagingException;
/**
* Returns a list of Folders belonging to this Folder's namespace
* that match the specified pattern.
* Patterns may contain the wildcard characters "%",
* which matches any character except hierarchy delimiters, and "*",
* which matches any character.
* <p>
* As an example, given the folder hierarchy:
* <pre>
Personal/
Finance/
Stocks
Bonus
StockOptions
Jokes
</pre>
* list("*") on "Personal" will return the whole hierarchy.<br>
* list("%") on "Personal" will return "Finance" and "Jokes".<br>
* list("Jokes") on "Personal" will return "Jokes".<br>
* list("Stock*") on "Finance" will return "Stocks" and "StockOptions".
* <p>
* Folder objects are not cached by the Store, so invoking this method
* on the same pattern multiple times will return that many distinct
* Folder objects.
* <p>
* This method can be invoked on a closed Folder.
* @param pattern the match pattern
*/
public abstract Folder[] list(String pattern)
throws MessagingException;
/**
* Returns a list of subscribed Folders belonging to
* this Folder's namespace that match the specified pattern.
* If the folder does not support subscription, this method should
* resolve to <code>list</code>.
* (The default implementation provided here, does just this).
* The pattern can contain wildcards as for list.
* <p>
* Folder objects are not cached by the Store, so invoking this method
* on the same pattern multiple times will return that many distinct
* Folder objects.
* <p>
* This method can be invoked on a closed Folder.
* @param pattern the match pattern
*/
public Folder[] listSubscribed(String pattern)
throws MessagingException
{
return list(pattern);
}
/**
* Convenience method that returns the list of folders under this Folder.
* This method just calls the <code>list(String pattern)</code> method
* with "%" as the match pattern.
* This method can be invoked on a closed Folder.
*/
public Folder[] list()
throws MessagingException
{
return list("%");
}
/**
* Convenience method that returns the list of subscribed folders
* under this Folder.
* This method just calls the <code>listSubscribed(String pattern)</code>
* method with "%" as the match pattern.
* This method can be invoked on a closed Folder.
*/
public Folder[] listSubscribed()
throws MessagingException
{
return listSubscribed("%");
}
/**
* Return the delimiter character that separates this Folder's pathname
* from the names of immediate subfolders.
* This method can be invoked on a closed Folder.
*/
public abstract char getSeparator()
throws MessagingException;
/**
* Returns the type of this Folder, that is, whether this folder can hold
* messages or subfolders or both.
* The returned value is an integer bitfield with the appropriate bits set.
* This method can be invoked on a closed folder.
*/
public abstract int getType()
throws MessagingException;
/**
* Create this folder on the Store.
* When this folder is created, any folders in its path
* that do not exist are also created.
* <p>
* If the creation is successful, a CREATED FolderEvent is delivered
* to any FolderListeners registered on this Folder and this Store.
* @param type The type of this folder.
*/
public abstract boolean create(int type)
throws MessagingException;
/**
* Returns true if this Folder is subscribed.
* <p>
* This method can be invoked on a closed Folder.
* <p>
* The default implementation provided here just returns true.
*/
public boolean isSubscribed()
{
return true;
}
/**
* Subscribe or unsubscribe this Folder.
* Not all Stores support subscription.
* <p>
* This method can be invoked on a closed Folder.
* <p>
* The implementation provided here just throws the
* MethodNotSupportedException.
*/
public void setSubscribed(boolean flag)
throws MessagingException
{
throw new MethodNotSupportedException();
}
/**
* Returns true if this Folder has new messages since the last time
* this indication was reset.
* When this indication is set or reset depends on the Folder
* implementation (and in the case of IMAP, depends on the server).
* This method can be used to implement a lightweight "check for new mail"
* operation on a Folder without opening it. (For example, a thread that
* monitors a mailbox and flags when it has new mail.) This method should
* indicate whether any messages in the Folder have the RECENT flag set.
* <p>
* Note that this is not an incremental check for new mail, i.e., it
* cannot be used to determine whether any new messages have arrived since
* the last time this method was invoked. To implement incremental checks,
* the Folder needs to be opened.
* <p>
* This method can be invoked on a closed Folder that can contain Messages.
*/
public abstract boolean hasNewMessages()
throws MessagingException;
/**
* Return the Folder object corresponding to the given name.
* Note that this folder does not physically have to exist in the Store.
* The <code>exists()</code> method on a Folder indicates whether it
* really exists on the Store.
* <p>
* In some Stores, <code>name</code> can be an absolute path if it starts
* with the hierarchy delimiter. Otherwise, it is interpreted relative to
* this Folder.
* <p>
* Folder objects are not cached by the Store, so invoking this method on
* the same name multiple times will return that many distinct Folder
* objects.
* <p>
* This method can be invoked on a closed Folder.
* @param name name of the Folder
*/
public abstract Folder getFolder(String name)
throws MessagingException;
/**
* Delete this Folder.
* This method will succeed only on a closed Folder.
* <p>
* The <code>recurse</code> flag controls whether the deletion affects
* subfolders or not. If true, all subfolders are deleted, then this
* folder itself is deleted. If false, the behaviour is dependent on
* the folder type and is elaborated below:
* <ul>
* <li> The folder can contain only messages:
* (<code>type==HOLDS_MESSAGES</code>).
* All messages within the folder are removed. The folder itself is then
* removed. An appropriate FolderEvent is generated by the Store and this
* folder.
* <li> The folder can contain only subfolders:
* (<code>type==HOLDS_FOLDERS</code>).
* If this folder is empty (does not contain any subfolders at all), it is
* removed. An appropriate FolderEvent is generated by the Store and this
* folder.
* If this folder contains any subfolders, the delete fails and returns
* false.
* <li> The folder can contain subfolders as well as messages:
* If the folder is empty (no messages or subfolders), it is removed. If
* the folder contains no subfolders, but only messages, then all messages
* are removed. The folder itself is then removed. In both the above
* cases, an appropriate FolderEvent is generated by the Store and this
* folder.
* <p>
* If the folder contains subfolders there are 3 possible choices an
* implementation is free to do:
* <ol>
* <li> The operation fails, irrespective of whether this folder contains
* messages or not. Some implementations might elect to go with this
* simple approach. The <code>delete()</code> method returns false.
* <li> Any messages within the folder are removed. Subfolders are not
* removed. The folder itself is not removed or affected in any
* manner. The <code>delete()</code> method returns true.
* And the <code>exists()</code> method on this folder will return true
* indicating that this folder still exists.
* An appropriate FolderEvent is generated by the Store and this folder.
* <li> Any messages within the folder are removed. Subfolders are not
* removed. The folder itself changes its type from <code>HOLDS_FOLDERS |
* HOLDS_MESSAGES</code> to <code>HOLDS_FOLDERS</code>. Thus new messages
* cannot be added to this folder, but new subfolders can be created
* underneath. The <code>delete()</code> method returns true indicating
* success. The <code>exists()</code> method on this folder will return
* true indicating that this folder still exists.
* An appropriate FolderEvent is generated by the Store and this folder.
* @return true if the Folder is deleted successfully
* @exception FolderNotFoundException if this folder does not exist
* @exception IllegalStateException if this folder is not in the closed
* state.
*/
public abstract boolean delete(boolean recurse)
throws MessagingException;
/**
* Rename this Folder.
* This method will succeed only on a closed Folder.
* <p>
* If the rename is successful, a RENAMED FolderEvent is delivered to
* FolderListeners registered on this folder and its containing Store.
* @param folder a folder representing the new name for this Folder
* @return true if the Folder is renamed successfully
* @exception FolderNotFoundException if this folder does not exist
* @exception IllegalStateException if this folder is not in the closed
* state.
*/
public abstract boolean renameTo(Folder folder)
throws MessagingException;
/**
* Open this Folder.
* This method is valid only on Folders that can contain Messages and
* that are closed.
* <p>
* If this folder is opened successfully, an OPENED ConnectionEvent is
* delivered to any ConnectionListeners registered on this Folder.
* <p>
* The effect of opening multiple connections to the same folder on a
* specific Store is implementation dependent. Some implementations allow
* multiple readers, but only one writer. Others allow multiple writers
* as well as readers.
* @param mode open the Folder READ_ONLY or READ_WRITE
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not in the closed
* state.
*/
public abstract void open(int mode)
throws MessagingException;
/**
* Close this Folder.
* This method is valid only on open Folders.
* A CLOSED ConnectionEvent is delivered to any ConnectionListeners
* registered on this Folder. Note that the folder is closed even if
* this method terminates abnormally by throwing a MessagingException.
* @param expunge expunges all deleted messages if this flag is true
*/
public abstract void close(boolean expunge)
throws MessagingException;
/**
* Indicates whether this Folder is in the 'open' state.
*/
public abstract boolean isOpen();
/**
* Return the open mode of this folder.
* Returns <code>Folder.READ_ONLY</code>, <code>Folder.READ_WRITE</code>,
* or <code>-1</code> if the open mode is not known (usually only
* because an older Folder provider has not been updated to use this new
* method).
* @exception IllegalStateException if this folder is not open
*/
public int getMode()
{
if (!isOpen())
throw new IllegalStateException("Folder not open");
return mode;
}
/**
* Get the permanent flags supported by this Folder.
* Returns a Flags object that contains all the flags supported.
* <p>
* The special flag <code>Flags.USER</code> indicates that this Folder
* supports arbitrary user-defined flags.
* <p>
* The supported permanent flags for a folder may not be available
* until the folder is opened.
*/
public abstract Flags getPermanentFlags();
/**
* Get total number of messages in this Folder.
* <p>
* This method can be invoked on a closed folder.
* However, note that for some folder implementations, getting the
* total message count can be an expensive operation involving actually
* opening the folder. In such cases, a provider can choose not to
* support this functionality in the closed state, in which case this
* method must return -1.
* <p>
* Clients invoking this method on a closed folder must be aware that
* this is a potentially expensive operation.
* Clients must also be prepared to handle a return value of -1 in
* this case.
*/
public abstract int getMessageCount()
throws MessagingException;
/**
* Get the number of new messages in this Folder.
* <p>
* This method can be invoked on a closed folder.
* However, note that for some folder implementations, getting the
* new message count can be an expensive operation involving actually
* opening the folder. In such cases, a provider can choose not to
* support this functionality in the closed state, in which case this
* method must return -1.
* <p>
* Clients invoking this method on a closed folder must be aware that
* this is a potentially expensive operation.
* Clients must also be prepared to handle a return value of -1 in
* this case.
* <p>
* This implementation returns -1 if this folder is closed.
* Else this implementation gets each Message in the folder using
* <code>getMessage(int)</code> and checks whether its RECENT flag is
* set. The total number of messages that have this flag set is returned.
*/
public synchronized int getNewMessageCount()
throws MessagingException
{
if (!isOpen())
return -1;
int count = 0;
int total = getMessageCount();
for (int i=1; i<=total; i++)
{
try
{
if (getMessage(i).isSet(Flags.Flag.RECENT))
count++;
}
catch (MessageRemovedException e)
{
}
}
return count;
}
/**
* Get the total number of unread messages in this Folder.
* <p>
* This method can be invoked on a closed folder.
* However, note that for some folder implementations, getting the
* unread message count can be an expensive operation involving actually
* opening the folder. In such cases, a provider can choose not to
* support this functionality in the closed state, in which case this
* method must return -1.
* <p>
* Clients invoking this method on a closed folder must be aware that
* this is a potentially expensive operation.
* Clients must also be prepared to handle a return value of -1 in
* this case.
* <p>
* This implementation returns -1 if this folder is closed.
* Else this implementation gets each Message in the folder using
* <code>getMessage(int)</code> and checks whether its SEEN flag is
* set. The total number of messages that have this flag set is returned.
*/
public synchronized int getUnreadMessageCount()
throws MessagingException
{
if (!isOpen())
return -1;
int count = 0;
int total = getMessageCount();
for (int i=1; i<=total; i++)
{
try
{
if (!getMessage(i).isSet(Flags.Flag.SEEN))
count++;
}
catch (MessageRemovedException e)
{
}
}
return count;
}
/**
* Get the number of deleted messages in this folder.
* <p>
* This method can be invoked on a closed folder. However, note that for
* some folder implementations, getting the deleted message count can be
* an expensive operation involving actually opening the folder. In such
* cases, a provider can choose not to support this functionality in the
* closed state, in which case this method must return -1.
* <p>
* Clients invoking this method on a closed folder must be aware that this
* is a potentially expensive operation. Clients must also be prepared to
* handle a return value of -1 in this case.
* <p>
* This implementation returns -1 if this folder is closed. Otherwise,
* this implementation gets each Message in the folder using
* <code>getMessage(int)</code> and checks whether its
* <code>DELETED</code> flag is set. The total number of messages that
* have this flag is returned.
* @exception FolderNotFoundException if this folder does not exist
* @since JavaMail 1.3
*/
public synchronized int getDeletedMessageCount()
throws MessagingException
{
if (!isOpen())
return -1;
int count = 0;
int total = getMessageCount();
for (int i = 1; i <= total; i++)
{
try
{
if (!getMessage(i).isSet(Flags.Flag.DELETED))
count++;
}
catch (MessageRemovedException e)
{
}
}
return count;
}
/**
* Get the Message object corresponding to the given message number.
* A Message object's message number is the relative position of
* this Message in itsFolder. Messages are numbered starting at 1
* through the total number of message in the folder.
* Note that the message number for a particular Message can change
* during a session if other messages in the Folder are deleted and
* the Folder is expunged.
* <p>
* Message objects are light-weight references to the actual message that
* get filled up on demand. Hence Folder implementations are expected to
* provide light-weight Message objects.
* <p>
* Unlike Folder objects, repeated calls to getMessage with the same
* message number will return the same Message object, as long as no
* messages in this folder have been expunged.
* <p>
* Since message numbers can change within a session if the folder is
* expunged, clients are advised not to use message numbers as references
* to messages. Use Message objects instead.
* @param msgnum the message number
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not opened
* @exception IndexOutOfBoundsException if the message number is out of
* range.
*/
public abstract Message getMessage(int msgnum)
throws MessagingException;
/**
* Get the Message objects for message numbers ranging from
* <code>start</code> through <code>end</code>, both start and end
* inclusive. Note that message numbers start at 1, not 0.
* <p>
* Message objects are light-weight references to the actual message
* that get filled up on demand. Hence Folder implementations are expected
* to provide light-weight Message objects.
* <p>
* This implementation uses <code>getMessage(index)</code> to obtain the
* required Message objects. Note that the returned array must contain
* <code>(end-start+1)</code> Message objects.
* @param start the number of the first message
* @param end the number of the last message
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not opened.
* @exception IndexOutOfBoundsException if the start or end message
* numbers are out of range.
*/
public synchronized Message[] getMessages(int start, int end)
throws MessagingException
{
Message[] messages = new Message[(end-start)+1];
for (int i = start; i<=end; i++)
messages[i-start] = getMessage(i);
return messages;
}
/**
* Get the Message objects for message numbers specified in the array.
* <p>
* Message objects are light-weight references to the actual message
* that get filled up on demand. Hence Folder implementations are expected
* to provide light-weight Message objects.
* <p>
* This implementation uses <code>getMessage(index)</code> to obtain the
* required Message objects. Note that the returned array must contain
* <code>msgnums.length</code> Message objects.
* @param msgnums the array of message numbers
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not opened.
* @exception IndexOutOfBoundsException if any message number in the
* given array is out of range.
*/
public synchronized Message[] getMessages(int msgnums[])
throws MessagingException
{
int total = msgnums.length;
Message[] messages = new Message[total];
for(int i = 0; i<total; i++)
messages[i] = getMessage(msgnums[i]);
return messages;
}
/**
* Get all Message objects from this Folder.
* Returns an empty array if the folder is empty.
* Clients can use Message objects (instead of sequence numbers)
* as references to the messages within a folder; this method supplies
* the Message objects to the client.
* Folder implementations are expected to provide light-weight Message
* objects, which get filled on demand.
* <p>
* This implementation invokes <code>getMessageCount()</code> to get
* the current message count and then uses <code>getMessage()</code>
* to get Message objects from 1 till the message count.
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not opened.
*/
public synchronized Message[] getMessages()
throws MessagingException
{
if (!isOpen())
throw new IllegalStateException("Folder not open");
int total = getMessageCount();
Message[] messages = new Message[total];
for(int i = 1; i<=total; i++)
messages[i-1] = getMessage(i);
return messages;
}
/**
* Append given Messages to this folder.
* This method can be invoked on a closed Folder.
* An appropriate MessageCountEvent is delivered to any
* MessageCountListener registered on this folder when the messages arrive
* in the folder.
* <p>
* Folder implementations must not abort this operation if a Message in the
* given message array turns out to be an expunged Message.
* @param msgs array of Messages to be appended
* @exception FolderNotFoundException if this folder does not exist.
* @exception MessagingException if the append failed.
*/
public abstract void appendMessages(Message[] msgs)
throws MessagingException;
/**
* Prefetch the items specified in the FetchProfile for the given Messages.
* <p>
* Clients use this method to indicate that the specified items are needed
* en-masse for the given message range. Implementations are expected to
* retrieve these items for the given message range in a efficient manner.
* Note that this method is just a hint to the implementation to prefetch
* the desired items.
* <p>
* An example is a client filling its header-view window with the Subject,
* From and X-mailer headers for all messages in the folder.
* <pre>
Message[] msgs = folder.getMessages();
FetchProfile fp = new FetchProfile();
fp.add(FetchProfile.Item.ENVELOPE);
fp.add("X-mailer");
folder.fetch(msgs, fp);
for (int i = 0; i < folder.getMessageCount(); i++) {
display(msg[i].getFrom());
display(msg[i].getSubject());
display(msg[i].getHeader("X-mailer"));
}
</pre>
* The implementation provided here just returns without doing anything
* useful. Providers wanting to provide a real implementation for this
* method should override the method.
* @param msgs fetch items for these messages
* @param fp the FetchProfile
*/
public void fetch(Message[] msgs, FetchProfile fp)
throws MessagingException
{
}
/**
* Set the specified flags on the messages specified in the array.
* This will result in appropriate MessageChangedEvents being delivered
* to any MessageChangedListener registered on this Message's containing
* folder.
* <p>
* Note that the specified Message objects must belong to this folder.
* Certain Folder implementations can optimize the operation of setting
* Flags for a group of messages, so clients might want to use this
* method, rather than invoking <code>Message.setFlags</code> for each
* Message.
* <p>
* This implementation degenerates to invoking <code>setFlags()</code>
* on each Message object. Specific Folder implementations that can
* optimize this case should do so. Also, an implementation must not
* abort the operation if a Message in the array turns out to be an
* expunged Message.
* @param msgnums the array of message objects
* @param flag Flags object containing the flags to be set
* @param value set the flags to this boolean value
* @exception IllegalStateException if this folder is not opened or
* if it has been opened READ_ONLY.
*/
public synchronized void setFlags(Message[] msgs, Flags flag, boolean value)
throws MessagingException
{
for (int i = 0; i<msgs.length; i++)
{
try
{
msgs[i].setFlags(flag, value);
}
catch (MessageRemovedException e)
{
}
}
}
/**
* Set the specified flags on the messages numbered from <code>start</code>
* through <code>end</code>, both start and end inclusive.
* Note that message numbers start at 1, not 0.
* This will result in appropriate MessageChangedEvents being delivered
* to any MessageChangedListener registered on this Message's containing
* folder.
* <p>
* Certain Folder implementations can optimize the operation of setting
* Flags for a group of messages, so clients might want to use this method,
* rather than invoking <code>Message.setFlags</code> for each Message.
* <p>
* The default implementation uses <code>getMessage(int)</code> to get
* each Message object and then invokes <code>setFlags</code> on that
* object to set the flags. Specific Folder implementations that can
* optimize this case should do so. Also, an implementation must not abort
* the operation if a message number refers to an expunged message.
* @param start the number of the first message
* @param end the number of the last message
* @param flag Flags object containing the flags to be set
* @param value set the flags to this boolean value
* @exception IllegalStateException if this folder is not opened or if
* it has been opened READ_ONLY.
* @exception IndexOutOfBoundsException if the start or end message
* numbers are out of range.
*/
public synchronized void setFlags(int start, int end, Flags flag,
boolean value)
throws MessagingException
{
for (int i = start; i<=end; i++)
{
try
{
getMessage(i).setFlags(flag, value);
}
catch (MessageRemovedException e)
{
}
}
}
/**
* Set the specified flags on the messages whose message numbers
* are in the array.
* This will result in appropriate MessageChangedEvents being delivered
* to any MessageChangedListener registered on this Message's containing
* folder.
* <p>
* Certain Folder implementations can optimize the operation of setting
* Flags for a group of messages, so clients might want to use this method,
* rather than invoking <code>Message.setFlags</code> for each Message.
* <p>
* The default implementation uses <code>getMessage(int)</code> to get
* each Message object and then invokes <code>setFlags</code> on that
* object to set the flags. Specific Folder implementations that can
* optimize this case should do so. Also, an implementation must not abort
* the operation if a message number refers to an expunged message.
* @param msgnums the array of message numbers
* @param flag Flags object containing the flags to be set
* @param value set the flags to this boolean value
* @exception IllegalStateException if this folder is not opened or
* if it has been opened READ_ONLY.
* @exception IndexOutOfBoundsException if any message number in the
* given array is out of range.
*/
public synchronized void setFlags(int msgnums[], Flags flag, boolean value)
throws MessagingException
{
for (int i = 0; i<msgnums.length; i++)
{
try
{
getMessage(msgnums[i]).setFlags(flag, value);
}
catch (MessageRemovedException e)
{
}
}
}
/**
* Copy the specified Messages from this Folder into another Folder.
* This operation appends these Messages to the destination Folder.
* The destination Folder does not have to be opened.
* An appropriate MessageCountEvent is delivered to any
* MessageCountListener registered on the destination folder when the
* messages arrive in the folder.
* <p>
* Note that the specified Message objects must belong to this folder.
* Folder implementations might be able to optimize this method by doing
* server-side copies.
* <p>
* This implementation just invokes <code>appendMessages()</code> on the
* destination folder to append the given Messages.
* Specific folder implementations that support server-side copies should
* do so, if the destination folder's Store is the same as this folder's
* Store. Also, an implementation must not abort the operation if a
* Message in the array turns out to be an expunged Message.
* @param msgnums the array of message objects
* @param folder the folder to copy the messages to
*/
public void copyMessages(Message[] msgs, Folder folder)
throws MessagingException
{
if (!folder.exists())
throw new FolderNotFoundException("Folder does not exist", folder);
else
{
boolean isOpen = folder.isOpen();
if (!isOpen)
folder.open(Folder.READ_WRITE);
folder.appendMessages(msgs);
if (!isOpen)
folder.close(false);
}
}
/**
* Expunge (permanently remove) messages marked DELETED.
* Returns an array containing the expunged message objects.
* The getMessageNumber method on each of these message objects returns
* that Message's original (that is, prior to the expunge) sequence number.
* A MessageCountEvent containing the expunged messages is delivered
* to any MessageCountListeners registered on the folder.
* <p>
* Expunge causes the renumbering of Message objects subsequent to the
* expunged messages. Clients that use message numbers as references to
* messages should be aware of this and should be prepared to deal with the
* situation (probably by flushing out existing message number caches and
* reloading them). Because of this complexity, it is better for clients to
* use Message objects as references to messages, rather than message
* numbers. Any expunged Messages objects still have to be pruned, but other
* Messages in that folder are not affected by the expunge.
* <p>
* After a message is expunged, only the <code>isExpunged</code> and
* <code>getMessageNumber</code> methods are still valid on the
* corresponding Message object; other methods may throw
* MessageRemovedException
* @exception FolderNotFoundException if this folder does not exist
* @exception IllegalStateException if this folder is not opened.
*/
public abstract Message[] expunge()
throws MessagingException;
/**
* Search this Folder for messages matching the specified search criterion.
* Returns an array containing the matching messages.
* Returns an empty array if no matches were found.
* <p>
* This implementation invokes <code>search(term, getMessages())</code>,
* to apply the search over all the messages in this folder.
* Providers that can implement server-side searching might want to
* override this method to provide a more efficient implementation.
* @param term the search criterion
* @exception SearchException if the search term is too complex for the
* implementation to handle.
* @exception FolderNotFoundException if this folder does not exist.
* @exception IllegalStateException if this folder is not opened.
*/
public Message[] search(SearchTerm term)
throws MessagingException
{
return search(term, getMessages());
}
/**
* Search the given array of messages for those that match the specified
* search criterion.
* Returns an array containing the matching messages.
* Returns an empty array if no matches were found.
* <p>
* Note that the specified Message objects must belong to this folder.
* <p>
* This implementation iterates through the given array of messages, and
* applies the search criterion on each message by calling its
* <code>match()</code> method with the given term. The messages that
* succeed in the match are returned.
* Providers that can implement server-side searching might want to override
* this method to provide a more efficient implementation. If the search term
* is too complex or contains user-defined terms that cannot be executed on
* the server, providers may elect to either throw a SearchException or
* degenerate to client-side searching by calling
* <code>super.search()</code> to invoke this implementation.
* @param term the search criterion
* @param msgs the messages to be searched
* @exception SearchException if the search term is too complex for the
* implementation to handle.
* @exception IllegalStateException if this folder is not opened
*/
public Message[] search(SearchTerm term, Message[] msgs)
throws MessagingException
{
ArrayList acc = new ArrayList();
for (int i = 0; i<msgs.length; i++)
{
try
{
if (msgs[i].match(term))
acc.add(msgs[i]);
}
catch (MessageRemovedException e)
{
}
}
Message[] m = new Message[acc.size()];
acc.toArray(m);
return m;
}
// -- Event management --
/*
* Because the propagation of events of different kinds in the JavaMail
* API is so haphazard, I have here sacrificed a small time advantage for
* readability and consistency.
*
* All the various propagation methods now call a method with a name based
* on the eventual listener method name prefixed by 'fire', as is the
* preferred pattern for usage of the EventListenerList in Swing.
*
* Note that all events are currently delivered synchronously, where in
* Sun's implementation a different thread is used for event delivery.
*
* TODO Examine the impact of this.
*/
// -- Connection events --
/**
* Add a listener for Connection events on this Folder.
*/
public void addConnectionListener(ConnectionListener l)
{
if (connectionListeners==null)
connectionListeners = new ArrayList();
synchronized (connectionListeners)
{
connectionListeners.add(l);
}
}
/**
* Remove a Connection event listener.
*/
public void removeConnectionListener(ConnectionListener l)
{
if (connectionListeners!=null)
{
synchronized (connectionListeners)
{
connectionListeners.remove(l);
}
}
}
/**
* Notify all ConnectionListeners.
* Folder implementations are expected to use this method
* to broadcast connection events.
*/
protected void notifyConnectionListeners(int type)
{
ConnectionEvent event = new ConnectionEvent(this, type);
switch (type)
{
case ConnectionEvent.OPENED:
fireOpened(event);
break;
case ConnectionEvent.DISCONNECTED:
fireDisconnected(event);
break;
case ConnectionEvent.CLOSED:
fireClosed(event);
break;
}
}
/*
* Propagates an OPENED ConnectionEvent to all registered listeners.
*/
void fireOpened(ConnectionEvent event)
{
if (connectionListeners!=null)
{
ConnectionListener[] l = null;
synchronized (connectionListeners)
{
l = new ConnectionListener[connectionListeners.size()];
connectionListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].opened(event);
}
}
/*
* Propagates a DISCONNECTED ConnectionEvent to all registered listeners.
*/
void fireDisconnected(ConnectionEvent event)
{
if (connectionListeners!=null)
{
ConnectionListener[] l = null;
synchronized (connectionListeners)
{
l = new ConnectionListener[connectionListeners.size()];
connectionListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].disconnected(event);
}
}
/*
* Propagates a CLOSED ConnectionEvent to all registered listeners.
*/
void fireClosed(ConnectionEvent event)
{
if (connectionListeners!=null)
{
ConnectionListener[] l = null;
synchronized (connectionListeners)
{
l = new ConnectionListener[connectionListeners.size()];
connectionListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].closed(event);
}
}
// -- Folder events --
/**
* Add a listener for Folder events on this Folder.
*/
public void addFolderListener(FolderListener l)
{
if (folderListeners==null)
folderListeners = new ArrayList();
synchronized (folderListeners)
{
folderListeners.add(l);
}
}
/**
* Remove a Folder event listener.
*/
public void removeFolderListener(FolderListener l)
{
if (folderListeners!=null)
{
synchronized (folderListeners)
{
folderListeners.remove(l);
}
}
}
/**
* Notify all FolderListeners registered on this Folder and this folder's
* Store. Folder implementations are expected to use this method to
* broadcast Folder events.
*/
protected void notifyFolderListeners(int type)
{
FolderEvent event = new FolderEvent(this, this, type);
switch (type)
{
case FolderEvent.CREATED:
fireFolderCreated(event);
break;
case FolderEvent.DELETED:
fireFolderDeleted(event);
break;
}
store.notifyFolderListeners(type, this);
}
/**
* Notify all FolderListeners registered on this Folder and this folder's
* Store about the renaming of this folder. Folder implementations are
* expected to use this method to broadcast Folder events indicating the
* renaming of folders.
*/
protected void notifyFolderRenamedListeners(Folder folder)
{
FolderEvent event = new FolderEvent(this, this, folder,
FolderEvent.RENAMED);
fireFolderRenamed(event);
store.notifyFolderRenamedListeners(this, folder);
}
/*
* Propagates a CREATED FolderEvent to all registered listeners.
*/
void fireFolderCreated(FolderEvent event)
{
if (folderListeners!=null)
{
FolderListener[] l = null;
synchronized (folderListeners)
{
l = new FolderListener[folderListeners.size()];
folderListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].folderCreated(event);
}
}
/*
* Propagates a DELETED FolderEvent to all registered listeners.
*/
void fireFolderDeleted(FolderEvent event)
{
if (folderListeners!=null)
{
FolderListener[] l = null;
synchronized (folderListeners)
{
l = new FolderListener[folderListeners.size()];
folderListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].folderDeleted(event);
}
}
/*
* Propagates a RENAMED FolderEvent to all registered listeners.
*/
void fireFolderRenamed(FolderEvent event)
{
if (folderListeners!=null)
{
FolderListener[] l = null;
synchronized (folderListeners)
{
l = new FolderListener[folderListeners.size()];
folderListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].folderRenamed(event);
}
}
// -- Message count events --
/**
* Add a listener for MessageCount events on this Folder.
*/
public void addMessageCountListener(MessageCountListener l)
{
if (messageCountListeners==null)
messageCountListeners = new ArrayList();
synchronized (messageCountListeners)
{
messageCountListeners.add(l);
}
}
/**
* Remove a MessageCount listener.
*/
public void removeMessageCountListener(MessageCountListener l)
{
if (messageCountListeners!=null)
{
synchronized (messageCountListeners)
{
messageCountListeners.remove(l);
}
}
}
/**
* Notify all MessageCountListeners about the addition of messages
* into this folder. Folder implementations are expected to use this
* method to broadcast MessageCount events for indicating arrival of
* new messages.
*/
protected void notifyMessageAddedListeners(Message[] msgs)
{
MessageCountEvent event = new MessageCountEvent(this,
MessageCountEvent.ADDED, false, msgs);
fireMessagesAdded(event);
}
/**
* Notify all MessageCountListeners about the removal of messages from this
* Folder. Folder implementations are expected to use this method to
* broadcast MessageCount events indicating removal of messages.
*/
protected void notifyMessageRemovedListeners(boolean removed, Message[] msgs)
{
MessageCountEvent event = new MessageCountEvent(this,
MessageCountEvent.REMOVED, removed, msgs);
fireMessagesRemoved(event);
}
/*
* Propagates an ADDED MessageCountEvent to all registered listeners.
*/
void fireMessagesAdded(MessageCountEvent event)
{
if (messageCountListeners!=null)
{
MessageCountListener[] l = null;
synchronized (messageCountListeners)
{
l = new MessageCountListener[messageCountListeners.size()];
messageCountListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].messagesAdded(event);
}
}
/*
* Propagates a REMOVED MessageCountEvent to all registered listeners.
*/
void fireMessagesRemoved(MessageCountEvent event)
{
if (messageCountListeners!=null)
{
MessageCountListener[] l = null;
synchronized (messageCountListeners)
{
l = new MessageCountListener[messageCountListeners.size()];
messageCountListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].messagesRemoved(event);
}
}
// -- Message changed events --
/**
* Add a listener for MessageChanged events on this Folder.
*/
public void addMessageChangedListener(
MessageChangedListener l)
{
if (messageChangedListeners==null)
messageChangedListeners = new ArrayList();
synchronized (messageChangedListeners)
{
messageChangedListeners.add(l);
}
}
/**
* Remove a MessageChanged listener.
*/
public void removeMessageChangedListener(
MessageChangedListener l)
{
if (messageChangedListeners!=null)
{
synchronized (messageChangedListeners)
{
messageChangedListeners.remove(l);
}
}
}
/**
* Notify all MessageChangedListeners. Folder implementations are expected
* to use this method to broadcast MessageChanged events.
*/
protected void notifyMessageChangedListeners(int type, Message msg)
{
MessageChangedEvent event = new MessageChangedEvent(this, type, msg);
fireMessageChanged(event);
}
/*
* Propagates a MessageChangedEvent to all registered listeners.
*/
void fireMessageChanged(MessageChangedEvent event)
{
if (messageChangedListeners!=null)
{
MessageChangedListener[] l = null;
synchronized (messageChangedListeners)
{
l = new MessageChangedListener[messageChangedListeners.size()];
messageChangedListeners.toArray(l);
}
for (int i=0; i<l.length; i++)
l[i].messageChanged(event);
}
}
// -- Utility methods --
/**
* override the default toString(),
* it will return the String from Folder.getFullName() or if that is null,
* it will use the default toString() behavior.
*/
public String toString()
{
String name = getFullName();
return (name!=null) ? name : super.toString();
}
}
|