1. /*
  2. * Copyright 2002,2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. package org.apache.tools.ant.taskdefs.email;
  18. import java.io.BufferedInputStream;
  19. import java.io.File;
  20. import java.io.FileInputStream;
  21. import java.io.IOException;
  22. import java.io.PrintStream;
  23. import org.apache.tools.ant.BuildException;
  24. import sun.misc.UUEncoder;
  25. /**
  26. * An emailer that uuencodes attachments.
  27. *
  28. * @since Ant 1.5
  29. */
  30. class UUMailer extends PlainMailer {
  31. protected void attach(File file, PrintStream out)
  32. throws IOException {
  33. if (!file.exists() || !file.canRead()) {
  34. throw new BuildException("File \"" + file.getName()
  35. + "\" does not exist or is not "
  36. + "readable.");
  37. }
  38. FileInputStream finstr = new FileInputStream(file);
  39. try {
  40. BufferedInputStream in = new BufferedInputStream(finstr);
  41. UUEncoder encoder = new UUEncoder(file.getName());
  42. encoder.encode(in, out);
  43. } finally {
  44. finstr.close();
  45. }
  46. }
  47. }