id
int32 0
3k
| input
stringlengths 43
33.8k
| gt
stringclasses 1
value |
---|---|---|
1,300 | <s> package org . rubypeople . rdt . refactoring . tests . core ; import java . io . FileNotFoundException ; import java . io . IOException ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashMap ; import java . util . regex . Pattern ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentProvider ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; public class MultipleDocumentsInOneProvider extends DocumentProvider { private StringBuffer activeSection ; private HashMap < String , StringBuffer | |
1,301 | <s> package org . rubypeople . rdt . internal . ui . wizards ; import java . lang . reflect . InvocationTargetException ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspaceRunnable ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . jobs . ISchedulingRule ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . operation . IRunnableWithProgress ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . wizard . Wizard ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . INewWizard ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . IWorkbenchPage ; import org . eclipse . ui . PartInitException ; import org . eclipse . ui . ide . IDE ; import org . eclipse . ui . wizards . newresource . BasicNewResourceWizard ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . actions . WorkbenchRunnableAdapter ; import org . rubypeople . rdt . internal . ui . util . ExceptionHandler ; public abstract class NewElementWizard extends Wizard implements INewWizard { private IWorkbench fWorkbench ; private IStructuredSelection fSelection ; public NewElementWizard ( ) { setNeedsProgressMonitor ( true ) ; } protected void openResource ( final IFile resource ) { final IWorkbenchPage activePage = RubyPlugin . getActivePage ( ) ; if ( activePage != null ) { final Display display = getShell ( ) . getDisplay ( ) ; if ( display != null ) { display . asyncExec ( new Runnable ( ) { public void run ( ) { try { IDE . openEditor ( activePage , resource , true ) ; } catch ( PartInitException e ) { RubyPlugin . log ( e ) ; } } } ) ; } } } protected abstract void finishPage ( IProgressMonitor monitor ) throws InterruptedException , CoreException ; protected ISchedulingRule getSchedulingRule ( ) { return ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ; } protected boolean canRunForked ( ) { return true ; } public abstract IRubyElement getCreatedElement ( ) ; protected void handleFinishException ( Shell shell , InvocationTargetException e ) { String title = NewWizardMessages . NewElementWizard_op_error_title ; String message = NewWizardMessages . NewElementWizard_op_error_message ; ExceptionHandler . handle ( e , shell , title , message ) ; } public | |
1,302 | <s> package com . asakusafw . testdriver . rule ; import java . text . MessageFormat ; public class Equals implements ValuePredicate < Object > { @ Override public boolean accepts ( Object expected , Object actual ) { if ( expected == null | |
1,303 | <s> package de . fuberlin . wiwiss . d2rq . examples ; import com . hp . hpl . jena . rdf . model . Resource ; import com . hp . hpl . jena . rdf . model . StmtIterator ; import com . hp . hpl . jena . sparql . vocabulary . FOAF ; import com . hp . hpl . jena . vocabulary . DC ; import com . hp . hpl . jena . vocabulary . RDF ; import de . fuberlin . wiwiss . d2rq . jena . ModelD2RQ ; import de . fuberlin . wiwiss . d2rq . vocab . ISWC ; public class JenaModelExample { public static void main ( String [ ] args ) { ModelD2RQ m = new ModelD2RQ ( "" ) ; StmtIterator paperIt = m . listStatements ( null , RDF . type , ISWC . InProceedings ) ; while ( paperIt . hasNext ( ) ) { Resource paper = paperIt . nextStatement ( ) . getSubject ( ) ; System . out . println ( "Paper: " + paper . getProperty ( DC . title ) . getString ( ) ) ; StmtIterator authorIt = paper . listProperties ( DC . creator ) ; while ( | |
1,304 | <s> package org . springframework . social . google . api ; import static org . springframework . util . StringUtils . hasText ; public abstract | |
1,305 | <s> package org . oddjob . oddballs ; import java . io . File ; import java . io . FilenameFilter ; import java . io . IOException ; import java . net . MalformedURLException ; import java . net . URL ; import java . net . URLClassLoader ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . deploy . ClassPathDescriptorFactory ; import org . oddjob . arooa . deploy . ClassesOnlyDescriptor ; public class DirectoryOddball implements OddballFactory { private static final Logger logger = Logger . getLogger ( DirectoryOddball . class ) ; public Oddball createFrom ( final File file , ClassLoader parentLoader ) { if ( ! file . isDirectory ( ) ) { return null ; } URL [ ] urls = null ; try { urls = classpathURLs ( file ) ; } catch ( MalformedURLException e ) { throw new RuntimeException ( e ) ; } catch ( IOException e ) { throw new RuntimeException ( e ) ; } if ( urls . length == 0 ) { return null ; } logger . info ( "" + file . getPath ( ) + "]" ) ; final URLClassLoader | |
1,306 | <s> package com . aptana . rdt . internal . core . gems ; import java . io . BufferedReader ; import java . io . File ; import java . io . FileNotFoundException ; import java . io . FileReader ; import java . io . IOException ; import java . io . InputStream ; import junit . framework . TestCase ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . Path ; import org . rubypeople . rdt . core . util . Util ; import com . aptana . rdt . AptanaRDTTests ; public abstract class AbstractGemParserTestCase extends TestCase { public AbstractGemParserTestCase ( ) { super ( ) ; } public AbstractGemParserTestCase ( String name ) { super ( name ) ; } protected abstract IGemParser getParser ( ) ; protected String getContents ( String path ) { String result = tryResourceAsStream ( path ) ; if ( result != null ) return result ; File file = grabFile ( path ) ; if ( file == null ) fail ( "" + path ) ; return readFile ( file ) ; } private String readFile ( File file ) { BufferedReader reader = null ; StringBuffer buffer ; try { reader = new BufferedReader ( new FileReader ( file ) ) ; String line = null ; buffer = new StringBuffer ( ) ; while ( ( line = reader . readLine ( ) ) != null ) { buffer . append ( line ) ; buffer . append ( "n" ) ; } buffer . deleteCharAt ( buffer . length ( ) - 1 ) ; return buffer . toString ( ) ; } catch ( FileNotFoundException e ) { e . printStackTrace ( ) ; } catch ( IOException e ) { e . printStackTrace ( ) ; } finally { try { if ( reader != null ) reader . close ( ) ; } catch ( IOException e ) | |
1,307 | <s> package net . thucydides . showcase . simple . pages ; public class ArtifactEntry { private final String groupId ; private final String artifactId ; private final String latestVersion ; public ArtifactEntry ( String groupId , String artifactId , String latestVersion | |
1,308 | <s> package net . sf . sveditor . ui . pref ; import net . sf . sveditor . ui . SVUiPlugin ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclipse . ui | |
1,309 | <s> package org . oddjob . logging . polling ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import org . oddjob . jmx . client . MockLogPollable ; import org . oddjob . logging . ArchiveNameResolver ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; import org . oddjob . logging . cache . LogEventSource ; import org . oddjob . logging . cache . PollingLogArchiver ; public class PollingLogArchiver2Test extends TestCase { Object expected ; class OurEventSource implements LogEventSource { LogEvent [ ] logEvents = { new LogEvent ( "thing" , 24L , LogLevel . DEBUG , "1" ) , new LogEvent ( "thing" , 25L , LogLevel . DEBUG , "2" ) , new LogEvent ( "thing" , 26L , LogLevel . DEBUG , "3" ) , new LogEvent ( "thing" , 27L , LogLevel . DEBUG , "4" ) , new LogEvent ( "thing" , 28L , LogLevel . DEBUG , "5" ) } ; public LogEvent [ ] retrieveEvents ( Object component , long from , int max ) { assertEquals ( expected , component ) ; if ( from < 0 ) { from = 23 ; } long num = Math . min ( max , 28 - from ) ; LogEvent [ ] out = new LogEvent [ ( int ) num ] ; System . arraycopy ( logEvents , ( int ) from - 23 , out , 0 , ( int ) num ) ; | |
1,310 | <s> package org . oddjob . designer . components ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . Helper ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . | |
1,311 | <s> package org . rubypeople . rdt . internal . launching ; import java . util . ArrayList ; import java . util . List ; public class CompositeId { private String [ ] fParts ; public CompositeId ( String [ ] parts ) { fParts = parts ; } public static CompositeId fromString ( String idString ) { List < String > parts = new ArrayList < String > ( ) ; int commaIndex = idString . indexOf ( ',' ) ; while ( commaIndex > 0 ) { int length = Integer . valueOf ( idString . substring ( 0 , commaIndex ) ) . intValue ( ) ; String part = idString . substring ( commaIndex + 1 , commaIndex + 1 + length ) ; parts . add ( part ) ; idString = idString . substring ( commaIndex + 1 + length ) ; commaIndex = idString . indexOf ( ',' ) ; } String [ ] result = ( String [ ] ) parts . toArray ( new String [ parts . size ( ) ] ) ; return new CompositeId ( result ) ; } public String toString ( ) { StringBuffer buf = new StringBuffer ( | |
1,312 | <s> package com . asakusafw . dmdl . windgate . jdbc . driver ; import java . util . Map ; import com . asakusafw . dmdl . model . AstAttribute ; import com . asakusafw . dmdl . model . AstAttributeElement ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . semantics . PropertyDeclaration ; import com . asakusafw . dmdl . spi . PropertyAttributeDriver ; import com . asakusafw . dmdl . util . AttributeUtil ; public class ColumnDriver extends PropertyAttributeDriver { public static final String TARGET_NAME = "" ; public static | |
1,313 | <s> package org . oddjob . values . properties ; import java . io . IOException ; import java . io . ObjectInputStream ; import java . io . ObjectOutputStream ; import java . util . Properties ; import org . oddjob . arooa . ArooaConfigurationException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . deploy . annotations . ArooaHidden ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . runtime . PropertyLookup ; import org . oddjob . arooa . runtime . PropertyManager ; import org . oddjob . arooa . runtime . RuntimeEvent ; import org . oddjob . arooa . runtime . RuntimeListener ; import org . oddjob . arooa . standard . StandardPropertyLookup ; import org . oddjob . framework . SerializableJob ; import org . oddjob . state . JobState ; abstract public class PropertiesJobBase extends SerializableJob { private static final long serialVersionUID = 2011032200L ; private Properties properties ; private transient PropertyLookup lookup ; @ Override @ ArooaHidden public void setArooaContext ( ArooaContext context ) { super . setArooaContext ( context ) ; context . getRuntime ( ) . addRuntimeListener ( new RuntimeListener ( ) { @ Override public void beforeInit ( RuntimeEvent event ) throws ArooaConfigurationException { } @ Override public void beforeDestroy ( RuntimeEvent event ) throws ArooaConfigurationException { } @ Override public void beforeConfigure ( RuntimeEvent event ) throws ArooaConfigurationException { } @ Override public void afterInit ( RuntimeEvent event ) throws ArooaConfigurationException { if ( stateHandler . getState ( ) == JobState . COMPLETE ) { if ( properties == null ) { throw new NullPointerException ( "" ) ; } addPropertyLookup ( ) ; } } @ Override public void afterDestroy ( RuntimeEvent event ) throws ArooaConfigurationException { } @ Override public void afterConfigure | |
1,314 | <s> package de . fuberlin . wiwiss . d2rq . sql . vendor ; import java . math . BigInteger ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . sql . Types ; import java . util . Properties ; import java . util . regex . Pattern ; import de . fuberlin . wiwiss . d2rq . sql . Quoter ; import de . fuberlin . wiwiss . d2rq . sql . Quoter . PatternDoublingQuoter ; import de . fuberlin . wiwiss . d2rq . sql . types . DataType ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLBit ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLBoolean ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLDate ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLExactNumeric ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLTime ; import de . fuberlin . wiwiss . d2rq . sql . types . SQLTimestamp ; public class MySQL extends SQL92 { public MySQL ( ) { super ( true ) ; } @ Override public String getConcatenationExpression ( String [ ] sqlFragments ) { StringBuffer result = new StringBuffer ( "CONCAT(" ) ; for ( int i = 0 ; i < sqlFragments . length ; i ++ ) { if ( i > 0 ) { result . append ( ", " ) ; } result . append | |
1,315 | <s> package org . rubypeople . rdt . ui . actions ; import java . util . Iterator ; import java . util . List ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . Assert ; import org . eclipse . core . runtime . IPath ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . swt . SWTError ; import org . eclipse . swt . dnd . Clipboard ; import org . eclipse . swt . dnd . DND ; import org . eclipse . swt . dnd . FileTransfer ; import org . eclipse . swt . dnd . TextTransfer ; import org . eclipse . swt . dnd . Transfer ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . actions . SelectionListenerAction ; import org . eclipse . ui . internal . views . navigator . ResourceNavigatorMessages ; import org . eclipse . ui . part . ResourceTransfer ; class CopyAction extends SelectionListenerAction { public static final String ID = PlatformUI . PLUGIN_ID + ".CopyAction" ; private Shell shell ; private Clipboard clipboard ; private PasteAction pasteAction ; public CopyAction ( Shell shell , Clipboard clipboard ) { super ( ResourceNavigatorMessages . CopyAction_title ) ; Assert . isNotNull ( shell ) ; Assert . isNotNull ( clipboard ) ; this . shell = shell ; this . clipboard = clipboard ; setToolTipText ( ResourceNavigatorMessages . CopyAction_toolTip ) ; setId ( CopyAction . ID ) ; } public CopyAction ( Shell shell , Clipboard clipboard , PasteAction pasteAction ) { this ( shell , clipboard ) ; this . pasteAction = pasteAction ; } public void run ( ) { List selectedResources = getSelectedResources ( ) ; IResource [ ] resources = ( IResource [ ] ) selectedResources . toArray ( new IResource [ selectedResources . size ( ) ] ) ; final int length = resources . length ; int actualLength = 0 ; String [ ] fileNames = new String [ length ] ; StringBuffer buf = new StringBuffer ( ) ; for ( int i = 0 ; i < length ; i ++ ) { IPath location = resources [ i ] . getLocation ( ) ; if ( location != null ) { fileNames [ actualLength ++ ] = location . toOSString ( ) ; } if ( i > 0 ) { buf . append ( "n" ) ; } buf . append ( resources [ i ] . getName ( ) ) ; } if ( actualLength < length ) { String [ ] tempFileNames = fileNames ; fileNames = new String [ actualLength ] ; for ( int i = 0 ; i < actualLength ; i ++ ) { fileNames [ i ] = tempFileNames [ i ] ; } } setClipboard ( resources , fileNames , buf . toString ( ) ) ; if ( pasteAction != null && pasteAction . getStructuredSelection ( ) != null ) { pasteAction . selectionChanged ( pasteAction . getStructuredSelection ( ) ) ; } } private void setClipboard ( IResource [ ] resources , String [ ] fileNames , String names ) { try { if ( fileNames . length > 0 ) { clipboard . setContents ( new Object [ ] { resources , fileNames , names } , new Transfer [ ] { ResourceTransfer . getInstance ( ) , FileTransfer . getInstance ( ) , TextTransfer | |
1,316 | <s> package com . asakusafw . utils . java . internal . model . syntax ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . SwitchCaseLabel ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class SwitchCaseLabelImpl extends ModelRoot implements SwitchCaseLabel { private Expression expression ; @ Override public Expression getExpression ( ) { return this . expression ; } public void | |
1,317 | <s> package handson . springbatch . writer ; import java . util . List ; import org . | |
1,318 | <s> package de . fuberlin . wiwiss . d2rq . download ; import java . io . ByteArrayInputStream ; import java . io . InputStream ; import java . sql . Connection ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . sql . Statement ; import java . sql . Types ; import java . util . HashSet ; import java . util . Set ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import com . hp . hpl . jena . graph . Node ; import de . fuberlin . wiwiss . d2rq . D2RQException ; import de . fuberlin . wiwiss . d2rq . algebra . MutableRelation ; import de . fuberlin . wiwiss . d2rq . algebra . ProjectionSpec ; import de . fuberlin . wiwiss . d2rq . algebra . Relation ; import de . fuberlin . wiwiss . d2rq . map . DownloadMap ; import de . fuberlin . wiwiss . d2rq . nodes . NodeMaker ; import de . fuberlin . wiwiss . d2rq . sql . ConnectedDB ; import de . fuberlin . wiwiss . d2rq . sql . ResultRowMap ; import de . fuberlin . wiwiss . d2rq . sql . SQLIterator ; import de . fuberlin . wiwiss . d2rq . sql . SelectStatementBuilder ; import de . fuberlin . wiwiss . d2rq . values . ValueMaker ; public class DownloadContentQuery { private static final Log log = LogFactory . getLog ( DownloadContentQuery . class ) ; private final DownloadMap downloadMap ; private final ValueMaker mediaTypeValueMaker ; private final String uri ; private Statement statement = null ; private ResultSet resultSet = null ; private InputStream resultStream = null ; private String mediaType = null ; public DownloadContentQuery ( DownloadMap downloadMap , String uri ) { this . downloadMap = downloadMap ; this . mediaTypeValueMaker = downloadMap . getMediaTypeValueMaker ( ) ; this . uri = uri ; execute ( ) ; } public boolean hasContent ( ) { return resultStream != null ; } public InputStream getContentStream ( ) { return resultStream ; } public String getMediaType ( ) { return mediaType ; } public void close ( ) { try { if ( this . statement != null ) { this . statement . close ( ) ; this . statement = null ; } if ( this . resultSet != null ) { this . resultSet . close ( ) ; this . resultSet = null ; } } catch ( SQLException ex ) { throw new D2RQException ( ex ) ; } } private void execute ( ) { MutableRelation newRelation = new MutableRelation ( downloadMap . getRelation ( ) ) ; NodeMaker x = downloadMap . nodeMaker ( ) . selectNode ( Node . createURI ( uri ) , newRelation ) ; if ( x . equals ( NodeMaker . EMPTY ) ) return ; Set < ProjectionSpec > requiredProjections = new HashSet < ProjectionSpec > ( ) ; requiredProjections . add ( downloadMap . getContentDownloadColumn ( ) ) ; requiredProjections . addAll ( mediaTypeValueMaker . projectionSpecs ( ) ) ; | |
1,319 | <s> package org . oddjob . sql ; import java . sql . Statement ; import java . sql . CallableStatement ; import java . sql . Connection ; import java . sql . ParameterMetaData ; import java . sql . PreparedStatement ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . sql . SQLWarning ; import java . util . ArrayList ; import java . util . List ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ArooaValue ; import org . oddjob . arooa . convert . ArooaConverter ; import org . oddjob . arooa . convert . ConversionFailedException ; import org . oddjob . arooa . convert . NoConversionAvailableException ; import org . oddjob . arooa . life . ArooaSessionAware ; import org . oddjob . arooa . reflect . PropertyAccessor ; import org . oddjob . arooa . types . ValueType ; import org . oddjob . beanbus . BadBeanException ; import org . oddjob . beanbus . BeanBus ; import org . oddjob . beanbus . BusAware ; import org . oddjob . beanbus . BusEvent ; import org . oddjob . beanbus . BusException ; import org . oddjob . beanbus . BusListener ; import org . oddjob . beanbus . CrashBusException ; public class ParameterisedExecutor implements ArooaSessionAware , SQLExecutor , BusAware { private static final Logger logger = Logger . getLogger ( SQLJob . class ) ; private Connection connection ; private transient List < ValueType > parameters ; private boolean callable ; private int successfulSQLCount = 0 ; private int executedSQLCount = 0 ; private SQLResultsProcessor resultProcessor ; private PreparedStatement statement ; private boolean escapeProcessing = true ; private boolean autocommit = false ; private transient ArooaSession session ; @ Override public void setArooaSession ( ArooaSession session ) { this . session = session ; } @ Override public void accept ( String sql ) throws BadBeanException { try { execute ( sql ) ; } catch ( BadBeanException e ) { throw e ; } catch ( Exception e ) { throw | |
1,320 | <s> package com . mcbans . firestar . mcbans . org . json ; import java . util . Iterator ; public class JSONML { private static Object parse ( XMLTokener x , boolean arrayForm , JSONArray ja ) throws JSONException { String attribute ; char c ; String closeTag = null ; int i ; JSONArray newja = null ; JSONObject newjo = null ; Object token ; String tagName = null ; while ( true ) { token = x . nextContent ( ) ; if ( token == XML . LT ) { token = x . nextToken ( ) ; if ( token instanceof Character ) { if ( token == XML . SLASH ) { token = x . nextToken ( ) ; if ( ! ( token instanceof String ) ) { throw new JSONException ( "" + token + "'." ) ; } if ( x . nextToken ( ) != XML . GT ) { throw x . syntaxError ( "" ) ; } return token ; } else if ( token == XML . BANG ) { c = x . next ( ) ; if ( c == '-' ) { if ( x . next ( ) == '-' ) { x . skipPast ( "-->" ) ; } x . back ( ) ; } else if ( c == '[' ) { token = x . nextToken ( ) ; if ( token . equals ( "CDATA" ) && x . next ( ) == '[' ) { if ( ja != null ) { ja . put ( x . nextCDATA ( ) ) ; } } else { throw x . syntaxError ( "" ) ; } } else { i = 1 ; do { token = x . nextMeta ( ) ; if ( token == null ) { throw x . syntaxError ( "" ) ; } else if ( token == XML . LT ) { i += 1 ; } else if ( token == XML . GT ) { i -= 1 ; } } while ( i > 0 ) ; } } else if ( token == XML . QUEST ) { x . skipPast ( "?>" ) ; } else { throw x . syntaxError ( "" ) ; } } else { if ( ! ( token instanceof String ) ) { throw x . syntaxError ( "" + token + "'." ) ; } tagName = ( String ) token ; newja = new JSONArray ( ) ; newjo = new JSONObject ( ) ; if ( arrayForm ) { newja . put ( tagName ) ; if ( ja != null ) { ja . put ( newja ) ; } } else { newjo . put ( "tagName" , tagName ) ; if ( ja != null ) { ja . put ( newjo ) ; } } token = null ; for ( ; ; ) { if ( token == null ) { token = x . nextToken ( ) ; } if ( token == null ) { throw x . syntaxError ( "" ) ; } if ( ! ( token instanceof String ) ) { break ; } attribute = ( String ) token ; if ( ! arrayForm && ( attribute == "tagName" || attribute == "childNode" ) ) { throw x . syntaxError ( "" ) ; } token = x . nextToken ( ) ; if ( token == XML . EQ ) { token = x . nextToken ( ) ; if ( ! ( token instanceof String ) ) { throw x . syntaxError ( "" ) ; } newjo . accumulate ( attribute , XML . stringToValue ( ( String ) token ) ) ; token = null ; } else { newjo . accumulate ( attribute , "" ) ; } } if ( arrayForm && newjo . length ( ) > 0 ) { newja . put ( newjo ) ; } if ( token == XML . SLASH ) { if ( x . nextToken ( ) != XML . GT ) { throw x . syntaxError ( "" ) ; } if ( ja == null ) { if ( arrayForm ) { return newja ; } else { return newjo ; } } } else { if ( token != XML . GT ) { throw x . syntaxError ( "" ) ; } closeTag = ( String ) parse ( x , arrayForm , newja ) ; if ( closeTag != null ) { if ( ! closeTag . equals ( tagName ) ) { throw x . syntaxError ( "Mismatched '" + tagName + "' and '" + closeTag + "'" ) ; } tagName = null ; if ( ! arrayForm && newja . length ( ) > 0 ) { newjo . put ( "childNodes" , newja ) ; } if ( ja == null ) { if ( arrayForm ) { return newja ; } else { return newjo ; } } } } } } else { if ( ja != null ) { ja . put ( token instanceof String ? XML . stringToValue ( ( String ) token ) : token ) ; } } } } public static JSONArray toJSONArray ( String string ) throws JSONException { return toJSONArray ( new XMLTokener ( string ) ) ; } public static JSONArray toJSONArray ( XMLTokener x ) throws JSONException { return ( JSONArray ) parse ( x , true , null ) ; } public static JSONObject toJSONObject ( XMLTokener x ) throws JSONException { return ( JSONObject ) parse ( x , false , null ) ; } public static JSONObject toJSONObject ( String string ) throws JSONException { return toJSONObject ( new XMLTokener ( string ) ) ; } public static String toString ( JSONArray ja ) throws JSONException { int i ; JSONObject jo ; String key ; @ SuppressWarnings ( "rawtypes" ) Iterator keys ; int length ; Object object ; StringBuffer sb = new StringBuffer ( ) ; String tagName ; String value ; tagName = ja . getString ( 0 ) ; XML . noSpace ( tagName ) ; tagName = XML . escape ( tagName ) ; sb . append ( '<' ) ; sb . append ( tagName ) ; object = ja . opt ( 1 ) ; if ( object instanceof JSONObject ) { i = 2 ; jo = ( JSONObject ) object ; keys = jo . keys ( ) ; while ( keys . hasNext ( ) ) { key = keys . next ( ) . toString ( ) ; XML . noSpace ( key ) ; value = jo . optString ( key ) ; if ( value != null ) { sb . append ( ' ' ) ; sb . append ( XML . escape ( key ) ) ; sb . append ( '=' ) ; sb . append ( '"' ) ; sb . append ( XML . escape ( value ) ) ; sb . append ( '"' ) ; } } } else { i = 1 ; } length = ja . length ( ) ; if ( i >= length ) { sb . append ( '/' ) ; sb . append ( '>' ) ; } else { sb . append ( '>' ) ; do { object = ja . get ( i ) ; i += 1 ; if ( object != null ) { if ( object instanceof String ) { sb . append ( XML . escape ( object . toString ( ) ) ) ; } else if ( object instanceof JSONObject ) { sb . append ( toString ( ( JSONObject ) object ) ) ; } else if ( object instanceof JSONArray ) { sb . append ( toString ( ( JSONArray ) object ) ) ; } } } while ( i < length ) ; sb . append ( '<' ) ; sb . append ( '/' ) ; sb . append ( tagName ) ; sb . append ( '>' ) ; } return sb . toString ( ) ; } | |
1,321 | <s> package com . lmax . disruptor ; import com . lmax . disruptor . support . * ; import org . junit . Test ; import java . util . concurrent . * ; public final class Sequencer3P1CPerfTest extends AbstractPerfTestQueueVsDisruptor { private static final int NUM_PRODUCERS = 3 ; private static final int SIZE = 1024 * 32 ; private static final long ITERATIONS = 1000L * 1000L * 500L ; private final ExecutorService EXECUTOR = Executors . newFixedThreadPool ( NUM_PRODUCERS + 1 ) ; private final CyclicBarrier cyclicBarrier = new CyclicBarrier ( NUM_PRODUCERS + 1 ) ; private final BlockingQueue < Long > blockingQueue = new ArrayBlockingQueue < Long > ( SIZE ) ; private final ValueAdditionQueueConsumer queueConsumer = new ValueAdditionQueueConsumer ( blockingQueue ) ; private final ValueQueueProducer [ ] valueQueueProducers = new ValueQueueProducer [ NUM_PRODUCERS ] ; { valueQueueProducers [ 0 ] = new ValueQueueProducer ( cyclicBarrier , blockingQueue , ITERATIONS ) ; valueQueueProducers [ 1 ] = new ValueQueueProducer ( cyclicBarrier , blockingQueue , ITERATIONS ) ; valueQueueProducers [ 2 ] = new ValueQueueProducer ( cyclicBarrier , blockingQueue , ITERATIONS ) ; } private final RingBuffer < ValueEntry > ringBuffer = new RingBuffer < ValueEntry > ( ValueEntry . ENTRY_FACTORY , SIZE , ClaimStrategy . Option . MULTI_THREADED , WaitStrategy . Option . YIELDING ) ; private final ConsumerBarrier < ValueEntry > consumerBarrier = ringBuffer . createConsumerBarrier ( ) ; private final ValueAdditionHandler handler = new ValueAdditionHandler ( ) ; private final BatchConsumer < ValueEntry > batchConsumer = new BatchConsumer < ValueEntry > ( consumerBarrier , handler ) ; private final ProducerBarrier < ValueEntry > producerBarrier = ringBuffer . createProducerBarrier ( batchConsumer ) ; private final ValueProducer [ ] valueProducers = new ValueProducer [ NUM_PRODUCERS ] ; { valueProducers [ 0 ] = new ValueProducer ( cyclicBarrier , producerBarrier , ITERATIONS ) ; valueProducers [ 1 ] = new ValueProducer ( cyclicBarrier , producerBarrier , ITERATIONS ) ; valueProducers [ 2 ] = new ValueProducer ( cyclicBarrier , producerBarrier , ITERATIONS ) ; } @ Test @ Override public void shouldCompareDisruptorVsQueues ( ) throws Exception { testImplementations ( ) ; } @ Override protected long runQueuePass ( final int passNumber ) throws Exception { Future [ ] futures = new Future [ NUM_PRODUCERS ] ; for ( int i = 0 ; i < NUM_PRODUCERS ; i ++ ) { futures [ i ] = EXECUTOR . submit ( valueQueueProducers [ i ] ) ; } Future consumerFuture = EXECUTOR . submit ( queueConsumer ) ; long start = System . currentTimeMillis | |
1,322 | <s> package org . vaadin . teemu . clara . binder . annotation ; import java . lang . annotation . ElementType ; import java . lang . annotation | |
1,323 | <s> package de . fuberlin . wiwiss . d2rq . mapgen ; public class FilterIncludeExclude extends Filter { private final Filter include ; private final Filter exclude ; public FilterIncludeExclude ( Filter include , Filter exclude ) { this . include = include ; this . exclude = exclude ; } public boolean matchesSchema ( String schema ) { return include . matchesSchema ( schema ) && ! exclude . matchesSchema ( schema ) ; } public boolean matchesTable ( String schema , String table ) { return include . matchesTable ( schema , table ) && ! exclude . matchesTable ( schema , table ) ; } public boolean matchesColumn ( String schema , String table , String column ) { return include . matchesColumn ( schema , table , column ) && ! exclude . matchesColumn ( schema , table , column ) ; } public String getSingleSchema ( ) { return include . getSingleSchema ( ) ; } public String toString ( ) { String in = ( include == Filter . ALL ) ? null : "include(" | |
1,324 | <s> package org . rubypeople . rdt . ui . text . ruby ; import org . jruby . ast . Node ; import org . jruby . ast . RootNode ; import org . rubypeople . rdt . core . | |
1,325 | <s> package org . rubypeople . rdt . internal . ui ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . ui . IContainmentAdapter ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModel ; import org . rubypeople . rdt . core . RubyCore ; public class RubyElementContainmentAdapter implements IContainmentAdapter { private IRubyModel fRubyModel = RubyCore . create ( ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ) ; public boolean contains ( Object workingSetElement , Object element , int flags ) { if ( ! ( workingSetElement instanceof IRubyElement ) || element == null ) return false ; IRubyElement workingSetRubyElement = ( IRubyElement ) workingSetElement ; IResource resource = null ; IRubyElement jElement = null ; if ( element instanceof IRubyElement ) { jElement = ( IRubyElement ) element ; resource = jElement . getResource ( ) ; } else { if ( element instanceof IAdaptable ) { resource = ( IResource ) ( ( IAdaptable ) element ) . getAdapter ( IResource . class ) ; if ( resource != null ) { if ( fRubyModel . contains ( resource ) ) { jElement = RubyCore . create ( resource ) ; if ( jElement != null && ! jElement . exists ( ) ) jElement = null ; } } } } if ( jElement != null ) { if ( contains ( workingSetRubyElement , jElement , flags ) ) return true ; if ( workingSetRubyElement . getElementType ( ) == IRubyElement . SOURCE_FOLDER && | |
1,326 | <s> package org . rubypeople . rdt . internal . ui . text ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . Region ; import org . eclipse . jface . text . TextUtilities ; import org . eclipse . jface . text . source . ICharacterPairMatcher ; import org . jruby . ast . BeginNode ; import org . jruby . ast . CaseNode ; import org . jruby . ast . ClassNode ; import org . jruby . ast . DefnNode ; import org . jruby . ast . DefsNode ; import org . jruby . ast . ForNode ; import org . jruby . ast . IfNode ; import org . jruby . ast . IterNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . Node ; import org . jruby . ast . SClassNode ; import org . jruby . ast . WhenNode ; import org . jruby . ast . WhileNode ; import org . jruby . lexer . yacc . SyntaxException ; import org . rubypeople . rdt . internal . core . parser . RubyParser ; import org . rubypeople . rdt . internal . ti . util . ClosestSpanningNodeLocator ; import org . rubypeople . rdt . internal . ti . util . INodeAcceptor ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; public class RubyPairMatcher implements ICharacterPairMatcher { protected char [ ] fPairs ; protected IDocument fDocument ; protected int fOffset ; protected int fStartPos ; protected int fEndPos ; protected int fAnchor ; public RubyPairMatcher ( char [ ] pairs ) { | |
1,327 | <s> package com . asakusafw . compiler . operator ; import java . util . List ; import javax . lang . model . type . TypeKind ; import javax . tools . Diagnostic ; import com . asakusafw . compiler . common . TargetOperator ; import com . asakusafw . compiler . operator . OperatorMethodDescriptor . Builder ; import com . asakusafw . utils . java . model . syntax . InfixOperator ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . TypeBodyDeclaration ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . Models ; @ TargetOperator ( MockOperator . class ) public class MockOperatorProcessor extends AbstractOperatorProcessor { @ Override public OperatorMethodDescriptor describe ( Context context ) { if ( context . element . getParameters ( ) . size ( ) != 2 ) { context . environment . getMessager ( ) . printMessage ( Diagnostic . Kind . ERROR , "" ) ; return null ; } if ( context . element . getReturnType ( ) . getKind ( ) == TypeKind . VOID ) { context . environment . getMessager ( ) . printMessage ( Diagnostic . Kind . ERROR , "" ) ; return null ; } ExecutableAnalyzer a = new ExecutableAnalyzer ( context . environment , context . element ) ; if ( a . countParameters ( ) != 2 ) { return null ; } if ( a . getReturnType ( ) . isVoid ( ) ) { return null ; } Builder builder = new Builder ( MockOperator . class , context ) ; builder . addInput ( a . getParameterDocument ( 0 ) , "in" , a . getParameterType ( 0 ) . getType ( ) , 0 ) ; builder . addParameter ( a . getParameterDocument ( 1 ) , "param" , a . getParameterType ( 1 ) . getType ( ) , 1 ) ; builder . | |
1,328 | <s> package org . oddjob . designer . components ; import org . apache . log4j . Logger ; import org . custommonkey . xmlunit . XMLTestCase ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . parsing . CutAndPasteSupport ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLArooaParser ; import org . oddjob . arooa . xml . XMLConfiguration ; public class VariablesDCTest extends XMLTestCase { private static final Logger logger = Logger . getLogger ( VariablesDCTest . class ) ; DesignInstance design ; public void setUp ( ) { logger . debug ( "" + getName ( ) + "" ) ; } public void testCreate ( ) throws Exception { String xml = "" + " <fruit>" + "" + " </fruit>" + "</variables>" ; ArooaDescriptor descriptor = new OddjobDescriptorFactory ( ) . createDescriptor ( null ) ; DesignParser parser = new DesignParser ( new StandardArooaSession ( descriptor ) ) ; parser . setArooaType ( ArooaType . COMPONENT ) ; parser . parse ( new XMLConfiguration ( "TEST" , xml ) ) ; design = parser . getDesign ( ) ; String paste = "<veg>" + "" + "</veg>" ; CutAndPasteSupport . paste ( design . getArooaContext ( ) , 1 , new XMLConfiguration ( "TEST" , paste ) ) ; XMLArooaParser xmlParser = new XMLArooaParser ( ) ; xmlParser . parse ( design . getArooaContext ( ) . getConfigurationNode ( ) ) ; String EOL = System . getProperty ( "" ) ; String expected = "" + EOL + " <fruit>" + EOL + "" + EOL + " </fruit>" + EOL + " <veg>" + EOL + "" + EOL + " </veg>" + EOL + "</variables>" + EOL ; assertXMLEqual ( expected , xmlParser . getXml ( ) ) ; } public void testParseRubbish ( ) throws Exception { String xml = "" + " <fruit>" + " <rubbish/>" + " </fruit>" + "</variables>" ; ArooaDescriptor descriptor = new OddjobDescriptorFactory ( ) . createDescriptor ( null ) ; DesignParser parser = new DesignParser ( new StandardArooaSession ( descriptor ) | |
1,329 | <s> package org . rubypeople . rdt . refactoring . core . splitlocal ; import org . eclipse . osgi . util . NLS ; public class Messages extends NLS { private | |
1,330 | <s> package com . asakusafw . windgate . core ; import java . io . Closeable ; import java . io . IOException ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . LinkedList ; import java . util . List ; import java . util . Map ; import java . util . TreeMap ; import java . util . concurrent . Callable ; import java . util . concurrent . CancellationException ; import java . util . concurrent . ExecutionException ; import java . util . concurrent . ExecutorService ; import java . util . concurrent . Executors ; import java . util . concurrent . Future ; import java . util . concurrent . TimeUnit ; import java . util . concurrent . TimeoutException ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . runtime . core . context . RuntimeContext ; import com . asakusafw . runtime . core . context . SimulationSupport ; import com . asakusafw . windgate . core . process . ProcessProfile ; import com . asakusafw . windgate . core . process . ProcessProvider ; import com . asakusafw . windgate . core . resource . DriverRepository ; import com . asakusafw . windgate . core . resource . ResourceMirror ; import com . asakusafw . windgate . core . resource . ResourceProfile ; import com . asakusafw . windgate . core . resource . ResourceProvider ; import com . asakusafw . windgate . core . session . SessionMirror ; import com . asakusafw . windgate . core . session . SessionProfile ; import com . asakusafw . windgate . core . session . SessionProvider ; @ SimulationSupport public class GateTask implements Closeable { static final WindGateLogger WGLOG = new WindGateCoreLogger ( GateTask . class ) ; static final Logger LOG = LoggerFactory . getLogger ( GateTask . class ) ; private final ExecutorService executor ; private final SessionProvider sessionProvider ; private final List < ResourceProvider > resourceProviders ; private final Map < String , ProcessProvider > processProviders ; final GateProfile profile ; final GateScript script ; final String sessionId ; private final boolean createSession ; private final boolean completeSession ; private final ParameterList arguments ; public GateTask ( GateProfile profile , GateScript script , String sessionId , boolean createSession , boolean completeSession , ParameterList arguments ) throws IOException { if ( profile == null ) { throw new IllegalArgumentException ( "" ) ; } if ( script == null ) { throw new IllegalArgumentException ( "" ) ; } if ( sessionId == null ) { throw new IllegalArgumentException ( "" ) ; } if ( arguments == null ) { throw new IllegalArgumentException ( "" ) ; } this . profile = profile ; this . script = script ; this . sessionId = sessionId ; this . createSession = createSession ; this . completeSession = completeSession ; this . arguments = arguments ; this . sessionProvider = loadSessionProvider ( profile . getSession ( ) ) ; this . resourceProviders = loadResourceProviders ( profile . getResources ( ) ) ; this . processProviders = loadProcessProviders ( profile . getProcesses ( ) ) ; this . executor = Executors . newFixedThreadPool ( profile . getCore ( ) . getMaxProcesses ( ) ) ; } private SessionProvider loadSessionProvider ( SessionProfile session ) throws IOException { assert session != null ; LOG . debug ( "" , session . getProviderClass ( ) . getName ( ) ) ; SessionProvider result = session . createProvider ( ) ; return result ; } private List < ResourceProvider > loadResourceProviders ( List < ResourceProfile > resources ) throws IOException { assert resources != null ; List < ResourceProvider > results = new ArrayList < ResourceProvider > ( ) ; for ( ResourceProfile resourceProfile : resources ) { LOG . debug ( "" , resourceProfile . getName ( ) , resourceProfile . getProviderClass ( ) . getName ( ) ) ; ResourceProvider provider = resourceProfile . createProvider ( ) ; results . add ( provider ) ; } return results ; } private Map < String , ProcessProvider > loadProcessProviders ( List < ProcessProfile > processes ) throws IOException { assert processes != null ; Map < String , ProcessProvider > results = new TreeMap < String , ProcessProvider > ( ) ; for ( ProcessProfile processProfile : processes ) { LOG . debug ( "" , processProfile . getName ( ) , processProfile . getProviderClass ( ) . getName ( ) ) ; assert results . containsKey ( processProfile . getName ( ) ) == false ; ProcessProvider provider = processProfile . createProvider ( ) ; results . put ( processProfile . getName ( ) , provider ) ; } return results ; } | |
1,331 | <s> package com . aptana . rdt . internal . core . gems ; import java . util . Set ; import com . aptana . rdt . core . gems . Gem ; public class ShortListingGemParserTest extends AbstractGemParserTestCase { @ Override protected IGemParser getParser ( ) { return new ShortListingGemParser ( ) ; } public void testBlah ( ) throws GemParseException { String contents = getContents ( "" ) ; Set < Gem > gems = | |
1,332 | <s> package org . rubypeople . rdt . internal . core . parser ; import org . jruby . ast . Node ; public class NodeFoundException extends RuntimeException { private static final long serialVersionUID = - 1087131531164628936L ; private Node node ; public NodeFoundException ( | |
1,333 | <s> package net . sf . sveditor . core . tests . open_decl ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . Tuple ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . index . ISVDBFileSystemProvider ; import net . sf . sveditor . core . db . index . ISVDBIndex ; import net . sf . sveditor . core . db . index . ISVDBIndexIterator ; import net . sf . sveditor . core . db . index . ISVDBItemIterator ; import net . sf . sveditor . core . db . index . SVDBIndexRegistry ; import net . sf . sveditor . core . db . index . SVDBLibIndex ; import net . sf . sveditor . core . db . index . SVDBLibPathIndexFactory ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . open_decl . OpenDeclUtils ; import net . sf . sveditor . core . scanutils . StringBIDITextScanner ; import net . sf . sveditor . core . tests . FileIndexIterator ; import net . sf . sveditor . core . tests . SVCoreTestsPlugin ; import net . sf . sveditor . core . tests . SVDBTestUtils ; import net . sf . sveditor . core . tests . TestIndexCacheFactory ; import net . sf . sveditor . core . tests . utils . BundleUtils ; import net . sf . sveditor . core . tests . utils . TestUtils ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . runtime . NullProgressMonitor ; public class TestOpenFile extends TestCase { private File fTmpDir ; private IProject fProject ; @ Override protected void setUp ( ) throws Exception { fTmpDir = TestUtils . createTempDir ( ) ; } @ Override protected void tearDown ( ) throws Exception { SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) . save_state ( ) ; if ( fProject != null ) { TestUtils . deleteProject ( fProject ) ; } if ( fTmpDir . exists ( ) ) { TestUtils . delete ( fTmpDir ) ; } } public void testRelPathOpenDecl ( ) throws IOException { String testname = "" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; LogHandle log = LogFactory . getLogHandle ( testname ) ; try { BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; utils . copyBundleDirToFS ( "" , fTmpDir ) ; File subdir2 = | |
1,334 | <s> package com . asakusafw . dmdl . directio . csv . driver ; import com . asakusafw . dmdl . directio . csv . driver . CsvFieldTrait . Kind ; import com . asakusafw . dmdl . model . AstAttribute ; import com . asakusafw . dmdl . model . BasicTypeKind ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . semantics . PropertyDeclaration ; import com . asakusafw . dmdl . spi . PropertyAttributeDriver ; import com . asakusafw . dmdl . util . AttributeUtil ; public class CsvRecordNumberDriver extends PropertyAttributeDriver { | |
1,335 | <s> package org . oddjob . scheduling ; import java . util . concurrent . Callable ; import java . util . concurrent . ScheduledExecutorService ; import java . util . concurrent . ScheduledFuture ; import java . util . concurrent . TimeUnit ; public class MockScheduledExecutorService extends MockExecutorService implements ScheduledExecutorService { @ Override public ScheduledFuture < ? > schedule ( Runnable command , long delay , TimeUnit unit ) { throw new RuntimeException ( "" + getClass ( ) ) ; } @ Override public < V > ScheduledFuture | |
1,336 | <s> package net . sf . sveditor . ui . editor ; import org . eclipse . jface . text . templates . GlobalTemplateVariables ; import org . eclipse . jface . text . templates . TemplateContextType ; public class SVTemplateContextType extends TemplateContextType { public SVTemplateContextType ( ) { addResolver ( new GlobalTemplateVariables . | |
1,337 | <s> package com . asakusafw . compiler . operator . io ; import java . io . IOException ; import com . asakusafw . compiler . operator . model . MockSummarized ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class MockSummarizedOutput | |
1,338 | <s> package com . asakusafw . bulkloader . exporter ; import java . sql . Connection ; import java . sql . PreparedStatement ; import java . sql . SQLException ; import java . util . Iterator ; import java . util . LinkedHashSet ; import java . util . List ; import java . util . Set ; import java . util . concurrent . TimeUnit ; import com . asakusafw . bulkloader . bean . ExportTargetTableBean ; import com . asakusafw . bulkloader . bean . ExporterBean ; import com . asakusafw . bulkloader . common . DBAccessUtil ; import com . asakusafw . bulkloader . common . DBConnection ; import com . asakusafw . bulkloader . exception . BulkLoaderReRunnableException ; import com . asakusafw . bulkloader . exception . BulkLoaderSystemException ; import com . asakusafw . bulkloader . log . Log ; public class LockRelease { static final Log LOG = new Log ( LockRelease . class ) ; public boolean releaseLock ( ExporterBean bean , boolean isEndJobFlow ) { int retryCount = bean . getRetryCount ( ) ; int retryInterval = bean . getRetryInterval ( ) ; int retry = 0 ; Set < String > tableSet = mergingIOTable ( bean . getExportTargetTableList ( ) , bean . getImportTargetTableList ( ) ) ; Connection conn = null ; try { conn = DBConnection . getConnection ( ) ; if ( tableSet . isEmpty ( ) ) { if ( isEndJobFlow ) { endJobFlow ( conn , bean . getJobflowSid ( ) ) ; DBConnection . commit ( conn ) ; } return true ; } deleteTempTable ( bean , isEndJobFlow , conn ) ; deleteTempInfoRecord ( bean , isEndJobFlow , conn ) ; while ( true ) { retry ++ ; try { getImportTableLock ( conn , tableSet . iterator ( ) ) ; break ; } catch ( BulkLoaderReRunnableException e ) { LOG . log ( e ) ; if ( retry <= retryCount ) { try { DBConnection . rollback ( conn ) ; Thread . sleep ( TimeUnit . SECONDS . toMillis ( retryInterval ) ) ; continue ; } catch ( InterruptedException e1 ) { throw new BulkLoaderSystemException ( e1 , getClass ( ) , "" , "" ) ; } } else { throw new BulkLoaderSystemException ( getClass ( ) , "" , "" ) ; } } } releaseTableLock ( conn , bean . getJobflowSid ( ) ) ; for ( String tableName : tableSet ) { releaseLineLock ( conn , tableName , bean . getJobflowSid ( ) ) ; } if ( isEndJobFlow ) { endJobFlow ( conn , bean . getJobflowSid ( ) ) ; } DBConnection . commit ( conn ) ; return true ; } catch ( BulkLoaderSystemException e ) { LOG . log ( e ) ; try { DBConnection . rollback ( conn ) ; } catch ( BulkLoaderSystemException e1 ) { LOG . log ( e1 ) ; } return false ; } finally { DBConnection . closeConn ( conn ) ; } } private void endJobFlow ( Connection conn , String jobflowSid ) throws BulkLoaderSystemException { String sql = "" ; PreparedStatement stmt = null ; LOG . info ( "" , sql , jobflowSid ) ; try { stmt = conn . prepareStatement ( sql ) ; stmt . setString ( 1 , jobflowSid ) ; DBConnection . executeUpdate ( stmt , sql , new String [ ] { jobflowSid } ) ; } catch ( SQLException e ) { throw BulkLoaderSystemException . createInstanceCauseBySQLException ( e , this . getClass ( ) , | |
1,339 | <s> package com . asakusafw . compiler . testing ; import com . asakusafw . compiler . common . Precondition ; public class StageInfo { private String className ; public StageInfo ( String className ) { Precondition . checkMustNotBeNull ( className , "className" ) ; | |
1,340 | <s> package org . rubypeople . rdt . refactoring . tests . core . inlinemethod ; import java . util . ArrayList ; import org . rubypeople . rdt . refactoring . core . inlinemethod . MethodBodyStatementReplacer ; import org . rubypeople . rdt . refactoring . documentprovider . IDocumentProvider ; import org . rubypeople . rdt . refactoring . tests . core . MultipleDocumentsInOneProvider ; public class TC_MethodBodyStatementReplacer extends FinderTestsBase { public void testReplaceOneSelf ( ) { replace ( "test1" , "replacement" , "result1" ) ; } public void testReplaceTwoSelfs ( ) { replace ( "test2" , "replacement" , "result2" ) ; } public void testReplaceSelfInCall ( ) | |
1,341 | <s> package org . oddjob . schedules . regression ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import org . apache . log4j . Logger ; import org . oddjob . arooa . convert . ConversionFailedException ; import org . oddjob . arooa . convert . NoConversionAvailableException ; import org . oddjob . schedules . Schedule ; public class SingleTestSchedule { private static Logger logger = Logger . getLogger ( SingleTestSchedule . class ) ; private Schedule schedule ; private List < TestScheduleRun > runs = new ArrayList < TestScheduleRun > ( ) ; private String name ; public void setName ( String name ) { this . name = name ; } public String getName ( ) { return this . name ; } public void setRuns ( int index , TestScheduleRun run ) throws Exception { runs . add ( run ) ; } public void setSchedule ( Schedule schedule ) throws NoConversionAvailableException , ConversionFailedException { this . schedule = schedule ; } public int countTestCases ( ) { return runs . size ( ) ; } | |
1,342 | <s> package org . rubypeople . rdt . refactoring . ui . pages . extractmethod ; public class ParameterTextChanged { private final String from ; private final String to ; private final int newPosition ; private final int originalPosition ; public String getFrom ( ) { return from ; } public String getTo | |
1,343 | <s> package org . oddjob . values . properties ; import org . oddjob . arooa . design . DesignFactory ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignProperty ; import org . oddjob . arooa . design . DesignValueBase ; import org . oddjob . arooa . design . IndexedDesignProperty ; import org . oddjob . arooa . design . MappedDesignProperty ; import org . oddjob . arooa . design . SimpleDesignProperty ; import org . oddjob . arooa . design . SimpleTextAttribute ; import org . oddjob . arooa . design . screem . FieldGroup ; import org . oddjob . arooa . design . screem . Form ; import org . oddjob . arooa . design . screem . FormItem ; import org . oddjob . arooa . design . screem . StandardForm ; import org . oddjob . arooa . design . screem . TabGroup ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; import org . oddjob . designer . components . BaseDC ; public class PropertiesDesFa implements DesignFactory { public DesignInstance createDesign ( ArooaElement element , ArooaContext parentContext ) { switch ( parentContext . getArooaType ( ) ) { case COMPONENT : return new PropertiesJobDesign ( element , parentContext ) ; case VALUE : return new PropertiesTypeDesign ( element , parentContext ) ; } throw new IllegalStateException ( "" ) ; } } class PropertiesJobDesign extends BaseDC { final private PropertiesDesign delegate ; private final SimpleTextAttribute override ; private final SimpleTextAttribute environment ; public PropertiesJobDesign ( ArooaElement element , ArooaContext parentContext ) { super ( element , parentContext ) ; override = new SimpleTextAttribute ( "override" , this ) ; environment = new SimpleTextAttribute ( "environment" , this ) ; this . delegate = new PropertiesDesign ( element , parentContext , this ) ; } @ Override public Form detail ( ) { FormItem detail = delegate . detail ( ) ; return new StandardForm ( this ) . addFormItem ( basePanel ( ) ) . addFormItem ( new FieldGroup ( ) . add ( override . view ( ) . setTitle ( "Override" ) ) . add ( environment . view ( ) . setTitle ( "Environment" ) ) ) . addFormItem ( detail ) ; } @ Override public DesignProperty [ ] children ( ) { DesignProperty [ ] delegates = delegate . children ( ) ; DesignProperty [ ] all = new DesignProperty [ delegates . length + 3 ] ; all [ 0 ] = name ; all [ 1 ] = override ; all [ 2 ] = environment ; System . arraycopy ( delegates , 0 , all , 3 , delegates . length ) ; return all ; } } class PropertiesTypeDesign extends DesignValueBase { final private PropertiesDesign delegate ; public PropertiesTypeDesign ( ArooaElement element , ArooaContext parentContext ) { super ( element , parentContext ) ; this . delegate = new PropertiesDesign ( element , parentContext , this ) ; } @ Override public Form detail ( ) { FormItem detail = | |
1,344 | <s> package de . fuberlin . wiwiss . d2rq . optimizer . expr ; import org . apache . xerces . impl . dv . XSSimpleType ; import org . apache . xerces . xs . XSConstants ; import com . hp . hpl . jena . datatypes . RDFDatatype ; import com . hp . hpl . jena . datatypes . xsd . XSDDatatype ; import com . hp . hpl . jena . graph . Node ; public class XSD { private static final XSSimpleType integerType = ( XSSimpleType ) XSDDatatype . XSDinteger . extendedTypeDefinition ( ) ; private static final XSSimpleType decimalType = ( XSSimpleType ) XSDDatatype . XSDdecimal . extendedTypeDefinition ( ) ; private static final XSSimpleType floatType = ( XSSimpleType ) XSDDatatype . XSDfloat . extendedTypeDefinition ( ) ; private static final XSSimpleType doubleType = ( XSSimpleType ) XSDDatatype . XSDdouble . extendedTypeDefinition ( ) ; public static RDFDatatype getNumericType ( RDFDatatype lhs , RDFDatatype rhs ) { int lhsType = getNumericType ( lhs ) ; int rhsType = getNumericType ( rhs ) ; if ( lhsType == XSConstants . INTEGER_DT ) { if ( rhsType == XSConstants . INTEGER_DT ) return XSDDatatype . XSDinteger ; if ( rhsType == XSConstants . DECIMAL_DT ) return XSDDatatype . XSDdecimal ; if ( rhsType == XSConstants . FLOAT_DT ) return XSDDatatype . XSDfloat ; return XSDDatatype . XSDdouble ; } else | |
1,345 | <s> package org . oddjob . state ; import java . io . File ; import java . io . IOException ; import java . util . Properties ; import junit . framework . TestCase ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . OurDirs ; import org . oddjob . StateSteps ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . jobs . structural . SequentialJob ; public class EqualsStateTest extends TestCase { public void testComplete ( ) { EqualsState test = new EqualsState ( ) ; FlagState job = new FlagState ( JobState . INCOMPLETE ) ; test . setJob ( job ) ; test . run ( ) ; assertEquals ( ParentState . INCOMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; job . setState ( JobState . COMPLETE ) ; test . softReset ( ) ; assertEquals ( JobState . READY , job . lastStateEvent | |
1,346 | <s> package net . sf . sveditor . core . db | |
1,347 | <s> package org . rubypeople . rdt . refactoring . tests . core . movemethod . conditionchecks ; import junit . framework . Test ; import | |
1,348 | <s> package org . oddjob ; import javax . swing . ImageIcon ; import org . oddjob . images . IconListener ; public class MockIconic implements Iconic { public ImageIcon iconForId ( String id ) { throw new RuntimeException ( "" + getClass ( ) ) ; } public void addIconListener ( IconListener listener ) { throw new RuntimeException ( "" + getClass ( ) ) ; } | |
1,349 | <s> package org . rubypeople . rdt . internal . ui . actions ; import java . lang . reflect . InvocationTargetException ; import org . eclipse . core . resources . IWorkspaceRunnable ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . jobs . ISchedulingRule ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . operation . IRunnableWithProgress ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . ui . RubyUIStatus ; public class WorkbenchRunnableAdapter implements IRunnableWithProgress { private boolean fTransfer = false ; private IWorkspaceRunnable fWorkspaceRunnable ; private ISchedulingRule fRule ; public WorkbenchRunnableAdapter ( IWorkspaceRunnable runnable ) { this ( runnable , ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ) ; } public WorkbenchRunnableAdapter ( IWorkspaceRunnable runnable , ISchedulingRule rule ) { fWorkspaceRunnable = runnable ; fRule = rule ; } public WorkbenchRunnableAdapter ( IWorkspaceRunnable runnable , ISchedulingRule rule , boolean transfer ) { fWorkspaceRunnable = runnable ; fRule = rule ; fTransfer = transfer ; } public ISchedulingRule getSchedulingRule ( ) { return fRule ; } public void run ( IProgressMonitor monitor ) throws InvocationTargetException , InterruptedException { try { RubyCore . run ( fWorkspaceRunnable , fRule , monitor ) ; } catch ( OperationCanceledException e ) { throw new InterruptedException ( e . getMessage ( ) ) ; } catch ( CoreException e ) { throw new InvocationTargetException ( e ) ; } } public void threadChange ( Thread thread ) { if ( fTransfer ) Platform . getJobManager ( | |
1,350 | <s> package org . rubypeople . rdt . internal . ti . util ; import java . util . Collection ; import java . util . LinkedList ; import java . util . List ; import org . jruby . ast . CallNode ; import org . jruby . ast . ClassNode ; import org . jruby . ast . FCallNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . Node ; import org . rubypeople . rdt . internal . ti . ITypeGuess ; import org . rubypeople . rdt . internal . ti . ITypeInferrer ; import org . rubypeople . rdt . internal . ti . TypeInferenceHelper ; public class MethodInvocationLocator extends NodeLocator { private MethodInvocationLocator ( ) { } private static MethodInvocationLocator staticInstance = new MethodInvocationLocator ( ) ; public static MethodInvocationLocator Instance ( ) { return staticInstance ; } private TypeInferenceHelper helper = TypeInferenceHelper . Instance ( ) ; private String typeName ; private String methodName ; private List < Node > locatedNodes ; private ITypeInferrer inferrer ; private String source ; public List < Node > findMethodInvocations ( Node rootNode , String typeName , String methodName , ITypeInferrer inferrer ) { if ( rootNode == null ) { return null ; } this . locatedNodes = new LinkedList < Node > ( ) ; this . typeNameStack = new LinkedList < String > ( ) ; this . typeName = typeName ; this . methodName = methodName ; this . inferrer = inferrer ; typeNameStack . add ( "Kernel" ) ; rootNode . accept ( this ) ; return locatedNodes ; } public Object handleNode ( Node iVisited ) { if ( iVisited instanceof FCallNode ) { if ( ( ( FCallNode ) iVisited ) . | |
1,351 | <s> package org . rubypeople . rdt . refactoring . tests . core . pushdown ; import org . rubypeople . rdt . refactoring . core . pushdown . MethodDownPusher ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentProvider ; import org . rubypeople . rdt . refactoring . documentprovider . StringDocumentProvider ; import org . rubypeople . rdt . refactoring . tests . TreeProviderTester ; public class TC_MethodDownPusherTreeTest extends TreeProviderTester { private final static String ONE_DOCUMENT_PUSHDOWN = "class A < Xn" + "endn" + "class Xn" + "" + " an" + " endn" + "end" ; private final static String ONE_DOCUMENT_PUSHDOWN_MULTIPLE = "class A < Xn" + "endn" + "class B < Xn" + "endn" + "class C < Yn" + "endn" + "class Xn" + "" + " an" + " endn" + "endn" + "class Yn" + "" + " an" + " endn" + "end" ; private final static String DOCUMENT_A_EXTENDS_X = "" + "class A < Xn" + "end" ; private final static String DOCUMENT_B_EXTENDS_X = "" + "class B < Xn" + "end" ; private final static String DOCUMENT_X = "class Xn" + "" + " an" + " endn" + "end" ; public void testSimpleOneDocumentPushDown ( ) { addContent ( new String [ ] { "X" , "method" } ) ; DocumentProvider docProvider = new StringDocumentProvider ( "" , ONE_DOCUMENT_PUSHDOWN ) ; validate ( new MethodDownPusher ( docProvider ) ) ; } public void testOneDocumentPushDown ( ) { addContent ( new String [ ] { "X" , "method" } ) ; addContent ( new String [ ] { "Y" , "method" } ) ; DocumentProvider docProvider = new StringDocumentProvider ( "" , ONE_DOCUMENT_PUSHDOWN_MULTIPLE ) ; validate ( new MethodDownPusher ( docProvider ) ) ; } public void testTwoDocumentPushDown ( ) { addContent ( new String [ ] { "X" , "method" } ) ; StringDocumentProvider | |
1,352 | <s> package de . fuberlin . wiwiss . d2rq . sql . types ; import java . sql . Date ; import java . sql . ResultSet ; import java . sql . SQLException ; import java . util . regex . Pattern ; import de . fuberlin . wiwiss . d2rq . sql . vendor | |
1,353 | <s> package org . rubypeople . rdt . core . tests ; import java . io . File ; import java . io . FileOutputStream ; import java . io . IOException ; import java . net . URL ; import junit . framework . TestCase ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IProjectDescription ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IStorage ; import org . eclipse . core . resources . IWorkspace ; import org . eclipse . core . resources . IWorkspaceDescription ; import org . eclipse . core . resources . IWorkspaceRoot ; import org . eclipse . core . resources . IWorkspaceRunnable ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . FileLocator ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . OperationCanceledException ; import org . eclipse . core . runtime . Path ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . jobs . Job ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . LoadpathEntry ; import org . rubypeople . rdt . internal . core . util . CharOperation ; import org . rubypeople . rdt . internal . core . util . Util ; public abstract class AbstractRubyModelTest extends TestCase { protected IRubyProject currentProject ; protected String endChar = "," ; public AbstractRubyModelTest ( String name ) { super ( name ) ; } @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; IWorkspaceDescription description = getWorkspace ( ) . getDescription ( ) ; if ( description . isAutoBuilding ( ) ) { description . setAutoBuilding ( false ) ; getWorkspace ( ) . setDescription ( description ) ; } } protected IRubyProject setUpRubyProject ( final String projectName ) throws CoreException , IOException { this . currentProject = setUpRubyProject ( projectName , "1.8.4" ) ; return this . currentProject ; } protected String getPluginDirectoryPath ( ) { try { URL platformURL = Platform . getBundle ( "" ) . getEntry ( "/" ) ; return new File ( FileLocator . toFileURL ( platformURL ) . getFile ( ) ) . getAbsolutePath ( ) ; } catch ( IOException e ) { e . printStackTrace ( ) ; } return null ; } public String getSourceWorkspacePath ( ) { return getPluginDirectoryPath ( ) + java . io . File . separator + "workspace" ; } public IWorkspace getWorkspace ( ) { return ResourcesPlugin . getWorkspace ( ) ; } public IWorkspaceRoot getWorkspaceRoot ( ) { return getWorkspace ( ) . getRoot ( ) ; } public void copy ( File src , File dest ) throws IOException { byte [ ] srcBytes = this . read ( src ) ; if ( convertToIndependantLineDelimiter ( src ) ) { String contents = new String ( srcBytes ) ; contents = org . rubypeople . rdt . core . tests . util . Util . convertToIndependantLineDelimiter ( contents ) ; srcBytes = contents . getBytes ( ) ; } FileOutputStream out = new FileOutputStream ( dest ) ; out . write ( srcBytes ) ; out . close ( ) ; } public byte [ ] read ( java . io . File file ) throws java . io . IOException { int fileLength ; byte [ ] fileBytes = new byte [ fileLength = ( int ) file . length ( ) ] ; java . io . FileInputStream stream = new java . io . FileInputStream ( file ) ; int bytesRead = 0 ; int lastReadSize = 0 ; while ( ( lastReadSize != - 1 ) && ( bytesRead != fileLength ) ) { lastReadSize = stream . read ( fileBytes , bytesRead , fileLength - bytesRead ) ; bytesRead += lastReadSize ; } stream . close ( ) ; return fileBytes ; } public boolean convertToIndependantLineDelimiter ( File file ) { return file . getName ( ) . endsWith ( ".rb" ) || file . getName ( ) . endsWith ( ".rbw" ) ; } protected void copyDirectory ( File source , File target ) throws IOException { if ( ! target . exists ( ) ) { target . mkdirs ( ) ; } File [ ] files = source . listFiles ( ) ; if ( files == null ) return ; for ( int i = 0 ; i < files . length ; i ++ ) { File sourceChild = files [ i ] ; String name = sourceChild . getName ( ) ; if ( name . equals ( "CVS" ) ) continue ; File targetChild = new File ( target , name ) ; if ( sourceChild . isDirectory ( ) ) { copyDirectory ( sourceChild , targetChild ) ; } else { copy ( sourceChild , targetChild ) ; } } } protected IRubyProject setUpRubyProject ( final String projectName , String compliance ) throws CoreException , IOException { String sourceWorkspacePath = getSourceWorkspacePath ( ) ; String targetWorkspacePath = getWorkspaceRoot ( ) . getLocation ( ) . toFile ( ) . getCanonicalPath ( ) ; copyDirectory ( new File ( sourceWorkspacePath , projectName ) , new File ( targetWorkspacePath , projectName ) ) ; final IProject project = getWorkspaceRoot | |
1,354 | <s> package org . rubypeople . rdt . internal . ui . typehierarchy ; import org . eclipse . jface . action . Action ; import org . eclipse . swt . custom . BusyIndicator ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; public class SortByDefiningTypeAction extends Action { private MethodsViewer fMethodsViewer ; public SortByDefiningTypeAction ( MethodsViewer viewer , boolean initValue ) { super ( TypeHierarchyMessages . SortByDefiningTypeAction_label ) ; setDescription ( TypeHierarchyMessages . SortByDefiningTypeAction_description ) ; setToolTipText ( TypeHierarchyMessages | |
1,355 | <s> package net . sf . sveditor . ui . explorer ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBScopeItem ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . index . ISVDBChangeListener ; import net . sf . sveditor . core . db . project . ISVDBProjectSettingsListener ; import net . sf . sveditor . core . db . project . SVDBProjectData ; import net . sf . sveditor . core . db . search . SVDBSearchResult ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import org . eclipse . core . resources | |
1,356 | <s> package com . asakusafw . compiler . tool . analysis ; import java . io . Closeable ; import java . io . IOException ; import java . io . OutputStream ; import java . io . OutputStreamWriter ; import java . io . PrintWriter ; import java . nio . charset . Charset ; import java . text . MessageFormat ; import java . util . Collection ; import java . util . List ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . batch . AbstractWorkflowProcessor ; import com . asakusafw . compiler . batch . WorkDescriptionProcessor ; import com . asakusafw . compiler . batch . Workflow ; import com . asakusafw . compiler . batch . processor . JobFlowWorkDescriptionProcessor ; import com . asakusafw . compiler . flow . jobflow . JobflowModel ; import com . asakusafw . compiler . flow . jobflow . JobflowModel . Export ; import com . asakusafw . compiler . flow . jobflow . JobflowModel . Import ; import com . asakusafw . compiler . flow . plan . FlowGraphUtil ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . utils . graph . Graphs ; import com . asakusafw . vocabulary . batch . JobFlowWorkDescription ; import com . asakusafw . vocabulary . batch . WorkDescription ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementDescription ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowPartDescription ; public class DescribeOriginalStructureProcessor extends AbstractWorkflowProcessor { static final Logger LOG = LoggerFactory . getLogger ( DescribeOriginalStructureProcessor . class ) ; static final Charset ENCODING = Charset . forName ( "UTF-8" ) ; public static final String PATH = Constants . PATH_BATCH + "" ; @ Override public Collection < Class < ? extends WorkDescriptionProcessor < ? > > > getDescriptionProcessors ( ) { List < Class < ? extends WorkDescriptionProcessor < ? > > > results = Lists . create ( ) ; results . add ( JobFlowWorkDescriptionProcessor . class ) ; return results ; } @ Override public void process ( Workflow workflow ) throws IOException { OutputStream output = getEnvironment ( ) . openResource ( PATH ) ; try { Context context = new Context ( output ) ; context . put ( "batch: {0}" , getEnvironment ( ) . getConfiguration ( ) . getBatchId ( ) ) ; dump ( context , workflow . getGraph ( ) ) ; context . close ( ) ; } finally { output . close ( ) ; } } private void dump ( Context context , Graph < Workflow . Unit > graph ) { assert context != null ; assert graph != null ; for ( Workflow . Unit unit : Graphs . sortPostOrder ( graph ) ) { dumpUnit ( context , unit ) ; } } private void dumpUnit ( Context context , Workflow . Unit unit ) { assert context != null ; assert unit != null ; WorkDescription desc = unit . getDescription ( ) ; if ( desc instanceof JobFlowWorkDescription ) { dumpDescription ( context , ( JobFlowWorkDescription ) desc , ( JobflowModel ) unit . getProcessed ( ) ) ; } else { throw new AssertionError ( desc ) ; } } private void dumpDescription ( Context context , JobFlowWorkDescription desc , JobflowModel model ) { assert context != null ; assert desc != null ; assert model != null ; context . put ( "flow: {0}" , model . getFlowId ( ) ) ; context . push ( ) ; context . put ( "input:" ) ; context . push ( ) ; writeInput ( context , model ) ; context . pop ( ) ; context . put ( "output:" ) ; context . push ( ) ; writeOutput ( context , model ) ; context . pop ( ) ; writeFlow ( context , model . getStageGraph ( ) . getInput ( ) . getSource ( ) . getOrigin ( ) ) ; context . pop ( ) ; } private void writeFlow ( Context context , FlowGraph flow ) { context . put ( "flow: {0}" , flow . getDescription ( ) . getName ( ) ) ; context . push ( ) ; for ( FlowElement element : FlowGraphUtil . collectElements ( flow ) ) { FlowElementDescription desc = element . getDescription ( ) ; switch ( desc . getKind ( ) ) { case INPUT : case OUTPUT : case OPERATOR : context . put ( "{0}: {1}" , desc . getKind ( ) . name ( ) . toLowerCase ( ) , desc . toString ( ) ) ; break ; case FLOW_COMPONENT : writeFlow ( context , ( ( FlowPartDescription ) desc ) . getFlowGraph ( ) ) ; break ; case PSEUD : break ; default : throw new AssertionError ( ) ; } } context . pop ( ) ; } private void writeInput ( Context context , JobflowModel model ) { for ( Import ext : model | |
1,357 | <s> package org . oddjob . jmx . server ; import javax . management . Notification ; import org . oddjob . jmx . RemoteOddjobBean ; public interface ServerSideToolkit { public void sendNotification ( Notification notification ) ; public Notification createNotification ( String type ) ; public void runSynchronized ( Runnable runnable | |
1,358 | <s> package org . oddjob . designer . elements . schedule ; import org . oddjob . arooa . design . DesignFactory ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignProperty ; import org . oddjob . arooa . design . screem . BorderedGroup ; import org . oddjob . arooa . design . screem . Form ; import org . oddjob . arooa . design . screem . StandardForm ; import org . oddjob . arooa . parsing . ArooaContext ; import org . oddjob . arooa . parsing . ArooaElement ; public class LastScheduleDE implements DesignFactory { public DesignInstance createDesign ( ArooaElement element , ArooaContext parentContext ) { return new LastScheduleDesign ( element , parentContext ) ; } } class LastScheduleDesign extends ParentSchedule { public LastScheduleDesign ( ArooaElement element , ArooaContext context ) { super | |
1,359 | <s> package net . sf . sveditor . ui . wizards . templates ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerFilter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . model . WorkbenchContentProvider ; import org . eclipse . ui . model . WorkbenchLabelProvider ; public class WorkspaceDirectoryDialog extends Dialog { private TreeViewer fTreeViewer ; private IContainer fContainer ; public WorkspaceDirectoryDialog ( Shell shell , IContainer container | |
1,360 | <s> package org . rubypeople . rdt . internal . compiler . util ; import org . rubypeople . rdt . internal . core . util . CharOperation ; public final class SimpleSetOfCharArray implements Cloneable { public char [ ] [ ] values ; public int elementSize ; public int threshold ; public SimpleSetOfCharArray ( ) { this ( 13 ) ; } public SimpleSetOfCharArray ( int size ) { if ( size < 3 ) size = 3 ; this . elementSize = 0 ; this . threshold = size + 1 ; this . values = new char [ 2 * size + 1 ] [ ] ; } public Object add ( char [ ] object ) { int length = this . values . length ; int index = ( CharOperation . hashCode ( object ) & 0x7FFFFFFF ) % length ; char [ ] current ; while ( ( current = this . values [ index ] ) != null ) { if ( CharOperation . equals ( current , object ) ) return this . values [ index ] = object ; if ( ++ index == length ) index = 0 ; } this . values [ index ] = object ; if ( ++ this . elementSize > this . threshold ) rehash ( ) ; return object ; } public void asArray ( Object [ ] copy ) { if ( this . elementSize != copy . length ) throw new IllegalArgumentException ( ) ; int index = this . elementSize ; for ( int i = 0 , l = this . values . length ; i < l && index > 0 ; i ++ | |
1,361 | <s> package com . asakusafw . runtime . io . util ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; public class InvertOrder implements WritableRawComparable { private final WritableRawComparable entity ; public InvertOrder ( WritableRawComparable entity ) { if ( entity == null ) { throw new IllegalArgumentException ( "" ) ; } this . entity = entity ; } public WritableRawComparable getEntity ( ) { return entity ; } @ Override public int getSizeInBytes ( byte [ ] buf , int offset ) throws IOException { return entity . getSizeInBytes ( buf , offset ) ; } @ Override public int compareInBytes ( byte [ ] b1 , int o1 , byte [ ] b2 , int o2 ) throws IOException { return - entity . compareInBytes ( b1 , o1 , b2 , o2 ) ; } @ Override public void write ( DataOutput out ) throws IOException { entity . write ( out ) ; } @ Override public void readFields ( DataInput in ) throws IOException { entity . readFields ( in ) ; } @ Override public int compareTo ( WritableRawComparable o ) { InvertOrder other = ( InvertOrder ) o ; return other . entity . compareTo ( entity ) ; } @ | |
1,362 | <s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths . newsourcepage ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . jface . action . Action ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . dialogs . PreferencesUtil ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . internal . corext . util . RubyModelUtil ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui . packageview . LoadPathContainer ; import org . rubypeople . rdt . internal . ui . preferences . BuildPathsPropertyPage ; import | |
1,363 | <s> package net . sf . sveditor . core . parser ; import java . util . List ; import net . sf . sveditor . core . db . ISVDBAddChildItem ; import net . sf . sveditor . core . db . SVDBFieldItem ; import net . sf . sveditor . core . db . SVDBInterfaceDecl ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBLocation ; import net . sf . sveditor . core . db . SVDBModIfcDecl ; import net . sf . sveditor . core . db . SVDBModuleDecl ; import net . sf . sveditor . core . db . SVDBProgramDecl ; import net . sf . sveditor . core . db . stmt . SVDBParamPortDecl ; public class SVModIfcProgDeclParser extends SVParserBase { public SVModIfcProgDeclParser ( ISVParser parser ) { super ( parser ) ; } public void parse ( ISVDBAddChildItem parent , int qualifiers ) throws SVParseException { String id ; String module_type_name = null ; SVDBModIfcDecl module = null ; if ( fDebugEn ) { debug ( "" ) ; } SVDBLocation start = fLexer . getStartLocation ( ) ; String type_name = fLexer . readKeyword ( "module" , "macromodule" , "interface" , "program" ) ; SVDBItemType type = null ; if ( type_name . equals ( "module" ) || type_name . equals ( "macromodule" ) ) { type = SVDBItemType . ModuleDecl ; } else if ( type_name . equals ( "interface" ) ) { type = SVDBItemType . InterfaceDecl ; } else if ( type_name . equals ( "program" ) ) { type = SVDBItemType . ProgramDecl ; } else { error ( "" + type_name ) ; } if ( fLexer . peekKeyword ( "static" , "automatic" ) ) { fLexer . eatToken ( ) ; } if ( type == SVDBItemType . ProgramDecl && fLexer . peekOperator ( ";" ) ) { module_type_name = "" ; } else { module_type_name = fLexer . readId ( ) ; } switch ( type ) { case ModuleDecl : module = new SVDBModuleDecl ( module_type_name ) ; break ; case InterfaceDecl : module = new SVDBInterfaceDecl ( module_type_name ) ; break ; case ProgramDecl : module = new SVDBProgramDecl ( module_type_name ) ; break ; } module . setLocation ( start ) ; parent . addChildItem ( module ) ; if ( type != SVDBItemType . ProgramDecl ) { while ( fLexer . peekKeyword ( "import" ) ) { parsers ( ) . impExpParser ( ) . parse_import ( module ) ; } } if ( fLexer . peekOperator ( "#" ) ) { module . getParameters ( ) . addAll ( parsers ( ) . paramPortListParser ( ) . parse ( ) ) ; } if ( fLexer . peekOperator ( "(" ) ) { | |
1,364 | <s> package org . rubypeople . rdt . internal . corext . callhierarchy ; import org . eclipse . core . runtime . IAdaptable ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . Document ; import org . rubypeople . rdt . core . IBuffer ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . IOpenable ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; public class CallLocation implements IAdaptable { public static final int UNKNOWN_LINE_NUMBER = - 1 ; private IMember fMember ; private IMember fCalledMember ; private int fStart ; private int fEnd ; private String fCallText ; private int fLineNumber ; public CallLocation ( IMember member , IMember calledMember , int start , int end , int lineNumber ) { this . fMember = member ; this . fCalledMember = calledMember ; this . fStart = start ; this . fEnd = end ; this . fLineNumber = lineNumber ; } public IMember getCalledMember ( ) { return fCalledMember ; } public int getEnd ( ) { return fEnd ; } public IMember getMember ( ) { return fMember ; } public int getStart ( ) { return fStart ; } public int getLineNumber ( ) { initCallTextAndLineNumber ( ) ; return fLineNumber ; } public String getCallText ( ) { initCallTextAndLineNumber ( ) ; return fCallText ; } private void initCallTextAndLineNumber ( ) { if ( fCallText != null ) return ; IBuffer buffer = | |
1,365 | <s> package com . asakusafw . compiler . fileio . io ; import java . io . IOException ; import com . asakusafw . compiler . fileio . model . Ex2 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class | |
1,366 | <s> package com . melloware . jintellitype ; public class JIntellitypeException extends RuntimeException { public JIntellitypeException ( ) { super ( ) ; } public JIntellitypeException ( String aMessage , Throwable aCause ) { super ( aMessage | |
1,367 | <s> package org . oddjob . values ; import java . text . SimpleDateFormat ; import java . util . Date ; import org . oddjob . arooa . deploy . annotations . ArooaAttribute ; import org . oddjob . framework . SimpleJob ; public class CheckBasicSetters extends SimpleJob { boolean checkBoolean ; byte checkByte ; char checkChar ; Date checkDate ; double checkDouble ; float checkFloat ; int checkInt ; long checkLong ; short checkShort ; String checkString ; public int execute ( ) { if ( checkBoolean != true ) { throw new IllegalStateException ( "" ) ; } if ( checkByte != 127 ) { throw new IllegalStateException ( "byte wrong." ) ; } if ( checkChar != 'a' ) { throw new IllegalStateException ( "char wrong." ) ; } if ( ! new SimpleDateFormat ( "dd-MMM-yy" ) . format ( checkDate ) . equals ( "25-Dec-05" ) ) { throw new IllegalStateException ( "date wrong." ) ; } if ( checkDouble != 9E99 ) { throw new IllegalStateException ( "" ) ; } if ( checkFloat != 1.23F ) { throw new IllegalStateException ( "float wrong." ) ; } if ( checkInt != 1234567 ) { throw new IllegalStateException ( "int wrong." ) ; } if ( checkLong != 2345678 ) { throw new IllegalStateException ( "int wrong." ) ; } if ( checkShort != 123 ) { throw new IllegalStateException ( "short wrong." ) ; } if ( ! checkString . equals ( "hello" ) ) { | |
1,368 | <s> package org . oddjob ; import junit . framework . TestCase ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ArooaTools ; import org . oddjob . arooa . ElementMappings ; import org . oddjob . arooa . MockArooaDescriptor ; import org . oddjob . arooa . MockArooaSession ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . convert . ArooaConverter ; import org . oddjob . arooa . convert . ConversionFailedException ; import org . oddjob . arooa . convert . ConversionProvider ; import org . oddjob . arooa . convert . ConversionRegistry ; import org . oddjob . arooa . convert . Convertlet ; import org . oddjob . arooa . convert . ConvertletException ; import org . oddjob . arooa . convert . DefaultConversionProvider ; import org . oddjob . arooa . convert . NoConversionAvailableException ; import org . oddjob . arooa . deploy . ArooaDescriptorFactory ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . arooa . life . ComponentProxyResolver ; import org . oddjob . arooa . life . MockComponentPersister ; import org . oddjob . arooa . registry . BeanRegistry ; import org . oddjob . arooa . registry . ComponentPool ; import org . oddjob . arooa . registry . InvalidIdException ; import org . oddjob . arooa . registry . SimpleBeanRegistry ; import org . oddjob . arooa . registry . SimpleComponentPool ; import org . oddjob . arooa . standard . MockPropertyLookup ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . standard . StandardTools ; import org . oddjob . persist . OddjobPersister ; public class OddjobArooaSessionTest extends TestCase { private class OurDescriptor extends MockArooaDescriptor { @ Override public ConversionProvider getConvertletProvider ( ) { return new ConversionProvider ( ) { public void registerWith ( ConversionRegistry registry ) { registry . register ( String . class , Integer . class , new Convertlet < String , Integer > ( ) { public Integer convert ( String from ) throws ConvertletException { return new Integer ( 42 ) ; } } ) ; } } ; } @ Override public ElementMappings getElementMappings ( ) { return null ; } } public void testConversions ( ) throws ArooaParseException , ArooaConversionException , InvalidIdException { OddjobSessionFactory sessionFactory = new OddjobSessionFactory ( ) ; sessionFactory . setDescriptorFactory ( new ArooaDescriptorFactory ( ) { @ Override public ArooaDescriptor createDescriptor ( ClassLoader classLoader ) { return new OurDescriptor ( ) ; } } ) ; ArooaSession test = sessionFactory . createSession ( ) ; ArooaConverter converter = test . getTools ( ) . getArooaConverter ( ) ; assertEquals ( new Integer ( 42 ) , converter . convert ( "forty two" , Integer . class ) ) ; test . getBeanRegistry ( ) . register ( "apples" , "A String" ) ; Integer i = test . getBeanRegistry ( ) . lookup ( "apples" , Integer . class ) ; assertEquals ( new Integer ( | |
1,369 | <s> package org . oddjob . jobs . structural ; import java . util . Arrays ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . Helper ; import org . oddjob . Oddjob ; import org . oddjob . OddjobSessionFactory ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . ParentState ; public class ForEachWindowsTest extends TestCase { private static final Logger logger = Logger . getLogger ( ForEachWindowsTest . class ) ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; logger . info ( "" + getName ( ) + "" ) ; } public void testPreLoad ( ) { String xml = "" + " <job>" + "" + " </job>" + "</foreach>" ; ForEachJob test = new ForEachJob ( ) ; ArooaSession session = new OddjobSessionFactory ( ) . createSession ( ) ; test . setArooaSession ( session ) ; test . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; test . setValues ( Arrays . asList ( 1 , 2 , 3 , 4 , 5 , 6 , 7 , 8 , 9 , 10 ) ) ; test . setPreLoad ( 3 ) ; test . load ( ) ; Object [ ] children = Helper . getChildren ( test ) ; assertEquals ( 3 , children . length ) ; test . run ( ) ; children = Helper . getChildren ( test ) ; assertEquals ( 10 , children . length ) ; test . destroy ( ) ; } public | |
1,370 | <s> package org . oddjob . jobs ; import java . beans . PropertyVetoException ; import java . lang . reflect . InvocationTargetException ; import junit . framework . TestCase ; import org . apache . commons . beanutils . BeanUtils ; import org . apache . commons . beanutils . PropertyUtils ; import org . apache . log4j . Logger ; import org . oddjob . FailedToStopException ; import org . oddjob . FragmentHelper ; import org . oddjob . Helper ; import org . oddjob . IconSteps ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . StateSteps ; import org . oddjob . Stateful ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . jobs . structural . SequentialJob ; import org . oddjob . scheduling . DefaultExecutors ; import org . oddjob . state . FlagState ; import org . oddjob . state . IsNot ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; import org . oddjob . state . StateConditions ; public class WaitJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( WaitJobTest . class ) ; @ Override protected void setUp ( ) throws Exception { logger . debug ( "" + getName ( ) + "" ) ; } public void testInOddjob ( ) throws Exception { Oddjob oddjob = new Oddjob ( ) ; oddjob . setConfiguration ( new XMLConfiguration ( "Resource" , this . getClass ( ) . getResourceAsStream ( "wait.xml" ) ) ) ; StateSteps state = new StateSteps ( oddjob ) ; state . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; oddjob . run ( ) ; state . checkWait ( ) ; Object result = new OddjobLookup ( oddjob ) . lookup ( "test" ) ; assertEquals ( "hello" , PropertyUtils . getProperty ( result , "text" ) ) ; oddjob . destroy ( ) ; } public void testStateWait ( ) { FlagState sample = new FlagState ( ) ; sample . setState ( JobState . COMPLETE ) ; WaitJob wait = new WaitJob ( ) ; wait . setPause ( 500 ) ; SequentialJob sequential = new SequentialJob ( ) ; sequential . setJobs ( 0 , wait ) ; sequential . setJobs ( 1 , sample ) ; Thread t = new Thread ( sequential ) ; WaitJob test = new WaitJob ( ) ; test . setFor ( sample ) ; test . setState ( StateConditions . COMPLETE ) ; t . start ( ) ; test . run ( ) ; assertEquals ( JobState . COMPLETE , sample . lastStateEvent ( ) . getState ( ) ) ; } public void testStopStateWait ( ) throws InterruptedException , FailedToStopException { FlagState sample = new FlagState ( ) ; sample . setState ( JobState . COMPLETE ) ; WaitJob test = new WaitJob ( ) ; test . setFor ( sample ) ; test . setState ( StateConditions . INCOMPLETE ) ; test . setPause ( 9999999 ) ; IconSteps icons = new IconSteps ( test ) ; icons . startCheck ( "ready" , "executing" , "sleeping" ) ; Thread t = new Thread ( test ) ; t . start ( ) ; icons . checkWait ( ) ; icons . startCheck ( "sleeping" , "executing" , "sleeping" ) ; sample . run ( ) ; icons . checkWait ( ) ; test . stop ( ) ; icons . startCheck ( "sleeping" , "stopping" , "complete" ) ; assertEquals ( JobState . COMPLETE , test . lastStateEvent ( ) . getState ( ) ) ; } public void testStateWaitInOJ ( ) throws Exception { Oddjob oddjob = new Oddjob ( ) ; oddjob . setConfiguration ( new XMLConfiguration ( "Resource" , WaitJobTest . class . getResourceAsStream ( "wait2.xml" ) ) ) ; StateSteps state = new StateSteps ( oddjob ) ; state . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; oddjob . run ( ) ; state . checkWait ( ) ; Object result = new OddjobLookup ( oddjob ) . lookup ( "test" ) ; assertEquals ( "hello" , PropertyUtils . getProperty ( result , "text" ) ) ; oddjob . destroy ( ) ; } public void testNotStateWait ( ) { FlagState sample = new FlagState ( ) ; sample . setState ( JobState . COMPLETE ) ; WaitJob test = new WaitJob ( ) ; test . setFor ( sample ) ; test . setState ( new IsNot ( StateConditions . COMPLETE ) ) ; assertEquals ( JobState . READY , sample . lastStateEvent ( ) . getState ( ) ) ; test . run ( ) ; } public void testSimpleStop ( ) throws Exception { String xml = "" + "" + "" + " <job>" + " <parallel>" + " <jobs>" + "" + " <job>" + "" + "" + "" + "" + " <job>" + "" + "" + "" + "" + "" + "" + "" + "" + " </job>" + "" + "" + " </jobs>" + "" + " </job>" + "</oddjob>" ; DefaultExecutors services = new DefaultExecutors ( ) ; Oddjob oddjob = new Oddjob ( ) ; oddjob . setOddjobExecutors ( services ) ; oddjob . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; StateSteps state | |
1,371 | <s> package net . sf . sveditor . core . tests . index . persistence ; import java . io . ByteArrayInputStream ; import java . io . ByteArrayOutputStream ; import java . io . File ; import java . io . InputStream ; import java . io . PrintStream ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBScopeItem ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBCovergroup ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBTask ; import net . sf . sveditor . core . db . index . ISVDBFileSystemProvider ; import net . sf . sveditor . core . db . index . ISVDBIndex ; import net . sf . sveditor . core . db . index . ISVDBIndexChangeListener ; import net . sf . sveditor . core . db . index . ISVDBItemIterator ; import net . sf . sveditor . core . db . index . SVDBArgFileIndex ; import net . sf . sveditor . core . db . index . SVDBArgFileIndexFactory ; import net . sf . sveditor . core . db . index . SVDBIndexRegistry ; import net . sf . sveditor . core . db . persistence . DBFormatException ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . preproc . SVPreProcDirectiveScanner ; import net . sf . sveditor . core . preproc . SVPreProcOutput ; import net . sf . sveditor . core . preproc . SVPreProcessor ; import net . sf . sveditor . core . tests . IndexTestUtils ; import net . sf . sveditor . core . tests . SVCoreTestsPlugin ; import net . sf . sveditor . core . tests . SVDBTestUtils ; import net . sf . sveditor . core . tests . TestIndexCacheFactory ; import net . sf . sveditor . core . tests . utils . BundleUtils ; import net . sf . sveditor . core . tests . utils . TestUtils ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . Path ; public class ArgFilePersistence extends TestCase implements ISVDBIndexChangeListener { private File fTmpDir ; private int fIndexRebuilt ; private IProject fProject ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; fTmpDir = TestUtils . createTempDir ( ) ; fProject = null ; } @ Override protected void tearDown ( ) throws Exception { super . tearDown ( ) ; SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . save_state ( ) ; if ( fProject != null ) { TestUtils . deleteProject ( fProject ) ; } if ( fTmpDir != null && fTmpDir . exists ( ) ) { TestUtils . delete ( fTmpDir ) ; fTmpDir = null ; } } public void testXbusTransferFileParse ( ) throws DBFormatException { String testname = "" ; BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; LogHandle log = LogFactory . getLogHandle ( testname ) ; File test_dir = new File ( fTmpDir , testname ) ; if ( test_dir . exists ( ) ) { test_dir . delete ( ) ; } test_dir . mkdirs ( ) ; utils . unpackBundleZipToFS ( "/ovm.zip" , test_dir ) ; File xbus = new File ( test_dir , "" ) ; fProject = TestUtils . createProject ( "xbus" , xbus ) ; File db = new File ( fTmpDir , "db" ) ; if ( db . exists ( ) ) { TestUtils . delete ( db ) ; } SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . init ( TestIndexCacheFactory . instance ( db ) ) ; ISVDBIndex target_index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , "" , SVDBArgFileIndexFactory . TYPE , null ) ; IndexTestUtils . assertNoErrWarn ( log , target_index ) ; String path = "" ; ISVDBFileSystemProvider fs = ( ( SVDBArgFileIndex ) target_index ) . getFileSystemProvider ( ) ; SVPreProcessor pp = ( ( SVDBArgFileIndex ) target_index ) . createPreProcScanner ( path ) ; ByteArrayOutputStream bos = new ByteArrayOutputStream ( ) ; InputStream in = fs . openStream ( path ) ; log . debug ( "--> Parse 1" ) ; SVDBFile file = target_index . parse ( new NullProgressMonitor ( ) , in , path , null ) . second ( ) ; log . debug ( "<-- Parse 1" ) ; SVPreProcOutput pp_out = pp . preprocess ( ) ; StringBuilder tmp = new StringBuilder ( ) ; int line = 1 , ch ; tmp . append ( "" + line + ": " ) ; while ( ( ch = pp_out . get_ch ( ) ) != - 1 ) { tmp . append ( ( char ) ch ) ; bos . write ( ( char ) ch ) ; if ( ch == '\n' ) { line ++ ; tmp . append ( "" + line + ": " ) ; } } log . debug ( tmp . toString ( ) ) ; in = new ByteArrayInputStream ( bos . toByteArray ( ) ) ; log . debug ( "--> parse()" ) ; file = target_index . parse ( new NullProgressMonitor ( ) , in , path , null ) . second ( ) ; log . debug ( "<-- parse()" ) ; SVDBTestUtils . assertNoErrWarn ( file ) ; LogFactory . removeLogHandle ( log ) ; } public void testOvmWarningUnbalancedParen ( ) throws DBFormatException { BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; File test_dir = new File ( fTmpDir , testname ) ; if ( test_dir . exists ( ) ) { test_dir . delete ( ) ; } test_dir . mkdirs ( ) ; log . debug ( "test_dir: " + test_dir . getAbsolutePath ( ) ) ; utils . unpackBundleZipToFS ( "/ovm.zip" , test_dir ) ; utils . copyBundleDirToFS ( "" , test_dir ) ; File test_proj = new File ( test_dir , "" ) ; assertTrue ( test_proj . isDirectory ( ) ) ; fProject = TestUtils . createProject ( test_proj . getName ( ) , test_proj ) ; File db = new File ( fTmpDir , "db" ) ; if ( db . exists ( ) ) { TestUtils . delete ( db ) ; } SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . init ( TestIndexCacheFactory . instance ( db ) ) ; ISVDBIndex target_index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , "" , SVDBArgFileIndexFactory . TYPE , null ) ; String path = "" ; ISVDBFileSystemProvider fs = ( ( SVDBArgFileIndex ) target_index ) . getFileSystemProvider ( ) ; SVPreProcessor pp = ( ( SVDBArgFileIndex ) target_index ) . createPreProcScanner ( path ) ; ByteArrayOutputStream bos = new ByteArrayOutputStream ( ) ; InputStream in = fs . openStream ( path ) ; log . debug ( "--> Parse 1" ) ; SVDBFile file = target_index . parse ( new NullProgressMonitor ( ) , in , path , null ) . second ( ) ; log . debug ( "<-- Parse 1" ) ; SVPreProcOutput pp_out = pp . preprocess ( ) ; StringBuilder tmp = new StringBuilder ( ) ; int line = 1 , ch ; tmp . append ( "" + line + ": " ) ; while ( ( ch = pp_out . get_ch ( ) ) != - 1 ) { tmp . append ( ( char ) ch ) ; bos . write ( ( char ) ch ) ; if ( ch == '\n' ) { line ++ ; tmp . append ( "" + line + ": " ) ; } } log . debug ( tmp . toString ( ) ) ; in = new ByteArrayInputStream ( bos . toByteArray ( ) ) ; log . debug ( "--> parse()" ) ; file = target_index . parse ( new NullProgressMonitor ( ) , in , path , null ) . second ( ) ; log . debug ( "<-- parse()" ) ; SVDBTestUtils . assertNoErrWarn ( file ) ; IndexTestUtils . assertNoErrWarn ( log , target_index ) ; LogFactory . removeLogHandle ( log ) ; } public void testWSArgFileTimestampChanged ( ) { ByteArrayOutputStream out ; PrintStream ps ; BundleUtils utils = new BundleUtils ( SVCoreTestsPlugin . getDefault ( ) . getBundle ( ) ) ; LogHandle log = LogFactory . getLogHandle ( "" ) ; fProject = TestUtils . createProject ( "project" ) ; utils . copyBundleDirToWS ( "" , fProject ) ; File db = new File ( fTmpDir , "db" ) ; if ( db . exists ( ) ) { db . delete ( ) ; } SVDBIndexRegistry rgy = SVCorePlugin . getDefault ( ) . getSVDBIndexRegistry ( ) ; rgy . init ( TestIndexCacheFactory . instance ( fTmpDir ) ) ; ISVDBIndex index = rgy . findCreateIndex ( new NullProgressMonitor ( ) , "GENERIC" , "" , SVDBArgFileIndexFactory . TYPE , null ) ; IndexTestUtils . assertNoErrWarn ( log , index ) ; ISVDBItemIterator it = index . getItemIterator ( new NullProgressMonitor ( ) ) ; ISVDBItemBase target_it = null ; while ( it . hasNext ( ) ) { ISVDBItemBase tmp_it = it . nextItem ( ) ; if ( SVDBItem . getName ( tmp_it ) . equals ( "class1" ) ) { target_it = tmp_it ; break ; } } assertNotNull ( "" , target_it ) ; assertEquals ( "class1" , SVDBItem . getName ( target_it ) ) ; rgy . save_state ( ) ; rgy . init ( TestIndexCacheFactory . instance ( fTmpDir ) ) ; log . debug ( "" ) ; try { Thread . sleep ( 2000 ) ; } catch ( InterruptedException e ) { e . printStackTrace ( ) ; } log . debug ( "" ) ; out = new ByteArrayOutputStream ( ) ; ps = new PrintStream ( out ) ; ps . println ( "nn" ) ; ps . println ( "" ) ; ps . println ( "n" ) ; ps . println ( "endclassnn" ) ; ps . flush ( ) ; TestUtils . copy ( out , fProject . getFile ( new Path ( "" ) ) ) ; out = | |
1,372 | <s> package com . asakusafw . compiler . flow . plan ; import java . lang . annotation . Annotation ; import java . text . MessageFormat ; import java . util . Collection ; import java . util . Collections ; import java . util . Comparator ; import java . util . Iterator ; import java . util . LinkedList ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . FlowCompilerOptions ; import com . asakusafw . compiler . flow . FlowCompilerOptions . GenericOptionValue ; import com . asakusafw . compiler . flow . FlowGraphRewriter ; import com . asakusafw . compiler . flow . FlowGraphRewriter . RewriteException ; import com . asakusafw . compiler . flow . debugging . Debug ; import com . asakusafw . compiler . flow . join . operator . SideDataBranch ; import com . asakusafw . compiler . flow . join . operator . SideDataCheck ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . utils . graph . Graphs ; import com . asakusafw . vocabulary . flow . graph . Connectivity ; import com . asakusafw . vocabulary . flow . graph . FlowBoundary ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementDescription ; import com . asakusafw . vocabulary . flow . graph . FlowElementInput ; import com . asakusafw . vocabulary . flow . graph . FlowElementKind ; import com . asakusafw . vocabulary . flow . graph . FlowElementOutput ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowIn ; import com . asakusafw . vocabulary . flow . graph . FlowOut ; import com . asakusafw . vocabulary . flow . graph . FlowPartDescription ; import com . asakusafw . vocabulary . flow . graph . Inline ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . flow . graph . PortConnection ; import com . asakusafw . vocabulary . operator . Branch ; import com . asakusafw . vocabulary . operator . Logging ; import com . asakusafw . vocabulary . operator . Project ; import com . asakusafw . vocabulary . operator . Restructure ; import com . asakusafw . vocabulary . operator . Split ; public class StagePlanner { static final String KEY_COMPRESS_FLOW_BLOCK_GROUP = "" ; static final GenericOptionValue DEFAULT_COMPRESS_FLOW_BLOCK_GROUP = GenericOptionValue . ENABLED ; static final Logger LOG = LoggerFactory . getLogger ( StagePlanner . class ) ; private final List < ? extends FlowGraphRewriter > rewriters ; private final FlowCompilerOptions options ; private final List < StagePlanner . Diagnostic > diagnostics = Lists . create ( ) ; private int blockSequence = 1 ; public StagePlanner ( List < ? extends FlowGraphRewriter > rewriters , FlowCompilerOptions options ) { Precondition . checkMustNotBeNull ( rewriters , "rewriters" ) ; Precondition . checkMustNotBeNull ( options , "options" ) ; this . rewriters = rewriters ; this . options = options ; } public StageGraph plan ( FlowGraph graph ) { Precondition . checkMustNotBeNull ( graph , "graph" ) ; if ( validate ( graph ) == false ) { return null ; } LOG . info ( "{}-UNK-" , graph ) ; LOG . debug ( "-UNK-: {}" , options . isCompressFlowPart ( ) ) ; LOG . debug ( "" , options . isCompressConcurrentStage ( ) ) ; FlowGraph copy = FlowGraphUtil . deepCopy ( graph ) ; if ( rewrite ( copy ) == false ) { return null ; } normalizeFlowGraph ( copy ) ; StageGraph result = buildStageGraph ( copy ) ; return result ; } private boolean rewrite ( FlowGraph graph ) { assert graph != null ; LOG . debug ( "{}-UNK-" , graph ) ; boolean modified = false ; for ( FlowGraphRewriter rewriter : rewriters ) { try { modified |= rewriter . rewrite ( graph ) ; } catch ( RewriteException e ) { LOG . warn ( MessageFormat . format ( "" , rewriter . getClass ( ) . getName ( ) , e . getMessage ( ) ) , e ) ; error ( graph , Collections . < FlowElement > emptyList ( ) , "" , e . getMessage ( ) ) ; return false ; } } if ( modified && validate ( graph ) == false ) { return false ; } return true ; } private void unifyGlobalSideEffects ( FlowGraph graph ) { assert graph != null ; LOG . debug ( "" , graph ) ; for ( FlowElement element : FlowGraphUtil . collectElements ( graph ) ) { if ( FlowGraphUtil . hasGlobalSideEffect ( element ) ) { LOG . debug ( "" , graph ) ; for ( FlowElementOutput output : element . getOutputPorts ( ) ) { FlowGraphUtil . insertCheckpoint ( output ) ; } } } } public List < StagePlanner . Diagnostic > getDiagnostics ( ) { return diagnostics ; } StageGraph buildStageGraph ( FlowGraph graph ) { assert graph != null ; LOG . debug ( "" , graph ) ; FlowBlock input = buildInputBlock ( graph ) ; FlowBlock output = buildOutputBlock ( graph ) ; List < FlowBlock > computation = buildComputationBlocks ( graph ) ; connectFlowBlocks ( input , output , computation ) ; detachFlowBlocks ( input , output , computation ) ; trimFlowBlocks ( computation ) ; List < StageBlock > stageBlocks = buildStageBlocks ( computation ) ; compressStageBlocks ( stageBlocks ) ; sortStageBlocks ( stageBlocks ) ; return new StageGraph ( input , output , stageBlocks ) ; } private void compressStageBlocks ( List < StageBlock > blocks ) { assert blocks != null ; boolean changed ; LOG . debug ( "" ) ; do { changed = false ; Iterator < StageBlock > iter = blocks . iterator ( ) ; while ( iter . hasNext ( ) ) { StageBlock block = iter . next ( ) ; changed |= block . compaction ( ) ; if ( block . isEmpty ( ) ) { LOG . debug ( "" , block ) ; iter . remove ( ) ; changed = true ; } } } while ( changed ) ; } private void sortStageBlocks ( List < StageBlock > stageBlocks ) { assert stageBlocks != null ; LOG . debug ( "" ) ; Map < FlowBlock , StageBlock > membership = Maps . create ( ) ; for ( StageBlock stage : stageBlocks ) { for ( FlowBlock flow : stage . getMapBlocks ( ) ) { membership . put ( flow , stage ) ; } for ( FlowBlock flow : stage . getReduceBlocks ( ) ) { membership . put ( flow , stage ) ; } } Graph < StageBlock > graph = Graphs . newInstance ( ) ; for ( Map . Entry < FlowBlock , StageBlock > entry : membership . entrySet ( ) ) { FlowBlock flow = entry . getKey ( ) ; StageBlock stage = entry . getValue ( ) ; graph . addNode ( stage ) ; for ( FlowBlock . Output output : flow . getBlockOutputs ( ) ) { for ( FlowBlock . Connection conn : output . getConnections ( ) ) { FlowBlock succFlow = conn . getDownstream ( ) . getOwner ( ) ; StageBlock succ = membership . get ( succFlow ) ; if ( succ == null || succ == stage ) { continue ; } graph . addEdge ( succ , stage ) ; } } } List < StageBlock > ordered = Graphs . sortPostOrder ( graph ) ; int stageNumber = 1 ; for ( StageBlock stage : ordered ) { stage . setStageNumber ( stageNumber ) ; stageNumber ++ ; } Collections . sort ( stageBlocks , new Comparator < StageBlock > ( ) { @ Override public int compare ( StageBlock o1 , StageBlock o2 ) { int n1 = o1 . getStageNumber ( ) ; int n2 = o2 . getStageNumber ( ) ; if ( n1 == n2 ) { return 0 ; } else if ( n1 < n2 ) { return - 1 ; } else { return + 1 ; } } } ) ; } private List < StageBlock > buildStageBlocks ( List < FlowBlock > blocks ) { assert blocks != null ; LOG . debug ( "" , blocks ) ; List < StageBlock > results = Lists . create ( ) ; List < FlowBlockGroup > flowBlockGroups = collectFlowBlockGroups ( blocks ) ; compressFlowBlockGroups ( flowBlockGroups ) ; for ( FlowBlockGroup group : flowBlockGroups ) { if ( group . reducer ) { Set < FlowBlock > predecessors = getPredecessors ( group . members ) ; assert predecessors . isEmpty ( ) == false ; StageBlock stage = new StageBlock ( predecessors , group . members ) ; results . add ( stage ) ; LOG . debug ( "" , new Object [ ] { stage , group . members , predecessors , } ) ; } else { StageBlock stage = new StageBlock ( group . members , Collections . < FlowBlock > emptySet ( ) ) ; results . add ( stage ) ; LOG . debug ( "" , stage , group . members ) ; } } return results ; } private void compressFlowBlockGroups ( List < FlowBlockGroup > flowBlockGroups ) { assert flowBlockGroups != null ; GenericOptionValue active = options . getGenericExtraAttribute ( KEY_COMPRESS_FLOW_BLOCK_GROUP , DEFAULT_COMPRESS_FLOW_BLOCK_GROUP ) ; if ( active == GenericOptionValue . DISABLED ) { return ; } LOG . debug ( "" ) ; List < FlowBlock > blocks = Lists . create ( ) ; Map < FlowBlock . Input , Set < FlowBlock . Input > > inputMapping = Maps . create ( ) ; Map < FlowBlock . Output , Set < FlowBlock . Output > > outputMapping = Maps . create ( ) ; for ( FlowBlockGroup group : flowBlockGroups ) { if ( group . reducer ) { Set < FlowBlock > predecessors = getPredecessors ( group . members ) ; if ( predecessors . size ( ) >= 2 ) { LOG . debug ( "" , predecessors ) ; FlowBlock mergedPreds = FlowBlock . fromBlocks ( predecessors , inputMapping , outputMapping ) ; group . predeceaseBlocks . clear ( ) ; group . predeceaseBlocks . add ( mergedPreds ) ; blocks . add ( mergedPreds ) ; } } if ( group . members . size ( ) >= 2 ) { LOG . debug ( "" , group . members ) ; FlowBlock mergedBlocks = FlowBlock . fromBlocks ( group . members , inputMapping , outputMapping ) ; group . members . clear ( ) ; group . members . add ( mergedBlocks ) ; blocks . add ( mergedBlocks ) ; } } for ( Map . Entry < FlowBlock . Input , Set < FlowBlock . Input > > entry : inputMapping . entrySet ( ) ) { FlowBlock . Input origin = entry . getKey ( ) ; for ( FlowBlock . Connection conn : Lists . from ( origin . getConnections ( ) ) ) { FlowBlock . Output opposite = conn . getUpstream ( ) ; Collection < FlowBlock . Output > resolvedOpposites ; if ( outputMapping . containsKey ( opposite ) ) { resolvedOpposites = outputMapping . get ( opposite ) ; } else { resolvedOpposites = Collections . singleton ( opposite ) ; } conn . disconnect ( ) ; for ( FlowBlock . Input mapped : entry . getValue ( ) ) { for ( FlowBlock . Output resolved : resolvedOpposites ) | |
1,373 | <s> package com . aptana . rdt . internal . parser . warnings ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . Platform ; import org . jruby . ast . Node ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . compiler . BuildContext ; import org . rubypeople . rdt . core . compiler . CategorizedProblem ; import org . rubypeople . rdt . core . compiler . CompilationParticipant ; import org . rubypeople . rdt . internal . core . parser . InOrderVisitor ; import org . rubypeople . rdt . internal . core . parser . Warning ; import com . aptana . rdt . AptanaRDTPlugin ; import com . aptana . rdt . IProblem ; public class FlayClone extends CompilationParticipant { private static final int DEFAULT_THRESHOLD = 20 ; private int massThreshold = DEFAULT_THRESHOLD ; private HashMap < Integer , Set < Node > > hashes ; private boolean doFuzzy ; private int total = 0 ; private HashMap < Integer , Boolean > identical ; private HashMap < Integer , Integer > masses ; @ Override public void buildStarting ( BuildContext [ ] files , boolean isBatch , IProgressMonitor monitor ) { if ( ! isBatch ) return ; if ( files == null || files . length == 0 ) return ; hashes = new HashMap < Integer , Set < Node > > ( ) ; identical = new HashMap < Integer , Boolean > ( ) ; masses = new HashMap < Integer , Integer > ( ) ; massThreshold = getMassThreshold ( ) ; for ( BuildContext buildContext : files ) { if ( buildContext == null || buildContext . getAST ( ) == null ) continue ; buildContext . getAST ( ) . accept ( new Visitor ( ) ) ; } if ( doFuzzy ) { processFuzzySimilarities ( ) ; } analyze ( files ) ; } private int getMassThreshold ( ) { return Platform . getPreferencesService ( ) . getInt ( AptanaRDTPlugin . PLUGIN_ID , AptanaRDTPlugin . DUPLICATE_CODE_MASS_THRESHOLD , DEFAULT_THRESHOLD , null ) ; } private void analyze ( BuildContext [ ] files ) { prune ( ) ; for ( Map . Entry < Integer , Set < Node > > entry : hashes . entrySet ( ) ) { Integer hash = entry . getKey ( ) ; Collection < Node > nodes = entry . getValue ( ) ; Node first = nodes . iterator ( ) . next ( ) ; boolean isIdentical = true ; for ( Node node : nodes ) { if ( ! equals ( node , first ) ) { isIdentical = false ; break ; } } identical . put ( hash , isIdentical ) ; int mass = mass ( first ) * nodes . size ( ) ; if ( isIdentical ) mass *= nodes . size ( ) ; masses . put ( hash , mass ) ; total += masses . get ( hash ) ; } Map < BuildContext , List < CategorizedProblem > > contextsToProblems = new HashMap < BuildContext , List < CategorizedProblem > > ( ) ; for ( Map . Entry < Integer , Integer > entry : masses . entrySet ( ) ) { if ( entry . getValue ( ) <= massThreshold ) continue ; Set < Node > nodes = hashes . get ( entry . getKey ( ) ) ; for ( Node node : nodes ) { CategorizedProblem problem = new Warning ( node . getPosition ( ) , "" + otherNodesPositions ( node , nodes ) , IProblem . DuplicateCodeStructure ) ; BuildContext context = findContext ( files , node ) ; if ( context == null ) continue ; List < CategorizedProblem > problems = contextsToProblems . get ( context ) ; if ( problems == null ) problems = new ArrayList < CategorizedProblem > ( ) ; problems . add ( problem ) ; contextsToProblems . put ( context , problems ) ; } } for ( Map . Entry < BuildContext , List < CategorizedProblem > > entry : contextsToProblems . entrySet ( ) ) { entry . getKey ( ) . recordNewProblems ( entry . getValue ( ) . toArray ( new CategorizedProblem [ 0 ] ) ) ; } } private String otherNodesPositions ( Node node , Collection < Node > nodes ) { StringBuilder builder = new StringBuilder ( ) ; for ( Node node2 : nodes ) { if ( node2 . getPosition ( ) . equals ( node . getPosition ( ) ) ) continue ; builder . append ( node2 . getPosition ( ) . toString ( ) ) . append ( ", " ) ; } if ( builder . length ( ) > 0 ) { builder . delete ( builder . length ( ) - 2 , builder . length ( ) ) ; } else { System . out . println ( "?!" ) ; } return builder . toString ( ) ; } private BuildContext findContext ( BuildContext [ ] files , Node node ) { String fileName = node . getPosition ( ) . getFile ( ) ; for ( BuildContext buildContext : files ) { IPath path = buildContext . getFile ( ) . getFullPath ( ) ; if ( path . toPortableString ( ) . equals ( fileName ) | |
1,374 | <s> package org . rubypeople . rdt . internal . ui . callhierarchy ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . jface . action . IMenuListener ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . action . IStatusLineManager ; import org . eclipse . jface . action . IToolBarManager ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . action . Separator ; import org . eclipse . jface . dialogs . IDialogSettings ; import org . eclipse . jface . util . TransferDragSourceListener ; import org . eclipse . jface . util . TransferDropTargetListener ; import org . eclipse . jface . viewers . IOpenListener ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . OpenEvent ; import org . eclipse . jface . viewers . SelectionChangedEvent ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . viewers . StructuredViewer ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . jface . viewers . ViewerSorter ; import org . eclipse . swt . SWT ; import org . eclipse . swt . custom . SashForm ; import org . eclipse . swt . dnd . Clipboard ; import org . eclipse . swt . dnd . DND ; import org . eclipse . swt . dnd . DropTarget ; import org . eclipse . swt . dnd . Transfer ; import org . eclipse . swt . events . ControlEvent ; import org . eclipse . swt . events . ControlListener ; import org . eclipse . swt . events . KeyAdapter ; import org . eclipse . swt . events . KeyEvent ; import org . eclipse . swt . events . KeyListener ; import org . eclipse . swt . graphics . Point ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Label ; import org . eclipse . ui . IActionBars ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . IMemento ; import org . eclipse . ui . IPartListener2 ; import org . eclipse . ui . IViewSite ; import org . eclipse . ui . IWorkbenchPage ; import org . eclipse . ui . IWorkbenchPartReference ; import org . eclipse . ui . IWorkbenchPartSite ; import org . eclipse . ui . PartInitException ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . actions . ActionContext ; import org . eclipse . ui . actions . ActionGroup ; import org . eclipse . ui . part . PageBook ; import org . eclipse . ui . part . ResourceTransfer ; import org . eclipse . ui . part . ViewPart ; import org . eclipse . ui . texteditor . ITextEditor ; import org . eclipse . ui . views . navigator . LocalSelectionTransfer ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . internal . corext . callhierarchy . CallHierarchy ; import org . rubypeople . rdt . internal . corext . callhierarchy . CallLocation ; import org . rubypeople . rdt . internal . corext . callhierarchy . MethodWrapper ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . actions . CompositeActionGroup ; import org . rubypeople . rdt . internal . ui . dnd . DelegatingDropAdapter ; import org . rubypeople . rdt . internal . ui . dnd . RdtViewerDragAdapter ; import org . rubypeople . rdt . internal . ui . packageview . ResourceTransferDragAdapter ; import org . rubypeople . rdt . internal . ui . packageview . SelectionTransferDragAdapter ; import org . rubypeople . rdt . internal . ui . rubyeditor . EditorUtility ; import org . rubypeople . rdt . internal . ui . viewsupport . SelectionProviderMediator ; import org . rubypeople . rdt . internal . ui . viewsupport . StatusBarUpdater ; import org . rubypeople . rdt . ui . IContextMenuConstants ; import org . rubypeople . rdt . ui . RubyElementLabels ; import org . rubypeople . rdt . ui . actions . OpenEditorActionGroup ; import org . rubypeople . rdt . ui . actions . OpenViewActionGroup ; import org . rubypeople . rdt . ui . actions . RubySearchActionGroup ; public class CallHierarchyViewPart extends ViewPart implements ICallHierarchyViewPart , ISelectionChangedListener { private class CallHierarchySelectionProvider extends SelectionProviderMediator { public CallHierarchySelectionProvider ( StructuredViewer [ ] viewers ) { super ( viewers , null ) ; } public ISelection getSelection ( ) { ISelection selection = super . getSelection ( ) ; if ( ! selection . isEmpty ( ) ) { return CallHierarchyUI . convertSelection ( selection ) ; } return selection ; } } private static final String DIALOGSTORE_VIEWORIENTATION = "" ; private static final String DIALOGSTORE_CALL_MODE = "" ; private static final String DIALOGSTORE_RATIO = "" ; static final int VIEW_ORIENTATION_VERTICAL = 0 ; static final int VIEW_ORIENTATION_HORIZONTAL = 1 ; static final int VIEW_ORIENTATION_SINGLE = 2 ; static final int VIEW_ORIENTATION_AUTOMATIC = 3 ; static final int CALL_MODE_CALLERS = 0 ; static final int CALL_MODE_CALLEES = 1 ; static final String GROUP_SEARCH_SCOPE = "" ; static final String ID_CALL_HIERARCHY = "" ; private static final String GROUP_FOCUS = "group.focus" ; private static final int PAGE_EMPTY = 0 ; private static final int PAGE_VIEWER = 1 ; private Label fNoHierarchyShownLabel ; private PageBook fPagebook ; private IDialogSettings fDialogSettings ; private int fCurrentOrientation ; int fOrientation = VIEW_ORIENTATION_AUTOMATIC ; private int fCurrentCallMode ; private MethodWrapper fCalleeRoot ; private MethodWrapper fCallerRoot ; private IMemento fMemento ; private IMethod fShownMethod ; private CallHierarchySelectionProvider fSelectionProviderMediator ; private List fMethodHistory ; private LocationViewer fLocationViewer ; private SashForm fHierarchyLocationSplitter ; private Clipboard fClipboard ; private SearchScopeActionGroup fSearchScopeActions ; private ToggleOrientationAction [ ] fToggleOrientationActions ; private ToggleCallModeAction [ ] fToggleCallModeActions ; private CallHierarchyFiltersActionGroup fFiltersActionGroup ; private HistoryDropDownAction fHistoryDropDownAction ; private RefreshAction fRefreshAction ; private OpenLocationAction fOpenLocationAction ; private FocusOnSelectionAction fFocusOnSelectionAction ; private CopyCallHierarchyAction fCopyAction ; private CancelSearchAction fCancelSearchAction ; private CompositeActionGroup fActionGroups ; private CallHierarchyViewer fCallHierarchyViewer ; private boolean fShowCallDetails ; protected Composite fParent ; private IPartListener2 fPartListener ; public CallHierarchyViewPart ( ) { super ( ) ; fDialogSettings = RubyPlugin . getDefault ( ) . getDialogSettings ( ) ; fMethodHistory = new ArrayList ( ) ; } public void setFocus ( ) { fPagebook . setFocus ( ) ; } public void setHistoryEntries ( IMethod [ ] elems ) { fMethodHistory . clear ( ) ; for ( int i = 0 ; i < elems . length ; i ++ ) { fMethodHistory . add ( elems [ i ] ) ; } updateHistoryEntries ( ) ; } public IMethod [ ] getHistoryEntries ( ) { if ( fMethodHistory . size ( ) > 0 ) { updateHistoryEntries ( ) ; } return ( IMethod [ ] ) fMethodHistory . toArray ( new IMethod [ fMethodHistory . size ( ) ] ) ; } public void setMethod ( IMethod method ) { if ( method == null ) { showPage ( PAGE_EMPTY ) ; return ; } if ( ! method . equals ( fShownMethod ) ) { addHistoryEntry ( method ) ; } this . fShownMethod = method ; refresh ( ) ; } public IMethod getMethod ( ) { return fShownMethod ; } public MethodWrapper getCurrentMethodWrapper ( ) { if ( fCurrentCallMode == CALL_MODE_CALLERS ) { return fCallerRoot ; } else { return fCalleeRoot ; } } void setOrientation ( int orientation ) { if ( fCurrentOrientation != orientation ) { if ( ( fLocationViewer != null ) && ! fLocationViewer . getControl ( ) . isDisposed ( ) && ( fHierarchyLocationSplitter != null ) && ! fHierarchyLocationSplitter . isDisposed ( ) ) { if ( orientation == VIEW_ORIENTATION_SINGLE ) { setShowCallDetails ( false ) ; } else { if ( fCurrentOrientation == VIEW_ORIENTATION_SINGLE ) { setShowCallDetails ( true ) ; } boolean horizontal = orientation == VIEW_ORIENTATION_HORIZONTAL ; fHierarchyLocationSplitter . setOrientation ( horizontal ? SWT . HORIZONTAL : SWT . VERTICAL ) ; } fHierarchyLocationSplitter . layout ( ) ; } updateCheckedState ( ) ; fCurrentOrientation = orientation ; restoreSplitterRatio ( ) ; } } private void updateCheckedState ( ) { for ( int i = 0 ; i < fToggleOrientationActions . length ; i ++ ) { fToggleOrientationActions [ i ] . setChecked ( fOrientation == fToggleOrientationActions [ i ] . getOrientation ( ) ) ; } } void setCallMode ( int mode ) { if ( fCurrentCallMode != mode ) { for ( int i = 0 ; i < fToggleCallModeActions . length ; i ++ ) { fToggleCallModeActions [ i ] . setChecked ( mode == fToggleCallModeActions [ i ] . getMode ( ) ) ; } fCurrentCallMode = mode ; fDialogSettings . put ( DIALOGSTORE_CALL_MODE , mode ) ; updateView ( ) ; } } public IRubySearchScope getSearchScope ( ) { return fSearchScopeActions . getSearchScope ( ) ; } public void setShowCallDetails ( boolean show ) { fShowCallDetails = show ; showOrHideCallDetailsView ( ) ; } private void initDragAndDrop ( ) { addDragAdapters ( fCallHierarchyViewer ) ; addDropAdapters ( fCallHierarchyViewer ) ; addDropAdapters ( fLocationViewer ) ; DropTarget dropTarget = new DropTarget ( fPagebook , DND . DROP_MOVE | DND . DROP_COPY | DND . DROP_LINK | DND . DROP_DEFAULT ) ; dropTarget . setTransfer ( new Transfer [ ] { LocalSelectionTransfer . getInstance ( ) } ) ; dropTarget . addDropListener ( new CallHierarchyTransferDropAdapter ( this , fCallHierarchyViewer ) ) ; } private void addDropAdapters ( StructuredViewer viewer ) { Transfer [ ] transfers = new Transfer [ ] { LocalSelectionTransfer . getInstance ( ) } ; int ops = DND . DROP_MOVE | DND . DROP_COPY | DND . DROP_LINK | DND . DROP_DEFAULT ; TransferDropTargetListener [ ] dropListeners = new TransferDropTargetListener [ ] { new CallHierarchyTransferDropAdapter ( this , viewer ) } ; viewer . addDropSupport ( ops , transfers , new DelegatingDropAdapter ( dropListeners ) ) ; } private void addDragAdapters ( StructuredViewer viewer ) { int ops = DND . DROP_COPY | DND . DROP_LINK ; Transfer [ ] transfers = new Transfer [ ] { LocalSelectionTransfer . getInstance ( ) , ResourceTransfer . getInstance ( ) } ; TransferDragSourceListener [ ] dragListeners = new TransferDragSourceListener [ ] { new SelectionTransferDragAdapter ( viewer ) , new ResourceTransferDragAdapter ( viewer ) } ; viewer . addDragSupport ( ops , transfers , new RdtViewerDragAdapter ( viewer , dragListeners ) ) ; } public void createPartControl ( Composite parent ) { fParent = parent ; addResizeListener ( parent ) ; fPagebook = new PageBook ( parent , SWT . NONE ) ; createHierarchyLocationSplitter ( fPagebook ) ; createCallHierarchyViewer ( fHierarchyLocationSplitter ) ; createLocationViewer ( fHierarchyLocationSplitter ) ; fNoHierarchyShownLabel = new Label ( fPagebook , SWT . TOP + SWT . LEFT + SWT . WRAP ) ; fNoHierarchyShownLabel . setText ( CallHierarchyMessages . CallHierarchyViewPart_empty ) ; initDragAndDrop ( ) ; showPage ( PAGE_EMPTY ) ; PlatformUI . getWorkbench ( ) . getHelpSystem ( ) . setHelp ( fPagebook , IRubyHelpContextIds . CALL_HIERARCHY_VIEW ) ; fSelectionProviderMediator = new CallHierarchySelectionProvider ( new StructuredViewer [ ] { fCallHierarchyViewer , fLocationViewer } ) ; IStatusLineManager slManager = getViewSite ( ) . getActionBars ( ) . getStatusLineManager ( ) ; fSelectionProviderMediator . addSelectionChangedListener ( new StatusBarUpdater ( slManager ) ) ; getSite ( ) . setSelectionProvider ( fSelectionProviderMediator ) ; fCallHierarchyViewer . initContextMenu ( new IMenuListener ( ) { public void menuAboutToShow ( IMenuManager menu ) { fillCallHierarchyViewerContextMenu ( menu ) ; } } , getSite ( ) , fSelectionProviderMediator ) ; fClipboard = new Clipboard ( parent . getDisplay ( ) ) ; makeActions ( ) ; fillViewMenu ( ) ; fillActionBars ( ) ; initOrientation ( ) ; initCallMode ( ) ; if ( fMemento != null ) { restoreState ( fMemento ) ; } restoreSplitterRatio ( ) ; addPartListener ( ) ; } private void restoreSplitterRatio ( ) { String ratio = fDialogSettings . get ( DIALOGSTORE_RATIO + fCurrentOrientation ) ; if ( ratio == null ) return ; int intRatio = Integer . parseInt ( ratio ) ; fHierarchyLocationSplitter . setWeights ( new int [ ] { intRatio , 1000 - intRatio } ) ; } private void saveSplitterRatio ( ) { if ( fHierarchyLocationSplitter != null && ! fHierarchyLocationSplitter . isDisposed ( ) ) { int [ ] weigths = fHierarchyLocationSplitter . getWeights ( ) ; int ratio = ( weigths [ 0 ] * 1000 ) / ( weigths [ 0 ] + weigths [ 1 ] ) ; String key = DIALOGSTORE_RATIO + fCurrentOrientation ; fDialogSettings . put ( key , ratio ) ; } } private void addPartListener ( ) { fPartListener = new IPartListener2 ( ) { public void partActivated ( IWorkbenchPartReference partRef ) { } public void partBroughtToTop ( IWorkbenchPartReference partRef ) { } public void partClosed ( IWorkbenchPartReference partRef ) { if ( ID_CALL_HIERARCHY . equals ( partRef . getId ( ) ) ) saveViewSettings ( ) ; } public void partDeactivated ( IWorkbenchPartReference partRef ) { if ( ID_CALL_HIERARCHY . equals ( partRef . getId ( ) ) ) saveViewSettings ( ) ; } public void partOpened ( IWorkbenchPartReference partRef ) { } public void partHidden ( IWorkbenchPartReference partRef ) { } public void partVisible ( IWorkbenchPartReference partRef ) { } public void partInputChanged ( IWorkbenchPartReference partRef ) { } } ; getViewSite ( ) . getPage ( ) . addPartListener ( fPartListener ) ; } protected void saveViewSettings ( ) { saveSplitterRatio ( ) ; fDialogSettings . put ( DIALOGSTORE_VIEWORIENTATION , fOrientation ) ; } private void addResizeListener ( Composite parent ) { parent . addControlListener ( new ControlListener ( ) { public void controlMoved ( ControlEvent e ) { } public void controlResized ( ControlEvent e ) { computeOrientation ( ) ; } } ) ; } void computeOrientation ( ) { saveSplitterRatio ( ) ; fDialogSettings . put ( DIALOGSTORE_VIEWORIENTATION , fOrientation ) ; if ( fOrientation != VIEW_ORIENTATION_AUTOMATIC ) { setOrientation ( fOrientation ) ; } else { if ( fOrientation == VIEW_ORIENTATION_SINGLE ) return ; Point size = fParent . getSize ( ) ; if ( size . x != 0 && size . y != 0 ) { if ( size . x > size . y ) setOrientation ( VIEW_ORIENTATION_HORIZONTAL ) ; else setOrientation ( VIEW_ORIENTATION_VERTICAL ) ; } } } private void showPage ( int page ) { if ( page == PAGE_EMPTY ) { fPagebook . showPage ( fNoHierarchyShownLabel ) ; } else { fPagebook . showPage ( fHierarchyLocationSplitter ) ; } } private void restoreState ( IMemento memento ) { fSearchScopeActions . restoreState ( memento ) ; } private void initCallMode ( ) { int mode ; try { mode = fDialogSettings . getInt ( DIALOGSTORE_CALL_MODE ) ; if ( ( mode < 0 ) || ( mode > 1 ) ) { mode = CALL_MODE_CALLERS ; } } catch ( NumberFormatException e ) { mode = CALL_MODE_CALLERS ; } fCurrentCallMode = - 1 ; setCallMode ( mode ) ; } private void initOrientation ( ) { try { fOrientation = fDialogSettings . getInt ( DIALOGSTORE_VIEWORIENTATION ) ; if ( ( fOrientation < 0 ) || ( fOrientation > 3 ) ) { fOrientation = VIEW_ORIENTATION_AUTOMATIC ; } } catch ( NumberFormatException e ) { fOrientation = VIEW_ORIENTATION_AUTOMATIC ; } fCurrentOrientation = - 1 ; setOrientation ( fOrientation ) ; } private void fillViewMenu ( ) { IActionBars actionBars = getViewSite ( ) . getActionBars ( ) ; IMenuManager viewMenu = actionBars . getMenuManager ( ) ; viewMenu . add ( new Separator ( ) ) ; for ( int i = 0 ; i < fToggleCallModeActions . length ; i ++ ) { viewMenu . add ( fToggleCallModeActions [ i ] ) ; } viewMenu . add ( new Separator ( ) ) ; MenuManager layoutSubMenu = new MenuManager ( CallHierarchyMessages . CallHierarchyViewPart_layout_menu ) ; for ( int i = 0 ; i < fToggleOrientationActions . length ; i ++ ) { layoutSubMenu . add ( fToggleOrientationActions [ i ] ) ; } viewMenu . add ( layoutSubMenu ) ; } public void dispose ( ) { if ( fActionGroups != null ) fActionGroups . dispose ( ) ; if ( fClipboard != null ) fClipboard . dispose ( ) ; if ( fPartListener != null ) { getViewSite ( ) . getPage ( ) . removePartListener ( fPartListener ) ; fPartListener = null ; } super . dispose ( ) ; } public void gotoHistoryEntry ( IMethod entry ) { if ( fMethodHistory . contains ( entry ) ) { setMethod ( entry ) ; } } public void init ( IViewSite site , IMemento memento ) throws PartInitException { super . init ( site , memento ) ; fMemento = memento ; } public void refresh ( ) { setCalleeRoot ( null ) ; setCallerRoot ( null ) ; updateView ( ) ; } public void saveState ( IMemento memento ) { if ( fPagebook == null ) { if ( fMemento != null ) { memento . putMemento ( fMemento ) ; } return ; } fSearchScopeActions . saveState ( memento ) ; } public void selectionChanged ( SelectionChangedEvent e ) { if ( e . getSelectionProvider ( ) == fCallHierarchyViewer ) { methodSelectionChanged ( e . getSelection ( ) ) ; } } private void methodSelectionChanged ( ISelection selection ) { if ( selection instanceof IStructuredSelection && ( ( IStructuredSelection ) selection ) . size ( ) == 1 ) { Object selectedElement = ( ( IStructuredSelection ) selection ) . getFirstElement ( ) ; if ( selectedElement instanceof MethodWrapper ) { MethodWrapper methodWrapper = ( MethodWrapper ) selectedElement ; revealElementInEditor ( methodWrapper , fCallHierarchyViewer ) ; updateLocationsView ( methodWrapper ) ; } else { updateLocationsView ( null ) ; } } else { updateLocationsView ( null ) ; } } private void revealElementInEditor ( Object elem , Viewer originViewer ) { if ( getSite ( ) . getPage ( ) . getActivePart ( ) != this ) { return ; } if ( fSelectionProviderMediator . getViewerInFocus ( ) != originViewer ) { return ; } if ( elem instanceof MethodWrapper ) { CallLocation callLocation = CallHierarchy . getCallLocation ( elem ) ; if ( callLocation != null ) { IEditorPart editorPart = CallHierarchyUI . isOpenInEditor ( callLocation ) ; if ( editorPart != null ) { getSite ( ) . getPage ( ) . bringToTop ( editorPart ) ; if ( editorPart instanceof ITextEditor ) { ITextEditor editor = ( ITextEditor ) editorPart ; editor . selectAndReveal ( callLocation . getStart ( ) , ( callLocation . getEnd ( ) - callLocation . getStart ( ) ) ) ; } } } else { IEditorPart editorPart = CallHierarchyUI . isOpenInEditor ( elem ) ; getSite ( ) . getPage ( ) . bringToTop ( editorPart ) ; EditorUtility . revealInEditor ( editorPart , ( ( MethodWrapper ) elem ) . getMember ( ) ) ; } } else if ( elem instanceof IRubyElement ) { IEditorPart editorPart = EditorUtility . isOpenInEditor ( elem ) ; if ( editorPart != null ) { getSite ( ) . getPage ( ) . bringToTop ( editorPart ) ; EditorUtility . revealInEditor ( editorPart , ( IRubyElement ) elem ) ; } } } public Object getAdapter ( Class adapter ) { return super . getAdapter ( adapter ) ; } protected ISelection getSelection ( ) { StructuredViewer viewerInFocus = fSelectionProviderMediator . getViewerInFocus ( ) ; if ( viewerInFocus != null ) { return viewerInFocus . getSelection ( ) ; } return StructuredSelection . EMPTY ; } protected void fillLocationViewerContextMenu ( IMenuManager menu ) { RubyPlugin . createStandardGroups ( menu ) ; menu . appendToGroup ( IContextMenuConstants . GROUP_SHOW , fOpenLocationAction ) ; menu . appendToGroup ( IContextMenuConstants . GROUP_SHOW , fRefreshAction ) ; } protected void handleKeyEvent ( KeyEvent event ) { if ( event . stateMask == 0 ) { if ( event . keyCode == SWT . F5 ) { if ( ( fRefreshAction != null ) && fRefreshAction . isEnabled ( ) ) { fRefreshAction . run ( ) ; return ; } } } } private IActionBars getActionBars ( ) { return getViewSite ( ) . getActionBars ( ) ; } private void setCalleeRoot ( MethodWrapper calleeRoot ) { this . fCalleeRoot = calleeRoot ; } private MethodWrapper getCalleeRoot ( ) { if ( fCalleeRoot == null ) { fCalleeRoot = CallHierarchy . getDefault ( ) . getCalleeRoot ( fShownMethod ) ; } | |
1,375 | <s> package com . asakusafw . yaess . core . task ; import java . io . IOException ; import java . util . Collections ; import java . util . Set ; import com . asakusafw . yaess . core . ExecutionContext ; import com . asakusafw . yaess . core . ExecutionScriptHandler ; import com . asakusafw . yaess . core . Job ; public abstract class HandlerLifecycleJob extends Job { protected final ExecutionScriptHandler < ? > handler ; public HandlerLifecycleJob ( ExecutionScriptHandler < ? > handler ) { if ( handler == null ) { throw new IllegalArgumentException ( "" ) ; } this . handler = handler ; } @ Override public String getId ( ) { return handler . getHandlerId ( ) ; } | |
1,376 | <s> package org . rubypeople . rdt . internal . debug . ui . actions ; import org . eclipse . debug . core . DebugPlugin ; import org . eclipse . jface . action . IAction ; import org . eclipse . jface . dialogs . MessageDialog ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . swt . widgets . Display ; import org . eclipse . ui . IViewActionDelegate ; import org . rubypeople . rdt . debug . core . model . IRubyVariable ; import org . rubypeople . rdt . internal . debug . core . model . RubyExpression ; import org . rubypeople . rdt . internal . debug . core . model . RubyProcessingException ; public class InspectHashKeyAction extends AbstractInspectAction implements IViewActionDelegate { public void run ( IAction arg0 ) { if ( ! ( this | |
1,377 | <s> package org . rubypeople . rdt . internal . core . util ; import java . util . Iterator ; import org . jruby . ast . AliasNode ; import org . jruby . ast . AndNode ; import org . jruby . ast . ArgsCatNode ; import org . jruby . ast . ArgsNode ; import org . jruby . ast . ArgsPushNode ; import org . jruby . ast . ArrayNode ; import org . jruby . ast . AttrAssignNode ; import org . jruby . ast . BackRefNode ; import org . jruby . ast . BeginNode ; import org . jruby . ast . BignumNode ; import org . jruby . ast . BlockArgNode ; import org . jruby . ast . BlockNode ; import org . jruby . ast . BlockPassNode ; import org . jruby . ast . BreakNode ; import org . jruby . ast . CallNode ; import org . jruby . ast . CaseNode ; import org . jruby . ast . ClassNode ; import org . jruby . ast . ClassVarAsgnNode ; import org . jruby . ast . ClassVarDeclNode ; import org . jruby . ast . ClassVarNode ; import org . jruby . ast . Colon2Node ; import org . jruby . ast . Colon3Node ; import org . jruby . ast . ConstDeclNode ; import org . jruby . ast . ConstNode ; import org . jruby . ast . DAsgnNode ; import org . jruby . ast . DRegexpNode ; import org . jruby . ast . DStrNode ; import org . jruby . ast . DSymbolNode ; import org . jruby . ast . DVarNode ; import org . jruby . ast . DXStrNode ; import org . jruby . ast . DefinedNode ; import org . jruby . ast . DefnNode ; import org . jruby . ast . DefsNode ; import org . jruby . ast . DotNode ; import org . jruby . ast . EnsureNode ; import org . jruby . ast . EvStrNode ; import org . jruby . ast . FCallNode ; import org . jruby . ast . FalseNode ; import org . jruby . ast . FixnumNode ; import org . jruby . ast . FlipNode ; import org . jruby . ast . FloatNode ; import org . jruby . ast . ForNode ; import org . jruby . ast . GlobalAsgnNode ; import org . jruby . ast . GlobalVarNode ; import org . jruby . ast . HashNode ; import org . jruby . ast . IfNode ; import org . jruby . ast . InstAsgnNode ; import org . jruby . ast . InstVarNode ; import org . jruby . ast . IterNode ; import org . jruby . ast . LocalAsgnNode ; import org . jruby . ast . LocalVarNode ; import org . jruby . ast . Match2Node ; import org . jruby . ast . Match3Node ; import org . jruby . ast . MatchNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . MultipleAsgn19Node ; import org . jruby . ast . MultipleAsgnNode ; import org . jruby . ast . NewlineNode ; import org . jruby . ast . NextNode ; import org . jruby . ast . NilNode ; import org . jruby . ast . Node ; import org . jruby . ast . NotNode ; import org . jruby . ast . NthRefNode ; import org . jruby . ast . OpAsgnAndNode ; import org . jruby . ast . OpAsgnNode ; import org . jruby . ast . OpAsgnOrNode ; import org . jruby . ast . OpElementAsgnNode ; import org . jruby . ast . OrNode ; import org . jruby . ast . PostExeNode ; import org . jruby . ast . PreExeNode ; import org . jruby . ast . RedoNode ; import org . jruby . ast . RegexpNode ; import org . jruby . ast . RescueBodyNode ; import org . jruby . ast . RescueNode ; import org . jruby . ast . RestArgNode ; import org . jruby . ast . RetryNode ; import org . jruby . ast . ReturnNode ; import org . jruby . ast . RootNode ; import org . jruby . ast . SClassNode ; import org . jruby . ast . SValueNode ; import org . jruby . ast . SelfNode ; import org . jruby . ast . SplatNode ; import org . jruby . ast . StrNode ; import org . jruby . ast . SuperNode ; import org . jruby . ast . SymbolNode ; import org . jruby . ast . ToAryNode ; import org . jruby . ast . TrueNode ; import org . jruby . ast . UndefNode ; import org . jruby . ast . UntilNode ; import org . jruby . ast . VAliasNode ; import org . jruby . ast . VCallNode ; import org . jruby . ast . WhenNode ; import org . jruby . ast . WhileNode ; import org . jruby . ast . XStrNode ; import org . jruby . ast . YieldNode ; import org . jruby . ast . ZArrayNode ; import org . jruby . ast . ZSuperNode ; import org . jruby . ast . visitor . NodeVisitor ; import org . jruby . lexer . yacc . ISourcePosition ; import org . rubypeople . rdt . core . IMember ; import org . rubypeople . rdt . core . ISourceRange ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . SourceRefElement ; public class DOMFinder implements NodeVisitor { public Node foundNode = null ; private Node ast ; private SourceRefElement element ; private int rangeStart = - 1 , rangeLength = 0 ; public DOMFinder ( Node ast , SourceRefElement element ) { this . ast = ast ; this . element = element ; } public Object visitAliasNode ( AliasNode arg0 ) { return null ; } public Object visitAndNode ( AndNode iVisited ) { visitNode ( iVisited . getFirstNode ( ) ) ; visitNode ( iVisited . getSecondNode ( ) ) ; return null ; } public Object visitArgsCatNode ( ArgsCatNode iVisited ) { visitNode ( iVisited . getFirstNode ( ) ) ; visitNode ( iVisited . getSecondNode ( ) ) ; return null ; } public Object visitArgsNode ( ArgsNode iVisited ) { visitNode ( iVisited . getBlock ( ) ) ; if ( iVisited . getOptArgs ( ) != null ) { visitIter ( iVisited . getOptArgs ( ) . childNodes ( ) . iterator ( ) ) ; } return null ; } private Object visitIter ( Iterator < Node > iterator ) { while ( iterator . hasNext ( ) ) { visitNode ( iterator . next ( ) ) ; } return null ; } public Object visitArrayNode ( ArrayNode iVisited ) { visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitBackRefNode ( BackRefNode arg0 ) { return null ; } public Object visitBeginNode ( BeginNode iVisited ) { visitNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitBignumNode ( BignumNode arg0 ) { return null ; } public Object visitBlockArgNode ( BlockArgNode arg0 ) { return null ; } public Object visitBlockNode ( BlockNode iVisited ) { visitIter ( iVisited . childNodes ( ) . iterator ( ) ) ; return null ; } public Object visitBlockPassNode ( BlockPassNode iVisited ) { visitNode ( iVisited . getArgsNode ( ) ) ; visitNode ( iVisited . getBodyNode ( ) ) ; return null ; } public Object visitBreakNode ( BreakNode iVisited ) { visitNode ( iVisited . getValueNode ( ) ) ; return null ; } public Object visitCallNode ( CallNode iVisited ) { visitNode ( iVisited . getReceiverNode ( ) ) ; visitNode ( iVisited . getArgsNode ( ) ) ; visitNode ( iVisited . getIterNode ( ) ) ; return null ; } public Object visitCaseNode ( CaseNode iVisited ) { visitNode ( iVisited . getCaseNode ( ) ) ; visitNode ( iVisited . getCases ( ) ) ; return null ; } public Object visitClassNode ( ClassNode node ) { String name = getFullyQualifiedName ( node . getCPath ( ) ) ; ISourcePosition pos = node . getPosition ( ) ; int nameStart = pos . getStartOffset ( ) + "class" . length ( ) + 1 ; if ( ! found ( node , nameStart , name . length ( ) ) ) { visitNode ( node . getSuperNode ( ) ) ; visitNode ( node . getBodyNode ( ) ) ; } return null ; } private Object visitNode ( Node iVisited ) { if ( iVisited != null ) iVisited . accept ( this ) ; return null ; } private boolean found ( Node node , int start , | |
1,378 | <s> package com . team1160 . scouting . frontend . elements ; import java . awt . event . ActionEvent ; import java . awt . event . ActionListener ; import javax . swing . JButton ; import com . team1160 . scouting . frontend . resourcePackets . CardLayoutPacket ; public class NextButton extends JButton implements ActionListener | |
1,379 | <s> package de . fuberlin . wiwiss . d2rq ; import com . hp . hpl . jena . rdf . model . Model ; import com . hp . hpl . jena . rdf . model . ModelFactory ; import junit . framework . Test ; import junit . framework . TestSuite ; public class D2RQTestSuite { public static final String DIRECTORY = "" ; public static final String DIRECTORY_URL = "file:" + DIRECTORY ; public static final String ISWC_MAP = "" ; public static void main ( String [ ] args ) { Log4jHelper . turnLoggingOff ( ) ; junit . textui . TestRunner . run ( D2RQTestSuite . suite ( ) ) ; } public static Test suite ( ) { TestSuite suite = new TestSuite ( "" ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . algebra . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . csv . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . dbschema . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . download . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . expr . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . find . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . functional_tests . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . helpers . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . map . AllTests . suite ( ) ) ; suite . addTest ( de . fuberlin . wiwiss . d2rq . mapgen . AllTests . suite ( ) ) ; suite . addTest ( de . | |
1,380 | <s> package org . rubypeople . rdt . refactoring . action ; import org . rubypeople . rdt . refactoring . core . convertlocaltofield . ConvertLocalToFieldRefactoring ; public class ConvertTempToFieldAction extends WorkbenchWindowActionDelegate { @ Override | |
1,381 | <s> package com . sun . tools . hat . internal . parser ; import java . io . FilterInputStream ; import java . io . IOException ; import java . io . InputStream ; public class PositionInputStream extends FilterInputStream { private long position = 0L ; public PositionInputStream ( InputStream in ) { super ( in ) ; } public int read ( ) throws IOException { int res = super . read ( ) ; if ( res != - 1 ) position ++ ; return res ; } public int read ( byte [ ] b | |
1,382 | <s> package org . rubypeople . rdt . internal . core . search . indexing ; public interface IIndexConstants { char [ ] REF = "ref" . toCharArray ( ) ; char [ ] METHOD_REF = "methodRef" . toCharArray ( ) ; char [ ] CONSTRUCTOR_REF = "" . toCharArray ( ) ; char [ ] SUPER_REF = "superRef" . toCharArray ( ) ; char [ ] TYPE_DECL = "typeDecl" . toCharArray ( ) ; char [ ] METHOD_DECL = "methodDecl" . toCharArray ( ) ; char [ ] CONSTRUCTOR_DECL = "" . toCharArray ( ) ; char [ ] FIELD_DECL = "fieldDecl" . toCharArray ( ) ; char [ ] OBJECT = "Object" . toCharArray ( ) ; char [ ] [ ] COUNTS = new char [ ] | |
1,383 | <s> package org . rubypeople . rdt . internal . debug . core . breakpoints ; import java . util . Map ; import org . eclipse . core . resources . IMarker ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IWorkspaceRunnable ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . debug . core . DebugException ; import org . eclipse . debug . core . model . IBreakpoint ; import org . rubypeople . rdt . debug . core . IRubyLineBreakpoint ; import org . rubypeople . rdt . debug . core . RdtDebugModel ; public class RubyLineBreakpoint extends RubyBreakpoint implements IRubyLineBreakpoint { public static final String RUBY_BREAKPOINT_MARKER = "" ; private static final String EXTERNAL_FILENAME = "" ; private int index = - 1 ; public RubyLineBreakpoint ( ) { } public RubyLineBreakpoint ( IResource resource , String fileName , String typeName , int lineNumber , int charStart , int charEnd , int hitCount , boolean add , Map attributes ) throws DebugException { this ( resource , fileName , typeName , lineNumber , charStart , charEnd , hitCount , add , attributes , RUBY_BREAKPOINT_MARKER ) ; } protected RubyLineBreakpoint ( final IResource resource , final String fileName , final String typeName , final int lineNumber , final int charStart , final int charEnd , final int hitCount , final boolean add , final Map attributes , final String markerType ) throws DebugException { IWorkspaceRunnable wr = new IWorkspaceRunnable ( ) { public void run ( IProgressMonitor monitor ) throws CoreException { setMarker ( resource . createMarker ( RUBY_BREAKPOINT_MARKER ) ) ; if ( resource . equals ( ResourcesPlugin . getWorkspace ( ) . getRoot ( ) ) ) { attributes . put ( EXTERNAL_FILENAME , fileName ) ; } addLineBreakpointAttributes ( attributes , getModelIdentifier ( ) , true , lineNumber , charStart , charEnd ) ; addTypeNameAndHitCount ( attributes , typeName , hitCount ) ; ensureMarker ( ) . setAttributes ( attributes ) ; register ( add ) ; } } ; run ( getMarkerRule ( resource ) , wr ) ; } public void addLineBreakpointAttributes ( Map < String , Object > attributes , String modelIdentifier , boolean enabled , int lineNumber , int charStart , int charEnd ) { attributes . put ( IBreakpoint . ID , modelIdentifier ) ; attributes . put ( IBreakpoint . ENABLED , Boolean . valueOf ( enabled ) ) ; attributes . put ( IMarker . LINE_NUMBER , new Integer ( lineNumber ) ) ; attributes . put ( IMarker . CHAR_START , new Integer ( charStart ) ) ; attributes . put ( IMarker . CHAR_END , new Integer ( charEnd ) ) ; } public void addTypeNameAndHitCount ( Map < String , Object > attributes , String typeName , int hitCount ) { attributes . put ( TYPE_NAME , typeName ) ; if ( hitCount > 0 ) | |
1,384 | <s> package org . rubypeople . rdt . debug . ui . tests ; import org . rubypeople . rdt . internal . debug . ui . TS_InternalDebugUi ; import org . rubypeople . rdt . internal . debug . ui . launcher . TS_InternalDebugUiLauncher ; | |
1,385 | <s> package com . asakusafw . compiler . operator . io ; import java . io . IOException ; import com . asakusafw . compiler . operator . model . MockKey ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . RecordParser ; public final class MockKeyInput implements ModelInput < MockKey > { private final RecordParser parser ; public MockKeyInput ( RecordParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( "parser" ) ; } this . parser = parser ; } @ Override public boolean readTo ( MockKey model ) throws IOException { if ( | |
1,386 | <s> package com . asakusafw . compiler . flow . stage ; import java . util . Collection ; import java . util . Collections ; import java . util . LinkedHashMap ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . common . NameGenerator ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . compiler . flow . FlowElementProcessor ; import com . asakusafw . compiler . flow . FlowElementProcessor . Kind ; import com . asakusafw . compiler . flow . plan . FlowBlock ; import com . asakusafw . compiler . flow . plan . FlowGraphUtil ; import com . asakusafw . compiler . flow . plan . StageBlock ; import com . asakusafw . compiler . flow . stage . StageModel . Factor ; import com . asakusafw . compiler . flow . stage . StageModel . Fragment ; import com . asakusafw . compiler . flow . stage . StageModel . MapUnit ; import com . asakusafw . compiler . flow . stage . StageModel . ReduceUnit ; import com . asakusafw . compiler . flow . stage . StageModel . ResourceFragment ; import com . asakusafw . compiler . flow . stage . StageModel . Sink ; import com . asakusafw . compiler . flow . stage . StageModel . Unit ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Maps ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . graph . Graph ; import com . asakusafw . utils . graph . Graphs ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementDescription ; import com . asakusafw . vocabulary . flow . graph . FlowElementInput ; import com . asakusafw . vocabulary . flow . graph . FlowElementKind ; import com . asakusafw . vocabulary . flow . graph . FlowElementOutput ; import com . asakusafw . vocabulary . flow . graph . FlowResourceDescription ; public class StageAnalyzer { static final Logger LOG = LoggerFactory . getLogger ( StageAnalyzer . class ) ; private final FlowCompilingEnvironment environment ; private boolean sawError ; public StageAnalyzer ( FlowCompilingEnvironment environment ) { Precondition . checkMustNotBeNull ( environment , "environment" ) ; this . environment = environment ; } public boolean hasError ( ) { return sawError ; } public void clearError ( ) { sawError = false ; } public StageModel analyze ( StageBlock block , ShuffleModel shuffle ) { Precondition . checkMustNotBeNull ( block , "block" ) ; LOG . debug ( "" , block ) ; Context context = new Context ( environment ) ; List < MapUnit > mapUnits = Lists . create ( ) ; for ( FlowBlock flowBlock : block . getMapBlocks ( ) ) { mapUnits . addAll ( collectMapUnits ( context , flowBlock ) ) ; } mapUnits = composeMapUnits ( mapUnits ) ; List < ReduceUnit > reduceUnits = Lists . create ( ) ; for ( FlowBlock flowBlock : block . getReduceBlocks ( ) ) { reduceUnits . addAll ( collectReduceUnits ( context , flowBlock ) ) ; } List < Sink > outputs = Lists . create ( ) ; if ( block . hasReduceBlocks ( ) ) { outputs . addAll ( collectOutputs ( context , reduceUnits , block . getReduceBlocks ( ) ) ) ; } else { outputs . addAll ( collectOutputs ( context , mapUnits , block . getMapBlocks ( ) ) ) ; } if ( hasError ( ) ) { return null ; } StageModel model = new StageModel ( block , mapUnits , shuffle , reduceUnits , outputs ) ; LOG . debug ( "" , block , model ) ; return model ; } private List < MapUnit > collectMapUnits ( Context context , FlowBlock block ) { assert context != null ; assert block != null ; LOG . debug ( "" , block ) ; Set < FlowElement > startElements = collectFragmentStartElements ( block ) ; Map < FlowElement , Fragment > fragments = collectFragments ( context , startElements ) ; Graph < Fragment > fgraph = buildFragmentGraph ( fragments ) ; List < MapUnit > units = buildMapUnits ( context , block , fragments , fgraph ) ; return units ; } private List < MapUnit > composeMapUnits ( List < MapUnit > mapUnits ) { assert mapUnits != null ; Map < Set < FlowBlock . Output > , List < MapUnit > > sameInputs = Maps . create ( ) ; for ( MapUnit unit : mapUnits ) { Set < FlowBlock . Output > sources = Sets . create ( ) ; for ( FlowBlock . Input input : unit . getInputs ( ) ) { for ( FlowBlock . Connection conn : input . getConnections ( ) ) { sources . add ( conn . getUpstream ( ) ) ; } } Maps . addToList ( sameInputs , sources , unit ) ; } List < MapUnit > results = Lists . create ( ) ; for ( Map . Entry < Set < FlowBlock . Output > , List < MapUnit > > entry : sameInputs . entrySet ( ) ) { Set < FlowBlock . Output > sources = entry . getKey ( ) ; List < MapUnit > group = entry . getValue ( ) ; results . add ( compose ( sources , group ) ) ; } return results ; } private MapUnit compose ( Set < FlowBlock . Output > sources , List < MapUnit > group ) { assert sources != null ; assert group != null ; assert group . isEmpty ( ) == false ; if ( group . size ( ) == 1 ) { return group . get ( 0 ) ; } Set < FlowBlock . Input > sawInputs = Sets . create ( ) ; List < FlowBlock . Input > inputs = Lists . create ( ) ; List < Fragment > fragments = Lists . create ( ) ; for ( MapUnit unit : group ) { fragments . addAll ( unit . getFragments ( ) ) ; for ( FlowBlock . Input input : unit . getInputs ( ) ) { if ( sawInputs . contains ( input ) ) { continue ; } sawInputs . add ( input ) ; inputs . add ( input ) ; } } return new MapUnit ( inputs , fragments ) ; } private List < ReduceUnit > collectReduceUnits ( Context context , FlowBlock block ) { assert context != null ; assert block != null ; LOG . debug ( "" , block ) ; Set < FlowElement > startElements = collectFragmentStartElements ( block ) ; Map < FlowElement , Fragment > fragments = collectFragments ( context , startElements ) ; Graph < Fragment > fgraph = buildFragmentGraph ( fragments ) ; List < ReduceUnit > units = buildReduceUnits ( context , block , fragments , fgraph ) ; return units ; } private List < MapUnit > buildMapUnits ( Context context , FlowBlock block , Map < FlowElement , Fragment > fragments , Graph < Fragment > fgraph ) { assert context != null ; assert block != null ; assert fragments != null ; assert fgraph != null ; Map < FlowBlock . Input , Graph < Fragment > > streams = new LinkedHashMap < FlowBlock . Input , Graph < Fragment > > ( ) ; for ( FlowBlock . Input blockInput : block . getBlockInputs ( ) ) { FlowElementInput input = blockInput . getElementPort ( ) ; Fragment head = fragments . get ( input . getOwner ( ) ) ; Graph < Fragment > subgraph = createSubgraph ( head , fgraph ) ; streams . put ( blockInput , subgraph ) ; } List < MapUnit > results = Lists . create ( ) ; for ( Map . Entry < FlowBlock . Input , Graph < Fragment > > entry : streams . entrySet ( ) ) { FlowBlock . Input input = entry . getKey ( ) ; Graph < Fragment > subgraph = entry . getValue ( ) ; List < Fragment > body = sort ( subgraph ) ; for ( int i = 0 , n = body . size ( ) ; i < n ; i ++ ) { body . set ( i , body . get ( i ) ) ; } MapUnit unit = new MapUnit ( Collections . singletonList ( input ) , body ) ; LOG . debug ( "" , input , unit ) ; results . add ( unit ) ; } return results ; } private List < ReduceUnit > buildReduceUnits ( Context context , FlowBlock block , Map < FlowElement , Fragment > fragments , Graph < Fragment > fgraph ) { assert context != null ; assert block != null ; assert fragments != null ; assert fgraph != null ; Map < FlowElement , List < FlowBlock . Input > > inputGroups = new LinkedHashMap < FlowElement , List < FlowBlock . Input > > ( ) ; for ( FlowBlock . Input blockInput : block . getBlockInputs ( ) ) { FlowElement element = blockInput . getElementPort ( ) . getOwner ( ) ; Maps . addToList ( inputGroups , element , blockInput ) ; } Map < FlowElement , Graph < Fragment > > streams = Maps . create ( ) ; for ( FlowElement element : inputGroups . keySet ( ) ) { Fragment head = fragments . get ( element ) ; Graph < Fragment > subgraph = createSubgraph ( head , fgraph ) ; streams . put ( element , subgraph ) ; } List < ReduceUnit > results = Lists . create ( ) ; for ( Map . Entry < FlowElement , Graph < Fragment > > entry : streams . entrySet ( ) ) { FlowElement element = entry . getKey ( ) ; Graph < Fragment > subgraph = entry . getValue ( ) ; List < Fragment > body = sort ( subgraph ) ; for ( int i = 0 , n = body . size ( ) ; i < n ; i ++ ) { body . set ( i , body . get ( i ) ) ; } List < FlowBlock . Input > inputs = inputGroups . get ( element ) ; ReduceUnit unit = new ReduceUnit ( inputs , body ) ; LOG . debug ( "" , element , unit ) ; results . add ( unit ) ; } return results ; } private List < Sink > collectOutputs ( Context context , Collection < ? extends Unit < ? > > units , Collection < FlowBlock > blocks ) { assert context != null ; assert units != null ; assert blocks != null ; Set < FlowElementOutput > candidates = Sets . create ( ) ; for ( FlowBlock block : blocks ) { for ( FlowBlock . Output blockOutput : block . getBlockOutputs ( ) ) { candidates . add ( blockOutput . getElementPort ( ) ) ; } } Set < FlowElementOutput > outputs = Sets . create ( ) ; for ( Unit < ? > unit : units ) { for ( Fragment fragment : unit . getFragments ( ) ) { for ( FlowElementOutput output : fragment . getOutputPorts ( ) ) { if ( candidates . contains ( output ) ) { outputs . add ( output ) ; } } } } Map < Set < FlowBlock . Input > , Set < FlowBlock . Output > > opposites = Maps . create ( ) ; for ( FlowBlock block : blocks ) { for ( FlowBlock . Output blockOutput : block . getBlockOutputs ( ) ) { if ( outputs . contains ( blockOutput . getElementPort ( ) ) == false ) { continue ; } Set < FlowBlock . Input > downstream = Sets . create ( ) ; for ( FlowBlock . Connection connection : blockOutput . getConnections ( ) ) { downstream . add ( connection . getDownstream ( ) ) ; } Maps . addToSet ( opposites , downstream , blockOutput ) ; } } List < Sink > results = Lists . create ( ) ; for ( Set < FlowBlock . Output > group : opposites . values ( ) ) { String name = context . names . create ( "result" ) . getToken ( ) ; results . add ( new Sink ( group , context . names . create ( name ) . getToken ( ) ) ) ; } return results ; } private List < Fragment > sort ( Graph < Fragment > subgraph ) { assert subgraph != null ; Graph < Fragment > tgraph = Graphs . transpose ( subgraph ) ; List < Fragment > sorted = Graphs . sortPostOrder ( tgraph ) ; return sorted ; } private Graph < Fragment > createSubgraph ( Fragment head , Graph < Fragment > fgraph ) { assert head != null ; assert fgraph != null ; Set < Fragment > path = Graphs . collectAllConnected ( fgraph , Collections . singleton ( head ) ) ; path . add ( head ) ; Graph < Fragment > result = Graphs . newInstance ( ) ; for ( Fragment fragment : path ) { result . addNode ( fragment ) ; for ( Fragment successor : fgraph . getConnected ( fragment ) ) { if ( path . contains ( successor ) ) { result . addEdge ( fragment , successor ) ; } } } return result ; } private Graph < Fragment > buildFragmentGraph ( Map < FlowElement , Fragment > fragments ) { assert fragments != null ; Graph < Fragment > result = Graphs . newInstance ( ) ; for ( Fragment fragment : fragments . values ( ) ) { result . addNode ( fragment ) ; for ( FlowElementOutput output : fragment . getOutputPorts ( ) ) { for ( FlowElementInput next : output . getOpposites ( ) ) { Fragment successor = fragments . get ( next . getOwner ( ) ) ; assert successor != null ; result . addEdge ( fragment , successor ) ; } } } return result ; } private Map < FlowElement , Fragment > collectFragments ( Context context , Set < FlowElement > startElements ) { assert context != null ; assert startElements != null ; Map < FlowElement , Fragment > results = Maps . create ( ) ; for ( FlowElement element : startElements ) | |
1,387 | <s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . IPath ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . jface . viewers . LabelProvider ; import org . eclipse . swt . graphics . Image ; import org . eclipse . ui . IWorkbench ; import org . eclipse . ui . ide . IDE ; import org . rubypeople . rdt . core . ILoadpathContainer ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . LoadpathContainerInitializer ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui . viewsupport . RubyElementImageProvider ; import org . rubypeople . rdt . internal . ui . wizards . NewWizardMessages ; import org . rubypeople . rdt . ui . ISharedImages ; import org . rubypeople . rdt . ui . RubyElementImageDescriptor ; import org . rubypeople . rdt . ui . RubyElementLabels ; import org . rubypeople . rdt . ui . RubyUI ; import org . rubypeople . rdt . ui . viewsupport . ImageDescriptorRegistry ; public class CPListLabelProvider extends LabelProvider { private String fNewLabel , fClassLabel , fCreateLabel ; private ImageDescriptorRegistry fRegistry ; private ISharedImages fSharedImages ; private ImageDescriptor fProjectImage ; public CPListLabelProvider ( ) { fNewLabel = NewWizardMessages . CPListLabelProvider_new ; fClassLabel = NewWizardMessages . CPListLabelProvider_classcontainer ; fCreateLabel = NewWizardMessages . CPListLabelProvider_willbecreated ; fRegistry = RubyPlugin . getImageDescriptorRegistry ( ) ; fSharedImages = RubyUI . getSharedImages ( ) ; IWorkbench workbench = RubyPlugin . getDefault ( ) . getWorkbench ( ) ; fProjectImage = workbench . getSharedImages ( ) . getImageDescriptor ( IDE . SharedImages . IMG_OBJ_PROJECT ) ; } public String getText ( Object element ) { if ( element instanceof CPListElement ) { return getCPListElementText ( ( CPListElement ) element ) ; } else if ( element instanceof CPListElementAttribute ) { CPListElementAttribute attribute = ( CPListElementAttribute ) element ; String text = getCPListElementAttributeText ( attribute ) ; if ( attribute . isInNonModifiableContainer ( ) ) { return Messages . format ( NewWizardMessages . CPListLabelProvider_non_modifiable_attribute , text ) ; } return text ; } else if ( element instanceof CPUserLibraryElement ) { return getCPUserLibraryText ( ( CPUserLibraryElement ) element ) ; } return super . getText ( element ) ; } public String getCPUserLibraryText ( CPUserLibraryElement element ) { String name = element . getName ( ) ; if ( element . isSystemLibrary ( ) ) { name = Messages . format ( NewWizardMessages . CPListLabelProvider_systemlibrary , name ) ; } return name ; } public String getCPListElementAttributeText ( CPListElementAttribute attrib ) { String notAvailable = NewWizardMessages . CPListLabelProvider_none ; String key = attrib . getKey ( ) ; if ( key . equals ( CPListElement . EXCLUSION ) ) { String arg = null ; IPath [ ] patterns = ( IPath [ ] ) attrib . getValue ( ) ; if ( patterns != null && patterns . length > 0 ) { int | |
1,388 | <s> package com . asakusafw . compiler . flow . stage ; import java . io . IOException ; import java . util . Collections ; import java . util . List ; import org . apache . hadoop . mapreduce . TaskInputOutputContext ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . common . NameGenerator ; import com . asakusafw . compiler . common . Naming ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . compiler . flow . FlowElementProcessor ; import com . asakusafw . compiler . flow . LinePartProcessor ; import com . asakusafw . compiler . flow . LinePartProcessor . Context ; import com . asakusafw . compiler . flow . plan . StageBlock ; import com . asakusafw . compiler . flow . stage . ShuffleModel . Segment ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . model . syntax . Comment ; import com . asakusafw . utils . java . model . syntax . CompilationUnit ; import com . asakusafw . utils . java . model . syntax . ConstructorDeclaration ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . FieldDeclaration ; import com . asakusafw . utils . java . model . syntax . Javadoc ; import com . asakusafw . utils . java . model . syntax . MethodDeclaration ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . Name ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Statement ; import com . asakusafw . utils . java . model . syntax . Type ; import com . asakusafw . utils . java . model . syntax . TypeBodyDeclaration ; import com . asakusafw . utils . java . model . syntax . TypeDeclaration ; import com . asakusafw . utils . java . model . syntax . TypeParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . WildcardBoundKind ; import com . asakusafw . utils . java . model . util . AttributeBuilder ; import com . asakusafw . utils . java . model . util . ExpressionBuilder ; import com . asakusafw . utils . java . model . util . ImportBuilder ; import com . asakusafw . utils . java . model . util . JavadocBuilder ; import com . asakusafw . utils . java . model . util . Models ; import com . asakusafw . utils . java . model . util . TypeBuilder ; import com . asakusafw . vocabulary . flow . graph . FlowResourceDescription ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . operator . Identity ; public class ShuffleFragmentEmitter { static final Logger LOG = LoggerFactory . getLogger ( ShuffleFragmentEmitter . class ) ; private final FlowCompilingEnvironment environment ; public ShuffleFragmentEmitter ( FlowCompilingEnvironment environment ) { Precondition . checkMustNotBeNull ( environment , "environment" ) ; this . environment = environment ; } public CompiledShuffleFragment emit ( ShuffleModel . Segment segment , Name keyTypeName , Name valueTypeName , StageBlock stageBlock ) throws IOException { Precondition . checkMustNotBeNull ( segment , "segment" ) ; Precondition . checkMustNotBeNull ( stageBlock , "stageBlock" ) ; LOG . debug ( "" , segment ) ; CompiledType mapOut = emitMapOutput ( segment , keyTypeName , valueTypeName , stageBlock ) ; CompiledType combineOut = emitCombineOutput ( segment , keyTypeName , valueTypeName , stageBlock ) ; LOG . debug ( "" , new Object [ ] { segment , mapOut . getQualifiedName ( ) . toNameString ( ) , combineOut . getQualifiedName ( ) . toNameString ( ) , } ) ; return new CompiledShuffleFragment ( mapOut , combineOut ) ; } private CompiledType emitMapOutput ( ShuffleModel . Segment segment , Name keyTypeName , Name valueTypeName , StageBlock stageBlock ) throws IOException { assert segment != null ; assert keyTypeName != null ; assert valueTypeName != null ; assert stageBlock != null ; Engine engine = new MapOutputEngine ( environment , stageBlock , segment , keyTypeName , valueTypeName ) ; return generate ( segment , engine ) ; } private CompiledType emitCombineOutput ( ShuffleModel . Segment segment , Name keyTypeName , Name valueTypeName , StageBlock stageBlock ) throws IOException { assert segment != null ; assert keyTypeName != null ; assert valueTypeName != null ; assert stageBlock != null ; Engine engine = new CombineOutputEngine ( environment , stageBlock , segment , keyTypeName , valueTypeName ) ; return generate ( segment , engine ) ; } private CompiledType generate ( ShuffleModel . Segment segment , Engine engine ) throws IOException { assert segment != null ; assert engine != null ; CompilationUnit source = engine . generate ( ) ; environment . emit ( source ) ; Name packageName = source . getPackageDeclaration ( ) . getName ( ) ; SimpleName simpleName = source . getTypeDeclarations ( | |
1,389 | <s> package com . sun . tools . hat . internal . server ; import com . google . common . base . Function ; import com . google . common . collect . Ordering ; import com . sun . tools . hat . internal . model . * ; import java . util . Arrays ; import java . util . Comparator ; class ClassQuery extends QueryHandler { private enum Sorters implements Function < JavaField , Comparable < ? > > , Comparator < JavaField > { BY_NAME { @ Override public String apply ( JavaField cls ) { return cls . getName ( ) ; } } ; private final Ordering < JavaField > ordering ; private Sorters ( ) { this . ordering = Ordering . natural ( ) . onResultOf ( this ) ; } @ Override public int compare ( JavaField lhs , JavaField rhs ) { return ordering . compare ( lhs , rhs ) ; } } public ClassQuery ( ) { } public void run ( ) { startHtml ( "Class " + query ) ; JavaClass clazz = snapshot . findClass ( query ) ; if ( clazz == null ) { error ( "" + query ) ; } else { printFullClass ( clazz ) ; } endHtml ( ) ; } protected void printFullClass ( JavaClass clazz ) { out . print ( "<h1>" ) ; print ( clazz . toString ( ) ) ; out . println ( "</h1>" ) ; out . println ( "" ) ; printClass ( clazz . getSuperclass ( ) ) ; out . println ( "" ) ; out . println ( "" ) ; printThing ( clazz . getLoader ( ) ) ; out . println ( "" ) ; printThing ( clazz . getSigners ( ) ) ; out . println ( "" ) ; printThing ( clazz . getProtectionDomain ( ) ) ; out . println ( "" ) ; for ( JavaClass sc : clazz . getSubclasses ( ) ) { out . print ( " " ) ; printClass ( sc ) ; out . println ( "<br>" ) ; } out . println ( "" ) ; JavaField [ ] ff = clazz . getFields ( ) . clone ( ) ; Arrays . sort ( ff , Sorters . BY_NAME ) ; for ( JavaField f : ff ) { out . print ( " " ) ; printField ( f ) ; out . println ( "<br>" ) ; } out . println ( "" ) ; JavaStatic [ ] ss = clazz . getStatics ( ) ; for ( JavaStatic s : ss ) { | |
1,390 | <s> package hudson . stagingworkflow ; import org . jbpm . graph . def . ActionHandler ; import org . jbpm . graph . exe . ExecutionContext ; public | |
1,391 | <s> package org . oddjob . values . properties ; import junit . framework . TestCase ; public class | |
1,392 | <s> package de . fuberlin . wiwiss . d2rq . expr ; import de . fuberlin . wiwiss . d2rq . algebra . ColumnRenamer ; public class GreaterThanOrEqual extends BinaryOperator { public GreaterThanOrEqual ( Expression expr1 , Expression expr2 ) { super ( expr1 , expr2 , ">=" ) ; } public Expression renameAttributes ( ColumnRenamer columnRenamer ) { return new | |
1,393 | <s> package org . rubypeople . rdt . internal . core . search ; import java . util . HashSet ; import java . util . Set ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . runtime . IPath ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyElementDelta ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . RubyModel ; import org . rubypeople . rdt . internal . core . RubyModelManager ; import org . rubypeople . rdt . internal . core . RubyProject ; import org . rubypeople . rdt . internal . core . util . Util ; public class RubyWorkspaceScope extends RubySearchScope { private IPath [ ] enclosingPaths = null ; public RubyWorkspaceScope ( ) { } public boolean encloses ( IRubyElement element ) { return true ; } public boolean encloses ( String resourcePathString ) { return true ; } public IPath [ ] enclosingProjectsAndJars ( ) { IPath [ ] result = this . enclosingPaths ; if ( result != null ) { return result ; } long start = BasicSearchEngine . VERBOSE ? System . currentTimeMillis ( ) : - 1 ; try { IRubyProject [ ] projects = RubyModelManager . getRubyModelManager ( ) . getRubyModel ( ) . getRubyProjects ( ) ; Set < IPath > paths = new HashSet < IPath > ( projects . length * 2 ) ; for ( int i = 0 , length = projects . length ; i < length ; i ++ ) { RubyProject rubyProject = ( RubyProject ) projects [ i ] ; IPath projectPath = rubyProject . getProject ( ) . getFullPath ( ) ; paths . add ( projectPath ) ; ILoadpathEntry [ ] entries = rubyProject . getResolvedLoadpath ( true ) ; for ( int j = 0 , eLength = entries . length ; j < eLength ; j ++ ) { ILoadpathEntry entry = entries [ j ] ; if ( entry . getEntryKind ( ) == ILoadpathEntry . CPE_LIBRARY ) { IPath path = entry . getPath ( ) ; Object target = RubyModel . getTarget ( path , false ) ; if ( target instanceof IFolder ) path = ( ( IFolder ) target ) . getFullPath ( ) ; paths . add ( entry . getPath ( ) ) ; } } } result = new IPath [ paths . size ( ) ] ; paths . toArray ( result ) ; return this . enclosingPaths = result ; } catch ( RubyModelException e ) { Util . log ( e , "" ) ; return new IPath [ 0 ] ; } finally { if ( BasicSearchEngine . VERBOSE ) { long time = System . currentTimeMillis ( ) - start ; int length = result == null ? 0 : result . length ; Util . verbose ( "" + length + "" + time + "ms." ) ; } } } public boolean equals ( Object o ) { return o == this ; } public int hashCode ( ) { return RubyWorkspaceScope . class . hashCode ( ) ; } public void processDelta ( IRubyElementDelta delta , int eventType ) { if ( this . enclosingPaths == null ) return ; IRubyElement element = delta . getElement ( ) ; switch ( element . getElementType ( ) ) { case IRubyElement . RUBY_MODEL : IRubyElementDelta [ ] children = delta . getAffectedChildren ( ) ; for ( int i = 0 , length = children . length ; i < length ; i ++ ) { IRubyElementDelta child = children [ i ] ; this . processDelta ( child , eventType ) ; } break ; case IRubyElement . RUBY_PROJECT : int kind = delta . getKind ( ) ; switch ( kind | |
1,394 | <s> package org . rubypeople . rdt . internal . ui . compare ; import org . eclipse . compare . CompareConfiguration ; import org . eclipse . compare . IViewerCreator ; import org | |
1,395 | <s> package net . sf . sveditor . core . db . expr ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBParamIdExpr extends SVDBIdentifierExpr { public List < SVDBExpr > fParamExpr ; public SVDBParamIdExpr ( ) { this ( null ) ; } public SVDBParamIdExpr ( String id ) { super ( SVDBItemType . ParamIdExpr , id ) ; fParamExpr = new | |
1,396 | <s> package org . rubypeople . rdt . internal . ui . search ; import org . eclipse . jface . action . Action ; import org . eclipse . swt . custom . BusyIndicator ; public class SortAction extends Action { private int fSortOrder ; private RubySearchResultPage fPage ; public SortAction ( String label , RubySearchResultPage page , int sortOrder ) { super ( label ) ; fPage = page ; fSortOrder = sortOrder ; } public void run ( ) { BusyIndicator . showWhile ( fPage . getViewer ( ) . getControl ( ) . getDisplay ( | |
1,397 | <s> package net . sf . sveditor . ui . editor ; import net . sf . sveditor . core . db . ISVDBScopeItem ; import net . sf . sveditor . core . db . utils . SVDBSearchUtils ; import net . sf . sveditor . core . expr_utils . SVExprScanner ; import net . sf . sveditor . ui . scanutils . SVDocumentTextScanner ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IInformationControlCreator ; import org . eclipse . jface . text . IRegion ; import org . eclipse . jface . text . ITextHover ; import org . eclipse . jface . text . ITextViewer ; import org . eclipse . jface . text . Region ; public class SVEditorTextHover implements ITextHover { private SVEditor fEditor ; public SVEditorTextHover ( | |
1,398 | <s> package org . rubypeople . rdt . refactoring . tests ; import java . util . Collection ; import junit . framework . TestCase ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . Document ; import org . eclipse . text . edits . TextEdit ; import org . rubypeople . rdt . refactoring . editprovider . FileMultiEditProvider ; import org . rubypeople . rdt . refactoring . editprovider . IEditProvider ; import org . rubypeople . rdt . refactoring . editprovider . IMultiFileEditProvider ; import org . rubypeople . rdt . refactoring . util . HsrFormatter ; public abstract class RefactoringTestCase extends TestCase { public RefactoringTestCase ( String name ) { super ( name ) ; } protected void createEditAndCompareResult ( String document , String expectedDocument , IEditProvider editProvider ) throws BadLocationException { String result ; if ( editProvider != null ) { TextEdit edit = editProvider . getEdit ( document ) ; Document doc = new Document ( | |
1,399 | <s> package com . sun . tools . hat . internal . server ; import java . util . Arrays ; import java . util . Comparator ; import com . google . common . base . Function ; import com . google . common . collect . ComparisonChain ; import com . google . common . collect . Ordering ; import com . sun . tools . hat . internal . model . * ; class RootsQuery extends QueryHandler { private enum Sorters implements Function < ReferenceChain , Comparable < ? > > , Comparator < ReferenceChain > { BY_ROOT_TYPE { @ Override public Integer apply ( ReferenceChain chain ) { return chain . getObj ( ) . getRoot ( ) . getType ( ) ; } } , BY_DEPTH { @ Override public Integer apply ( ReferenceChain chain ) { return chain . getDepth ( ) ; } } ; private final Ordering < ReferenceChain > ordering ; private Sorters ( ) { this . ordering = Ordering . natural ( ) . onResultOf ( this ) ; } @ Override public int compare ( ReferenceChain lhs , ReferenceChain rhs ) { return ordering . compare ( lhs , rhs ) ; } } private final boolean includeWeak ; public RootsQuery ( boolean includeWeak ) { this . includeWeak = includeWeak ; } public void run ( ) { long id = parseHex ( query ) ; JavaHeapObject target = snapshot . findThing ( id ) ; if ( target == null ) { startHtml ( "" ) ; error ( "" ) ; endHtml ( ) ; return ; } if ( includeWeak ) { startHtml ( "" + target + "" ) ; } else { startHtml ( "" + target + |
Subsets and Splits