blob: 08b60225e7fd2a22770640329205f94d9dda02ad [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.server.syncrepl;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.concurrent.Semaphore;
import java.util.concurrent.atomic.AtomicInteger;
import javax.swing.JButton;
import javax.swing.JPanel;
import org.apache.directory.shared.ldap.client.api.LdapConnection;
import org.apache.directory.shared.ldap.entry.client.DefaultClientEntry;
import org.apache.directory.shared.ldap.name.LdapDN;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
*
* A utitlity class to inject entries into the syncrepl provider server.
*
* TODO add a feature to purge entries
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*/
public class EntryInjector extends JPanel implements ActionListener
{
private JButton btnAdd;
private JButton btnPause;
private JButton btnKeepAdding;
private RunnerThread runner = new RunnerThread();
private LdapConnection connection;
private static final Logger LOG = LoggerFactory.getLogger( EntryInjector.class );
public EntryInjector( String host, int port, String bindDn, String pwd ) throws Exception
{
connection = new LdapConnection( host, port );
connection.bind( bindDn, pwd );
addcomponents();
}
public void addEntry()
{
try
{
String cn = "entry-" + System.currentTimeMillis();
LdapDN dn = new LdapDN( "cn=" + cn + ",dc=test,dc=nodomain" );
DefaultClientEntry entry = new DefaultClientEntry();
entry.add( "objectclass", "inetOrgPerson", "organizationalPerson", "person" );
entry.add( "cn", cn );
entry.add( "sn", cn );
entry.setDn( dn );
LOG.debug( "adding entry with dn: {}" + dn );
connection.add( entry );
}
catch ( Exception e )
{
e.printStackTrace();
}
}
public void close()
{
try
{
runner.stopThread();
connection.unBind();
}
catch ( Exception e )
{
e.printStackTrace();
}
}
private void addcomponents()
{
btnAdd = new JButton( "Add" );
btnAdd.addActionListener( this );
add( btnAdd );
btnPause = new JButton( "Pause" );
btnPause.addActionListener( this );
btnPause.setEnabled( false );
add( btnPause );
btnKeepAdding = new JButton( "Keep Adding" );
btnKeepAdding.addActionListener( this );
add( btnKeepAdding );
}
public void actionPerformed( ActionEvent e )
{
Object src = e.getSource();
if ( src == btnAdd )
{
addEntry();
}
else if ( src == btnPause )
{
runner.pause( true );
btnPause.setEnabled( false );
btnKeepAdding.setEnabled( true );
}
else if ( src == btnKeepAdding )
{
if ( !runner.isRunning() )
{
runner.start();
}
else
{
runner.pause( false );
}
btnPause.setEnabled( true );
btnKeepAdding.setEnabled( false );
}
}
class RunnerThread extends Thread
{
private boolean stop = false;
private boolean running;
private Semaphore mutex = new Semaphore( 1 );
@Override
public void run()
{
running = true;
while ( !stop )
{
try
{
mutex.acquire();
addEntry();
mutex.release();
Thread.sleep( 10000 );
}
catch ( Exception e )
{
e.printStackTrace();
}
}
}
public boolean isRunning()
{
return running;
}
public void pause( boolean pause )
{
try
{
if ( pause )
{
mutex.acquire();
}
else
{
mutex.release();
}
}
catch ( Exception e )
{
e.printStackTrace();
}
}
public void stopThread()
{
stop = true;
}
}
public void enable( boolean enable )
{
btnAdd.setEnabled( enable );
btnKeepAdding.setEnabled( enable );
}
}