I am using Apache Jackrabbit 2.4.1 (via Apache Chemistry JCR Bridge).
There are currently a number of corruptions in the repository:
i.e.
2012-07-27 13:44:00,122 ERROR NodeState 'e06ec16d-4b1e-48f7-87a8-689ef747ce72' references inexistent child '{}documents.xml' with id 'ec7c210c-ad26-4337-a616-0d4cecfedeb2' [org.apache.jackrabbit.core.persistence.bundle.ConsistencyCheckerImpl] (http--0.0.0.0-16891-2)
I am trying to figure out how I can translate this groovy script
http://wiki.magnolia-cms.com/display/WIKI/JCR+Troubles+FAQs
Apache Jackrabbit is currently deployed as a resource adapter archive (RAR file) in JBoss As 7.1. It is accessed within Apache Chemistry via the JCR 2 API with the session being obtained thus:
Context ctx = new InitialContext();
Repository repository = (Repository) ctx.lookup("java:/jca/DocumentStore") ;
Session ses = repository.login(new SimpleCredentials("someone", "secret".toCharArray()), "REPO");
It is from this point on that I am unclear, can I obtain a node, cast it to NodeImpl and then get its NodeState? The script below then suggest that I need the persistence manager but will that be available accessing a session looked up via JNDI? If so how do I get it?
SEE END FOR THE SOLUTION CODE!
Thanks,
Peter.
Here is the solution:
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.List;
import javax.jcr.ItemNotFoundException;
import javax.jcr.Node;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.Session;
public class MissingNodeHelper
{
public void listMissingNodes( List<String> missingNodes, Node node, boolean delete, Session session ) throws RepositoryException
{
try
{
System.out.println( node.getClass().getName() );
Object pm = getPM( session.getRepository(), session.getWorkspace().getName());
Method getOrCreateTransientItemState = node.getClass().getDeclaredMethod( "getOrCreateTransientItemState" );
getOrCreateTransientItemState.setAccessible( true );
Object nodeState = getOrCreateTransientItemState.invoke( node );
System.out.println( nodeState.getClass().getName() );
Method getChildNodeEntries = nodeState.getClass().getDeclaredMethod( "getChildNodeEntries" );
getChildNodeEntries.setAccessible( true );
List childNodes = (List) getChildNodeEntries.invoke( nodeState );
Class classz = Class.forName( "org.apache.jackrabbit.core.state.ChangeLog" );
Object changeLog = classz.newInstance();
for ( Object childNodeEntry : childNodes )
{
System.out.println( childNodeEntry.getClass().getName() );
Method getId = childNodeEntry.getClass().getDeclaredMethod( "getId" );
Object id = getId.invoke( childNodeEntry );
Node childNode = null;
try
{
childNode = session.getNodeByIdentifier( id.toString() );
}
catch( ItemNotFoundException e )
{
missingNodes.add( id.toString() );
removeNode( nodeState, id, changeLog, classz, pm );
continue;
}
if ( childNode == null )
{
missingNodes.add( id.toString() );
removeNode( nodeState, id, changeLog, classz, pm );
continue;
}
listMissingNodes( missingNodes, childNode, delete, session );
}
}
catch ( Exception e )
{
throw new RuntimeException( e );
}
}
private void removeNode( Object state, Object id, Object cl, Class changeLogClass, Object pm ) throws SecurityException, NoSuchMethodException, IllegalArgumentException, IllegalAccessException, InvocationTargetException, ClassNotFoundException
{
Class nodeIdClass = Class.forName( "org.apache.jackrabbit.core.id.NodeId" );
Class stateClass = state.getClass();
Method removeChildNodeEntry = stateClass.getMethod( "removeChildNodeEntry", nodeIdClass );
removeChildNodeEntry.invoke( state, id );
Method setStatus = stateClass.getMethod( "setStatus", int.class );
setStatus.invoke( state, 2 );
Method[] methods = changeLogClass.getMethods();
Method modified = null;
for( Method method : methods )
{
if ( "modified".equals( method.getName() ) && method.getParameterTypes()[0].getName().equals( "org.apache.jackrabbit.core.state.ItemState" ) )
{
modified = method;
}
}
//Method modified = changeLogClass.getMethod( "modified", stateClass );
modified.invoke( cl, state );
Method store = pm.getClass().getMethod( "store", cl.getClass() );
store.invoke( pm, cl );
}
/**
* Retrieves JackRabbit Persistence Manager for currently opened repository. This method uses
* Privileged access and will fail with security exception if used in environment with enabled security manager.
*
* @return Persistence manager used by repository.
*/
public static Object getPM(Repository repository, String workspaceName)
{
try{
Object workspaceInfo = findAndInvokeMethod(repository, "getWorkspaceInfo", new Object[]{workspaceName});
return findAndInvokeMethod(workspaceInfo, "getPersistenceManager", null);
}
catch(Exception e){
throw new RuntimeException( e );
}
}
private static Object findAndInvokeMethod(Object obj, String name, Object[] parameters) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException{
Method m = null;
Method[] ms = obj.getClass().getDeclaredMethods();
for (int i = 0; i < ms.length; i++) {
final Method x = ms[i];
if (x.getName().equals(name)) {
m = x;
break;
}
}
m.setAccessible(true);
return m.invoke(obj, parameters);
}
}