Skip to content

Commit

Permalink
Changing package from proj to com.linkedin.
Browse files Browse the repository at this point in the history
  • Loading branch information
alperez committed Apr 12, 2012
1 parent 34f95dc commit f1f8eef
Show file tree
Hide file tree
Showing 167 changed files with 630 additions and 630 deletions.
4 changes: 2 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

<target name="perf-client" depends="dist">
<exec executable="mvn" dir="zoie-perf">
<arg line="-e exec:java proj.zoie.perf.client.ZoieClient" />
<arg line="-e exec:java com.linkedin.zoie.perf.client.ZoieClient" />
</exec>
</target>

Expand All @@ -51,7 +51,7 @@

<target name="run-cmdline" depends="dist" description="--> run the cmdline console">
<exec executable="mvn">
<arg line="-e exec:java -Dexec.mainClass=proj.zoie.cmdline.JMXClient"/>
<arg line="-e exec:java -Dexec.mainClass=com.linkedin.zoie.cmdline.JMXClient"/>
</exec>
</target>
</project>
6 changes: 3 additions & 3 deletions contrib/luke/java/proj/zoie/tools/luke/ZoiePlugin.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.tools.luke;
package com.linkedin.zoie.tools.luke;

import it.unimi.dsi.fastutil.ints.IntArrayList;
import it.unimi.dsi.fastutil.ints.IntList;
Expand All @@ -8,8 +8,8 @@
import org.apache.lucene.index.IndexReader;
import org.getopt.luke.LukePlugin;

import proj.zoie.api.DocIDMapper;
import proj.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.DocIDMapper;
import com.linkedin.zoie.api.ZoieIndexReader;

