~ubuntu-branches/ubuntu/raring/libjboss-remoting-java/raring

« back to all changes in this revision

Viewing changes to src/main/org/jboss/remoting/serialization/impl/java/ClearableObjectOutputStream.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
* JBoss, Home of Professional Open Source
 
4
* Copyright 2005, JBoss Inc., and individual contributors as indicated
 
5
* by the @authors tag. See the copyright.txt in the distribution for a
 
6
* full listing of individual contributors.
 
7
*
 
8
* This is free software; you can redistribute it and/or modify it
 
9
* under the terms of the GNU Lesser General Public License as
 
10
* published by the Free Software Foundation; either version 2.1 of
 
11
* the License, or (at your option) any later version.
 
12
*
 
13
* This software is distributed in the hope that it will be useful,
 
14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
16
* Lesser General Public License for more details.
 
17
*
 
18
* You should have received a copy of the GNU Lesser General Public
 
19
* License along with this software; if not, write to the Free
 
20
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 
21
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 
22
*/
 
23
package org.jboss.remoting.serialization.impl.java;
 
24
 
 
25
import java.io.IOException;
 
26
import java.io.ObjectOutputStream;
 
27
import java.io.OutputStream;
 
28
import java.lang.reflect.Method;
 
29
import java.security.AccessController;
 
30
import java.security.PrivilegedActionException;
 
31
import java.security.PrivilegedExceptionAction;
 
32
 
 
33
import org.jboss.logging.Logger;
 
34
import org.jboss.remoting.util.SecurityUtility;
 
35
 
 
36
/**
 
37
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
 
38
 * @version $Revision: 1.1 $
 
39
 * <p>
 
40
 * Copyright Aug 27, 2008
 
41
 * </p>
 
42
 */
 
43
public class ClearableObjectOutputStream extends ObjectOutputStream
 
44
{
 
45
   protected static Logger log = Logger.getLogger(ClearableObjectOutputStream.class);
 
46
   protected static Method clearMethod;
 
47
   protected static Object[] PARAMS = new Object[]{};
 
48
   
 
49
   static
 
50
   {
 
51
      try
 
52
      {
 
53
         clearMethod = getDeclaredMethod(ObjectOutputStream.class, "clear", new Class[]{});
 
54
      }
 
55
      catch (SecurityException e)
 
56
      {
 
57
         log.error(e.getMessage(), e);
 
58
      }
 
59
      catch (NoSuchMethodException e)
 
60
      {
 
61
         log.error(e.getMessage(), e);
 
62
      }
 
63
   }
 
64
   
 
65
   public ClearableObjectOutputStream(OutputStream out) throws IOException
 
66
   {
 
67
      super(out);  
 
68
   }
 
69
   
 
70
   public void clear()
 
71
   {
 
72
      try
 
73
      {
 
74
          clearMethod.invoke(this, PARAMS);
 
75
      }
 
76
      catch (Throwable e)
 
77
      {
 
78
          log.error(e.getMessage(), e);
 
79
      }
 
80
   }
 
81
   
 
82
   static private Method getDeclaredMethod(final Class c, final String name, final Class[] parameterTypes)
 
83
   throws NoSuchMethodException
 
84
   {
 
85
      if (SecurityUtility.skipAccessControl())
 
86
      {
 
87
         Method m = c.getDeclaredMethod(name, parameterTypes);
 
88
         m.setAccessible(true);
 
89
         return m;
 
90
      }
 
91
 
 
92
      try
 
93
      {
 
94
         return (Method) AccessController.doPrivileged( new PrivilegedExceptionAction()
 
95
         {
 
96
            public Object run() throws NoSuchMethodException
 
97
            {
 
98
               Method m = c.getDeclaredMethod(name, parameterTypes);
 
99
               m.setAccessible(true);
 
100
               return m;
 
101
            }
 
102
         });
 
103
      }
 
104
      catch (PrivilegedActionException e)
 
105
      {
 
106
         throw (NoSuchMethodException) e.getCause();
 
107
      }
 
108
   }
 
109
}
 
110