public class ZoiePlugin extends LukePlugin {
private ZoieIndexReader _zoieReader;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import java.io.File;
import java.io.FileInputStream;
Expand All @@ -17,9 +17,9 @@
import org.apache.lucene.store.NIOFSDirectory;
import org.apache.lucene.store.SimpleFSDirectory;

import proj.zoie.api.impl.util.ChannelUtil;
import proj.zoie.api.impl.util.FileUtil;
import proj.zoie.impl.indexing.internal.IndexSignature;
import com.linkedin.zoie.api.impl.util.ChannelUtil;
import com.linkedin.zoie.api.impl.util.FileUtil;
import com.linkedin.zoie.impl.indexing.internal.IndexSignature;

public class DefaultDirectoryManager implements DirectoryManager
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import java.io.IOException;
import java.nio.channels.ReadableByteChannel;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

package proj.zoie.api;
package com.linkedin.zoie.api;

import java.util.Arrays;

import proj.zoie.api.impl.util.MemoryManager;
import com.linkedin.zoie.api.impl.util.MemoryManager;

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

public interface DocIDMapperFactory {
DocIDMapper<?> getDocIDMapper(ZoieMultiReader<?> reader);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import java.util.List;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

public interface LifeCycleCotrolledDataConsumer<D> extends DataConsumer<D> {
void start();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import javax.management.StandardMBean;

import org.apache.lucene.index.IndexReader;

import proj.zoie.mbean.ZoieAdminMBean;
import com.linkedin.zoie.mbean.ZoieAdminMBean;

public interface Zoie<R extends IndexReader, D> extends DataConsumer<D>, IndexReaderFactory<ZoieIndexReader<R>>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

/**
* Licensed to the Apache Software Foundation (ASF) under one or more
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

public class ZoieHealth
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down Expand Up @@ -32,8 +32,8 @@
import org.apache.lucene.store.Directory;
import org.apache.lucene.util.ReaderUtil;

import proj.zoie.api.impl.DefaultIndexReaderMerger;
import proj.zoie.api.indexing.IndexReaderDecorator;
import com.linkedin.zoie.api.impl.DefaultIndexReaderMerger;
import com.linkedin.zoie.api.indexing.IndexReaderDecorator;

public abstract class ZoieIndexReader<R extends IndexReader> extends FilterIndexReader
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down Expand Up @@ -35,7 +35,7 @@
import org.apache.lucene.index.TermDocs;
import org.apache.lucene.index.TermPositions;

import proj.zoie.api.indexing.IndexReaderDecorator;
import com.linkedin.zoie.api.indexing.IndexReaderDecorator;

public class ZoieMultiReader<R extends IndexReader> extends ZoieIndexReader<R>
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api;
package com.linkedin.zoie.api;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down Expand Up @@ -36,11 +36,11 @@
import org.apache.lucene.index.TermDocs;
import org.apache.lucene.index.TermPositions;

import proj.zoie.api.impl.util.ArrayDocIdSet;
import proj.zoie.api.indexing.AbstractZoieIndexable;
import proj.zoie.api.indexing.IndexReaderDecorator;
import proj.zoie.impl.indexing.internal.ZoieSegmentTermDocs;
import proj.zoie.impl.indexing.internal.ZoieSegmentTermPositions;
import com.linkedin.zoie.api.impl.util.ArrayDocIdSet;
import com.linkedin.zoie.api.indexing.AbstractZoieIndexable;
import com.linkedin.zoie.api.indexing.IndexReaderDecorator;
import com.linkedin.zoie.impl.indexing.internal.ZoieSegmentTermDocs;
import com.linkedin.zoie.impl.indexing.internal.ZoieSegmentTermPositions;

public class ZoieSegmentReader<R extends IndexReader> extends ZoieIndexReader<R>{
public static final String termVal="_UID";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package proj.zoie.api;
package com.linkedin.zoie.api;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;

import proj.zoie.api.impl.ZoieContext;
import com.linkedin.zoie.api.impl.ZoieContext;

/**
* This class provides the thread pools that can understand Zoie's threadlocal context.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;

import proj.zoie.api.DocIDMapper;
import proj.zoie.api.DocIDMapperFactory;
import proj.zoie.api.ZoieIndexReader;
import proj.zoie.api.ZoieMultiReader;
import proj.zoie.api.ZoieSegmentReader;
import proj.zoie.api.DocIDMapper.DocIDArray;
import com.linkedin.zoie.api.DocIDMapper;
import com.linkedin.zoie.api.DocIDMapperFactory;
import com.linkedin.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.ZoieMultiReader;
import com.linkedin.zoie.api.ZoieSegmentReader;
import com.linkedin.zoie.api.DocIDMapper.DocIDArray;

public class DefaultDocIDMapperFactory implements DocIDMapperFactory {
public DocIDMapper<?> getDocIDMapper(ZoieMultiReader<?> multireader) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;

import java.util.List;

import org.apache.lucene.index.IndexReader;
import org.apache.lucene.index.MultiReader;

import proj.zoie.api.IndexReaderMerger;
import proj.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.IndexReaderMerger;
import com.linkedin.zoie.api.ZoieIndexReader;

public class DefaultIndexReaderMerger<T extends IndexReader> implements IndexReaderMerger<MultiReader, T> {
public MultiReader mergeIndexReaders(List<ZoieIndexReader<T>> readerList) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand All @@ -17,9 +17,9 @@
*/
import java.util.Arrays;

import proj.zoie.api.DocIDMapper;
import proj.zoie.api.ZoieIndexReader;
import proj.zoie.api.DocIDMapper.DocIDArray;
import com.linkedin.zoie.api.DocIDMapper;
import com.linkedin.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.DocIDMapper.DocIDArray;

/**
* @author ymatsuda
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/**
*
*/
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;

import java.util.Arrays;

import org.apache.log4j.Logger;

import proj.zoie.api.DocIDMapper;
import proj.zoie.api.DocIDMapperFactory;
import proj.zoie.api.ZoieIndexReader;
import proj.zoie.api.ZoieMultiReader;
import proj.zoie.api.ZoieSegmentReader;
import proj.zoie.api.DocIDMapper.DocIDArray;
import com.linkedin.zoie.api.DocIDMapper;
import com.linkedin.zoie.api.DocIDMapperFactory;
import com.linkedin.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.ZoieMultiReader;
import com.linkedin.zoie.api.ZoieSegmentReader;
import com.linkedin.zoie.api.DocIDMapper.DocIDArray;

public class InRangeDocIDMapperFactory implements DocIDMapperFactory
{
Expand Down Expand Up @@ -64,7 +64,7 @@ public InRangeDocIDMapperFactory(long start, int count, int ram_count_threshold)
* Get the DocIDMapper for reader and assign the DocIDMapper for each
* sub-reader (non-Javadoc)
*
* @see proj.zoie.api.DocIDMapperFactory#getDocIDMapper(proj.zoie.api.ZoieMultiReader)
* @see com.linkedin.zoie.api.DocIDMapperFactory#getDocIDMapper(com.linkedin.zoie.api.ZoieMultiReader)
*/
public DocIDMapper<DocIDArray> getDocIDMapper(ZoieMultiReader<?> reader)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;

import java.util.WeakHashMap;
import java.util.Map.Entry;

import proj.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.ZoieIndexReader;

/**
* This class holds the ZoieContext for each thread. Any child thread inherits
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package proj.zoie.api.impl;
package com.linkedin.zoie.api.impl;

import java.util.HashMap;

import proj.zoie.api.ZoieIndexReader;
import com.linkedin.zoie.api.ZoieIndexReader;

public class ZoieReaderContext
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;

import java.io.IOException;
import java.nio.ByteBuffer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;

import java.lang.ref.WeakReference;
import java.util.concurrent.ConcurrentHashMap;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package proj.zoie.api.impl.util;
package com.linkedin.zoie.api.impl.util;
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
Expand Down
Loading

0 comments on commit f1f8eef

Please sign in to comment.