id
int32 0
3k
| input
stringlengths 43
33.8k
| gt
stringclasses 1
value |
---|---|---|
1,600 | <s> package de . fuberlin . wiwiss . d2rq . csv ; import java . io . StringReader ; import java . util . Collection ; import java . util . HashSet ; import junit . framework . TestCase ; import de . fuberlin . wiwiss . d2rq . D2RQTestSuite ; import de . fuberlin . wiwiss . d2rq . map . TranslationTable . Translation ; public class TranslationTableParserTest extends TestCase { private Collection < Translation > simpleTranslations ; public void setUp ( ) { this . simpleTranslations = new HashSet < Translation > ( ) ; this . simpleTranslations . add ( new Translation ( "db1" , "rdf1" ) ) ; this . | |
1,601 | <s> package com . asakusafw . compiler . operator ; import java . util . Collections ; import java . util . List ; import javax . lang . model . type . TypeMirror ; import com . asakusafw . compiler . common . NameGenerator ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . java . model . syntax . ConstructorDeclaration ; import com . asakusafw . utils . java . model . syntax . FormalParameterDeclaration ; import com . asakusafw . utils . java . model . syntax . Javadoc ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Type ; import com . asakusafw . utils . java . model . syntax . TypeBodyDeclaration ; import com . asakusafw . utils . java . model . util . AttributeBuilder ; import com . asakusafw . utils . java . model . util . ImportBuilder ; import com . asakusafw . utils . java . model . util . JavadocBuilder ; public class OperatorImplementationClassGenerator extends OperatorClassGenerator { public OperatorImplementationClassGenerator ( | |
1,602 | <s> package com . asakusafw . compiler . flow . processor ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . Comparator ; import java . util . List ; import org . junit . Rule ; import org . junit . Test ; import com . asakusafw . compiler . flow . processor . flow . MasterJoinUpdateFlowSelection ; import com . asakusafw . compiler . flow . processor . flow . MasterJoinUpdateFlowSimple ; import com . asakusafw . compiler . flow . processor . flow . MasterJoinUpdateFlowWithParameter ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . compiler . util . tester . CompilerTester ; import com . asakusafw . compiler . util . tester . CompilerTester . TestInput ; import com . asakusafw . compiler . util . tester . CompilerTester . TestOutput ; import com . asakusafw . vocabulary . external . ImporterDescription . DataSize ; public class MasterJoinUpdateFlowProcessorTest { @ Rule public CompilerTester tester = new CompilerTester ( ) ; @ Test public void simple ( ) throws Exception { runEq ( DataSize . UNKNOWN ) ; } @ Test public void tiny ( ) throws Exception { runEq ( DataSize . TINY ) ; } private void runEq ( DataSize dataSize ) throws IOException { TestInput < Ex1 > in1 = tester . input ( Ex1 . class , "ex1" ) ; TestInput < Ex2 > in2 = tester . input ( Ex2 . class , "ex2" , dataSize ) ; TestOutput < Ex1 > found = tester . output ( Ex1 . class , "found" ) ; TestOutput < Ex1 > missing = tester . output ( Ex1 . class , "missing" ) ; Ex1 ex1 = new Ex1 ( ) ; Ex2 ex2 = new Ex2 ( ) ; ex2 . setStringAsString ( "both" ) ; ex2 . setSid ( 10 ) ; in2 . add ( ex2 ) ; ex1 . setStringAsString ( "both" ) ; ex1 . setSid ( 1 ) ; in1 . add ( ex1 ) ; ex2 . setStringAsString ( "only-master" ) ; ex2 . setSid ( 20 ) ; in2 . add ( ex2 ) ; ex1 . setStringAsString ( "only-tx" ) ; ex1 . setSid ( 2 ) ; in1 . add ( ex1 ) ; ex1 . setStringAsString ( "only-tx" ) ; ex1 . setSid ( 3 ) ; in1 . add ( ex1 ) ; ex2 . setStringAsString ( "multi-tx" ) ; ex2 . setSid ( 30 ) ; in2 . add ( ex2 ) ; ex1 . setStringAsString ( "multi-tx" ) ; ex1 . setSid ( 4 ) ; in1 . add ( ex1 ) ; ex1 . setStringAsString ( "multi-tx" ) ; ex1 . setSid ( 5 ) ; in1 . add ( ex1 ) ; ex1 . setStringAsString ( "multi-tx" ) ; ex1 . setSid ( 6 ) ; in1 | |
1,603 | <s> package org . oddjob . state ; import junit . framework . TestCase ; public class AndStateOpTest extends TestCase { public void testAndNoStates ( ) { AndStateOp test = new AndStateOp ( ) ; assertEquals ( ParentState . READY , test . evaluate ( ) ) ; } public void testAndOneStates ( ) { AndStateOp test = new AndStateOp ( ) ; assertEquals ( ParentState . INCOMPLETE , test . evaluate ( JobState . INCOMPLETE ) ) ; assertEquals ( ParentState . COMPLETE , test . evaluate ( JobState . COMPLETE ) ) ; | |
1,604 | <s> package hudson . jbpm . model . gpd ; import java . util . Collections ; import java . util . List ; import com . thoughtworks . xstream . annotations . XStreamAlias ; import com . thoughtworks . xstream . annotations . XStreamImplicit ; @ XStreamAlias ( "edge" ) public class Edge { Label label ; public Label getLabel ( ) { return label ; } public void setLabel ( Label label ) { this . label = label ; } public void setBendpoints ( List < BendPoint > bendpoints ) { this . bendpoints = bendpoints ; } @ XStreamImplicit ( itemFieldName = "bendpoint" ) public | |
1,605 | <s> package org . rubypeople . rdt . internal . core . parser ; import org . jruby . ast . NewlineNode ; import org . jruby . ast . Node ; import org . jruby . lexer . yacc . ISourcePosition ; import org . rubypeople . rdt . internal . ti . util . INodeAcceptor ; public class ClosestNodeLocator extends InOrderVisitor { private int startOffset ; private int endOffset ; private int smallestDiff = Integer . MAX_VALUE ; private Node locatedNode ; private INodeAcceptor acceptor ; public Object handleNode | |
1,606 | <s> package org . rubypeople . rdt . internal . ui . text . ruby ; import java . net . URL ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import org . eclipse . core . runtime . FileLocator ; import org . eclipse . core . runtime . IConfigurationElement ; import org . eclipse . core . runtime . IExtension ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . InvalidRegistryObjectException ; import org . eclipse . core . runtime . Path ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . SubProgressMonitor ; import org . eclipse . jface . action . LegacyActionTools ; import org . eclipse . jface . resource . ImageDescriptor ; import org . osgi . framework . Bundle ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . ui . text . ruby . ContentAssistInvocationContext ; import org . rubypeople . rdt . ui . text . ruby . IRubyCompletionProposalComputer ; public final class CompletionProposalCategory { private static final String ICON = "icon" ; private final String fId ; private final String fName ; private final IConfigurationElement fElement ; private final ImageDescriptor fImage ; private boolean fIsSeparateCommand = true ; private boolean fIsEnabled = true ; private boolean fIsIncluded = true ; private final CompletionProposalComputerRegistry fRegistry ; private int fSortOrder = 0x10000 ; private String fLastError = null ; CompletionProposalCategory ( IConfigurationElement element , CompletionProposalComputerRegistry registry ) { fElement = element ; fRegistry = registry ; IExtension parent = ( IExtension ) element . getParent ( ) ; fId = parent . getUniqueIdentifier ( ) ; checkNotNull ( fId , "id" ) ; String name = parent . getLabel ( ) ; if ( name == null ) fName = fId ; else fName = name ; String icon = element . getAttribute ( ICON ) ; ImageDescriptor img = null ; if ( icon != null ) { Bundle bundle = getBundle ( ) ; if ( bundle != null ) { Path path = new Path ( icon ) ; URL url = FileLocator . find ( bundle , path , null ) ; img = ImageDescriptor . createFromURL ( url ) ; } } fImage = img ; } CompletionProposalCategory ( String id , String name , CompletionProposalComputerRegistry registry ) { fRegistry = registry ; fId = id ; fName = name ; fElement = null ; fImage = null ; } private Bundle getBundle ( ) { String namespace = fElement . getDeclaringExtension ( ) . getContributor ( ) . getName ( ) ; Bundle bundle = Platform . getBundle ( namespace ) ; return bundle ; } private void checkNotNull ( Object obj , String attribute ) throws InvalidRegistryObjectException { if ( obj == null ) { Object [ ] args = { getId ( ) , fElement . getContributor ( ) . getName ( ) , attribute } ; String message = Messages . format ( RubyTextMessages . CompletionProposalComputerDescriptor_illegal_attribute_message , args ) ; IStatus status = new Status ( IStatus . WARNING , RubyPlugin . getPluginId ( ) , IStatus . OK , message , null ) ; RubyPlugin . log ( status ) ; throw new InvalidRegistryObjectException ( ) ; } } public String getId ( ) { return fId ; } public String getName ( ) { return fName ; } public String getDisplayName ( ) { return LegacyActionTools . removeMnemonics ( fName ) ; } public ImageDescriptor getImageDescriptor ( ) { return fImage ; } public void setSeparateCommand ( boolean enabled ) { fIsSeparateCommand = enabled ; } public boolean isSeparateCommand ( ) { return fIsSeparateCommand ; } public void setIncluded ( boolean included ) { fIsIncluded = included ; } public boolean isIncluded ( ) { return fIsIncluded ; } public boolean isEnabled ( ) { return fIsEnabled ; } public void setEnabled ( boolean isEnabled ) { fIsEnabled = isEnabled ; } public boolean hasComputers ( ) { List descriptors = fRegistry . getProposalComputerDescriptors ( ) ; for ( Iterator it = descriptors . iterator ( ) ; it . hasNext ( ) ; ) { CompletionProposalComputerDescriptor desc = ( CompletionProposalComputerDescriptor ) it . next ( ) ; if ( desc . getCategory ( ) == this ) return true ; } return false ; } public boolean hasComputers ( String partition ) { List descriptors = fRegistry . getProposalComputerDescriptors ( partition ) ; for ( Iterator it = descriptors . iterator ( ) ; it . | |
1,607 | <s> package com . asakusafw . vocabulary . model ; import java . lang . annotation . Documented ; import java . lang . annotation . ElementType ; import java . lang . annotation . Retention ; import java . lang . annotation . RetentionPolicy ; import java . lang . annotation . Target ; @ Deprecated @ Target ( ElementType . TYPE ) @ Retention | |
1,608 | <s> package org . rubypeople . rdt . internal . corext . util ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IResourceVisitor ; import org . eclipse . core . resources . mapping . RemoteResourceMappingContext ; import org . eclipse . core . resources . mapping . ResourceMapping ; import org . eclipse . core . resources . mapping . ResourceMappingContext ; import org . eclipse . core . resources . mapping . ResourceTraversal ; import org . eclipse . core . runtime . Assert ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModel ; 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 . IType ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . model . RubyModelProvider ; public abstract class RubyElementResourceMapping extends ResourceMapping { protected RubyElementResourceMapping ( ) { } public IRubyElement getRubyElement ( ) { Object o = getModelObject ( ) ; if ( o instanceof IRubyElement ) return ( IRubyElement ) o ; return null ; } public boolean equals ( Object obj ) { if ( ! ( obj instanceof RubyElementResourceMapping ) ) return false ; return getRubyElement ( ) . equals ( ( ( RubyElementResourceMapping ) obj ) . getRubyElement ( ) ) ; } public int hashCode ( ) { IRubyElement javaElement = getRubyElement ( ) ; if ( javaElement == null ) return super . hashCode ( ) ; return javaElement . hashCode ( ) ; } public String getModelProviderId ( ) { return RubyModelProvider . RUBY_MODEL_PROVIDER_ID ; } public boolean contains ( ResourceMapping mapping ) { if ( mapping instanceof RubyElementResourceMapping ) { RubyElementResourceMapping javaMapping = ( RubyElementResourceMapping ) mapping ; IRubyElement element = getRubyElement ( ) ; IRubyElement other = javaMapping . getRubyElement ( ) ; if ( other != null && element != null ) return element . getPath ( ) . isPrefixOf ( other . getPath ( ) ) ; } return false ; } private static final class RubyModelResourceMapping extends RubyElementResourceMapping { private final IRubyModel fRubyModel ; private RubyModelResourceMapping ( IRubyModel model ) { Assert . isNotNull ( model ) ; fRubyModel = model ; } public Object getModelObject ( ) { return fRubyModel ; } public IProject [ ] getProjects ( ) { IRubyProject [ ] projects = null ; try { projects = fRubyModel . getRubyProjects ( ) ; } catch ( | |
1,609 | <s> package com . sun . tools . hat . internal . model ; import java . io . File ; import java . io . FileInputStream ; import java . io . InputStreamReader ; import java . io . BufferedReader ; import java . io . IOException ; import java . util . HashSet ; import java . util . Set ; public class ReachableExcludesImpl implements ReachableExcludes { private final File excludesFile ; private volatile long lastModified ; private volatile Set < String > methods ; public ReachableExcludesImpl ( File excludesFile ) { this . excludesFile = excludesFile ; readFile ( ) ; } private void readFileIfNeeded ( ) { if ( excludesFile . lastModified ( ) != lastModified ) { synchronized ( this ) { | |
1,610 | <s> package org . oddjob . jmx ; import java . net . MalformedURLException ; import javax . management . remote . JMXServiceURL ; import junit . framework . TestCase ; public class JMXServiceURLHelperTest extends TestCase { public void testFullURL ( ) throws MalformedURLException { JMXServiceURLHelper test = new JMXServiceURLHelper ( ) ; String url = "" ; JMXServiceURL result = test . parse ( url ) ; assertEquals ( url , result . toString ( ) ) ; } public void testClientJMXServiceURL ( ) throws MalformedURLException { JMXServiceURLHelper test = new JMXServiceURLHelper ( ) ; JMXServiceURL result ; result = test . parse ( "my.server" ) ; assertEquals ( "" , result . toString ( ) ) ; result = test | |
1,611 | <s> package org . springframework . social . google . api . impl ; import static org . springframework . http . HttpMethod . POST ; import static org . springframework . http . HttpMethod . PUT ; import static org . springframework . util . StringUtils . hasText ; import org . springframework . http . HttpEntity ; import org . springframework . http . HttpMethod ; import org . springframework . http | |
1,612 | <s> package org . rubypeople . rdt . internal . launching ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . IResourceChangeEvent ; import org . eclipse . core . resources . IResourceChangeListener ; import org . eclipse . core . resources . IResourceDelta ; import org . eclipse . core . resources . IWorkspaceRoot ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . debug . core . DebugPlugin ; import org . eclipse . debug . core . ILaunchConfiguration ; import org . eclipse . debug . core . ILaunchConfigurationType ; import org . rubypeople . rdt . launching . IRubyLaunchConfigurationConstants ; public class LaunchCleaner implements IResourceChangeListener { public void resourceChanged ( IResourceChangeEvent event ) { if ( event == null ) return ; IResourceDelta delta = event . getDelta ( ) ; checkDelta ( delta ) ; } private void checkDelta ( IResourceDelta delta ) { if ( delta == null ) return ; IResource resource = delta . getResource ( ) ; if ( ! ( resource instanceof IWorkspaceRoot ) && ! ( resource instanceof IProject ) ) return ; if ( resource instanceof IProject ) { if ( IResourceDelta . REMOVED != delta . getKind ( ) ) return ; IPath path = delta . getFullPath ( ) ; String name = path . lastSegment ( ) ; projectRemoved ( name ) ; } IResourceDelta [ ] children = delta . getAffectedChildren ( ) ; for ( int i = 0 ; i < children . length ; i ++ ) { checkDelta ( children [ i ] ) ; } } private void projectRemoved | |
1,613 | <s> package org . oddjob . state ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . ConsoleCapture ; import org . oddjob . FailedToStopException ; import org . oddjob . Oddjob ; import org . oddjob . Resetable ; import org . oddjob . StateSteps ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . framework . SimpleJob ; import org . oddjob . framework . StopWait ; import org . oddjob . jobs . WaitJob ; import org . oddjob . jobs . structural . JobFolder ; import org . oddjob . scheduling . DefaultExecutors ; public class CascadeJobTest extends TestCase { private static final Logger logger = Logger . getLogger ( CascadeJobTest . class ) ; @ Override protected void setUp ( ) throws Exception { super . setUp ( ) ; logger . info ( "" + getName ( ) + "" ) ; } private static class OurJob extends SimpleJob { int ran ; @ Override protected int execute ( ) throws Throwable { ++ ran ; return 0 ; } } public void testEmpty ( ) throws InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; StateSteps steps = new StateSteps ( test ) ; steps . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . READY ) ; test . run ( ) ; steps . checkWait ( ) ; executors . stop ( ) ; } public void testSimpleRunnables ( ) throws FailedToStopException , InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; OurJob job1 = new OurJob ( ) ; OurJob job2 = new OurJob ( ) ; OurJob job3 = new OurJob ( ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; test . setJobs ( 0 , job1 ) ; test . setJobs ( 1 , job2 ) ; test . setJobs ( 2 , job3 ) ; StateSteps testState = new StateSteps ( test ) ; testState . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; test . run ( ) ; testState . checkWait ( ) ; assertEquals ( JobState . COMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . COMPLETE , job2 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . COMPLETE , job3 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( 1 , job1 . ran ) ; assertEquals ( 1 , job2 . ran ) ; assertEquals ( 1 , job3 . ran ) ; ( ( Resetable ) job2 ) . hardReset ( ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . COMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . READY , job2 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . COMPLETE , job3 . lastStateEvent ( ) . getState ( ) ) ; test . hardReset ( ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . READY , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . READY , job2 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . READY , job3 . lastStateEvent ( ) . getState ( ) ) ; testState . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; test . run ( ) ; testState . checkWait ( ) ; assertEquals ( 2 , job1 . ran ) ; assertEquals ( 2 , job2 . ran ) ; assertEquals ( 2 , job3 . ran ) ; executors . stop ( ) ; } public void testNotComplete ( ) throws FailedToStopException , InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; FlagState job1 = new FlagState ( ) ; job1 . setState ( JobState . INCOMPLETE ) ; FlagState job2 = new FlagState ( ) ; job2 . setState ( JobState . INCOMPLETE ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; test . setJobs ( 0 , job1 ) ; test . setJobs ( 1 , job2 ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; StateSteps testStates = new StateSteps ( test ) ; testStates . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . INCOMPLETE ) ; test . run ( ) ; testStates . checkWait ( ) ; assertEquals ( JobState . INCOMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . READY , job2 . lastStateEvent ( ) . getState ( ) ) ; job1 . setState ( JobState . COMPLETE ) ; testStates . startCheck ( ParentState . INCOMPLETE , ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . INCOMPLETE ) ; test . softReset ( ) ; test . run ( ) ; testStates . checkWait ( ) ; assertEquals ( JobState . COMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . INCOMPLETE , job2 . lastStateEvent ( ) . getState ( ) ) ; executors . stop ( ) ; } public void testException ( ) throws FailedToStopException , InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; FlagState job1 = new FlagState ( ) ; job1 . setState ( JobState . COMPLETE ) ; FlagState job2 = new FlagState ( ) ; job2 . setState ( JobState . EXCEPTION ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; test . setJobs ( 0 , job1 ) ; test . setJobs ( 1 , job2 ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; StateSteps job2Check = new StateSteps ( job2 ) ; job2Check . startCheck ( JobState . READY , JobState . EXECUTING , JobState . EXCEPTION ) ; test . run ( ) ; job2Check . checkWait ( ) ; new StopWait ( test ) . run ( ) ; assertEquals ( JobState . COMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . EXCEPTION , job2 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( ParentState . EXCEPTION , test . lastStateEvent ( ) . getState ( ) ) ; job2Check . startCheck ( JobState . EXCEPTION , JobState . READY , JobState . EXECUTING , JobState . COMPLETE ) ; job2 . setState ( JobState . COMPLETE ) ; job2 . softReset ( ) ; job2 . run ( ) ; job2Check . checkWait ( ) ; assertEquals ( JobState . COMPLETE , job1 . lastStateEvent ( ) . getState ( ) ) ; assertEquals ( JobState . COMPLETE , job2 . lastStateEvent ( ) . getState ( ) ) ; executors . stop ( ) ; } public void testDestroyed ( ) throws FailedToStopException , InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; FlagState job1 = new FlagState ( ) ; job1 . setState ( JobState . COMPLETE ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; test . setJobs ( 0 , job1 ) ; assertEquals ( ParentState . READY , test . lastStateEvent ( ) . getState ( ) ) ; StateSteps state = new StateSteps ( test ) ; state . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; test . run ( ) ; state . checkWait ( ) ; final List < State > results = new ArrayList < State > ( ) ; class OurListener implements StateListener { public void jobStateChange ( StateEvent event ) { results . add ( event . getState ( ) ) ; } } OurListener l = new OurListener ( ) ; test . addStateListener ( l ) ; assertEquals ( ParentState . COMPLETE , results . get ( 0 ) ) ; assertEquals ( 1 , results . size ( ) ) ; test . destroy ( ) ; assertEquals ( ParentState . DESTROYED , results . get ( 1 ) ) ; assertEquals ( 2 , results . size ( ) ) ; executors . stop ( ) ; } public void testWithFoldersMixedIn ( ) throws InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; FlagState job1 = new FlagState ( JobState . COMPLETE ) ; FlagState job2 = new FlagState ( JobState . COMPLETE ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; StateSteps testState = new StateSteps ( test ) ; testState . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; test . setJobs ( 0 , new JobFolder ( ) ) ; test . setJobs ( 1 , job1 ) ; test . setJobs ( 2 , new JobFolder ( ) ) ; test . setJobs ( 3 , job2 ) ; test . setJobs ( 4 , new JobFolder ( ) ) ; test . run ( ) ; testState . checkWait ( ) ; executors . stop ( ) ; } public void testRemovingAndInserting ( ) throws InterruptedException { DefaultExecutors executors = new DefaultExecutors ( ) ; FlagState job1 = new FlagState ( JobState . COMPLETE ) ; FlagState job2 = new FlagState ( JobState . COMPLETE ) ; CascadeJob test = new CascadeJob ( ) ; test . setExecutorService ( executors . getPoolExecutor ( ) ) ; StateSteps testState = new StateSteps ( test ) ; testState . startCheck ( ParentState . READY , ParentState . EXECUTING , ParentState . ACTIVE , ParentState . COMPLETE ) ; test . setJobs ( 0 , job1 ) ; test | |
1,614 | <s> package com . asakusafw . compiler . flow . join ; import java . io . IOException ; import java . lang . annotation . Annotation ; import java . lang . reflect . Type ; import java . util . LinkedList ; import java . util . List ; import java . util . Set ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . flow . DataClass ; import com . asakusafw . compiler . flow . DataClass . Property ; import com . asakusafw . compiler . flow . ExternalIoDescriptionProcessor ; import com . asakusafw . compiler . flow . FlowCompilerOptions ; import com . asakusafw . compiler . flow . FlowCompilingEnvironment ; import com . asakusafw . compiler . flow . FlowGraphRewriter ; import com . asakusafw . compiler . flow . join . operator . SideDataBranch ; import com . asakusafw . compiler . flow . join . operator . SideDataCheck ; import com . asakusafw . compiler . flow . join . operator . SideDataJoin ; import com . asakusafw . compiler . flow . join . operator . SideDataJoinUpdate ; import com . asakusafw . compiler . flow . plan . FlowGraphUtil ; import com . asakusafw . runtime . stage . input . TemporaryInputFormat ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . utils . java . model . syntax . Name ; import com . asakusafw . vocabulary . external . ImporterDescription ; import com . asakusafw . vocabulary . flow . graph . FlowBoundary ; import com . asakusafw . vocabulary . flow . graph . FlowElement ; import com . asakusafw . vocabulary . flow . graph . FlowElementAttribute ; 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 . FlowElementPortDescription ; import com . asakusafw . vocabulary . flow . graph . FlowGraph ; import com . asakusafw . vocabulary . flow . graph . FlowIn ; import com . asakusafw . vocabulary . flow . graph . FlowPartDescription ; import com . asakusafw . vocabulary . flow . graph . FlowResourceDescription ; import com . asakusafw . vocabulary . flow . graph . InputDescription ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . flow . graph . PortConnection ; import com . asakusafw . vocabulary . flow . graph . ShuffleKey ; import com . asakusafw . vocabulary . operator . MasterBranch ; import com . asakusafw . vocabulary . operator . MasterCheck ; import com . asakusafw . vocabulary . operator . MasterJoin ; import com . asakusafw . vocabulary . operator . MasterJoinUpdate ; public class JoinRewriter extends FlowCompilingEnvironment . Initialized implements FlowGraphRewriter { static final Logger LOG = LoggerFactory . getLogger ( JoinRewriter . class ) ; @ Override public boolean rewrite ( FlowGraph graph ) throws RewriteException { Precondition . checkMustNotBeNull ( graph , "graph" ) ; FlowCompilerOptions options = getEnvironment ( ) . getOptions ( ) ; if ( options . isHashJoinForSmall ( ) == false && options . isHashJoinForTiny ( ) == false ) { LOG . debug ( "" ) ; return false ; } return rewriteGraph ( graph ) ; } private boolean rewriteGraph ( FlowGraph graph ) { assert graph != null ; boolean modified = false ; for ( FlowIn < ? > input : graph . getFlowInputs ( ) ) { if ( rewriteRequired ( input ) == false ) { continue ; } modified |= rewriteSuccessors ( input . getDescription ( ) , input ) ; } return modified ; } private boolean rewriteRequired ( FlowIn < ? > input ) { assert input != null ; InputDescription desc = input . getDescription ( ) ; ImporterDescription importer = desc . getImporterDescription ( ) ; if ( importer == null ) { return false ; } if ( isSupportedSize ( desc ) == false ) { return false ; } if ( isSupportedFormat ( desc ) == false ) { return false ; } return true ; } private boolean isSupportedSize ( InputDescription desc ) { assert desc != null ; ImporterDescription importer = desc . getImporterDescription ( ) ; assert importer != null ; FlowCompilerOptions options = getEnvironment ( ) . getOptions ( ) ; switch ( importer . getDataSize ( ) ) { case TINY : return options . isHashJoinForTiny ( ) ; case SMALL : return false ; default : return false ; } } private boolean isSupportedFormat ( InputDescription desc ) { assert desc != null ; assert desc . getImporterDescription ( ) != null ; ExternalIoDescriptionProcessor proc = getEnvironment ( ) . getExternals ( ) . findProcessor ( desc ) ; if ( proc == null ) { return false ; } Class < ? > formatType = proc . getInputInfo ( desc ) . | |
1,615 | <s> package org . rubypeople . rdt . ui . actions ; import java . util . ResourceBundle ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . TextSelection ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . ui . texteditor . ITextEditor ; import org . eclipse . ui . texteditor . TextEditorAction ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; public class FormatAction extends TextEditorAction { public FormatAction ( ResourceBundle bundle , String prefix , ITextEditor editor ) { super ( bundle , prefix , editor ) ; } public void run ( ) { IDocument doc = this . getTextEditor ( ) . getDocumentProvider ( ) . | |
1,616 | <s> package org . rubypeople . rdt . internal . corext . util ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . DefaultLineTracker ; import org . eclipse . jface . text . ILineTracker ; import org . eclipse . jface . text . IRegion ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . formatter . IndentManipulation ; public class Strings { public static int computeIndentUnits ( String line , IRubyProject project ) { return computeIndentUnits ( line , CodeFormatterUtil . getTabWidth ( project ) , CodeFormatterUtil . getIndentWidth ( project ) ) ; } public static int computeIndentUnits ( String line , int tabWidth , int indentWidth ) { if ( indentWidth == 0 ) return - 1 ; int visualLength = measureIndentLength ( line , tabWidth ) ; return visualLength / indentWidth ; } public static int measureIndentLength ( CharSequence line , int tabSize ) { int length = 0 ; int max = line . length ( ) ; for ( int i = 0 ; i < max ; i ++ ) { char ch = line . charAt ( i ) ; if ( ch == '\t' ) { int reminder = length % tabSize ; length += tabSize - reminder ; } else if ( isIndentChar ( ch ) ) { length ++ ; } else { return length ; } } return length ; } public static boolean isIndentChar ( char ch ) { return Character . isWhitespace ( ch ) && ! isLineDelimiterChar ( ch ) ; } public static boolean isLineDelimiterChar ( char ch ) { return ch == '\n' || ch == '\r' ; } public static boolean containsOnlyWhitespaces ( String s ) { int size = s . length ( ) ; for ( int i = 0 ; i < size ; i ++ ) { if ( ! Character . isWhitespace ( s . charAt ( i ) ) ) return false ; } return true ; } public static boolean equals ( String s , char [ ] c ) { if ( s . length ( ) != c . length ) return false ; for ( int i = c . length ; -- i >= 0 ; ) if ( s . charAt ( i ) != c [ i ] ) return false ; return true ; } public static boolean startsWithIgnoreCase ( String text , String prefix ) { int textLength = text . length ( ) ; int prefixLength = prefix . length ( ) ; if ( textLength < prefixLength ) return false ; for ( int i = prefixLength - 1 ; i >= 0 ; i -- ) { if ( Character . toLowerCase ( prefix . charAt ( i ) ) != Character . toLowerCase ( text . charAt ( i ) ) ) return false ; } return true ; } public static boolean isLowerCase ( char ch ) { return Character . toLowerCase ( ch ) == ch ; } public static String removeMnemonicIndicator ( String string ) { int length = string . length ( ) ; StringBuffer result = new StringBuffer ( length ) ; char lastChar = ' ' ; for ( int i = 0 ; i < length ; i ++ ) { char ch = string . charAt ( i ) ; if ( ch != '&' || lastChar == '&' ) { result . append ( ch ) ; } lastChar = ch ; } return result . toString ( ) ; } public static String [ ] convertIntoLines ( String input ) { try { ILineTracker tracker = new DefaultLineTracker ( ) ; tracker . set ( input ) ; int size = tracker . getNumberOfLines ( ) ; String result [ ] = new String [ size ] ; for ( int i = 0 ; i < size ; i ++ ) { IRegion region = tracker . getLineInformation ( i ) ; int offset = region . getOffset ( ) ; result [ i ] = input . substring ( offset , offset + region . getLength ( ) ) ; } return result ; } catch ( BadLocationException e ) { return null ; } } public static void trimIndentation ( String [ ] lines , IRubyProject project ) { trimIndentation ( lines , CodeFormatterUtil . getTabWidth ( project ) , CodeFormatterUtil . getIndentWidth ( project ) , true ) ; } public static void trimIndentation ( String [ ] lines , int tabWidth , int indentWidth , boolean considerFirstLine ) { String [ ] toDo = new String [ lines . length ] ; int minIndent = Integer . MAX_VALUE ; for ( int i = considerFirstLine ? 0 : 1 ; i < lines . length ; i ++ ) { String line = lines [ i ] ; if ( containsOnlyWhitespaces ( line ) ) continue ; toDo [ i ] = line ; int indent = computeIndentUnits ( line , tabWidth , indentWidth ) ; if ( indent < minIndent ) { minIndent = indent ; } } if ( minIndent > 0 ) { for ( int i = considerFirstLine ? 0 : 1 ; i < toDo . length ; i ++ ) { String s = toDo [ i ] ; if ( s != null ) lines [ i ] = trimIndent ( s , minIndent , tabWidth , indentWidth ) ; else { String line = lines [ i ] ; | |
1,617 | <s> package com . asakusafw . testtools . excel ; import static org . junit . Assert . * ; import java . io . FileInputStream ; import java . io . IOException ; import java . io . InputStream ; import java . lang . reflect . InvocationTargetException ; import java . lang . reflect . Method ; import java . math . BigDecimal ; import java . util . List ; import org . apache . hadoop . io . Writable ; import org . apache . poi . hssf . usermodel . HSSFCell ; import org . apache . poi . hssf . usermodel . HSSFRow ; import org . apache . poi . hssf . usermodel . HSSFSheet ; import org . apache . poi . hssf . usermodel . HSSFWorkbook ; import org . junit . After ; import org . junit . Before ; import org . junit . Test ; import com . asakusafw . modelgen . source . MySqlDataType ; import com . asakusafw . runtime . value . ByteOption ; import com . asakusafw . runtime . value . DateOption ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . DateTimeOption ; import com . asakusafw . runtime . value . DateUtil ; import com . asakusafw . runtime . value . DecimalOption ; import com . asakusafw . runtime . value . IntOption ; import com . asakusafw . runtime . value . LongOption ; import com . asakusafw . runtime . value . ShortOption ; import com . asakusafw . runtime . value . StringOption ; import com . asakusafw . testtools . ColumnInfo ; import com . asakusafw . testtools . ColumnMatchingCondition ; import com . asakusafw . testtools . Constants ; import com . asakusafw . testtools . NullValueCondition ; public class ExcelUtilsTest { @ Before public void setUp ( ) throws Exception { } @ After public void tearDown ( ) throws Exception { } @ Test public void testConstractor01 ( ) throws IOException { String filename = "" ; new ExcelUtils ( filename ) ; } @ Test ( expected = java . io . FileNotFoundException . class ) public void testConstractor02 ( ) throws IOException { String filename = "" ; new ExcelUtils ( filename ) ; } @ Test public void testConstractor03 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( IOException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testConstractor04 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( IOException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testConstractor05 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( IOException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testConstractor06 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( IOException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testConstractor07 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testConstractor08 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos01 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos02 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos03 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos04 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos05 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos06 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos07 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos08 ( ) throws IOException { String filename = "" ; ExcelUtils excelUtils = new ExcelUtils ( filename ) ; List < ColumnInfo > list = excelUtils . getColumnInfos ( ) ; assertEquals ( 37 , list . size ( ) ) ; ColumnInfo info ; info = list . get ( 0 ) ; assertEquals ( "FOO" , info . getTableName ( ) ) ; assertEquals ( "PK" , info . getColumnName ( ) ) ; assertEquals ( "" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . LONG , info . getDataType ( ) ) ; assertTrue ( info . isKey ( ) ) ; assertFalse ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . NONE , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NORMAL , info . getNullValueCondition ( ) ) ; info = list . get ( 2 - 1 ) ; assertEquals ( "FOO" , info . getTableName ( ) ) ; assertEquals ( "" , info . getColumnName ( ) ) ; assertEquals ( "" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . VARCHAR , info . getDataType ( ) ) ; assertEquals ( 256 , info . getCharacterMaximumLength ( ) ) ; assertFalse ( info . isKey ( ) ) ; assertFalse ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . PARTIAL , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NULL_IS_NG , info . getNullValueCondition ( ) ) ; info = list . get ( 29 - 1 ) ; assertEquals ( "FOO" , info . getTableName ( ) ) ; assertEquals ( "DEC_COL" , info . getColumnName ( ) ) ; assertEquals ( "DEC_COL_C" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . DECIMAL , info . getDataType ( ) ) ; assertEquals ( 10 , info . getNumericPrecision ( ) ) ; assertEquals ( 4 , info . getNumericScale ( ) ) ; assertFalse ( info . isKey ( ) ) ; assertTrue ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . EXACT , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NULL_IS_OK , info . getNullValueCondition ( ) ) ; } @ Test public void testgetColumnInfos09 ( ) throws IOException { String filename = "" ; ExcelUtils excelUtils = new ExcelUtils ( filename ) ; List < ColumnInfo > list = excelUtils . getColumnInfos ( ) ; assertEquals ( 37 , list . size ( ) ) ; ColumnInfo info ; info = list . get ( 0 ) ; assertEquals ( "BAR" , info . getTableName ( ) ) ; assertEquals ( "PK" , info . getColumnName ( ) ) ; assertEquals ( "" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . LONG , info . getDataType ( ) ) ; assertTrue ( info . isKey ( ) ) ; assertFalse ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . NONE , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NORMAL , info . getNullValueCondition ( ) ) ; info = list . get ( 2 - 1 ) ; assertEquals ( "BAR" , info . getTableName ( ) ) ; assertEquals ( "" , info . getColumnName ( ) ) ; assertEquals ( "52" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . VARCHAR , info . getDataType ( ) ) ; assertEquals ( 256 , info . getCharacterMaximumLength ( ) ) ; assertFalse ( info . isKey ( ) ) ; assertFalse ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . PARTIAL , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NULL_IS_NG , info . getNullValueCondition ( ) ) ; info = list . get ( 29 - 1 ) ; assertEquals ( "BAR" , info . getTableName ( ) ) ; assertEquals ( "DEC_COL" , info . getColumnName ( ) ) ; assertEquals ( "123456" , info . getColumnComment ( ) ) ; assertEquals ( MySqlDataType . DECIMAL , info . getDataType ( ) ) ; assertEquals ( 10 , info . getNumericPrecision ( ) ) ; assertEquals ( 4 , info . getNumericScale ( ) ) ; assertFalse ( info . isKey ( ) ) ; assertTrue ( info . isNullable ( ) ) ; assertEquals ( ColumnMatchingCondition . EXACT , info . getColumnMatchingCondition ( ) ) ; assertEquals ( NullValueCondition . NULL_IS_OK , info . getNullValueCondition ( ) ) ; } @ Test public void testgetColumnInfos10 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testgetColumnInfos11 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ Test public void testGetColumnInfos12 ( ) throws IOException { String filename = "" ; try { new ExcelUtils ( filename ) ; } catch ( InvalidExcelBookException e ) { String actual = e . getLocalizedMessage ( ) ; String expected = "" ; assertEquals ( expected , actual ) ; } } @ SuppressWarnings ( "deprecation" ) @ Test public void testGetXXXOption ( ) throws Exception { String filename = "" ; InputStream is = new FileInputStream ( filename ) ; HSSFWorkbook workbook = new HSSFWorkbook ( is ) ; HSSFSheet sheet = workbook . getSheet ( Constants . OUTPUT_DATA_SHEET_NAME ) ; ExcelUtils excelUtils = new ExcelUtils ( filename ) ; LongOption longOption = new LongOption ( ) ; longOption . modify ( 0 ) ; testGetXXXOptionDo ( excelUtils , sheet , DATA . NUMERIC_0 , TYPES . BIGINT , longOption ) ; longOption . modify ( 1 ) ; testGetXXXOptionDo ( excelUtils , sheet , DATA . NUMERIC_1 , TYPES . BIGINT , longOption ) ; longOption . modify ( - 1 ) ; testGetXXXOptionDo ( excelUtils , sheet , DATA . NUMERIC_MINUS1 , | |
1,618 | <s> package net . sf . sveditor . core . db ; import java . util . ArrayList ; import java . util . List ; public class SVDBGenerateRegion extends SVDBChildItem implements ISVDBScopeItem { public List < ISVDBChildItem > fGenerateItems ; public SVDBLocation fEndLocation ; public SVDBGenerateRegion ( ) { super ( SVDBItemType . GenerateRegion ) ; fGenerateItems = new ArrayList < ISVDBChildItem > ( ) ; } public Iterable < ISVDBChildItem > getChildren ( ) { return fGenerateItems ; } public SVDBLocation getEndLocation ( ) { return fEndLocation ; } public void setEndLocation ( SVDBLocation loc ) { fEndLocation = loc ; } @ SuppressWarnings ( { "unchecked" , "rawtypes" } ) public List < ISVDBItemBase > getItems ( ) { return ( List < ISVDBItemBase > ) ( ( List ) fGenerateItems ) ; } public void addChildItem ( ISVDBChildItem item ) { | |
1,619 | <s> package org . oddjob . script ; import java . lang . reflect . Method ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . convert . ConversionProvider ; import org . oddjob . arooa . convert . ConversionRegistry ; import org . oddjob . arooa . convert . Convertlet ; public class MethodInvoker implements Invoker { public static class Conversions implements ConversionProvider { public void registerWith ( ConversionRegistry registry ) { registry . register ( Object . | |
1,620 | <s> package org . oddjob . sql ; import java . sql . Connection ; import java . sql . SQLException ; import org . apache . log4j . Logger ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . registry . Path ; import org . oddjob . persist . OddjobPersister ; import org . oddjob . persist . PersisterBase ; public class SQLPersisterService { private static final Logger logger = Logger . getLogger ( SQLPersisterService . class ) ; private Connection connection ; private String name ; private SQLSerializationFactory serializationFactory ; private volatile SQLSerialization serialization ; public void start ( ) throws SQLException { if ( serializationFactory == null ) { serializationFactory = new HSQLSerializationFactory ( ) ; } serialization = serializationFactory . createSerialization ( connection ) ; } public void stop ( ) throws SQLException { if ( serialization != null ) { serialization . close ( ) ; serialization = null ; } } public void setConnection ( Connection connection ) throws SQLException { this . connection = connection ; } public String getName ( ) { return name ; } public void setName ( String name ) { this . name = name ; } public SQLSerializationFactory getSerializationFactory ( ) { return serializationFactory ; } public void setSerializationFactory ( SQLSerializationFactory serializationFactory ) { this . serializationFactory = serializationFactory ; } public OddjobPersister getPersister ( String path ) { return new SQLPersister ( path ) ; } @ Override public String toString ( ) { if ( name == null ) { return getClass ( ) . getSimpleName ( ) ; } else { return name ; } } class SQLPersister extends PersisterBase { public SQLPersister ( String path ) { super ( path == null ? null : new Path ( path ) ) ; } @ Override protected void persist ( Path path , String id , Object o ) throws ComponentPersistException { if ( serialization == null ) { throw new IllegalStateException ( "" ) ; } | |
1,621 | <s> package org . rubypeople . rdt . internal . ui . text ; import junit . framework . TestCase ; import org . eclipse . jface . text . Document ; import org . eclipse . jface . text . IRegion ; public class TC_RubyWordFinder extends TestCase { private static final String document = "" + "" + "end" ; private IRegion findWord ( int offset ) { return RubyWordFinder . findWord ( new Document ( document ) , offset ) ; } private boolean regionEquals ( IRegion region , int length ) { return region . getLength ( ) == length && region . getLength ( ) == length ; } private boolean isWordAtPosition ( String word , int cursorPosition ) { return regionEquals ( findWord ( cursorPosition ) , word . length ( ) ) ; } public void testFindFirstWord | |
1,622 | <s> package org . rubypeople . rdt . internal . core . pmd ; import java . io . File ; import java . io . FilenameFilter ; import java . util . ArrayList ; import java . util . List ; public class FileFinder { private FilenameFilter filter ; private static final String FILE_SEP = System . getProperty ( "" ) ; public List findFilesFrom ( String dir , FilenameFilter filter , boolean recurse ) { this . filter = filter ; List files = new ArrayList ( ) ; scanDirectory ( new File ( dir ) , files | |
1,623 | <s> package org . oddjob ; import java . io . File ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import org . oddjob . arooa . ArooaException ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . ComponentTrinity ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . parsing . MockArooaContext ; import org . oddjob . arooa . registry . BeanDirectory ; import org . oddjob . arooa . registry . ComponentPool ; import org . oddjob . arooa . runtime . MockRuntimeConfiguration ; import org . oddjob . arooa . runtime . RuntimeConfiguration ; import org . oddjob . arooa . types . XMLConfigurationType ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . framework . SimpleJob ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; import org . oddjob . state . StateListener ; import org . oddjob . state . State ; import org . oddjob . state . StateEvent ; import org . oddjob . structural . StructuralEvent ; import org . oddjob . structural . StructuralListener ; import org . oddjob . util . URLClassLoaderType ; public class OddjobLoadTest extends TestCase { public void testReset ( ) { class MyL implements StructuralListener { int count ; public void childAdded ( StructuralEvent event ) { count ++ ; } public void childRemoved ( StructuralEvent event ) { count -- ; } } class MySL implements StateListener { List < State > states = new ArrayList < State > ( ) ; public void jobStateChange ( StateEvent event ) { states . add ( event . getState ( ) ) ; } } String xml = "" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob oj = new Oddjob ( ) ; oj . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; MyL childListener = new MyL ( ) ; oj . addStructuralListener ( childListener ) ; assertEquals ( 0 , childListener . count ) ; oj . load ( ) ; Stateful flag = ( Stateful ) new OddjobLookup ( oj ) . lookup ( "flag" ) ; MySL stateListener = new MySL ( ) ; flag . addStateListener ( stateListener ) ; assertEquals ( 1 , stateListener . states . size ( ) ) ; assertEquals ( JobState . READY , stateListener . states . get ( 0 ) ) ; assertEquals ( 1 , childListener . count ) ; oj . hardReset ( ) ; assertEquals ( 2 , stateListener . states . size ( ) ) ; assertEquals ( JobState . DESTROYED , stateListener . states . get ( 1 ) ) ; assertEquals ( 0 , childListener . count ) ; oj . load ( ) ; assertEquals ( 2 , stateListener . states . size ( ) ) ; assertEquals ( 1 , childListener . count ) ; oj . hardReset ( ) ; assertEquals ( 0 , childListener . count ) ; oj . load ( ) ; assertEquals ( 1 , childListener . count ) ; oj . destroy ( ) ; } public void testSoftReset ( ) { class MyL implements StructuralListener { int count ; public void childAdded ( StructuralEvent event ) { count ++ ; } public void childRemoved ( StructuralEvent event ) { count -- ; } } String xml = "" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob oj = new Oddjob ( ) ; oj . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; MyL l = new MyL ( ) ; oj . addStructuralListener ( l ) ; assertEquals ( 0 , l . count ) ; oj . load ( ) ; assertEquals ( 1 , l . count ) ; assertEquals ( ParentState . READY , oj . lastStateEvent ( ) . getState ( ) ) ; oj . softReset ( ) ; assertEquals ( 1 , l . count ) ; assertEquals ( ParentState . READY , oj . lastStateEvent ( ) . getState ( ) ) ; oj . load ( ) ; assertEquals ( 1 , l . count ) ; assertEquals ( ParentState . READY , oj . lastStateEvent ( ) . getState ( ) ) ; oj . softReset ( ) ; assertEquals ( 1 , l . count ) ; assertEquals ( ParentState . READY , oj . lastStateEvent ( ) . getState ( ) ) ; oj . load ( ) ; assertEquals ( 1 , l . count ) ; assertEquals ( ParentState . READY , oj . lastStateEvent ( ) . getState ( ) ) ; oj . destroy ( ) ; } public void testSoftResetOnFailure ( ) { String xml = "<oddjob>" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob oj = new Oddjob ( ) ; oj . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; oj . run ( ) ; assertEquals ( ParentState . EXCEPTION | |
1,624 | <s> package handson . springbatch . model ; import java . util . Date ; public class Salary { private String id ; private int employeeId ; private int amount ; private Date fromDate ; private Date toDate ; public String getId ( ) { return id ; } public void setId ( String id ) { this . id = id ; } public int getEmployeeId ( ) { return employeeId ; } | |
1,625 | <s> package com . sun . tools . hat . internal . model ; public class JavaDouble extends JavaValue { public final double value ; public JavaDouble ( double value ) { | |
1,626 | <s> package net . heraan . Player . AI ; import net . heraan . Game . Play ; import net . heraan . Player . Player ; public final class AI extends Player { public AI ( ) { } public AI ( String nickname ) { super . | |
1,627 | <s> package org . rubypeople . rdt . internal . core . parser ; import java . io . Reader ; import java . io . StringReader ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . runtime . CoreException ; import org . jruby . CompatVersion ; import org . jruby . ast . Node ; import org . jruby . common . IRubyWarnings ; import org . jruby . common . NullWarnings ; import org . jruby . lexer . yacc . LexerSource ; import org . jruby . lexer . yacc . SyntaxException ; import org . jruby . parser . DefaultRubyParser ; import org . jruby . parser . ParserConfiguration ; import org . jruby . parser . ParserSupport ; import org . jruby . parser . RubyParserPool ; import org . jruby . parser . RubyParserResult ; import org . jruby . util . KCode ; import org . rubypeople . rdt . internal . core . builder . IoUtils ; import org . rubypeople . rdt . internal . core . util . Util ; public class RubyParser { private final RubyParserPool pool ; private IRubyWarnings warnings ; private static boolean isDebug ; private static int count = 0 ; public RubyParser ( ) { this ( new NullWarnings ( ) ) ; } public RubyParser ( IRubyWarnings warnings ) { this . warnings = warnings ; this . pool = RubyParserPool . getInstance ( ) ; } private RubyParserResult parse ( String fileName , Reader content ) { if ( fileName == null ) { fileName = "" ; } DefaultRubyParser parser = null ; try { ParserConfiguration config = getParserConfig ( ) ; parser = getDefaultRubyParser ( config ) ; parser | |
1,628 | <s> package net . sf . sveditor . ui . argfile . editor ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . svf_scanner . SVFScanner ; import net . sf . sveditor . ui . editor . SVEditorColors ; import org . eclipse . jface . text . TextAttribute ; import org . eclipse . jface . text . rules . EndOfLineRule ; import org . eclipse . jface . text . rules . IRule ; import org . eclipse . jface . text . rules . IToken ; import org . eclipse . jface . text . rules . IWordDetector ; import org . eclipse . jface . text . rules . MultiLineRule ; import org . eclipse . jface . text . rules . RuleBasedScanner ; import org . eclipse . jface . text . rules . SingleLineRule ; import org . eclipse . jface . text . rules . Token ; import org . eclipse . jface . text . rules . WordRule ; public class SVArgFileCodeScanner extends RuleBasedScanner { public SVArgFileCodeScanner ( ) | |
1,629 | <s> package org . oddjob . doclet ; import java . io . File ; import java . io . IOException ; import org . apache . commons . io . FileUtils ; import org . apache . log4j . Logger ; import org . oddjob . OurDirs ; import org . oddjob . arooa . convert . convertlets . FileConvertlets ; import org . oddjob . doclet . ManualDoclet ; import org . oddjob . oddballs . BuildOddballs ; import junit . framework . TestCase ; public class ManualDocletTest extends TestCase { private static final Logger logger = Logger . getLogger ( ManualDocletTest . class ) ; OurDirs dirs = new OurDirs ( ) ; File dest = new File ( dirs . base ( ) , "" ) ; @ Override protected void setUp ( ) throws Exception { logger . info ( "" + getName ( ) + "" ) ; for ( int i = 0 ; ; ++ i ) { if ( dest . exists ( ) ) { logger . info ( "Deleting " + dest ) ; try { FileUtils . forceDelete ( dest ) ; } catch ( IOException e ) { if ( i < 3 ) { logger . error ( "" + dest , e ) ; Thread . sleep ( 200 ) ; continue ; } else { throw e ; } } } break ; } logger . info ( "Creating " + dest ) ; if ( ! dest . mkdir ( ) ) { throw new RuntimeException ( "" + dest ) ; } } public void testStart ( ) { File index = new File ( dest , "index.html" ) ; File oddjob = new File ( dest , "" ) ; int result = com . sun . tools . javadoc . Main . | |
1,630 | <s> package net . sf . sveditor . ui . argfile . editor ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . ui . editor . CCommentRule ; import org . eclipse . core . filebuffers . IDocumentSetupParticipant ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . IDocumentExtension3 ; import org . eclipse . jface . text . IDocumentPartitioner ; import org . eclipse . jface . text . rules . EndOfLineRule ; import org . eclipse . jface . text . rules . FastPartitioner ; import org . eclipse . jface . text . rules . IPartitionTokenScanner ; import org . eclipse . jface . text . rules . IPredicateRule ; import org . eclipse . jface . text . rules . IToken ; import org . eclipse . jface . text . rules . RuleBasedPartitionScanner ; import org . eclipse . jface . text . rules . Token ; public class SVArgFileDocSetupParticipant implements IDocumentSetupParticipant { public void setup ( IDocument doc ) { if ( doc instanceof IDocumentExtension3 ) { IDocumentExtension3 docExt = ( IDocumentExtension3 ) doc ; IDocumentPartitioner p = createPartitioner ( ) ; docExt . setDocumentPartitioner ( SVArgFileDocumentPartitions . SV_ARGFILE_PARTITIONING , p ) ; p . connect ( doc | |
1,631 | <s> package com . loiane . dao ; import java . util . List ; import org . apache . ibatis . session . SqlSession ; import org . apache . ibatis . session . SqlSessionFactory ; import com . loiane . model . Blog ; public class | |
1,632 | <s> package com . aptana . rdt ; import junit . framework . Test ; import junit . framework . TestSuite ; import com . aptana . rdt . core . rspec . RSpecStructureCreatorTest ; import com . aptana . rdt . internal . core . gems . AllTests ; import com . aptana . rdt . internal . core . parser . warnings | |
1,633 | <s> package com . lmax . disruptor ; import java . util . logging . Level ; import java . util . logging . Logger ; public final class IgnoreExceptionHandler implements ExceptionHandler { private final static Logger LOGGER = Logger . getLogger ( IgnoreExceptionHandler . class . getName ( ) ) ; private final Logger logger ; public IgnoreExceptionHandler ( ) { this . logger = LOGGER ; } public IgnoreExceptionHandler ( final Logger logger ) { this . logger = logger ; } @ Override public | |
1,634 | <s> package org . rubypeople . rdt . internal . debug . ui . launcher ; import junit . framework . TestCase ; import org . eclipse . debug . core . ILaunchConfigurationWorkingCopy ; import org . rubypeople . eclipse . shams . debug . core . ShamLaunchConfigurationWorkingCopy ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiMessages ; import org . rubypeople . rdt . launching . IRubyLaunchConfigurationConstants ; public class TC_RubyArgumentsTab extends TestCase { public TC_RubyArgumentsTab ( String name ) { super ( name ) ; } public void testIsValid ( ) { RubyArgumentsTab tab = new RubyArgumentsTab ( ) ; ILaunchConfigurationWorkingCopy configuration = new ShamLaunchConfigurationWorkingCopy ( ) ; String errorMessage = tab . getErrorMessage ( ) ; assertNull ( "" , errorMessage ) ; assertTrue ( "" , ! tab . isValid ( configuration ) ) ; errorMessage = RdtDebugUiMessages . LaunchConfigurationTab_RubyArguments_working_dir_error_message ; assertEquals ( "" , | |
1,635 | <s> package com . asakusafw . runtime . directio ; import java . util . Collections ; import java . util . List ; import java . util . Map ; public final class DirectInputFragment { private final String path ; private final long offset ; private final long length ; private final List < String > ownerNodeNames ; private final Map < String , String > attributes ; public DirectInputFragment ( String path , long offset , long length , List < String > ownerNodeNames ) { this ( path , offset , length , ownerNodeNames , Collections . < String , String > emptyMap ( ) ) ; } public DirectInputFragment ( String path , long offset , long length , List < String > | |
1,636 | <s> package com . asakusafw . cleaner . main ; import static org . junit . Assert . * ; import java . io . File ; import java . io . IOException ; import java . util . Date ; import java . util . Properties ; import org . apache . commons . io . FileUtils ; import org . junit . After ; import org . junit . AfterClass ; import org . junit . Before ; import org . junit . BeforeClass ; import org . junit . Test ; import com . asakusafw . cleaner . bean . LocalFileCleanerBean ; import com . asakusafw . cleaner . common . ConfigurationLoader ; import com . asakusafw . cleaner . testutil . UnitTestUtil ; public class LocalFileCleanerTest { private static final String propFile = "" ; private static final String propFile1 = "" ; private static final String propFile2 = "" ; private static final String propFile3 = "" ; private static final String propFile4 = "" ; private static final String propFile5 = "" ; private static final File cleanDir01 = new File ( "" ) ; private File tempDir = null ; private File logDir = null ; private File confFile = null ; private File readmeFile = null ; private File dir11_1 = null ; private File dir11_2 = null ; private File file11_3 = null ; private File fileData1 = null ; private File fileData2 = null ; private File dirData3 = null ; private static final File cleanDir02 = new File ( "" ) ; private File fileImportData1 = null ; private File fileImportData2 = null ; @ BeforeClass public static void setUpBeforeClass ( ) throws Exception { UnitTestUtil . setUpBeforeClass ( ) ; UnitTestUtil . setUpEnv ( ) ; } @ AfterClass public static void tearDownAfterClass ( ) throws Exception { UnitTestUtil . tearDownAfterClass ( ) ; } @ Before public void setUp ( ) throws Exception { UnitTestUtil . startUp ( ) ; cleanDir01 . mkdir ( ) ; cleanDir02 . mkdir ( ) ; Properties p = ConfigurationLoader . getProperty ( ) ; p . clear ( ) ; } @ After public void tearDown ( ) throws Exception { UnitTestUtil . tearDown ( ) ; cleanDir01 . delete ( ) ; cleanDir02 . delete ( ) ; } @ Test public void executeTest01 ( ) throws Exception { createCleanDir01 ( ) ; String [ ] args = new String [ ] { "normal" , propFile } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 0 , result ) ; assertTrue ( cleanDir01 . exists ( ) ) ; assertTrue ( tempDir . exists ( ) ) ; assertTrue ( logDir . exists ( ) ) ; assertFalse ( confFile . exists ( ) ) ; assertTrue ( dir11_1 . exists ( ) ) ; assertTrue ( dir11_2 . exists ( ) ) ; assertTrue ( file11_3 . exists ( ) ) ; assertTrue ( fileData1 . exists ( ) ) ; assertTrue ( fileData2 . exists ( ) ) ; assertTrue ( dirData3 . exists ( ) ) ; cleanDir ( cleanDir01 ) ; } @ Test public void executeTest02 ( ) throws Exception { createCleanDir01 ( ) ; String [ ] args = new String [ ] { "recursive" , propFile } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 0 , result ) ; assertTrue ( cleanDir01 . exists ( ) ) ; assertFalse ( tempDir . exists ( ) ) ; assertFalse ( logDir . exists ( ) ) ; assertFalse ( confFile . exists ( ) ) ; assertFalse ( dir11_1 . exists ( ) ) ; assertFalse ( dir11_2 . exists ( ) ) ; assertFalse ( file11_3 . exists ( ) ) ; assertFalse ( fileData1 . exists ( ) ) ; assertFalse ( fileData2 . exists ( ) ) ; assertFalse ( dirData3 . exists ( ) ) ; cleanDir ( cleanDir01 ) ; } @ Test public void executeTest03 ( ) throws Exception { createCleanDir01 ( ) ; createCleanDir02 ( ) ; long now = new Date ( ) . getTime ( ) ; long past = now - ( 5L * 24L * 60L * 60L * 1000L ) ; confFile . setLastModified ( now ) ; file11_3 . setLastModified ( past ) ; fileData1 . setLastModified ( past ) ; fileData2 . setLastModified ( now ) ; fileImportData1 . setLastModified ( past ) ; fileImportData2 . setLastModified ( past ) ; tempDir . setLastModified ( past ) ; logDir . setLastModified ( past ) ; dir11_1 . setLastModified ( past ) ; dir11_2 . setLastModified ( past ) ; dirData3 . setLastModified ( past ) ; String [ ] args = new String [ ] { "recursive" , propFile1 } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 0 , result ) ; assertTrue ( cleanDir01 . exists ( ) ) ; assertTrue ( tempDir . exists ( ) ) ; assertFalse ( logDir . exists ( ) ) ; assertTrue ( confFile . exists ( ) ) ; assertFalse ( dir11_1 . exists ( ) ) ; assertTrue ( dir11_2 . exists ( ) ) ; assertFalse ( file11_3 . exists ( ) ) ; assertFalse ( fileData1 . exists ( ) ) ; assertTrue ( fileData2 . exists ( ) ) ; assertFalse ( dirData3 . exists ( ) ) ; assertTrue ( cleanDir02 . exists ( ) ) ; assertFalse ( fileImportData1 . exists ( ) ) ; assertFalse ( fileImportData2 . exists ( ) ) ; cleanDir ( cleanDir01 ) ; cleanDir ( cleanDir02 ) ; } @ Test public void executeTest04 ( ) throws Exception { createCleanDir01 ( ) ; createCleanDir02 ( ) ; long now = new Date ( ) . getTime ( ) ; long past = now - ( 5L * 24L * 60L * 60L * 1000L ) ; confFile . setLastModified ( past ) ; file11_3 . setLastModified ( past ) ; fileData1 . setLastModified ( past ) ; fileData2 . setLastModified ( past ) ; fileImportData1 . setLastModified ( past ) ; fileImportData2 . setLastModified ( past ) ; tempDir . setLastModified ( past ) ; logDir . setLastModified ( now ) ; dir11_1 . setLastModified ( now ) ; dir11_2 . setLastModified ( past ) ; dirData3 . setLastModified ( past ) ; String [ ] args = new String [ ] { "recursive" , propFile1 } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 0 , result ) ; assertTrue ( cleanDir01 . exists ( ) ) ; assertTrue ( tempDir . exists ( ) ) ; assertTrue ( logDir . exists ( ) ) ; assertFalse ( confFile . exists ( ) ) ; assertTrue ( dir11_1 . exists ( ) ) ; assertFalse ( dir11_2 . exists ( ) ) ; assertFalse ( file11_3 . exists ( ) ) ; assertFalse ( fileData1 . exists ( ) ) ; assertFalse ( fileData2 . exists ( ) ) ; assertFalse ( dirData3 . exists ( ) ) ; assertTrue ( cleanDir02 . exists ( ) ) ; assertFalse ( fileImportData1 . exists ( ) ) ; assertFalse ( fileImportData2 . exists ( ) ) ; cleanDir ( cleanDir01 ) ; cleanDir ( cleanDir02 ) ; } @ Test public void executeTest05 ( ) throws Exception { String [ ] args = new String [ ] { "recursive" , propFile1 , "1" } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 1 , result ) ; args = new String [ ] { } ; result = cleaner . execute ( args ) ; assertEquals ( 1 , result ) ; } @ Test public void executeTest06 ( ) throws Exception { String [ ] args = new String [ ] { "2" , propFile1 } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 1 , result ) ; } @ Test public void executeTest07 ( ) throws Exception { createCleanDir02 ( ) ; String [ ] args = new String [ ] { "normal" , propFile2 } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) ; int result = cleaner . execute ( args ) ; assertEquals ( 2 , result ) ; cleanDir ( cleanDir02 ) ; } @ Test public void executeTest08 ( ) throws Exception { String [ ] args = new String [ ] { "normal" , propFile } ; LocalFileCleaner cleaner = new LocalFileCleaner ( ) { @ Override protected LocalFileCleanerBean [ ] getCleanLocalDirs ( ) { throw new NullPointerException ( ) ; } } ; int result = cleaner . execute ( args ) ; assertEquals ( 1 , result ) ; } @ Test public void executeTest09 ( | |
1,637 | <s> package org . rubypeople . rdt . internal . launching ; import java . io . File ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . debug . core . ILaunchConfiguration ; import org . rubypeople . rdt . core . ILoadpathEntry ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . launching . IRuntimeLoadpathEntry ; import org . rubypeople . rdt . launching . IRuntimeLoadpathEntryResolver ; import org . rubypeople . rdt . launching . IRuntimeLoadpathEntryResolver2 ; import org . rubypeople . rdt . launching . IVMInstall ; import org . rubypeople . rdt . launching . RubyRuntime ; public class RubyVMRuntimeLoadpathEntryResolver implements IRuntimeLoadpathEntryResolver2 { public IRuntimeLoadpathEntry [ ] resolveRuntimeLoadpathEntry ( IRuntimeLoadpathEntry entry , ILaunchConfiguration configuration ) throws CoreException { IVMInstall rubyVM = null ; if ( entry . getType ( ) == IRuntimeLoadpathEntry . CONTAINER && entry . getPath ( ) . segmentCount ( ) > 1 ) { rubyVM = RubyContainerInitializer . resolveInterpreter ( entry . getPath ( ) ) ; } else { rubyVM = RubyRuntime . computeVMInstall ( configuration ) ; } if ( rubyVM == null ) { return new IRuntimeLoadpathEntry [ 0 ] ; } return resolveLibraryLocations ( rubyVM , entry . getLoadpathProperty ( ) ) ; } public IRuntimeLoadpathEntry [ ] resolveRuntimeLoadpathEntry ( IRuntimeLoadpathEntry entry , IRubyProject project ) throws CoreException { IVMInstall rubyVM = null ; if ( entry . getType ( ) == IRuntimeLoadpathEntry . CONTAINER && entry . getPath ( ) . segmentCount ( ) > 1 ) { rubyVM = RubyContainerInitializer . resolveInterpreter ( entry . getPath ( ) ) ; } else { rubyVM = RubyRuntime . getVMInstall ( project ) ; } if ( rubyVM == null ) { return new IRuntimeLoadpathEntry [ 0 ] ; } return resolveLibraryLocations ( rubyVM , entry . getLoadpathProperty ( ) ) ; } protected IRuntimeLoadpathEntry [ ] resolveLibraryLocations ( IVMInstall vm , int kind ) { IPath [ ] libs = vm . getLibraryLocations ( ) ; IPath [ ] defaultLibs = vm . getVMInstallType ( ) . getDefaultLibraryLocations ( vm . getInstallLocation ( ) ) ; boolean overrideRubydoc = false ; if ( libs == null ) { libs = defaultLibs ; overrideRubydoc = true ; } else if ( ! isSameArchives ( libs , defaultLibs ) ) { kind = IRuntimeLoadpathEntry . BOOTSTRAP_CLASSES ; } if ( kind == IRuntimeLoadpathEntry . BOOTSTRAP_CLASSES ) { File vmInstallLocation = vm . getInstallLocation ( ) ; if ( vmInstallLocation != null ) { LibraryInfo libraryInfo = LaunchingPlugin . getLibraryInfo ( vm . getVMInstallType ( ) , vmInstallLocation . getAbsolutePath ( ) ) ; if ( libraryInfo != null ) { List < IRuntimeLoadpathEntry > resolvedEntries = new ArrayList < IRuntimeLoadpathEntry > ( libs . length ) ; for ( int i = 0 ; i < libs . length ; i ++ ) { IPath location = libs [ i ] ; IPath libraryPath = location ; String dir = libraryPath . toFile ( ) . getParent ( ) ; resolvedEntries . add ( resolveLibraryLocation ( vm , location , kind , overrideRubydoc ) ) ; } return resolvedEntries . toArray ( new IRuntimeLoadpathEntry [ resolvedEntries . size ( ) ] ) ; } } } List < IRuntimeLoadpathEntry > resolvedEntries = new ArrayList < IRuntimeLoadpathEntry > ( libs . length ) ; for ( int i = 0 ; i < libs . length ; i ++ ) { IPath systemLibraryPath = libs [ i ] ; if ( systemLibraryPath . toFile ( ) . exists ( ) ) { resolvedEntries . add ( resolveLibraryLocation ( vm , libs [ i ] , kind , overrideRubydoc ) ) ; } } return resolvedEntries . toArray ( new IRuntimeLoadpathEntry [ resolvedEntries . size ( ) ] ) ; } public static boolean isSameArchives ( IPath [ ] libs , IPath [ ] defaultLibs ) { if ( libs . length != defaultLibs . length ) { return false ; } for ( int i = 0 ; i < defaultLibs . length ; i ++ ) { IPath def = defaultLibs [ i ] ; IPath | |
1,638 | <s> package net . sf . sveditor . ui . prop_pages ; import org . eclipse . core . resources . IContainer ; 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 . dialogs . IDialogConstants ; import org . eclipse . jface . viewers . DoubleClickEvent ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . SelectionChangedEvent ; 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 ProjectDirectoryDialog extends Dialog { private String fPathStr ; private TreeViewer fTreeViewer ; private IProject fProject ; public ProjectDirectoryDialog ( Shell shell , IProject project ) { super ( shell ) ; fProject = project ; } public String getPath ( ) { return fPathStr ; } @ Override protected Control createDialogArea ( Composite p ) { Composite parent = new Composite ( p , SWT . NONE ) ; parent . setLayout ( new GridLayout ( 1 , true ) ) ; fTreeViewer = new | |
1,639 | <s> package test . modelgen . table . io ; import java . io . IOException ; import javax . annotation . Generated ; import test . modelgen . table . model . ExportTempImportTarget21 ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; @ Generated ( "" ) @ SuppressWarnings ( "deprecation" ) public final class ExportTempImportTarget21ModelOutput implements ModelOutput < ExportTempImportTarget21 | |
1,640 | <s> package com . asakusafw . vocabulary . flow . util ; import com . asakusafw . vocabulary . flow . Source ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Checkpoint ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Confluent ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Empty ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Extend ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Project ; import com . asakusafw . vocabulary . flow . util . CoreOperatorFactory . Restructure ; public final class CoreOperators { private static final CoreOperatorFactory FACTORY = new CoreOperatorFactory ( ) ; private CoreOperators ( ) { return ; } public static < T > Empty < T > empty ( Class < T > type ) { return FACTORY . empty ( type ) ; } public static void stop ( Source < ? > in ) { FACTORY . stop ( in ) ; } public static < T > Confluent < T > confluent ( Source < T > a , Source < T > b ) { return FACTORY . confluent ( a , b ) ; } public static < T > Confluent < T > confluent ( Source < T > a , Source < T > b , Source < T > c ) { return FACTORY . confluent ( a , b , c ) ; } public static < T > Confluent < T > confluent ( Source < T > a , | |
1,641 | <s> package net . sf . sveditor . core . db ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBTypeInfoEnumerator extends SVDBTypeInfo { public SVDBExpr | |
1,642 | <s> package org . oddjob . describe ; import java . lang . reflect . Method ; import java . util . Map ; import org . oddjob . arooa . ArooaBeanDescriptor ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . reflect . PropertyAccessor ; public class AnnotationDescriber implements Describer { private final ArooaSession session ; public AnnotationDescriber ( ArooaSession session ) { if ( session == null ) { throw new NullPointerException ( "" ) ; } this . session = session ; } | |
1,643 | <s> package net . sf . sveditor . core . db . expr ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . SVDBItemBase ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBAssignmentPatternExpr extends SVDBExpr { public List < SVDBExpr > fPatternList ; public SVDBAssignmentPatternExpr ( ) { this ( SVDBItemType . AssignmentPatternExpr ) ; } public SVDBAssignmentPatternExpr ( SVDBItemType type ) { super ( type ) ; fPatternList = new ArrayList < SVDBExpr > ( ) ; } public List | |
1,644 | <s> package net . sf . sveditor . core . tests . content_assist ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . StringInputStream ; import net . sf . sveditor . core . content_assist . SVCompletionProposal ; import net . sf . sveditor . core . db . ISVDBFileFactory ; 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 . SVDBMarker ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . scanutils . StringBIDITextScanner ; import net . sf . sveditor . core . tests . FileIndexIterator ; import net . sf . sveditor . core . tests . TextTagPosUtils ; public class TestContentAssistInterface extends TestCase { public void testContentAssistInterfaceBasics ( ) { String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; String doc1 = "" + "tintttAAAA;n" + "tintttAABB;n" + "tintttBBCC;n" + "" + "n" + "n" + "" + "" + "" + "endtaskn" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; TextTagPosUtils tt_utils = new TextTagPosUtils ( new StringInputStream ( doc1 ) ) ; ISVDBFileFactory factory = SVCorePlugin . createFileFactory ( null ) ; List < SVDBMarker > markers = new ArrayList < SVDBMarker > ( ) ; SVDBFile file = factory . parse ( tt_utils . openStream ( ) , testname , markers ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( tt_utils . getStrippedData ( ) ) ; for ( ISVDBItemBase it : file . getChildren ( ) ) { log . debug ( " it: " + it . getType ( ) + " " + SVDBItem . getName ( it ) ) ; } TestCompletionProcessor cp = new TestCompletionProcessor ( log , file , new FileIndexIterator ( file ) ) ; scanner . seek ( tt_utils . getPosMap ( ) . get ( "MARK" ) ) ; cp . computeProposals ( scanner , file , tt_utils . getLineMap ( ) . get ( "MARK" ) ) ; List < SVCompletionProposal > proposals = cp . getCompletionProposals ( ) ; ContentAssistTests . validateResults ( new String [ ] { "AAAA" , "AABB" , "BBCC" } , proposals ) ; LogFactory . removeLogHandle ( log ) ; } public void testInterfaceTaskVarAssist ( ) { String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc1 = "" + "n" + "n" + "" + "" + "" + "n" + "ttask f;n" + "" + "tendtaskn" + "" ; TextTagPosUtils tt_utils = new TextTagPosUtils ( new StringInputStream ( doc1 ) ) ; ISVDBFileFactory factory = SVCorePlugin . createFileFactory ( null ) ; List < SVDBMarker > markers = new ArrayList < SVDBMarker > ( ) ; SVDBFile file = factory . parse ( tt_utils . openStream ( ) , testname , markers ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( tt_utils . getStrippedData ( ) ) ; TestCompletionProcessor cp = new TestCompletionProcessor ( testname , file , new FileIndexIterator ( file ) ) ; scanner . seek ( tt_utils . getPosMap ( ) . get ( "MARK" ) ) ; cp . computeProposals ( scanner , file , tt_utils . getLineMap ( ) . get ( "MARK" ) ) ; List < SVCompletionProposal > proposals = cp . getCompletionProposals ( ) ; ContentAssistTests . validateResults ( new String [ ] { "AAAA" , "AABB" } , proposals ) ; LogFactory . removeLogHandle ( log ) ; } public void testInterfaceModuleFieldAssist ( ) { String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc1 = "" + "n" + "n" + "" + "" + "" + "n" + "" + "n" + "module top;n" + "" + "n" + "" + "" + "t);n" + "endmodule" ; TextTagPosUtils tt_utils = new TextTagPosUtils ( new StringInputStream ( doc1 ) ) ; ISVDBFileFactory factory = SVCorePlugin . createFileFactory ( null ) ; List < SVDBMarker > markers = new ArrayList < SVDBMarker > ( ) ; SVDBFile file = factory . parse ( tt_utils . openStream ( ) , testname , markers ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( tt_utils . getStrippedData ( ) ) ; TestCompletionProcessor cp = new TestCompletionProcessor ( testname , file , new FileIndexIterator ( file ) ) ; scanner . seek ( tt_utils . getPosMap ( ) . get ( "MARK" ) ) ; cp . computeProposals ( scanner , file , tt_utils . getLineMap ( ) . get ( "MARK" ) ) ; List < SVCompletionProposal > proposals = cp . getCompletionProposals ( ) ; ContentAssistTests . validateResults ( new String [ ] { "ifc_if" } , proposals ) ; LogFactory . removeLogHandle ( log ) ; } public void testInterfaceModulePortAssist ( ) { String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc1 = "" + "n" + "n" + "" + "" + "" + "n" + "" + "n" + "module top;n" + "" + "n" + "" + "" + "t);n" + "endmodule" ; TextTagPosUtils tt_utils = new TextTagPosUtils ( new StringInputStream ( doc1 ) ) ; ISVDBFileFactory factory = SVCorePlugin . createFileFactory ( null ) ; List < SVDBMarker > markers = new ArrayList < SVDBMarker > ( ) ; SVDBFile file = factory . parse ( tt_utils . openStream ( ) , testname , markers ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( tt_utils . getStrippedData ( ) ) ; TestCompletionProcessor cp = new TestCompletionProcessor ( testname , file , new FileIndexIterator ( file ) ) ; scanner . seek ( tt_utils . getPosMap ( ) . get ( "MARK" ) ) ; cp . computeProposals ( scanner , file , tt_utils . getLineMap ( ) . get ( "MARK" ) ) ; List < SVCompletionProposal > proposals = cp . getCompletionProposals ( ) ; ContentAssistTests . validateResults ( new String [ ] { "clk" } , proposals ) ; LogFactory . removeLogHandle ( log ) ; } public void testInterfaceModportModuleField ( ) { String testname = "" ; LogHandle log = LogFactory . getLogHandle ( testname ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc1 = "" + "n" + "n" + "" + "" + "" + "n" + "" + "n" + "" + "n" + "module top;n" + "" + "n" + "" + "" + "t);n" + "endmodule" ; TextTagPosUtils tt_utils = new TextTagPosUtils ( new StringInputStream ( doc1 ) ) ; ISVDBFileFactory factory = SVCorePlugin . createFileFactory ( null ) ; List < SVDBMarker > markers = new ArrayList < SVDBMarker > | |
1,645 | <s> package com . asakusafw . utils . java . parser . javadoc ; import java . util . ArrayList ; import java . util . List ; public class JavadocParserBuilder { private boolean generated ; private List < JavadocBlockParser > inlines ; private List < JavadocBlockParser > toplevels ; public JavadocParserBuilder ( ) { super ( ) ; this . generated = false ; this . inlines = new ArrayList < JavadocBlockParser > ( ) ; this . toplevels = new ArrayList < JavadocBlockParser > ( ) ; } public synchronized void addSpecialInlineBlockParser ( JavadocBlockParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( "parser" ) ; } if ( generated ) { throw new IllegalStateException ( ) ; } inlines . add ( parser ) ; } public synchronized void addSpecialStandAloneBlockParser ( JavadocBlockParser parser ) { if ( parser == null ) { throw new IllegalArgumentException ( "parser" ) ; } if ( generated ) { throw new IllegalStateException | |
1,646 | <s> package org . vaadin . teemu . clara ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . assertFalse ; import static org . junit . Assert . assertTrue ; import java . io . InputStream ; import org . junit . Before ; import org . junit . Test ; import org . vaadin . teemu . clara . binder . annotation . EventHandler ; import com . vaadin . ui . Button ; import com . vaadin . ui . Component ; public class ClaraIntegrationTest { private InputStream xml ; private Controller controller ; private AttributeInterceptor firstInterceptor ; private AttributeInterceptor secondInterceptor ; public static class Controller { private boolean clicked ; @ EventHandler ( "button200px" ) public void clicked ( Button . ClickEvent event ) { clicked = true ; } } @ Before public void setUp ( ) { xml = getXml ( "" ) ; controller = new Controller ( ) ; firstInterceptor = getInterceptor ( ) ; secondInterceptor = getSecondInterceptor ( ) ; } @ Test public void testCreateMethod_usingAllParametersWithTwoInterceptors_interceptorsAndControllerCalled ( ) { Component layout = Clara . create ( xml , controller , firstInterceptor , secondInterceptor ) ; Button button200px = ( Button ) Clara . findComponentById ( layout , "button200px" ) ; assertEquals ( "" , button200px . getCaption ( ) ) ; assertFalse ( controller . clicked ) ; button200px . click ( ) ; assertTrue ( controller . clicked ) ; } @ Test public void testCreateMethod_usingAllParameters_interceptorAndControllerCalled ( ) { Component layout = Clara . create ( xml , controller , firstInterceptor ) ; Button button200px = ( Button ) Clara . findComponentById ( layout , "button200px" ) ; assertEquals ( "" , button200px . getCaption ( ) ) ; assertFalse ( controller . clicked ) ; button200px . click ( ) ; assertTrue ( controller . clicked ) ; } @ Test public void testCreateMethod_usingOnlyController_controllerCalled ( ) { Component layout = Clara . create ( xml , controller ) ; Button button200px = ( Button ) Clara . findComponentById ( layout , "button200px" ) ; assertEquals ( "{i18n:test}" , button200px . getCaption ( ) ) ; assertFalse ( controller . clicked ) ; button200px . click ( ) ; assertTrue ( controller . clicked ) ; } @ Test public void testCreateMethod_usingNoParameters_componentInflatedCorrectly ( ) { Component layout = Clara . create ( xml ) ; Button button200px = ( Button ) | |
1,647 | <s> package org . oddjob . tools . includes ; import java . io . InputStream ; import org . apache . log4j . Logger ; import org . oddjob . io . ResourceType ; public class JavaCodeResourceLoader implements IncludeLoader { private static final Logger logger = Logger . getLogger ( JavaCodeResourceLoader . class ) ; | |
1,648 | <s> package com . asakusafw . runtime . value ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import org . junit . Test ; @ SuppressWarnings ( "deprecation" ) public class DoubleOptionTest extends ValueOptionTestRoot { @ Test public void init ( ) { DoubleOption option = new DoubleOption ( ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; } @ Test public void get ( ) { DoubleOption option = new DoubleOption ( ) ; option . modify ( 100 ) ; assertThat ( option . get ( ) , is ( 100.d ) ) ; assertThat ( option . isNull ( ) , is ( false ) ) ; } @ Test public void or ( ) { DoubleOption option = new DoubleOption ( ) ; assertThat ( option . or ( 30 ) , is ( 30.d ) ) ; assertThat ( option . isNull ( ) , is ( true ) ) ; } @ Test public void orNotNull ( ) { DoubleOption option = new DoubleOption ( ) ; option . modify ( 100 ) ; assertThat ( option . or ( 30 ) , is ( 100.d ) ) ; } @ Test public void copy ( ) { DoubleOption option = new DoubleOption ( ) ; DoubleOption other = new DoubleOption ( ) ; other . modify ( 50 ) ; option . copyFrom ( other ) ; assertThat ( option . get ( ) , is ( 50.d ) ) ; option . modify ( 0 ) ; assertThat ( other . get ( ) , is ( 50.d ) ) ; } @ Test public void copyNull ( ) { DoubleOption option = new DoubleOption ( ) ; option . modify ( 100 ) ; DoubleOption other = new DoubleOption ( ) ; option . copyFrom ( other ) ; assertThat ( option . | |
1,649 | <s> package org . rubypeople . rdt . internal . ui . dialogs ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Comparator ; import java . util . HashMap ; import java . util . HashSet ; import java . util . Iterator ; import java . util . List ; import java . util . Map ; import java . util . Set ; import org . eclipse . core . runtime . Assert ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; 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 . ProgressMonitorWrapper ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . resource . ImageDescriptor ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ControlAdapter ; import org . eclipse . swt . events . ControlEvent ; import org . eclipse . swt . events . DisposeEvent ; import org . eclipse . swt . events . DisposeListener ; import org . eclipse . swt . events . KeyAdapter ; import org . eclipse . swt . events . KeyEvent ; import org . eclipse . swt . events . MenuAdapter ; import org . eclipse . swt . events . MenuEvent ; import org . eclipse . swt . events . SelectionAdapter ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . GC ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . graphics . Rectangle ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Display ; import org . eclipse . swt . widgets . Event ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Listener ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . widgets . MenuItem ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . TableItem ; import org . eclipse . ui . progress . UIJob ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . WorkingCopyOwner ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . core . search . SearchEngine ; import org . rubypeople . rdt . core . search . SearchPattern ; import org . rubypeople . rdt . core . search . TypeNameRequestor ; import org . rubypeople . rdt . internal . corext . util . Messages ; import org . rubypeople . rdt . internal . corext . util . OpenTypeHistory ; import org . rubypeople . rdt . internal . corext . util . Strings ; import org . rubypeople . rdt . internal . corext . util . TypeFilter ; import org . rubypeople . rdt . internal . corext . util . TypeInfo ; import org . rubypeople . rdt . internal . corext . util . TypeInfoFactory ; import org . rubypeople . rdt . internal . corext . util . TypeInfoFilter ; import org . rubypeople . rdt . internal . corext . util . UnresolvableTypeInfo ; import org . rubypeople . rdt . internal . corext . util . TypeInfo . TypeInfoAdapter ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui . RubyUIMessages ; import org . rubypeople . rdt . internal . ui . viewsupport . RubyElementImageProvider ; import org . rubypeople . rdt . launching . IVMInstall ; import org . rubypeople . rdt . launching . IVMInstallType ; import org . rubypeople . rdt . launching . RubyRuntime ; import org . rubypeople . rdt . ui . RubyElementLabels ; import org . rubypeople . rdt . ui . dialogs . ITypeInfoFilterExtension ; import org . rubypeople . rdt . ui . dialogs . ITypeInfoImageProvider ; public class TypeInfoViewer { private static class SearchRequestor extends TypeNameRequestor { private volatile boolean fStop ; private Set fHistory ; private TypeInfoFilter fFilter ; private TypeInfoFactory fFactory = new TypeInfoFactory ( ) ; private List fResult ; public SearchRequestor ( TypeInfoFilter filter ) { super ( ) ; fResult = new ArrayList ( 2048 ) ; fFilter = filter ; } public TypeInfo [ ] getResult ( ) { return ( TypeInfo [ ] ) fResult . toArray ( new TypeInfo [ fResult . size ( ) ] ) ; } public void cancel ( ) { fStop = true ; } public void setHistory ( Set history ) { fHistory = history ; } public void acceptType ( boolean isModule , char [ ] packageName , char [ ] simpleTypeName , char [ ] [ ] enclosingTypeNames , String path ) { if ( fStop ) return ; if ( TypeFilter . isFiltered ( packageName , simpleTypeName ) ) return ; TypeInfo type = fFactory . create ( packageName , simpleTypeName , enclosingTypeNames , isModule , path ) ; if ( fHistory . contains ( type ) ) return ; if ( fFilter . matchesFilterExtension ( type ) ) fResult . add ( type ) ; } } protected static class TypeInfoComparator implements Comparator { private TypeInfoLabelProvider fLabelProvider ; private TypeInfoFilter fFilter ; public TypeInfoComparator ( TypeInfoLabelProvider labelProvider , TypeInfoFilter filter ) { fLabelProvider = labelProvider ; fFilter = filter ; } public int compare ( Object left , Object right ) { TypeInfo leftInfo = ( TypeInfo ) left ; TypeInfo rightInfo = ( TypeInfo ) right ; int leftCategory = getCamelCaseCategory ( leftInfo ) ; int rightCategory = getCamelCaseCategory ( rightInfo ) ; if ( leftCategory < rightCategory ) return - 1 ; if ( leftCategory > rightCategory ) return + 1 ; int result = compareName ( leftInfo . getTypeName ( ) , rightInfo . getTypeName ( ) ) ; if ( result != 0 ) return result ; result = compareTypeContainerName ( leftInfo . getTypeContainerName ( ) , rightInfo . getTypeContainerName ( ) ) ; if ( result != 0 ) return result ; leftCategory = getElementTypeCategory ( leftInfo ) ; rightCategory = getElementTypeCategory ( rightInfo ) ; if ( leftCategory < rightCategory ) return - 1 ; if ( leftCategory > rightCategory ) return + 1 ; return compareContainerName ( leftInfo , rightInfo ) ; } private int compareName ( String leftString , String rightString ) { int result = leftString . compareToIgnoreCase ( rightString ) ; if ( result != 0 ) { return result ; } else if ( Strings . isLowerCase ( leftString . charAt ( 0 ) ) && ! Strings . isLowerCase ( rightString . charAt ( 0 ) ) ) { return + 1 ; } else if ( Strings . isLowerCase ( rightString . charAt ( 0 ) ) && ! Strings . isLowerCase ( leftString . charAt ( 0 ) ) ) { return - 1 ; } else { return leftString . compareTo ( rightString ) ; } } private int compareTypeContainerName ( String leftString , String rightString ) { int leftLength = leftString . length ( ) ; int rightLength = rightString . length ( ) ; if ( leftLength == 0 && rightLength > 0 ) return - 1 ; if ( leftLength == 0 && rightLength == 0 ) return 0 ; if ( leftLength > 0 && rightLength == 0 ) return + 1 ; return compareName ( leftString , rightString ) ; } private int compareContainerName ( TypeInfo leftType , TypeInfo rightType ) { return fLabelProvider . getContainerName ( leftType ) . compareTo ( fLabelProvider . getContainerName ( rightType ) ) ; } private int getCamelCaseCategory ( TypeInfo type ) { if ( fFilter == null ) return 0 ; if ( ! fFilter . isCamelCasePattern ( ) ) return 0 ; return fFilter . matchesRawNamePattern ( type ) ? 0 : 1 ; } private int getElementTypeCategory ( TypeInfo type ) { if ( type . getElementType ( ) == TypeInfo . IFILE_TYPE_INFO ) return 0 ; if ( type . getElementType ( ) == TypeInfo . JAR_FILE_ENTRY_TYPE_INFO ) return 1 ; return 2 ; } } protected static class TypeInfoLabelProvider { private ITypeInfoImageProvider fProviderExtension ; private TypeInfoAdapter fAdapter = new TypeInfoAdapter ( ) ; private Map fLib2Name = new HashMap ( ) ; private String [ ] fInstallLocations ; private String [ ] fVMNames ; private boolean fFullyQualifyDuplicates ; public TypeInfoLabelProvider ( ITypeInfoImageProvider extension ) { fProviderExtension = extension ; List locations = new ArrayList ( ) ; List labels = new ArrayList ( ) ; IVMInstallType [ ] installs = RubyRuntime . getVMInstallTypes ( ) ; for ( int i = 0 ; i < installs . length ; i ++ ) { processVMInstallType ( installs [ i ] , locations , labels ) ; } fInstallLocations = ( String [ ] ) locations . toArray ( new String [ locations . size ( ) ] ) ; fVMNames = ( String [ ] ) labels . toArray ( new String [ labels . size ( ) ] ) ; } public void setFullyQualifyDuplicates ( boolean value ) { fFullyQualifyDuplicates = value ; } private void processVMInstallType ( IVMInstallType installType , List locations , List labels ) { if ( installType != null ) { IVMInstall [ ] installs = installType . getVMInstalls ( ) ; boolean isMac = Platform . OS_MACOSX . equals ( Platform . getOS ( ) ) ; final String HOME_SUFFIX = "/Home" ; for ( int i = 0 ; i < installs . length ; i ++ ) { String label = getFormattedLabel ( installs [ i ] . getName ( ) ) ; IPath [ ] libLocations = installs [ i ] . getLibraryLocations ( ) ; if ( libLocations != null ) { processLibraryLocation ( libLocations , label ) ; } else { String filePath = installs [ i ] . getInstallLocation ( ) . getAbsolutePath ( ) ; if ( isMac && filePath . endsWith ( HOME_SUFFIX ) ) filePath = filePath . substring ( 0 , filePath . length ( ) - HOME_SUFFIX . length ( ) + 1 ) ; locations . add ( filePath ) ; labels . add ( label ) ; } } } } private void processLibraryLocation ( IPath [ ] libLocations , String label ) { for ( int l = 0 ; l < libLocations . length ; l ++ ) { IPath location = libLocations [ l ] ; fLib2Name . put ( location . toString ( ) , label ) ; } } private String getFormattedLabel ( String name ) { return Messages . format ( RubyUIMessages . TypeInfoViewer_library_name_format , name ) ; } public String getText ( Object element ) { return ( ( TypeInfo ) element ) . getTypeName ( ) ; } public String getQualifiedText ( TypeInfo type ) { StringBuffer result = new StringBuffer ( ) ; result . append ( type . getTypeName ( ) ) ; String containerName = type . getTypeContainerName ( ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; if ( containerName . length ( ) > 0 ) { result . append ( containerName ) ; } else { result . append ( RubyUIMessages . TypeInfoViewer_default_package ) ; } return result . toString ( ) ; } public String getFullyQualifiedText ( TypeInfo type ) { StringBuffer result = new StringBuffer ( ) ; result . append ( type . getTypeName ( ) ) ; String containerName = type . getTypeContainerName ( ) ; if ( containerName . length ( ) > 0 ) { result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( containerName ) ; } result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( getContainerName ( type ) ) ; return result . toString ( ) ; } public String getText ( TypeInfo last , TypeInfo current , TypeInfo next ) { StringBuffer result = new StringBuffer ( ) ; int qualifications = 0 ; String currentTN = current . getTypeName ( ) ; result . append ( currentTN ) ; String currentTCN = getTypeContainerName ( current ) ; if ( last != null ) { String lastTN = last . getTypeName ( ) ; String lastTCN = getTypeContainerName ( last ) ; if ( currentTCN . equals ( lastTCN ) ) { if ( currentTN . equals ( lastTN ) ) { result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( currentTCN ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( getContainerName ( current ) ) ; return result . toString ( ) ; } } else if ( currentTN . equals ( lastTN ) ) { qualifications = 1 ; } } if ( next != null ) { String nextTN = next . getTypeName ( ) ; String nextTCN = getTypeContainerName ( next ) ; if ( currentTCN . equals ( nextTCN ) ) { if ( currentTN . equals ( nextTN ) ) { result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( currentTCN ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( getContainerName ( current ) ) ; return result . toString ( ) ; } } else if ( currentTN . equals ( nextTN ) ) { qualifications = 1 ; } } if ( qualifications > 0 ) { result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( currentTCN ) ; if ( fFullyQualifyDuplicates ) { result . append ( RubyElementLabels . CONCAT_STRING ) ; result . append ( getContainerName ( current ) ) ; } } return result . toString ( ) ; } public String getQualificationText ( TypeInfo type ) { StringBuffer result = new StringBuffer ( ) ; String containerName = type . getTypeContainerName ( ) ; if ( containerName . length ( ) > 0 ) { result . append ( containerName ) ; result . append ( RubyElementLabels . CONCAT_STRING ) ; } result . append ( getContainerName ( type ) ) ; return result . toString ( ) ; } public ImageDescriptor getImageDescriptor ( Object element ) { TypeInfo type = ( TypeInfo ) element ; if ( fProviderExtension != null ) { fAdapter . setInfo ( type ) ; ImageDescriptor descriptor = fProviderExtension . getImageDescriptor ( fAdapter ) ; if ( descriptor != null ) return descriptor ; } return RubyElementImageProvider . getTypeImageDescriptor ( type . isModule ( ) , type . isInnerType ( ) , false ) ; } private String getTypeContainerName ( TypeInfo info ) { String result = info . getTypeContainerName ( ) ; if ( result . length ( ) > 0 ) return result ; return RubyUIMessages . TypeInfoViewer_default_package ; } private String getContainerName ( TypeInfo type ) { String name = type . getPackageFragmentRootName ( ) ; for ( int i = 0 ; i < fInstallLocations . length ; i ++ ) { if ( name . startsWith ( fInstallLocations [ i ] ) ) { return fVMNames [ i ] ; } } String lib = ( String ) fLib2Name . get ( name ) ; if ( lib != null ) return lib ; return name ; } } private static class ProgressUpdateJob extends UIJob { private TypeInfoViewer fViewer ; private boolean fStopped ; public ProgressUpdateJob ( Display display , TypeInfoViewer viewer ) { super ( display , RubyUIMessages . TypeInfoViewer_progressJob_label ) ; fViewer = viewer ; } public void stop ( ) { fStopped = true ; cancel ( ) ; } public IStatus runInUIThread ( IProgressMonitor monitor ) { if ( stopped ( ) ) return new Status ( IStatus . CANCEL , RubyPlugin . getPluginId ( ) , IStatus . CANCEL , "" , null ) ; fViewer . updateProgressMessage ( ) ; if ( ! stopped ( ) ) schedule ( 300 ) ; return new Status ( IStatus . OK , RubyPlugin . getPluginId ( ) , IStatus . OK , "" , null ) ; } private boolean stopped ( ) { return fStopped || fViewer . getTable ( ) . isDisposed ( ) ; } } private static class ProgressMonitor extends ProgressMonitorWrapper { private TypeInfoViewer fViewer ; private String fName ; private int fTotalWork ; private double fWorked ; private boolean fDone ; public ProgressMonitor ( IProgressMonitor monitor , TypeInfoViewer viewer ) { super ( monitor ) ; fViewer = viewer ; } public void setTaskName ( String name ) { super . setTaskName ( name | |
1,650 | <s> package net . sf . sveditor . core . db . index ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBChildParent ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . ISVDBNamedItem ; 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 . SVDBTypeInfoEnum ; import net . sf . sveditor . core . db . SVDBTypeInfoEnumerator ; import net . sf . sveditor . core . db . attr . SVDBDoNotSaveAttr ; import net . sf . sveditor . core . db . stmt . SVDBTypedefStmt ; import org . eclipse . core . runtime . NullProgressMonitor ; public class SVDBDeclCacheItem implements ISVDBNamedItem { public String fFileName ; @ SVDBDoNotSaveAttr private ISVDBDeclCache fParent ; public String fName ; public SVDBItemType | |
1,651 | <s> package org . rubypeople . rdt . core ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; public abstract class LoadpathContainerInitializer { public LoadpathContainerInitializer ( ) { } public abstract void initialize ( IPath containerPath , IRubyProject project | |
1,652 | <s> package org . rubypeople . rdt . refactoring . core . extractconstant ; import java . util . ArrayList ; import java . util . Collection ; import java . util . List ; import org . jruby . ast . Node ; import org . rubypeople . rdt . refactoring . editprovider . EditProvider ; import org . rubypeople . rdt . refactoring . editprovider . MultiEditProvider ; public class ConstantExtractor extends MultiEditProvider { private ExtractConstantConfig config ; private boolean replaceAll ; public ConstantExtractor ( ExtractConstantConfig config ) { this . config = config ; } protected Collection < EditProvider > getEditProviders ( ) { Collection < EditProvider > providers = new ArrayList < EditProvider > ( ) ; if ( replaceAll ) { Node selection = config . getSelectedNodes ( ) ; Node rootNode = config . getRootNode ( ) ; MatchingNodesVisitor visitor = new MatchingNodesVisitor ( selection , config . getDocumentProvider ( ) . getActiveFileContent ( ) ) ; rootNode . accept ( visitor ) ; List < Node > matches = visitor . getMatches ( ) ; for ( Node node : matches ) { providers . add ( new ExtractedConstantCall ( node , config . getConstantCallNode ( ) ) ) ; } } else { providers . add ( new ExtractedConstantCall ( config ) ) ; } providers . | |
1,653 | <s> package org . rubypeople . rdt . refactoring . ui . pages ; import org . eclipse . swt . SWT ; import org . eclipse . swt . custom . SashForm ; import org . eclipse . swt . custom . StyledText ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . layout . RowLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Event ; import org . eclipse . swt . widgets . Group ; import org . eclipse . swt . widgets . Label ; import org . eclipse . swt . widgets . Listener ; import org . eclipse . swt . widgets . Spinner ; import org . eclipse . swt . widgets . TabFolder ; import org . eclipse . swt . widgets . TabItem ; import org . rubypeople . rdt . core . formatter . EditableFormatHelper ; import org . rubypeople . rdt . refactoring . core . formatsource . PreviewGenerator ; public class FormatSourcePage extends RefactoringWizardPage { private static final String title = "" ; private StyledText previewText ; private EditableFormatHelper formatter ; private PreviewGenerator previewGenererator ; public FormatSourcePage ( EditableFormatHelper formatter , PreviewGenerator previewGenerator ) { super ( title ) ; setTitle ( title ) ; this . formatter = formatter ; this . previewGenererator = previewGenerator ; } private void createMethodsTab ( TabFolder categoryTab ) { TabItem methodsTabItem = createTabItem ( categoryTab , Messages . FormatSourcePage_Methods ) ; Composite optionComposite = createCompositeWithGridLayout ( categoryTab ) ; methodsTabItem . setControl ( optionComposite ) ; Group callArgumentsGroup = createGroupWithGridLayout ( optionComposite , Messages . FormatSourcePage_MethodCallArguments ) ; final Button callArgumentsParanthesizeWhereNecessary = createButton ( callArgumentsGroup , SWT . RADIO , Messages . FormatSourcePage_ParenthesizeWhereNecesary ) ; callArgumentsParanthesizeWhereNecessary . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setAlwaysParanthesizeMethodCalls ( ! callArgumentsParanthesizeWhereNecessary . getEnabled ( ) ) ; generatePreview ( ) ; } } ) ; final Button callArgumentsParanthesizeAlways = createButton ( callArgumentsGroup , SWT . RADIO , Messages . FormatSourcePage_AlwaysParenthesize ) ; callArgumentsParanthesizeAlways . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setAlwaysParanthesizeMethodCalls ( callArgumentsParanthesizeAlways . getEnabled ( ) ) ; generatePreview ( ) ; } } ) ; Group defArgumentsGroup = createGroupWithGridLayout ( optionComposite , Messages . FormatSourcePage_MethodDefArguments ) ; final Button defArgumentsParanthesizeWhereNecessary = createButton ( defArgumentsGroup , SWT . RADIO , Messages . FormatSourcePage_ParenthesizeWhereNecesary ) ; defArgumentsParanthesizeWhereNecessary . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setAlwaysParanthesizeMethodDefs ( ! defArgumentsParanthesizeWhereNecessary . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button defArgumentsParanthesizeAlways = createButton ( defArgumentsGroup , SWT . RADIO , Messages . FormatSourcePage_AlwaysParenthesize ) ; defArgumentsParanthesizeAlways . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setAlwaysParanthesizeMethodDefs ( defArgumentsParanthesizeAlways . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button newlineBetweenClassBodyElements = createButton ( optionComposite , SWT . CHECK , Messages . FormatSourcePage_NewlineBetweenClassElements ) ; newlineBetweenClassBodyElements . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setNewlineBetweenClassBodyElements ( newlineBetweenClassBodyElements . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; } private void createBlocksTab ( TabFolder categoryTab ) { TabItem misc = createTabItem ( categoryTab , Messages . FormatSourcePage_Blocks ) ; Composite composite = createCompositeWithGridLayout ( categoryTab ) ; misc . setControl ( composite ) ; final Button spaceBeforeIterBrackets = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpaceBeforeIterBrackets ) ; spaceBeforeIterBrackets . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpaceBeforeIterBrackets ( spaceBeforeIterBrackets . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button spaceBeforeClosingIterBrackets = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpaceBeforeClosingIterBracket ) ; spaceBeforeClosingIterBrackets . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpaceBeforeClosingIterBrackets ( spaceBeforeClosingIterBrackets . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button spaceBeforeIterVars = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpaceBeforeIterVars ) ; spaceBeforeIterVars . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpaceBeforeIterVars ( spaceBeforeIterVars . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button spaceAfterIterVars = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpaceAfterIterVars ) ; spaceAfterIterVars . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpaceAfterIterVars ( spaceAfterIterVars . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; } private void createSpacesTab ( TabFolder categoryTab ) { TabItem spaces = createTabItem ( categoryTab , Messages . FormatSourcePage_Spaces ) ; Composite composite = createCompositeWithGridLayout ( categoryTab ) ; spaces . setControl ( composite ) ; final Button spaceAfterComma = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpaceAfterComma ) ; spaceAfterComma . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpaceAfterCommaInListings ( spaceAfterComma . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button spacesAroundHashAss = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpacesAroundHashOperator ) ; spacesAroundHashAss . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpacesAroundHashAssignment ( spacesAroundHashAss . getSelection ( ) ) ; generatePreview ( ) ; } } ) ; final Button spacesAroundHashContent = createButton ( composite , SWT . CHECK , Messages . FormatSourcePage_SpacesAroundHash ) ; spacesAroundHashContent . addListener ( SWT . Selection , new Listener ( ) { public void handleEvent ( Event event ) { formatter . setSpacesBeforeAndAfterHashContent ( spacesAroundHashContent . getSelection ( ) ) ; | |
1,654 | <s> package net . ggtools . grand . ui . graph ; import java . util . Collection ; import java . util . HashMap ; import java . util . Iterator ; import java . util . Map ; import net . ggtools . grand . ant . AntLink ; import net . ggtools . grand . ant . AntTargetNode ; import net . ggtools . grand . ant . AntTaskLink ; import net . ggtools . grand . ant . SubantTaskLink ; import net . ggtools . grand . graph . Graph ; import net . ggtools . grand . graph . Link ; import net . ggtools . grand . graph . Node ; import net . ggtools . grand . graph . visit . LinkVisitor ; import net . ggtools . grand . graph . visit . NodeVisitor ; import net . ggtools . grand . ui . Application ; import net . ggtools . grand . ui . GrandUiPrefStore ; import net . ggtools . grand . ui . prefs . PreferenceKeys ; import org . apache . commons . logging . Log ; import org . apache . commons . logging . LogFactory ; import org . eclipse . draw2d . FigureUtilities ; import org . eclipse . draw2d . geometry . Dimension ; import org . eclipse . swt . graphics . Font ; import org . eclipse . swt . widgets . Display ; import sf . jzgraph . IDotGraph ; import sf . jzgraph . IEdge ; import sf . jzgraph . IGraph ; import sf . jzgraph . IVertex ; import sf . jzgraph . dot . impl . DotGraph ; public class DotGraphCreator implements NodeVisitor , LinkVisitor , DotGraphAttributes { private static final Log log = LogFactory . getLog ( GraphControler . class ) ; private String currentLinkName ; private final IDotGraph dotGraph ; private Graph graph ; private final Map < String , IVertex > nameDimensions ; private final Node startNode ; private final boolean useBusRouting ; private final Map < String , IVertex > vertexLUT ; public DotGraphCreator ( final Graph graph , final boolean useBusRouting ) { this . graph = graph ; this . useBusRouting = useBusRouting ; nameDimensions = new HashMap < String , IVertex > ( ) ; dotGraph = new DotGraph ( IGraph . GRAPH , graph . getName ( ) ) ; vertexLUT = new HashMap < String , IVertex > ( ) ; startNode = graph . getStartNode ( ) ; } public IDotGraph getGraph ( ) { if ( startNode != null ) { startNode . accept ( this ) ; } for ( final Iterator iter = graph . getNodes ( ) ; iter . hasNext ( ) ; ) { final Node node = ( Node ) iter . next ( ) ; if ( "" . equals ( node . getName ( ) ) || ( node == startNode ) ) { continue ; } node . accept ( this ) ; } Display . getDefault ( ) . syncExec ( new Runnable ( ) { public void run ( ) { final Font systemFont = Application . getInstance ( ) . getFont ( Application . NODE_FONT ) ; for ( final Iterator iter = nameDimensions . entrySet ( ) . iterator ( ) ; iter . hasNext ( ) ; ) { final Map . Entry entry = ( Map . Entry ) iter . next ( ) ; final String name = ( String ) entry . getKey ( ) ; final IVertex vertex = ( IVertex ) entry . getValue ( ) ; final Dimension dim = FigureUtilities . getTextExtents ( name , systemFont ) ; vertex . setAttr ( MINWIDTH_ATTR , Math . max ( dim . width , 50 ) ) ; vertex . setAttr ( MINHEIGHT_ATTR , Math . max ( dim . height , 25 ) ) ; } } } ) ; for ( final Iterator iter = graph . getNodes ( ) ; iter . hasNext ( ) ; ) { final Node node = ( Node ) iter . next ( ) ; final Collection deps = node . getLinks ( ) ; int index = 1 ; final int numDeps = deps . size ( ) ; for ( final Iterator iterator = deps . iterator ( ) ; iterator . hasNext ( ) ; ) { final Link link = ( Link ) iterator | |
1,655 | <s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . ConvertFlowProcessor ; import com . asakusafw . compiler . flow . processor . operator . ConvertFlowFactory ; import com . asakusafw . compiler . flow . processor . operator . ConvertFlowFactory . Simple ; import com . asakusafw . compiler . flow . testing . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex1MockImporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex2MockExporterDescription ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw | |
1,656 | <s> package de . fuberlin . wiwiss . d2rq ; import org . openjena . atlas . lib . AlarmClock ; import org . openjena . atlas . lib . Callback ; import org . openjena . atlas . lib . Pingback ; import com . hp . hpl . jena . graph . Graph ; import com . hp . hpl . jena . graph . Node ; import com . hp . hpl . jena . graph . Triple ; import com . hp . hpl . jena . mem . GraphMem ; import com . hp . hpl . jena . sparql . engine . ExecutionContext ; import com . hp . hpl . jena . sparql . engine . iterator . QueryIterConcat ; import de . fuberlin . wiwiss . d2rq . algebra . Relation ; import de . fuberlin . wiwiss . d2rq . find . FindQuery ; import de . fuberlin . wiwiss . d2rq . find . TripleQueryIter ; import de . fuberlin . wiwiss . d2rq . map . Mapping ; public class ResourceDescriber { private final Mapping mapping ; private final Node node ; private final boolean onlyOutgoing ; private final int limit ; private final long timeout ; private final Graph result = new GraphMem ( ) ; private final ExecutionContext context ; private boolean executed = false ; public ResourceDescriber ( Mapping mapping , Node resource ) { this ( mapping , resource , false , Relation . NO_LIMIT , - 1 ) ; } public ResourceDescriber ( Mapping mapping , Node resource , boolean onlyOutgoing , int limit , long timeout ) { this . mapping = mapping ; this . node = resource ; this . onlyOutgoing = onlyOutgoing ; this . limit = limit ; this . timeout = timeout ; this . context = null ; } public Graph description ( ) { if ( executed ) return result ; executed = true ; final QueryIterConcat qIter = new QueryIterConcat ( context ) ; Pingback < ? > pingback = null ; if ( timeout > 0 ) { pingback = AlarmClock . get ( ) . add ( new Callback < Object > ( ) { public void proc ( Object ignore ) { qIter . cancel ( ) ; } } , timeout ) ; } FindQuery outgoing = new FindQuery ( Triple . create ( node , Node . ANY , Node . ANY ) , mapping . compiledPropertyBridges ( ) , limit , context ) ; qIter . add ( outgoing . iterator ( ) ) ; if ( ! onlyOutgoing ) { FindQuery incoming | |
1,657 | <s> package org . oddjob . monitor . control ; import javax . swing . event . TreeExpansionEvent ; import javax . swing . event . TreeWillExpandListener ; import javax . swing . tree . ExpandVetoException ; import org . apache . log4j . Logger ; import org . oddjob . monitor . model . JobTreeNode ; public class NodeControl implements TreeWillExpandListener { private static final Logger logger = Logger . getLogger ( NodeControl . class ) ; public void treeWillCollapse ( TreeExpansionEvent event ) throws ExpandVetoException { JobTreeNode node = ( JobTreeNode ) event . getPath ( ) . getLastPathComponent ( ) ; JobTreeNode [ ] children = node . getChildren ( ) ; for ( int i = 0 ; i < children . length ; ++ i ) { logger . debug ( "Tree Node [" + children [ i ] . getComponent ( ) + "" ) ; children [ i ] . setVisible ( false ) ; } } public void treeWillExpand ( TreeExpansionEvent event ) throws ExpandVetoException { JobTreeNode node = ( JobTreeNode ) | |
1,658 | <s> package com . asakusafw . runtime . io . csv ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . ByteArrayInputStream ; import java . io . ByteArrayOutputStream ; import java . math . BigDecimal ; import java . util . Arrays ; import java . util . List ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TestName ; import com . asakusafw . runtime . value . BooleanOption ; import com . asakusafw . runtime . value . ByteOption ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateOption ; import com . asakusafw . runtime . value . DateTime ; import com . asakusafw . runtime . value . DateTimeOption ; import com . asakusafw . runtime . value . DecimalOption ; import com . asakusafw . runtime . value . DoubleOption ; import com . asakusafw . runtime . value . FloatOption ; import com . asakusafw . runtime . value . IntOption ; import com . asakusafw . runtime . value . LongOption ; import com . asakusafw . runtime . value . ShortOption ; import com . asakusafw . runtime . value . StringOption ; import com . asakusafw . runtime . value . ValueOption ; public class CsvEmitterTest { @ Rule public final TestName testName = new TestName ( ) ; private final ByteArrayOutputStream output = new ByteArrayOutputStream ( ) ; private List < String > headers = CsvConfiguration . DEFAULT_HEADER_CELLS ; private String trueFormat = CsvConfiguration . DEFAULT_TRUE_FORMAT ; private String falseFormat = CsvConfiguration . DEFAULT_FALSE_FORMAT ; private String dateFormat = CsvConfiguration . DEFAULT_DATE_FORMAT ; private String dateTimeFormat = CsvConfiguration . DEFAULT_DATE_TIME_FORMAT ; private CsvEmitter createEmitter ( ) { CsvConfiguration conf = new CsvConfiguration ( CsvConfiguration . DEFAULT_CHARSET , headers , trueFormat , falseFormat , dateFormat , dateTimeFormat ) ; return new CsvEmitter ( output , testName . getMethodName ( ) , conf ) ; } private CsvParser createParser ( ) { CsvConfiguration conf = new CsvConfiguration ( CsvConfiguration . DEFAULT_CHARSET , headers , trueFormat , falseFormat , dateFormat , dateTimeFormat ) ; return new CsvParser ( new ByteArrayInputStream ( output . toByteArray ( ) ) , testName . getMethodName ( ) , conf ) ; } private void assertRestorable ( ValueOption < ? > option ) { CsvConfiguration conf = new CsvConfiguration ( CsvConfiguration . DEFAULT_CHARSET , headers , trueFormat , falseFormat , dateFormat , dateTimeFormat ) ; ByteArrayOutputStream buffer = new ByteArrayOutputStream ( ) ; CsvEmitter emitter = new CsvEmitter ( buffer , testName . getMethodName ( ) , conf ) ; try { emit ( emitter , option ) ; emitter . endRecord ( ) ; emitter . close ( ) ; CsvParser parser = new CsvParser ( new ByteArrayInputStream ( buffer . toByteArray ( ) ) , testName . getMethodName ( ) , conf ) ; assertThat ( parser . next ( ) , is ( true ) ) ; ValueOption < ? > copy = option . getClass ( ) . newInstance ( ) ; fill ( parser , copy ) ; parser . endRecord ( ) ; assertThat ( parser . next ( ) , is ( false ) ) ; assertThat ( copy , is ( ( Object ) option ) ) ; } catch ( Exception e ) { throw new AssertionError ( e ) ; } } private < T extends ValueOption < ? > > T fill ( CsvParser parser , T option ) { try { CsvParser . class . getMethod ( "fill" , option . getClass ( ) ) . invoke ( parser , option ) ; return option ; } catch ( Exception e ) { throw new AssertionError ( e ) ; } } private < T extends ValueOption < ? > > T emit ( CsvEmitter emitter , T option ) { try { CsvEmitter . class . getMethod ( "emit" , option . getClass ( ) ) . invoke ( emitter , option ) ; return option ; } catch ( Exception e ) { throw new AssertionError ( e ) ; } } @ Test public void boolean_values ( ) throws Exception { assertRestorable ( new BooleanOption ( true ) ) ; assertRestorable ( new BooleanOption ( false ) ) ; assertRestorable ( new BooleanOption ( ) ) ; trueFormat = "false" ; falseFormat = "true" ; assertRestorable ( new BooleanOption ( true ) ) ; assertRestorable ( new BooleanOption ( false ) ) ; } @ Test public void byte_values ( ) throws Exception { assertRestorable ( new ByteOption ( ( byte ) 0 ) ) ; assertRestorable ( new ByteOption ( ( byte ) 1 ) ) ; assertRestorable ( new ByteOption ( ( byte ) - 1 ) ) ; assertRestorable ( new ByteOption ( ( byte ) 50 ) ) ; assertRestorable ( new ByteOption ( ( byte ) - 50 ) ) ; assertRestorable ( new ByteOption ( Byte . MAX_VALUE ) ) ; assertRestorable ( new ByteOption ( Byte . MIN_VALUE ) ) ; assertRestorable ( new ByteOption ( ) ) ; } @ Test public void short_values ( ) throws Exception { assertRestorable ( new ShortOption ( ( short ) 0 ) ) ; assertRestorable ( new ShortOption ( ( short ) 1 ) ) ; assertRestorable ( new ShortOption ( ( short ) - 1 ) ) ; assertRestorable ( new ShortOption ( ( short ) 50 ) ) ; assertRestorable ( new ShortOption ( ( short ) - 50 ) ) ; assertRestorable ( new ShortOption ( Short . MAX_VALUE ) ) ; assertRestorable ( new ShortOption ( Short . MIN_VALUE ) ) ; assertRestorable ( new ShortOption ( ) ) ; } @ Test public void int_values ( ) throws Exception { assertRestorable ( new IntOption ( 0 ) ) ; assertRestorable ( new IntOption ( 1 ) ) ; assertRestorable ( new IntOption ( - 1 ) ) ; assertRestorable ( new IntOption ( 50 ) ) ; assertRestorable ( new IntOption ( - 50 ) ) ; assertRestorable ( new IntOption ( Integer . MAX_VALUE ) ) ; assertRestorable ( new IntOption ( Integer . MIN_VALUE ) ) ; assertRestorable ( new IntOption ( ) ) ; } @ Test public void long_vaules ( ) throws Exception { assertRestorable ( new LongOption ( 0 ) ) ; assertRestorable ( new LongOption ( 1 ) ) ; assertRestorable ( new LongOption ( - 1 ) ) ; assertRestorable ( new LongOption ( 50 ) ) ; assertRestorable ( new LongOption ( - 50 ) ) ; assertRestorable ( new LongOption ( Long . MAX_VALUE ) ) ; assertRestorable ( new LongOption ( Long . MIN_VALUE ) ) ; assertRestorable ( new LongOption ( ) ) ; } @ Test public void float_values ( ) throws Exception { assertRestorable ( new FloatOption ( 0 ) ) ; assertRestorable ( new FloatOption ( 1 ) ) ; assertRestorable ( new FloatOption ( - 1 ) ) ; assertRestorable ( new FloatOption ( 50 ) ) ; assertRestorable ( new FloatOption ( - 50 ) ) ; assertRestorable ( new FloatOption ( Float . MAX_VALUE ) ) ; assertRestorable ( new FloatOption ( Float . MIN_VALUE ) ) ; assertRestorable ( new FloatOption ( ) ) ; } @ Test public void double_values ( ) throws Exception { assertRestorable ( new DoubleOption ( 0 ) ) ; assertRestorable ( new DoubleOption ( 1 ) ) ; assertRestorable ( new DoubleOption ( - 1 ) ) ; assertRestorable ( new DoubleOption ( 50 ) ) ; assertRestorable ( new DoubleOption ( - 50 ) ) ; assertRestorable ( new DoubleOption ( Double . MAX_VALUE ) ) ; assertRestorable ( new DoubleOption ( Double . MIN_VALUE ) ) ; assertRestorable ( new DoubleOption ( ) ) ; } @ Test public void decimal_values ( ) throws Exception { assertRestorable ( new DecimalOption ( decimal ( "0" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "-100" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "1" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "-1" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "100" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "-100" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "3.1415" ) ) ) ; assertRestorable ( new DecimalOption ( decimal ( "-3.1415" ) ) ) ; assertRestorable ( new DecimalOption ( ) ) ; } private BigDecimal decimal ( String string ) { return new BigDecimal ( string ) ; } @ Test public void text_values ( ) throws Exception { assertRestorable ( new StringOption ( "Hello" ) ) ; assertRestorable ( new StringOption ( "-UNK-" ) | |
1,659 | <s> package com . asakusafw . compiler . flow . testing . operator ; import java . util . Arrays ; import java . util . List ; import javax . annotation . Generated ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . compiler . flow . testing . model . ExSummarized ; import com . asakusafw . runtime . core . Result ; import com . asakusafw . vocabulary . flow . Operator ; import com . asakusafw . vocabulary . flow . Source ; import com . asakusafw . vocabulary . flow . graph . Connectivity ; import com . asakusafw . vocabulary . flow . graph . FlowBoundary ; import com . asakusafw . vocabulary . flow . graph . FlowElementResolver ; import com . asakusafw . vocabulary . flow . graph . ObservationCount ; import com . asakusafw . vocabulary . flow . graph . OperatorDescription ; import com . asakusafw . vocabulary . flow . graph . ShuffleKey ; import com . asakusafw . vocabulary . flow . processor . InputBuffer ; import com . asakusafw . vocabulary . flow . processor . PartialAggregation ; import com . asakusafw . vocabulary . operator . CoGroup ; import com . asakusafw . vocabulary . operator . Fold ; @ Generated ( "" ) public class ExOperatorFactory { public static final class FoldAdd implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > out ; FoldAdd ( Source < Ex1 > in ) { OperatorDescription . Builder builder = new OperatorDescription . Builder ( Fold . class ) ; builder . declare ( ExOperator . class , ExOperatorImpl . class , "foldAdd" ) ; builder . declareParameter ( Ex1 . class ) ; builder . declareParameter ( Ex1 . class ) ; builder . addInput ( "in" , in , new ShuffleKey ( Arrays . asList ( new String [ ] { "STRING" } ) , Arrays . asList ( new ShuffleKey . Order [ ] { } ) ) ) ; builder . addOutput ( "out" , in ) ; builder . addAttribute ( FlowBoundary . SHUFFLE ) ; builder . addAttribute ( ObservationCount . DONT_CARE ) ; builder . addAttribute ( PartialAggregation . DEFAULT ) ; this . $ = builder . toResolver ( ) ; this . $ . resolveInput ( "in" , in ) ; this . out = this . $ . resolveOutput ( "out" ) ; } public ExOperatorFactory . FoldAdd as ( String newName ) { this . $ . setName ( newName ) ; return this ; } } public ExOperatorFactory . FoldAdd foldAdd ( Source < Ex1 > in ) { return new ExOperatorFactory . FoldAdd ( in ) ; } public static final class Update implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > out ; Update ( Source < Ex1 > model , int value ) { OperatorDescription . Builder builder0 = new OperatorDescription . Builder ( com . asakusafw . vocabulary . operator . Update . class ) ; builder0 . declare ( ExOperator . class , ExOperatorImpl . class , "update" ) ; builder0 . declareParameter ( Ex1 . class ) ; builder0 . declareParameter ( int . class ) ; builder0 . addInput ( "model" , model ) ; builder0 . addOutput ( "out" , model ) ; builder0 . addParameter ( "value" , int . class , value ) ; builder0 . addAttribute ( ObservationCount . DONT_CARE ) ; this . $ = builder0 . toResolver ( ) ; this . $ . resolveInput ( "model" , model ) ; this . out = this . $ . resolveOutput ( "out" ) ; } public ExOperatorFactory . Update as ( String newName0 ) { this . $ . setName ( newName0 ) ; return this ; } } public ExOperatorFactory . Update update ( Source < Ex1 > model , int value ) { return new ExOperatorFactory . Update ( model , value ) ; } public static final class Random implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > out ; Random ( Source < Ex1 > model ) { OperatorDescription . Builder builder1 = new OperatorDescription . Builder ( com . asakusafw . vocabulary . operator . Update . class ) ; builder1 . declare ( ExOperator . class , ExOperatorImpl . class , "random" ) ; builder1 . declareParameter ( Ex1 . class ) ; builder1 . addInput ( "model" , model ) ; builder1 . addOutput ( "out" , model ) ; builder1 . addAttribute ( ObservationCount . AT_MOST_ONCE ) ; this . $ = builder1 . toResolver ( ) ; this . $ . resolveInput ( "model" , model ) ; this . out = this . $ . resolveOutput ( "out" ) ; } public ExOperatorFactory . Random as ( String newName1 ) { this . $ . setName ( newName1 ) ; return this ; } } public ExOperatorFactory . Random random ( Source < Ex1 > model ) { return new ExOperatorFactory . Random ( model ) ; } public static final class Error implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > out ; Error ( Source < Ex1 > model ) { OperatorDescription . Builder builder2 = new OperatorDescription . Builder ( com . asakusafw . vocabulary . operator . Update . class ) ; builder2 . declare ( ExOperator . class , ExOperatorImpl . class , "error" ) ; builder2 . declareParameter ( Ex1 . class ) ; builder2 . addInput ( "model" , model ) ; builder2 . addOutput ( "out" , model ) ; builder2 . addAttribute ( ObservationCount . AT_LEAST_ONCE ) ; this . $ = builder2 . toResolver ( ) ; this . $ . resolveInput ( "model" , model ) ; this . out = this . $ . resolveOutput ( "out" ) ; } public ExOperatorFactory . Error as ( String newName2 ) { this . $ . setName ( newName2 ) ; return this ; } } public ExOperatorFactory . Error error ( Source < Ex1 > model ) { return new ExOperatorFactory . Error ( model ) ; } public static final class Logging implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > out ; Logging ( Source < Ex1 > ex1 ) { OperatorDescription . Builder builder3 = new OperatorDescription . Builder ( com . asakusafw . vocabulary . operator . Logging . class ) ; builder3 . declare ( ExOperator . class , ExOperatorImpl . class , "logging" ) ; builder3 . declareParameter ( Ex1 . class ) ; builder3 . addInput ( "ex1" , ex1 ) ; builder3 . addOutput ( "out" , ex1 ) ; builder3 . addAttribute ( ObservationCount . AT_LEAST_ONCE ) ; builder3 . addAttribute ( Connectivity . OPTIONAL ) ; builder3 . addAttribute ( com . asakusafw . vocabulary . operator . Logging . Level . INFO ) ; this . $ = builder3 . toResolver ( ) ; this . $ . resolveInput ( "ex1" , ex1 ) ; this . out = this . $ . resolveOutput ( "out" ) ; } public ExOperatorFactory . Logging as ( String newName3 ) { this . $ . setName ( newName3 ) ; return this ; } } public ExOperatorFactory . Logging logging ( Source < Ex1 > ex1 ) { return new ExOperatorFactory . Logging ( ex1 ) ; } public static final class Branch implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > yes ; public final Source < Ex1 > no ; public final Source < Ex1 > cancel ; Branch ( Source < Ex1 > model ) { OperatorDescription . Builder builder4 = new OperatorDescription . Builder ( com . asakusafw . vocabulary . operator . Branch . class ) ; builder4 . declare ( ExOperator . class , ExOperatorImpl . class , "branch" ) ; builder4 . declareParameter ( Ex1 . class ) ; builder4 . addInput ( "model" , model ) ; builder4 . addOutput ( "yes" , model ) ; builder4 . addOutput ( "no" , model ) ; builder4 . addOutput ( "cancel" , model ) ; builder4 . addAttribute ( ObservationCount . DONT_CARE ) ; this . $ = builder4 . toResolver ( ) ; this . $ . resolveInput ( "model" , model ) ; this . yes = this . $ . resolveOutput ( "yes" ) ; this . no = this . $ . resolveOutput ( "no" ) ; this . cancel = this . $ . resolveOutput ( "cancel" ) ; } public ExOperatorFactory . Branch as ( String newName4 ) { this . $ . setName ( newName4 ) ; return this ; } } public ExOperatorFactory . Branch branch ( Source < Ex1 > model ) { return new ExOperatorFactory . Branch ( model ) ; } public static final class CogroupAdd implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > result ; CogroupAdd ( Source < Ex1 > list ) { OperatorDescription . Builder builder5 = new OperatorDescription . Builder ( CoGroup . class ) ; builder5 . declare ( ExOperator . class , ExOperatorImpl . class , "cogroupAdd" ) ; builder5 . declareParameter ( List . class ) ; builder5 . declareParameter ( Result . class ) ; builder5 . addInput ( "list" , list , new ShuffleKey ( Arrays . asList ( new String [ ] { "STRING" } ) , Arrays . asList ( new ShuffleKey . Order [ ] { new ShuffleKey . Order ( "SID" , ShuffleKey . Direction . ASC ) } ) ) ) ; builder5 . addOutput ( "result" , Ex1 . class ) ; builder5 . addAttribute ( FlowBoundary . SHUFFLE ) ; builder5 . addAttribute ( ObservationCount . DONT_CARE ) ; builder5 . addAttribute ( InputBuffer . EXPAND ) ; this . $ = builder5 . toResolver ( ) ; this . $ . resolveInput ( "list" , list ) ; this . result = this . $ . resolveOutput ( "result" ) ; } public ExOperatorFactory . CogroupAdd as ( String newName5 ) { this . $ . setName ( newName5 ) ; return this ; } } public ExOperatorFactory . CogroupAdd cogroupAdd ( Source < Ex1 > list ) { return new ExOperatorFactory . CogroupAdd ( list ) ; } public static final class Cogroup implements Operator { private final FlowElementResolver $ ; public final Source < Ex1 > r1 ; public final Source < Ex2 > r2 ; Cogroup ( Source < Ex1 > ex1 , Source < Ex2 > ex2 ) { OperatorDescription . Builder builder6 = new OperatorDescription . Builder ( CoGroup . class ) ; builder6 . declare ( ExOperator . class , ExOperatorImpl . class , "cogroup" ) ; builder6 . declareParameter ( List . class ) ; builder6 . declareParameter ( List . class ) ; builder6 . declareParameter ( Result . class ) ; builder6 . declareParameter | |
1,660 | <s> package org . rubypeople . rdt . internal . core . parser . warnings ; import org . rubypeople . rdt . core . parser . warnings . RubyLintVisitor ; public class ConstantReassignmentVisitorTest extends AbstractRubyLintVisitorTestCase { public void testCreatesProblemForReassignedConstantInSameNamespace ( ) throws Exception { String src = "" ; assertEquals ( 1 , getProblems ( src ) . size ( ) ) ; } public void testHandlesNestedNamespaceAndExplicitNamespaceForWrappingClass | |
1,661 | <s> package com . asakusafw . compiler . flow . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . flow . testing . model . ExSummarized2 ; import com . asakusafw . | |
1,662 | <s> package org . oddjob . logging . cache ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; public class MockLogArchiverCache implements LogArchiverCache { @ Override public void addEvent ( String archive , LogLevel level , String message ) { throw new RuntimeException ( "" + getClass ( ) | |
1,663 | <s> package fi . koku . services . entity . customerservice . model ; import java . util . Iterator ; import java . util . List ; import fi . koku . services . entity . customer . v1 . CustomerType ; import fi . koku . services . entity . customer . v1 . ElectronicContactInfoType ; import fi . koku . services . entity . customer . v1 . ElectronicContactInfosType ; public class Person { private boolean requestPending ; private CustomerType customer ; public Person ( CustomerType customer ) { this . customer = customer ; } public String getFirstname ( | |
1,664 | <s> package com . asakusafw . yaess . flowlog ; import static com . asakusafw . yaess . flowlog . FlowLoggerProfile . * ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . nio . charset . Charset ; import java . text . DateFormat ; import java . text . SimpleDateFormat ; import java . util . HashMap ; import java . util . Map ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TemporaryFolder ; import com . asakusafw . yaess . core . ProfileContext ; import com . asakusafw . yaess . core . ServiceProfile ; import com . asakusafw . yaess . core . VariableResolver ; public class FlowLoggerProfileTest { @ Rule public final TemporaryFolder folder = new TemporaryFolder ( ) ; @ Test public void convert ( ) throws Exception { Map < String , String > conf = map ( KEY_DIRECTORY , folder . getRoot ( ) . getAbsolutePath ( ) ) ; Map < String , String > vars = map ( ) ; ServiceProfile < FlowLoggerProvider > sp = profile ( conf , vars ) ; FlowLoggerProfile profile = FlowLoggerProfile . convert ( sp ) ; assertThat ( profile . getDirectory ( ) . getCanonicalFile ( ) , is ( folder . getRoot ( ) . getCanonicalFile ( ) ) ) ; assertThat ( profile . getEncoding ( ) , is ( Charset . forName ( DEFAULT_ENCODING ) ) ) ; assertThat ( profile . getDateFormat ( ) , is ( ( DateFormat ) new SimpleDateFormat ( DEFAULT_DATE_FORMAT ) ) ) ; assertThat ( profile . getStepUnit ( ) , closeTo ( Double . parseDouble ( DEFAULT_STEP_UNIT ) , 0.00001 ) ) ; assertThat ( profile . isReportJob ( ) , is ( Boolean . parseBoolean ( DEFAULT_REPORT_JOB ) ) ) ; assertThat ( profile . isDeleteOnSetup ( ) , is ( Boolean . parseBoolean ( DEFAULT_DELETE_ON_SETUP ) ) ) ; assertThat ( profile . isDeleteOnCleanup ( ) , is ( Boolean . parseBoolean ( DEFAULT_DELETE_ON_CLEANUP ) ) ) ; } @ Test public void convert_all ( ) throws Exception { Map < String , String > conf = map ( KEY_DIRECTORY , folder . getRoot ( ) . getAbsolutePath ( ) , KEY_ENCODING , "ASCII" , KEY_DATE_FORMAT , "yyyy" , KEY_STEP_UNIT , "0.50" , KEY_REPORT_JOB , "false" , KEY_DELETE_ON_SETUP , "false" , KEY_DELETE_ON_CLEANUP , "false" ) ; Map < String , String > vars = map ( ) ; ServiceProfile < FlowLoggerProvider > sp = profile ( conf , vars ) ; FlowLoggerProfile profile = FlowLoggerProfile . convert ( sp ) ; assertThat ( profile . getDirectory ( ) . getCanonicalFile ( ) , is ( folder . getRoot ( ) . getCanonicalFile ( ) ) ) ; assertThat ( profile . getEncoding ( ) , is ( Charset . forName ( "ASCII" ) ) ) ; assertThat ( profile . getDateFormat ( ) , is ( ( DateFormat ) new SimpleDateFormat ( "yyyy" ) ) ) ; assertThat ( profile . getStepUnit ( ) , closeTo ( Double . parseDouble ( "0.50" ) , 0.00001 ) ) ; assertThat ( profile . isReportJob ( ) , is ( Boolean . parseBoolean ( "false" ) ) ) ; assertThat ( profile . isDeleteOnSetup ( ) , is ( Boolean . parseBoolean ( "false" ) ) ) ; assertThat ( profile . isDeleteOnCleanup ( ) , is ( Boolean . parseBoolean ( "false" ) ) ) ; } @ Test public void convert_param ( ) throws Exception { Map < String , String > conf = map ( KEY_DIRECTORY , "${dir}" , KEY_ENCODING , "${enc}" ) ; Map < String , String > vars = map ( "dir" , folder . getRoot ( ) . getAbsolutePath ( ) , "enc" , "ASCII" ) ; ServiceProfile < FlowLoggerProvider > sp = profile ( conf , vars ) ; FlowLoggerProfile profile = FlowLoggerProfile . convert ( sp ) ; assertThat ( profile . getDirectory ( ) . getCanonicalFile ( ) , is ( folder . getRoot ( ) . getCanonicalFile ( ) ) ) ; assertThat ( | |
1,665 | <s> package org . oddjob . logging . console ; import junit . framework . TestCase ; import org . oddjob . logging . ConsoleOwner ; import org . oddjob . logging . LogArchive ; import org . oddjob . logging . LogEvent ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; import org . oddjob . logging . cache . LocalConsoleArchiver ; import org . oddjob . logging . cache . LogArchiveImpl ; public class LocalConsoleArchiverTest extends TestCase { static final String LS = System . getProperty ( "" ) ; class MyLL implements LogListener { String text ; long num ; public synchronized void logEvent ( LogEvent logEvent ) { text = logEvent . getMessage ( ) ; num = logEvent . getNumber ( ) ; } } public void testArchiveAndRetrieve ( ) { LocalConsoleArchiver test = new LocalConsoleArchiver ( ) ; System . out . println ( "Some noise" ) ; MyLL ll = new MyLL ( ) ; test . addConsoleListener ( ll , | |
1,666 | <s> package com . sun . tools . hat . internal . server ; import com . google . common . base . Function ; import com . google . common . base . Predicate ; import com . google . common . collect . Collections2 ; import com . google . common . collect . ComparisonChain ; import com . google . common . collect . Ordering ; import com . sun . tools . hat . internal . model . * ; import java . util . Arrays ; import java . util . Comparator ; class InstancesCountQuery extends QueryHandler { private enum NonPlatformPredicate implements Predicate < JavaClass > { INSTANCE ; @ Override public boolean apply ( JavaClass clazz ) { return ! PlatformClasses . isPlatformClass ( clazz ) ; } } private enum Sorters implements Function < JavaClass , Comparable < ? > > , Comparator < JavaClass > { BY_INSTANCE_COUNT { @ Override public Integer apply ( JavaClass cls ) { return cls . getInstancesCount ( false ) ; } } , BY_ARRAY_TYPE { @ Override public Boolean apply ( JavaClass cls ) { return cls . getName ( ) . startsWith ( "[" ) ; } } , BY_NAME { @ Override public String apply ( JavaClass cls ) { return cls . getName ( ) ; } } ; private final Ordering < JavaClass > ordering ; private Sorters ( ) { this . ordering = Ordering . natural ( ) . onResultOf ( this ) ; } @ Override public int compare ( JavaClass lhs , JavaClass rhs ) { return ordering . compare ( lhs , rhs ) ; } } private final boolean excludePlatform ; public InstancesCountQuery ( boolean excludePlatform ) { this . excludePlatform = excludePlatform ; } public void run ( ) { if ( excludePlatform ) { startHtml ( "" ) ; } else { startHtml ( "" ) ; } JavaClass [ ] classes = snapshot . getClassesArray ( ) ; if ( excludePlatform ) { classes = Collections2 . filter ( Arrays . asList ( classes ) , NonPlatformPredicate . INSTANCE ) . toArray ( new JavaClass [ 0 ] ) ; } Arrays . sort ( classes , new Comparator < JavaClass > ( ) { public int compare ( JavaClass lhs , JavaClass rhs ) { return ComparisonChain . start ( ) . compare ( rhs , lhs , Sorters . BY_INSTANCE_COUNT ) . compare ( lhs , rhs , Sorters . BY_ARRAY_TYPE ) . compare ( lhs , rhs , Sorters . BY_NAME ) . result ( ) ; } } ) ; long totalSize = 0 ; long instances = 0 ; for ( JavaClass clazz : classes ) { int count = clazz . getInstancesCount ( false ) ; print ( "" + count ) ; printAnchorStart ( ) ; out . print ( "instances/" + encodeForURL ( clazz ) ) ; out . print ( "\"> " ) ; if ( count == 1 ) { print ( "instance" ) ; } else { print ( "instances" ) ; } out . print ( "</a> " ) ; if ( snapshot . getHasNewSet ( ) ) { int newInst = 0 ; for ( JavaHeapObject obj : clazz . getInstances ( false ) ) { if ( obj . isNew ( ) ) { newInst ++ ; } } print ( "(" ) ; printAnchorStart ( ) ; out . print ( "" + encodeForURL ( clazz ) ) ; out . print ( "\">" ) ; print ( "" + newInst + " new" ) ; out . print ( "</a>) " ) ; } print ( "of " ) ; printClass ( clazz ) ; out . println ( "<br>" ) ; | |
1,667 | <s> package net . ggtools . grand . ui . prefs ; import org . eclipse . jface . preference . FieldEditorPreferencePage ; import org . eclipse . jface . preference . IntegerFieldEditor ; import org . eclipse . swt . widgets . | |
1,668 | <s> package com . asakusafw . compiler . windgate . testing . io ; import java . io . IOException ; import com . asakusafw . compiler . windgate . testing . model . Pair ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; public final class PairOutput implements ModelOutput < Pair > { private final RecordEmitter emitter ; public PairOutput ( RecordEmitter emitter ) { if ( emitter == null ) { throw new IllegalArgumentException ( ) ; } this . emitter = emitter ; } | |
1,669 | <s> package net . sf . sveditor . core . db . expr ; import net . sf . sveditor . core . db . SVDBItemType ; public class SVDBPropertySpecExpr extends SVDBExpr { public SVDBClockingEventExpr fClockingEventExpr ; public SVDBExpr fDisableExpr ; public SVDBExpr fExpr ; public | |
1,670 | <s> package org . rubypeople . rdt . refactoring . offsetprovider ; import org . jruby . ast . DefnNode ; import org . jruby . ast . ModuleNode ; import org . jruby . ast . Node ; import org . rubypeople . rdt . refactoring . core . NodeProvider ; import org . rubypeople . rdt . refactoring . nodewrapper . ClassNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . PartialClassNodeWrapper ; public class BeforeFirstMethodInClassOffsetProvider extends OffsetProvider { private Node bodyNode ; private Node declEndNode ; public BeforeFirstMethodInClassOffsetProvider ( ClassNodeWrapper classNode , String document ) { this ( classNode . getFirstPartialClassNode ( ) , document ) ; } public BeforeFirstMethodInClassOffsetProvider ( | |
1,671 | <s> package com . asakusafw . runtime . flow . join ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . ArrayList ; import java . util . Collections ; import java . util . List ; import org . junit . Test ; import com . asakusafw . runtime . value . IntOption ; public class VolatileLookUpTableTest { @ Test public void empty ( ) throws Exception { VolatileLookUpTable . Builder < IntOption > builder = new VolatileLookUpTable . Builder < IntOption > ( ) ; LookUpTable < IntOption > table = builder . build ( ) ; assertThat ( sort ( table . get ( key ( 100 ) ) ) , is ( values ( ) ) ) ; } @ Test public void simple ( ) throws Exception { VolatileLookUpTable . Builder < IntOption > builder = new VolatileLookUpTable . Builder < IntOption > ( ) ; builder . add ( key ( 100 ) , new IntOption ( 100 ) ) ; LookUpTable < IntOption > table = builder . build ( ) ; assertThat ( sort ( table . get ( key ( 100 ) ) ) , is ( values ( 100 ) ) ) ; assertThat ( sort ( table . get ( key ( 101 ) ) ) , is ( values ( ) ) ) ; } @ Test public void duplicate ( ) throws Exception { VolatileLookUpTable . Builder < IntOption > builder = new VolatileLookUpTable . Builder < IntOption > ( ) ; builder . add ( key ( 100 ) , new IntOption ( 100 ) ) ; builder . add ( key ( 100 ) , new IntOption ( 101 ) ) ; builder . add ( key ( 100 ) , new IntOption ( 102 ) ) ; LookUpTable < IntOption > table = builder . build ( ) ; assertThat ( sort ( table . get ( key ( 100 ) ) ) , is ( values ( 100 , 101 , 102 ) ) ) ; | |
1,672 | <s> package net . sf . sveditor . core . db . stmt ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBConstraintDistListItem extends SVDBStmt { public SVDBExpr fLHS ; public SVDBExpr fRHS ; public boolean fIsDist ; public SVDBConstraintDistListItem ( ) { super ( SVDBItemType . ConstraintDistListItem ) ; } public void setLHS ( SVDBExpr lhs ) { fLHS = lhs ; } public SVDBExpr getLHS ( ) { return fLHS ; } public void setRHS ( SVDBExpr rhs ) { fRHS = rhs ; } | |
1,673 | <s> package org . rubypeople . rdt . internal . debug . ui . launcher ; import java . io . File ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . resources . ResourcesPlugin ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . Path ; import org . eclipse . debug . core . ILaunchConfiguration ; import org . eclipse . debug . core . ILaunchConfigurationWorkingCopy ; import org . eclipse . debug . ui . AbstractLaunchConfigurationTab ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Label ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiMessages ; import org . rubypeople . rdt . internal . debug . ui . RdtDebugUiPlugin ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui . util . ProjectFileSelector ; import org . rubypeople . rdt . internal . ui . util . RubyProjectSelector ; import org . rubypeople . rdt . launching . IRubyLaunchConfigurationConstants ; public class RubyEntryPointTab extends AbstractLaunchConfigurationTab { protected String originalFileName , originalProjectName ; protected RubyProjectSelector projectSelector ; protected ProjectFileSelector fileSelector ; protected Composite composite ; public RubyEntryPointTab ( ) { super ( ) ; } public void createControl ( Composite parent ) { composite = createPageRoot ( parent ) ; new Label ( composite , SWT . NONE ) . setText ( RdtDebugUiMessages . LaunchConfigurationTab_RubyEntryPoint_projectLabel ) ; projectSelector = new RubyProjectSelector ( composite ) ; | |
1,674 | <s> package org . rubypeople . rdt . internal . ui . wizards . buildpaths ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . List ; import org . eclipse . core . resources . IFolder ; import org . eclipse . core . resources . IProject ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . jface . resource . ImageDescriptor ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . ISourceFolderRoot ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; import org . rubypeople . rdt . internal . ui . wizards . NewElementWizard ; public abstract class BuildPathWizard extends NewElementWizard { private boolean fDoFlushChange ; private final CPListElement fEntryToEdit ; private ISourceFolderRoot fSourceFolderRoot ; private final ArrayList fExistingEntries ; public BuildPathWizard ( CPListElement [ ] existingEntries , CPListElement newEntry , String titel , ImageDescriptor image ) { if | |
1,675 | <s> package com . asakusafw . dmdl . model ; import java . util . List ; import com . asakusafw . dmdl . Region ; import com . asakusafw . utils . collections . Lists ; public class AstModelFolding extends AbstractAstNode { private final Region region ; public final List < AstPropertyFolding > properties ; public AstModelFolding ( Region region , List < AstPropertyFolding > properties ) { if ( properties == null ) { throw new IllegalArgumentException ( "" ) ; } this . region = region ; this . properties = Lists . freeze ( properties ) ; } @ Override public Region getRegion ( ) { return region ; } @ Override public < C , | |
1,676 | <s> package com . aptana . rdt . internal . core . gems ; import java . io . File ; import java . io . FileNotFoundException ; import java . io . FileOutputStream ; import java . io . FileReader ; import java . io . IOException ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Set ; import java . util . SortedSet ; import java . util . TreeSet ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import javax . xml . parsers . FactoryConfigurationError ; import javax . xml . parsers . ParserConfigurationException ; import javax . xml . parsers . SAXParserFactory ; import org . eclipse . core . net . proxy . IProxyData ; import org . eclipse . core . net . proxy . IProxyService ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . NullProgressMonitor ; import org . eclipse . core . runtime . Path ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . SubMonitor ; import org . eclipse . core . runtime . SubProgressMonitor ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . debug . core . DebugException ; import org . eclipse . debug . core . DebugPlugin ; import org . eclipse . debug . core . ILaunch ; import org . eclipse . debug . core . ILaunchConfiguration ; import org . eclipse . debug . core . ILaunchConfigurationType ; import org . eclipse . debug . core . ILaunchConfigurationWorkingCopy ; import org . eclipse . debug . core . ILaunchManager ; import org . eclipse . debug . ui . IDebugUIConstants ; import org . rubypeople . rdt . core . RubyCore ; import org . rubypeople . rdt . core . util . Util ; import org . rubypeople . rdt . launching . IRubyLaunchConfigurationConstants ; import org . rubypeople . rdt . launching . IVMInstall ; import org . rubypeople . rdt . launching . IVMInstallChangedListener ; import org . rubypeople . rdt . launching . PropertyChangeEvent ; import org . rubypeople . rdt . launching . RubyRuntime ; import org . xml . sax . InputSource ; import org . xml . sax . SAXException ; import org . xml . sax . XMLReader ; import com . aptana . rdt . AptanaRDTPlugin ; import com . aptana . rdt . core . gems . AbstractGemManager ; import com . aptana . rdt . core . gems . Gem ; import com . aptana . rdt . core . gems . GemListener ; import com . aptana . rdt . core . gems . GemRequirement ; import com . aptana . rdt . core . gems . IGemManager ; import com . aptana . rdt . core . gems . LogicalGem ; import com . aptana . rdt . core . gems . Version ; import com . aptana . rdt . core . preferences . IPreferenceConstants ; public class GemManager extends AbstractGemManager implements IGemManager , IVMInstallChangedListener { private static final String DETAIL_SWITCH = "-d" ; private static final String SOURCE_SWITCH = "--source" ; private static final String INCLUDE_DEPENDENCIES_SWITCH = "-y" ; private static final String LOCAL_SWITCH = "-l" ; private static final String VERSION_SWITCH = "-v" ; private static final String REMOTE_SWITCH = "-r" ; private static final String LIST_COMMAND = "list" ; private static final String INSTALL_COMMAND = "install" ; private static final String UNINSTALL_COMMAND = "uninstall" ; private static final String UPDATE_COMMAND = "update" ; private static final String CLEANUP_COMMAND = "cleanup" ; private static final String EXECUTABLE = "ruby" ; private static final String LOCAL_GEMS_CACHE_FILE = "" ; private static final String RUBYGEMS_UPDATE_GEM_NAME = "" ; private static final String UPDATE_RUBYGEMS_COMMAND = "" ; private static GemManager fgInstance ; private Set < Gem > gems ; private Set < String > urls ; private List < IPath > fGemInstallPaths ; private Map < String , Set < Gem > > fRemoteGems = new HashMap < String , Set < Gem > > ( ) ; protected boolean isInitialized ; private Version fVersion ; private static int seed = 0 ; protected GemManager ( ) { super ( ) ; urls = new HashSet < String > ( ) ; gems = new HashSet < Gem > ( ) ; } public boolean isInitialized ( ) { return isInitialized ; } protected Set < Gem > loadLocalCache ( File file ) { FileReader fileReader = null ; try { fileReader = new FileReader ( file ) ; XMLReader reader = SAXParserFactory . newInstance ( ) . newSAXParser ( ) . getXMLReader ( ) ; GemManagerContentHandler handler = new GemManagerContentHandler ( ) ; reader . setContentHandler ( handler ) ; reader . parse ( new InputSource ( fileReader ) ) ; return handler . getGems ( ) ; } catch ( FileNotFoundException e ) { } catch ( SAXException e ) { AptanaRDTPlugin . log ( e ) ; } catch ( ParserConfigurationException e ) { AptanaRDTPlugin . log ( e ) ; } catch ( FactoryConfigurationError e ) { AptanaRDTPlugin . log ( e ) ; } catch ( IOException e ) { AptanaRDTPlugin . log ( e ) ; } finally { try { if ( fileReader != null ) fileReader . close ( ) ; } catch ( IOException e ) { } } return new HashSet < Gem > ( ) ; } protected void storeGemCache ( Set < Gem > gems , File file ) { XMLWriter out = null ; try { out = new XMLWriter ( new FileOutputStream ( file ) ) ; writeXML ( gems , out ) ; } catch ( FileNotFoundException e ) { AptanaRDTPlugin . log ( e ) ; } catch ( IOException e ) { AptanaRDTPlugin . log ( e ) ; } finally { if ( out != null ) out . close ( ) ; } } protected File getConfigFile ( String fileName ) { return AptanaRDTPlugin . getDefault ( ) . getStateLocation ( ) . append ( fileName ) . toFile ( ) ; } private void writeXML ( Set < Gem > gems , XMLWriter out ) { out . startTag ( "gems" , null ) ; for ( Gem gem : gems ) { out . startTag ( "gem" , null ) ; out . printSimpleTag ( "name" , gem . getName ( ) ) ; out . printSimpleTag ( "version" , gem . getVersion ( ) ) ; out . printSimpleTag ( "description" , gem . getDescription ( ) ) ; out . printSimpleTag ( "platform" , gem . getPlatform ( ) ) ; out . endTag ( "gem" ) ; } out . endTag ( "gems" ) ; out . flush ( ) ; } protected Set < Gem > loadRemoteGems ( String gemIndexUrl , IProgressMonitor monitor ) { if ( ! isRubyGemsInstalled ( ) ) return new HashSet < Gem > ( ) ; IGemParser parser ; String command = LIST_COMMAND + " " + DETAIL_SWITCH + " " + REMOTE_SWITCH + " " + SOURCE_SWITCH + " " + gemIndexUrl ; String output = launchInBackgroundAndRead ( command , getStateFile ( "" ) ) ; if ( output != null && output . contains ( "ERROR:" ) ) { command = LIST_COMMAND + " " + REMOTE_SWITCH + " " + SOURCE_SWITCH + " " + gemIndexUrl ; output = launchInBackgroundAndRead ( command , getStateFile ( "" ) ) ; parser = getGemParser ( false ) ; } else { parser = getGemParser ( true ) ; } try { return parser . parse ( output ) ; } catch ( GemParseException e ) { return Collections . emptySet ( ) ; } } protected IGemParser getGemParser ( ) { return getGemParser ( true ) ; } protected IGemParser getGemParser ( boolean detailed ) { if ( detailed ) return new HybridGemParser ( getVersion ( ) ) ; return new ShortListingGemParser ( ) ; } private Set < Gem > loadLocalGems ( IProgressMonitor monitor ) { if ( ! isRubyGemsInstalled ( ) ) return new HashSet < Gem > ( ) ; IGemParser parser = getGemParser ( ) ; String output = getLocalGemsListing ( ) ; try { return parser . parse ( output ) ; } catch ( GemParseException e ) { return Collections . emptySet ( ) ; } } private String launchInBackgroundAndRead ( final ILaunchConfiguration config , final File file ) { return RubyRuntime . launchInBackgroundAndRead ( config , file ) ; } private String launchInBackgroundAndRead ( String command , File file ) { return launchInBackgroundAndRead ( createGemLaunchConfiguration ( command , false ) , file ) ; } public Version getVersion ( ) { if ( fVersion != null ) return fVersion ; int tries = 0 ; while ( fVersion == null && tries < 3 ) { String version = launchInBackgroundAndRead ( "-v" , getStateFile ( "version.txt" ) ) ; try { if ( version != null && version . trim ( ) . length ( ) > 0 ) fVersion = new Version ( version . trim ( ) ) ; } catch ( RuntimeException e ) { AptanaRDTPlugin . log ( e ) ; fVersion = null ; } tries ++ ; } return fVersion ; } private String getLocalGemsListing ( ) { String command = "query -d" ; if ( getVersion ( ) != null && getVersion ( ) . isLessThanOrEqualTo ( "0.9.3" ) ) { command = LIST_COMMAND + " " + LOCAL_SWITCH ; } return launchInBackgroundAndRead ( command , getGemListingFile ( ) ) ; } private File getGemListingFile ( ) { return getStateFile ( "" ) ; } public IStatus update ( final Gem gem , IProgressMonitor monitor ) { if ( monitor == null ) monitor = new NullProgressMonitor ( ) ; if ( ! isRubyGemsInstalled ( ) ) return new Status ( IStatus . ERROR , AptanaRDTPlugin . PLUGIN_ID , - 1 , "" , null ) ; try { String command = UPDATE_COMMAND + " " + gem . getName ( ) ; command = addProxy ( IGemManager . DEFAULT_GEM_HOST , command ) ; ILaunchConfiguration config = createGemLaunchConfiguration ( command , true ) ; if ( monitor . isCanceled ( ) ) return Status . CANCEL_STATUS ; final ILaunch launch = config . launch ( ILaunchManager . RUN_MODE , monitor ) ; while ( ! launch . isTerminated ( ) ) { if ( monitor . isCanceled ( ) ) { try { launch . terminate ( ) ; } catch ( DebugException e ) { } return Status . CANCEL_STATUS ; } Thread . yield ( ) ; } refresh ( monitor ) ; for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . gemUpdated ( gem ) ; } return Status . OK_STATUS ; } catch ( CoreException e ) { return e . getStatus ( ) ; } } private ILaunchConfigurationType getRubyApplicationConfigType ( ) { return getLaunchManager ( ) . getLaunchConfigurationType ( IRubyLaunchConfigurationConstants . ID_RUBY_APPLICATION ) ; } private ILaunchManager getLaunchManager ( ) { return DebugPlugin . getDefault ( ) . getLaunchManager ( ) ; } private ILaunchConfiguration createGemLaunchConfiguration ( String arguments , boolean isSudo ) { String gemPath = getGemScriptPath ( ) ; ILaunchConfiguration config = null ; try { ILaunchConfigurationType configType = getRubyApplicationConfigType ( ) ; ILaunchConfigurationWorkingCopy wc = configType . newInstance ( null , getUniqueName ( "gem" ) ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_FILE_NAME , gemPath ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_VM_INSTALL_NAME , RubyRuntime . getDefaultVMInstall ( ) . getName ( ) ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_VM_INSTALL_TYPE , RubyRuntime . getDefaultVMInstall ( ) . getVMInstallType ( ) . getId ( ) ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_PROGRAM_ARGUMENTS , arguments ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_VM_ARGUMENTS , "" ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_IS_SUDO , isSudo ) ; if ( isSudo ) { wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_TERMINAL_COMMAND , "gem " + arguments ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_USE_TERMINAL , "" ) ; } Map < String , String > map = new HashMap < String , String > ( ) ; map . put ( IRubyLaunchConfigurationConstants . ATTR_RUBY_COMMAND , EXECUTABLE ) ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_VM_INSTALL_TYPE_SPECIFIC_ATTRS_MAP , map ) ; wc . setAttribute ( IDebugUIConstants . ATTR_PRIVATE , true ) ; wc . setAttribute ( IDebugUIConstants . ATTR_LAUNCH_IN_BACKGROUND , false ) ; config = wc . doSave ( ) ; } catch ( CoreException ce ) { AptanaRDTPlugin . log ( ce ) ; } return config ; } private synchronized String getUniqueName ( String name ) { return RubyRuntime . generateUniqueLaunchConfigurationNameFrom ( name ) + seed ++ ; } public ILaunchConfiguration run ( String args ) throws CoreException { boolean useSudo = false ; if ( ( args . contains ( "install " ) || args . contains ( "update" ) || args . contains ( "uninstall " ) || args . contains ( "cleanup" ) ) && ! args . contains ( "help " ) ) { useSudo = true ; } return createGemLaunchConfiguration ( args , useSudo ) ; } private static String getGemScriptPath ( ) { String path = Platform . getPreferencesService ( ) . getString ( AptanaRDTPlugin . PLUGIN_ID , IPreferenceConstants . GEM_SCRIPT_PATH , "" , null ) ; if ( path != null && path . trim ( ) . length ( ) > 0 ) return path ; IVMInstall vm = RubyRuntime . getDefaultVMInstall ( ) ; if ( vm == null ) return null ; path = vm . getInstallLocation ( ) . getAbsolutePath ( ) + File . separator + "bin" + File . separator + "gem" ; File gemScript = Util . findFileWithOptionalSuffix ( path ) ; if ( gemScript == null ) return null ; return gemScript . getAbsolutePath ( ) ; } public boolean isRubyGemsInstalled ( ) { String path = getGemScriptPath ( ) ; if ( path == null ) return false ; File file = new File ( path ) ; return file . exists ( ) ; } public IStatus installGem ( final Gem gem , IProgressMonitor monitor ) { return installGem ( gem , true , monitor ) ; } public IStatus installGem ( final Gem gem , boolean includeDependencies , IProgressMonitor monitor ) { if ( gem . isLocal ( ) ) { return doLocalInstallGem ( gem , monitor ) ; } return installGem ( gem , DEFAULT_GEM_HOST , includeDependencies , monitor ) ; } public IStatus removeGem ( final Gem gem , IProgressMonitor monitor ) { if ( ! isRubyGemsInstalled ( ) ) return new Status ( IStatus . ERROR , AptanaRDTPlugin . PLUGIN_ID , - 1 , "" , null ) ; try { String command = UNINSTALL_COMMAND + " " + gem . getName ( ) ; if ( gem . getVersion ( ) != null && gem . getVersion ( ) . trim ( ) . length ( ) > 0 ) { command += " " + VERSION_SWITCH + " " + gem . getVersion ( ) ; } ILaunchConfiguration config = createGemLaunchConfiguration ( command , true ) ; if ( monitor . isCanceled ( ) ) return Status . CANCEL_STATUS ; final ILaunch launch = config . launch ( ILaunchManager . RUN_MODE , monitor ) ; while ( ! launch . isTerminated ( ) ) { if ( monitor . isCanceled ( ) ) { launch . terminate ( ) ; return Status . CANCEL_STATUS ; } Thread . yield ( ) ; } refresh ( monitor ) ; for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . gemRemoved ( gem ) ; } return Status . OK_STATUS ; } catch ( CoreException e ) { return e . getStatus ( ) ; } } public Set < Gem > getGems ( ) { return Collections . unmodifiableSortedSet ( new TreeSet < Gem > ( gems ) ) ; } public static GemManager getInstance ( ) { if ( fgInstance == null ) fgInstance = new GemManager ( ) ; return fgInstance ; } public IStatus refresh ( IProgressMonitor monitor ) { SubMonitor progress = SubMonitor . convert ( monitor , 100 ) ; Set < Gem > newGems = loadLocalGems ( progress . newChild ( 95 ) ) ; gems = newGems ; storeGemCache ( gems , getConfigFile ( LOCAL_GEMS_CACHE_FILE ) ) ; progress . worked ( 4 ) ; Job job = new Job ( "" ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . gemsRefreshed ( ) ; } return Status . OK_STATUS ; } } ; job . setSystem ( true ) ; job . schedule ( ) ; progress . done ( ) ; return Status . OK_STATUS ; } public Set < Gem > getRemoteGems ( ) { return getRemoteGems ( DEFAULT_GEM_HOST , new NullProgressMonitor ( ) ) ; } public Set < Gem > getRemoteGems ( String sourceURL , IProgressMonitor monitor ) { Set < Gem > remoteGems = new HashSet < Gem > ( ) ; if ( fRemoteGems . containsKey ( sourceURL ) ) { remoteGems = fRemoteGems . get ( sourceURL ) ; } else { remoteGems = makeLogical ( loadRemoteGems ( sourceURL , monitor ) ) ; if ( ! remoteGems . isEmpty ( ) ) { addSourceURL ( sourceURL ) ; fRemoteGems . put ( sourceURL , remoteGems ) ; } } return Collections . unmodifiableSortedSet ( new TreeSet < Gem > ( remoteGems ) ) ; } protected void addSourceURL ( String sourceURL ) { if ( urls . contains ( sourceURL ) ) return ; launchInBackgroundAndRead ( "sources -a " + sourceURL , getConfigFile ( "" ) ) ; urls . add ( sourceURL ) ; } public Set < String > getSourceURLs ( ) { return Collections . unmodifiableSet ( new TreeSet < String > ( urls ) ) ; } public boolean gemInstalled ( String gemName ) { Set < Gem > gems = getGems ( ) ; for ( Gem gem : gems ) { if ( gem . getName ( ) . equalsIgnoreCase ( gemName ) ) return true ; } return false ; } public synchronized List < IPath > getGemInstallPaths ( ) { if ( fGemInstallPaths == null ) { if ( ! isRubyGemsInstalled ( ) ) return null ; ILaunchConfiguration config = createGemLaunchConfiguration ( "" , false ) ; if ( config == null ) return null ; try { ILaunchConfigurationWorkingCopy wc = config . getWorkingCopy ( ) ; if ( wc == null ) return null ; wc . setAttribute ( IRubyLaunchConfigurationConstants . ATTR_VM_ARGUMENTS , "" ) ; config = wc . doSave ( ) ; } catch ( CoreException e ) { AptanaRDTPlugin . log ( e ) ; } try { String output = launchInBackgroundAndRead ( config , getGemInstallPathFile ( ) ) ; fGemInstallPaths = parseInstallPaths ( output ) ; } catch ( IllegalArgumentException e ) { fGemInstallPaths = null ; return null ; } } return fGemInstallPaths ; } private List < IPath > parseInstallPaths ( String output ) { try { if ( output == null || output . trim ( ) . length ( ) == 0 ) throw new IllegalArgumentException ( "" ) ; output = output . trim ( ) ; if ( ! output . startsWith ( "[" ) || ! output . endsWith ( "]" ) ) throw new IllegalArgumentException ( "" + output ) ; output = new String ( output . substring ( 1 , output . length ( ) - 1 ) ) ; String [ ] paths = output . split ( "," ) ; if ( paths == null || paths . length < 1 ) return null ; List < IPath > installPaths = new ArrayList < IPath > ( ) ; for ( int i = 0 ; i < paths . length ; i ++ ) { String path = paths [ i ] . trim ( ) ; path = new String ( path . substring ( 1 , path . length ( ) - 1 ) ) ; installPaths . add ( new Path ( path . trim ( ) ) ) ; } return installPaths ; } catch ( Exception e ) { AptanaRDTPlugin . log ( e ) ; } return null ; } private File getGemInstallPathFile ( ) { return getStateFile ( "" ) ; } private File getStateFile ( String name ) { String currentVMId = RubyRuntime . getDefaultVMInstall ( ) . getId ( ) ; File file = AptanaRDTPlugin . getDefault ( ) . getStateLocation ( ) . append ( "gems" ) . append ( currentVMId ) . append ( name ) . toFile ( ) ; try { file . getParentFile ( ) . mkdirs ( ) ; file . createNewFile ( ) ; } catch ( IOException e ) { } return file ; } public IPath getGemPath ( String gemName ) { List < IPath > paths = getGemInstallPaths ( ) ; if ( paths == null ) return null ; List < IPath > matches = new ArrayList < IPath > ( ) ; for ( IPath path : paths ) { path = path . append ( "gems" ) ; File gemFolder = path . toFile ( ) ; File [ ] gems = gemFolder . listFiles ( ) ; if ( gems == null ) continue ; for ( int i = 0 ; i < gems . length ; i ++ ) { File gem = gems [ i ] ; String name = gem . getName ( ) ; if ( name . startsWith ( gemName ) ) matches . add ( new Path ( gem . getAbsolutePath ( ) ) ) ; } } if ( matches . isEmpty ( ) ) return null ; if ( matches . size ( ) == 1 ) return matches . get ( 0 ) . append ( "lib" ) ; List < Version > versions = new ArrayList < Version > ( ) ; for ( IPath match : matches ) { String name = match . lastSegment ( ) ; String [ ] parts = name . split ( "-" ) ; for ( int i = parts . length - 1 ; i >= 0 ; i -- ) { String version = parts [ i ] ; try { Version duh = new Version ( version ) ; versions . add ( duh ) ; break ; } catch ( IllegalArgumentException e ) { } } } Collections . sort ( versions ) ; Version latest = versions . get ( versions . size ( ) - 1 ) ; for ( IPath match : matches ) { String name = match . lastSegment ( ) ; String [ ] parts = name . split ( "-" ) ; String version = null ; for ( int i = parts . length - 1 ; i >= 0 ; i -- ) { version = parts [ i ] ; try { Version duh = new Version ( version ) ; versions . add ( duh ) ; break ; } catch ( IllegalArgumentException e ) { } } if ( version != null && version . equals ( latest . toString ( ) ) ) return match . append ( "lib" ) ; } return null ; } public IPath getGemPath ( String gemName , String version ) { return getGemPath ( gemName + "-" + version ) ; } public IStatus updateAll ( IProgressMonitor monitor ) { if ( monitor == null ) monitor = new NullProgressMonitor ( ) ; if ( ! isRubyGemsInstalled ( ) ) return new Status ( IStatus . ERROR , AptanaRDTPlugin . PLUGIN_ID , "" , null ) ; IStatus result = updateSystem ( monitor ) ; if ( result != null && ! result . isOK ( ) ) { return result ; } try { ILaunchConfiguration config = createGemLaunchConfiguration ( addProxy ( IGemManager . DEFAULT_GEM_HOST , UPDATE_COMMAND + " " + INCLUDE_DEPENDENCIES_SWITCH ) , true ) ; if ( monitor . isCanceled ( ) ) return Status . CANCEL_STATUS ; final ILaunch launch = config . launch ( ILaunchManager . RUN_MODE , monitor ) ; while ( ! launch . isTerminated ( ) ) { if ( monitor . isCanceled ( ) ) { launch . terminate ( ) ; return Status . CANCEL_STATUS ; } Thread . yield ( ) ; } refresh ( monitor ) ; return Status . OK_STATUS ; } catch ( CoreException e ) { return e . getStatus ( ) ; } } public void initialize ( ) { RubyRuntime . addVMInstallChangedListener ( this ) ; scheduleLoadingSources ( ) ; scheduleLoadingLocalGems ( ) ; } private void scheduleLoadingSources ( ) { Job job = new Job ( "" ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { urls = loadSourceURLs ( ) ; return Status . OK_STATUS ; } } ; job . setPriority ( Job . LONG ) ; job . setSystem ( true ) ; job . schedule ( ) ; } protected Set < String > loadSourceURLs ( ) { Set < String > sources = new HashSet < String > ( ) ; String output = launchInBackgroundAndRead ( "sources -l" , getConfigFile ( "" ) ) ; if ( output == null ) return sources ; String [ ] lines = output . split ( "n" ) ; if ( lines == null ) return sources ; for ( int i = 2 ; i < lines . length ; i ++ ) { sources . add ( lines [ i ] . trim ( ) ) ; } return sources ; } private void scheduleLoadingLocalGems ( ) { Job job = new Job ( GemsMessages . GemManager_loading_local_gems ) { @ Override protected IStatus run ( IProgressMonitor monitor ) { try { gems = loadLocalCache ( getConfigFile ( LOCAL_GEMS_CACHE_FILE ) ) ; for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . gemsRefreshed ( ) ; } gems = loadLocalGems ( monitor ) ; int tries = 0 ; while ( gems . isEmpty ( ) && tries < 3 ) { tries ++ ; gems = loadLocalGems ( monitor ) ; } storeGemCache ( gems , getConfigFile ( LOCAL_GEMS_CACHE_FILE ) ) ; isInitialized = true ; for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . managerInitialized ( ) ; } for ( GemListener listener : new ArrayList < GemListener > ( listeners ) ) { listener . gemsRefreshed ( ) ; } } catch ( Exception e ) { AptanaRDTPlugin . log ( e ) ; return Status . CANCEL_STATUS ; } return Status . OK_STATUS ; } } ; job . setPriority ( Job . LONG ) ; job . setSystem ( true ) ; job . schedule ( ) ; } protected Set < Gem > makeLogical ( Set < Gem > remoteGems ) { SortedSet < Gem > sorted = new TreeSet < Gem > ( remoteGems ) ; SortedSet < Gem > logical = new TreeSet < Gem > ( ) ; String name = null ; Collection < Gem > temp = new HashSet < Gem > ( ) ; for ( Gem gem : sorted ) { if ( name != null && ! gem . getName ( ) . equals ( name ) ) { logical . add ( LogicalGem . create ( temp ) ) ; temp . clear ( ) ; } name = gem . getName ( ) ; temp . add ( gem ) ; } if ( name != null && ! temp . isEmpty ( ) ) { logical . add ( LogicalGem . create ( temp ) ) ; temp . clear ( ) ; } return Collections . unmodifiableSortedSet ( logical ) ; } public IStatus cleanup ( IProgressMonitor monitor ) { if ( monitor == null ) monitor = new NullProgressMonitor ( ) ; if ( ! isRubyGemsInstalled ( ) ) return new Status ( IStatus . ERROR , AptanaRDTPlugin . PLUGIN_ID , "" , null ) ; try { String command = CLEANUP_COMMAND ; ILaunchConfiguration config = createGemLaunchConfiguration ( command , true ) ; if ( monitor . isCanceled ( ) ) return Status . CANCEL_STATUS ; final ILaunch launch = config . launch ( ILaunchManager . RUN_MODE , monitor ) ; while ( ! launch . isTerminated ( ) ) { if ( monitor . isCanceled ( ) ) { launch . terminate ( ) ; return Status . CANCEL_STATUS ; } Thread . yield ( ) ; } refresh ( monitor ) ; return Status . OK_STATUS ; } catch ( CoreException e ) { return e . getStatus ( ) ; } } public IStatus installGem ( Gem gem , String sourceURL , IProgressMonitor monitor ) { return installGem ( gem , sourceURL , true , new NullProgressMonitor ( ) ) ; } private IStatus doInstallGem ( final Gem gem , String command , IProgressMonitor monitor ) { SubMonitor progress = SubMonitor . convert ( monitor , 100 ) ; if ( ! isRubyGemsInstalled ( ) ) return new Status ( IStatus . ERROR , AptanaRDTPlugin . | |
1,677 | <s> package org . rubypeople . rdt . refactoring . action ; import org . eclipse . osgi . | |
1,678 | <s> package com . asakusafw . utils . java . internal . model . syntax ; import java . util . Iterator ; import java . util . LinkedList ; import java . util . List ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . Name ; import com . asakusafw . utils . java . model . syntax . QualifiedName ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class QualifiedNameImpl extends ModelRoot implements QualifiedName { private Name qualifier ; private SimpleName simpleName ; @ Override public Name getQualifier ( ) { return this . qualifier ; } public void setQualifier ( Name qualifier ) { Util . notNull ( qualifier , "qualifier" ) ; this . qualifier = qualifier ; } @ Override public SimpleName getSimpleName ( ) { return this . simpleName ; } public void setSimpleName ( SimpleName simpleName ) { Util . notNull ( simpleName , "simpleName" ) ; this . simpleName = simpleName ; } @ Override public ModelKind getModelKind ( ) { return ModelKind . QUALIFIED_NAME ; } @ Override public SimpleName getLastSegment ( ) { return getSimpleName ( ) ; } @ Override public String toNameString ( ) { Iterator < SimpleName > iter = toNameList ( ) . iterator ( ) ; assert iter . hasNext ( ) ; StringBuilder buf = new StringBuilder ( ) ; buf . append ( iter . next ( ) ) ; while ( iter . hasNext ( ) ) { buf . append ( '.' ) ; buf . append ( iter . next ( ) ) ; } return buf . toString ( ) ; } @ Override public List < | |
1,679 | <s> package net . sf . sveditor . ui . pref ; import net . sf . sveditor . ui . WorkspaceDirectoryDialog ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . window . Window ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . events . SelectionEvent ; import org . eclipse . swt . events . SelectionListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Button ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . DirectoryDialog ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Text ; public class AddDirectoryPathDialog extends Dialog { private Text fPath ; private String fPathStr ; public AddDirectoryPathDialog ( Shell shell , int style ) { super ( shell ) ; } public void setInitialPath ( String path ) { fPathStr = path ; } public String getPath ( ) { return fPathStr ; } @ Override protected Control createDialogArea ( Composite parent ) { Composite frame = new Composite ( parent , SWT . NONE ) ; frame . setLayout ( new GridLayout ( 2 , false ) ) ; GridData gd ; fPath = new Text ( frame , SWT . BORDER ) ; gd = new GridData ( SWT . FILL , SWT . CENTER , true , false ) ; gd . widthHint = 250 ; fPath . setLayoutData ( gd ) ; fPath . addModifyListener ( new ModifyListener ( ) { public void modifyText ( ModifyEvent e ) { fPathStr = fPath . getText ( ) ; } } ) ; if ( fPathStr != null ) { fPath . setText ( fPathStr ) ; } Composite button_bar = new Composite ( frame , SWT . NONE ) ; button_bar . setLayout ( new GridLayout ( 1 , true ) ) ; button_bar . setLayoutData ( new GridData ( SWT . CENTER , SWT . FILL , false , true ) ) ; Button add_ws_path = new Button ( button_bar , SWT . PUSH ) ; add_ws_path . setText ( "" ) ; add_ws_path . setLayoutData ( new GridData ( SWT . FILL , SWT . FILL , true , true ) ) ; add_ws_path . addSelectionListener ( new SelectionListener ( ) { public void widgetDefaultSelected ( SelectionEvent | |
1,680 | <s> package org . rubypeople . rdt . internal . ui . callhierarchy ; import java . util . ArrayList ; import org . eclipse . swt . SWT ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Menu ; import org . eclipse . swt . widgets . Table ; import org . eclipse . swt . widgets . TableColumn ; import org . eclipse . jface . action . IMenuListener ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . viewers . ArrayContentProvider ; import org . eclipse . jface . viewers . ColumnLayoutData ; import org . eclipse . jface . viewers . | |
1,681 | <s> package com . asakusafw . compiler . flow . processor . flow ; import com . asakusafw . compiler . flow . processor . ExtractFlowProcessor ; import com . asakusafw . compiler . flow . processor . operator . ExtractFlowFactory ; import com . asakusafw . compiler . flow . processor . operator . ExtractFlowFactory . Op3 ; import com . asakusafw . compiler . flow . testing . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex1MockImporterDescription ; import com . asakusafw . compiler . flow . testing . external . Ex2MockExporterDescription ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . vocabulary . flow . Export ; import com . asakusafw . vocabulary . flow . FlowDescription ; import com . asakusafw . vocabulary . flow . Import ; import com . asakusafw . vocabulary . flow . In ; import com . asakusafw . vocabulary . flow . JobFlow ; import com . asakusafw . vocabulary . flow . Out ; @ JobFlow | |
1,682 | <s> package com . asakusafw . dmdl . thundergate . util ; import java . text . MessageFormat ; import java . util . EnumSet ; import java . util . List ; import java . util . Set ; import com . asakusafw . dmdl . thundergate . model . Aggregator ; import com . asakusafw . dmdl . thundergate . model . Attribute ; import com . asakusafw . dmdl . thundergate . model . BasicType ; import com . asakusafw . dmdl . thundergate . model . ModelProperty ; import com . asakusafw . dmdl . thundergate . model . PropertyType ; import com . asakusafw . dmdl . thundergate . model . PropertyTypeKind ; import com . asakusafw . dmdl . thundergate . model . Source ; import com . asakusafw . dmdl . thundergate . model . TableModelDescription ; import com . | |
1,683 | <s> package com . asakusafw . compiler . batch ; import java . io . IOException ; import java . util . Collection ; import java . util . Set ; import com . asakusafw . vocabulary . batch . WorkDescription ; public interface WorkflowProcessor extends BatchCompilingEnvironment . Initializable { Collection < Class < ? extends WorkDescriptionProcessor < | |
1,684 | <s> package net . sf . sveditor . ui . wizards . templates ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . templates . ITemplateParameterProvider ; import net . sf . sveditor . core . templates . TemplateParameter ; import net . sf . sveditor . core . templates . TemplateParameterType ; import net . sf . sveditor . ui . SVUiPlugin ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . viewers . CellEditor ; import org . eclipse . jface . viewers . ColumnViewer ; import org . eclipse . jface . viewers . ComboBoxCellEditor ; import org . eclipse . jface . viewers . EditingSupport ; import org . eclipse . jface . viewers . IStructuredContentProvider ; import org . eclipse . jface . viewers . ITableLabelProvider ; import org . eclipse . jface . viewers . LabelProvider ; import org . eclipse . jface . viewers . TableViewer ; import org . eclipse . jface . viewers . TableViewerColumn ; import org . eclipse . jface . viewers . TextCellEditor ; import org . eclipse . jface . viewers . Viewer ; import org . eclipse . swt . SWT ; import org . eclipse . swt . custom . CCombo ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Event ; import org . eclipse . swt . widgets . Listener ; import org . eclipse . swt . widgets . Text ; public class TemplateParametersTableViewer extends TableViewer { private List < TemplateParameter > fParameters ; private List < ModifyListener > fModifyListeners ; private String fSourceFolderStr = "" ; private TemplateParameter fActiveParameter ; public TemplateParametersTableViewer ( Composite parent ) { super ( parent ) ; fParameters = new ArrayList < TemplateParameter > ( ) ; fModifyListeners = new ArrayList < ModifyListener > ( ) ; | |
1,685 | <s> package org . rubypeople . rdt . refactoring . tests . core . renamefield ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . IRefactoringConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamefield . FieldRenamer ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConditionChecker ; import org . rubypeople . rdt . refactoring . core . renamefield . RenameFieldConfig ; import org . rubypeople . rdt . refactoring . tests . MultiFileTestData ; import org . rubypeople . rdt . refactoring . tests . RefactoringTestCase ; public class FieldRenamerTester extends RefactoringTestCase { public FieldRenamerTester ( String fileName ) { super ( fileName ) ; } @ Override public void runTest ( ) throws FileNotFoundException , IOException | |
1,686 | <s> package de . fuberlin . wiwiss . d2rq . algebra ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import de . fuberlin . wiwiss . d2rq . engine . BindingMaker ; import de . fuberlin . wiwiss . d2rq . expr . Disjunction ; import de . fuberlin . wiwiss . d2rq . expr . Expression ; public class CompatibleRelationGroup { public static Collection < CompatibleRelationGroup > groupNodeRelations ( Collection < ? extends NodeRelation > nodeRelations ) { Collection < CompatibleRelationGroup > result = new ArrayList < CompatibleRelationGroup > ( ) ; for ( NodeRelation nodeRelation : nodeRelations ) { addNodeRelation ( nodeRelation , result ) ; } return result ; } private static void addNodeRelation ( NodeRelation nodeRelation , Collection < CompatibleRelationGroup > groups ) { for ( CompatibleRelationGroup group : groups ) { if ( group . isCompatible ( nodeRelation . baseRelation ( ) ) ) { group . addBindingMaker ( nodeRelation . baseRelation ( ) , BindingMaker . createFor ( nodeRelation ) ) ; return ; } } CompatibleRelationGroup newGroup = new CompatibleRelationGroup ( ) ; newGroup . addBindingMaker ( nodeRelation . baseRelation ( ) , BindingMaker . createFor ( nodeRelation ) ) ; groups . add ( newGroup ) ; } private final List < BiningMakerAndCondition > makers = new ArrayList < BiningMakerAndCondition > ( ) ; private Relation firstBaseRelation = null ; private boolean differentConditions = false ; private boolean differentSoftConditions = false ; private boolean allUnique = true ; private int relationCounter = 0 ; private Set < ProjectionSpec > projections = new HashSet < ProjectionSpec > ( ) ; private List < OrderSpec > longestOrderSpecs = new ArrayList < OrderSpec > ( ) ; public boolean isCompatible ( Relation otherRelation ) { if ( firstBaseRelation == null ) { throw new IllegalStateException ( ) ; } if ( firstBaseRelation . database ( ) == null || ! firstBaseRelation . database ( ) . equals ( otherRelation . database ( ) ) ) { return false ; } if ( ! firstBaseRelation . joinConditions ( ) . equals ( otherRelation . joinConditions ( ) ) ) { return false ; } Set < RelationName > firstTables = firstBaseRelation . tables ( ) ; Set < RelationName > secondTables = otherRelation . tables ( ) ; if ( ! firstTables . equals ( secondTables ) ) { return false ; } for ( RelationName tableName : firstTables ) { if ( ! firstBaseRelation . aliases ( ) . originalOf ( tableName ) . equals ( otherRelation . aliases ( ) . originalOf ( tableName ) ) ) { return false ; } } if ( ! firstBaseRelation . projections ( ) . equals ( otherRelation . projections ( ) ) ) { if ( ! firstBaseRelation . isUnique ( ) || ! otherRelation . isUnique ( ) ) { return false ; } } for ( int i = 0 ; i < Math . min ( longestOrderSpecs . size ( ) , otherRelation . orderSpecs ( ) . size ( ) ) ; i ++ ) { if ( ! longestOrderSpecs . get ( i ) . equals ( otherRelation . orderSpecs ( ) . get ( i ) ) ) return false ; } for ( int i = longestOrderSpecs . size ( ) ; i < otherRelation . orderSpecs ( ) . size ( ) ; i ++ ) { longestOrderSpecs . add ( otherRelation . orderSpecs ( ) . get ( i ) ) ; } return true ; } public void addRelation ( Relation relation ) { if ( firstBaseRelation == null ) { firstBaseRelation = relation ; longestOrderSpecs . addAll ( firstBaseRelation . orderSpecs ( ) ) ; } if ( ! relation . condition ( ) . equals ( firstBaseRelation . condition ( ) ) ) { differentConditions = true ; } if ( ! relation . softCondition ( ) . equals ( firstBaseRelation . softCondition ( ) ) ) { differentSoftConditions = true ; } projections . addAll ( relation . | |
1,687 | <s> package org . oddjob . jmx . handlers ; public class OddjobTransportableException extends Exception { private static final long serialVersionUID = 2012032200L ; private final String originalExcpetionClassName ; public OddjobTransportableException ( Throwable t ) { | |
1,688 | <s> package com . asakusafw . yaess . bootstrap ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . File ; import java . io . FileOutputStream ; import java . io . IOException ; import java . io . InputStream ; import java . util . ArrayList ; import java . util . Collections ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Properties ; import java . util . Set ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TemporaryFolder ; import com . asakusafw . yaess . bootstrap . ExecutionTracker . Record ; import com . asakusafw . yaess . bootstrap . Yaess . Configuration ; import com . asakusafw . yaess . bootstrap . Yaess . Mode ; import com . asakusafw . yaess . core . ExecutionLock ; import com . asakusafw . yaess . core . ExecutionPhase ; public class YaessTest { @ Rule public final TemporaryFolder folder = new TemporaryFolder ( ) ; @ Test public void config_batch ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Configuration conf = Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; assertThat ( conf . mode , is ( Mode . BATCH ) ) ; assertThat ( conf . batchId , is ( "tbatch" ) ) ; assertThat ( conf . flowId , is ( nullValue ( ) ) ) ; assertThat ( conf . executionId , is ( nullValue ( ) ) ) ; assertThat ( conf . phase , is ( nullValue ( ) ) ) ; assertThat ( conf . arguments . size ( ) , is ( 0 ) ) ; } @ Test public void config_flow ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Collections . addAll ( arguments , "-flow" , "tflow" ) ; Collections . addAll ( arguments , "-execution" , "texec" ) ; Configuration conf = Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; assertThat ( conf . mode , is ( Mode . FLOW ) ) ; assertThat ( conf . batchId , is ( "tbatch" ) ) ; assertThat ( conf . flowId , is ( "tflow" ) ) ; assertThat ( conf . executionId , is ( "texec" ) ) ; assertThat ( conf . phase , is ( nullValue ( ) ) ) ; assertThat ( conf . arguments . size ( ) , is ( 0 ) ) ; } @ Test public void config_phase ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Collections . addAll ( arguments , "-flow" , "tflow" ) ; Collections . addAll ( arguments , "-execution" , "texec" ) ; Collections . addAll ( arguments , "-phase" , ExecutionPhase . MAIN . getSymbol ( ) ) ; Configuration conf = Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; assertThat ( conf . mode , is ( Mode . PHASE ) ) ; assertThat ( conf . batchId , is ( "tbatch" ) ) ; assertThat ( conf . flowId , is ( "tflow" ) ) ; assertThat ( conf . executionId , is ( "texec" ) ) ; assertThat ( conf . phase , is ( ExecutionPhase . MAIN ) ) ; assertThat ( conf . arguments . size ( ) , is ( 0 ) ) ; } @ Test public void config_arguments ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Collections . addAll ( arguments , "-A" , "a=b" ) ; Collections . addAll ( arguments , "-A" , "c=d" ) ; Collections . addAll ( arguments , "-A" , "e=f" ) ; Configuration conf = Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; assertThat ( conf . mode , is ( Mode . BATCH ) ) ; assertThat ( conf . batchId , is ( "tbatch" ) ) ; assertThat ( conf . flowId , is ( nullValue ( ) ) ) ; assertThat ( conf . executionId , is ( nullValue ( ) ) ) ; assertThat ( conf . phase , is ( nullValue ( ) ) ) ; assertThat ( conf . arguments . size ( ) , is ( 3 ) ) ; assertThat ( conf . arguments . get ( "a" ) , is ( "b" ) ) ; assertThat ( conf . arguments . get ( "c" ) , is ( "d" ) ) ; assertThat ( conf . arguments . get ( "e" ) , is ( "f" ) ) ; } @ Test ( expected = IllegalArgumentException . class ) public void config_invalid_profile ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) + ".MISSING" ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; } @ Test ( expected = IllegalArgumentException . class ) public void config_invalid_script ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) + ".MISSING" ) ; Collections . addAll ( arguments , "-batch" , "tbatch" ) ; Yaess . parseConfiguration ( arguments . toArray ( new String [ arguments . size ( ) ] ) ) ; } @ Test ( expected = IllegalArgumentException . class ) public void config_invalid_phase ( ) throws Exception { ProfileBuilder builder = new ProfileBuilder ( folder . getRoot ( ) ) ; File profile = builder . getProfile ( ) ; File script = builder . getScript ( ) ; List < String > arguments = new ArrayList < String > ( ) ; Collections . addAll ( arguments , "-profile" , profile . getAbsolutePath ( ) ) ; Collections . addAll ( arguments , "-script" , script . getAbsolutePath ( ) ) ; | |
1,689 | <s> package com . asakusafw . utils . java . parser . javadoc ; import com . asakusafw . utils . java . internal . parser . javadoc . ir . IrLocation ; public class IllegalDocCommentFormatException extends JavadocParseException { private static final long serialVersionUID = 1L ; private boolean head ; public IllegalDocCommentFormatException ( boolean head , IrLocation location , Throwable | |
1,690 | <s> package com . asakusafw . windgate . core ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . Properties ; import org . junit . Test ; public class CoreProfileTest { @ Test public void loadFrom ( ) { Properties p = new Properties ( ) ; CoreProfile profile = CoreProfile . loadFrom ( p , ProfileContext . system ( getClass ( ) . getClassLoader ( ) ) ) ; assertThat ( profile . getMaxProcesses ( ) , is ( CoreProfile . DEFAULT_MAX_PROCESSES ) ) ; } @ Test public void loadFrom_configured ( ) { Properties p = new Properties ( ) ; p . setProperty ( CoreProfile . KEY_PREFIX + CoreProfile . KEY_MAX_PROCESSES , "10" ) ; CoreProfile profile = CoreProfile . loadFrom ( p , ProfileContext . system ( getClass ( ) . getClassLoader ( ) ) ) ; assertThat ( profile . getMaxProcesses ( ) , is ( 10 ) ) ; } @ Test ( expected = IllegalArgumentException . class ) public void loadFrom_invalid_maxThreads ( ) { Properties p = new Properties ( ) ; p . setProperty ( CoreProfile . KEY_PREFIX + CoreProfile . KEY_MAX_PROCESSES , "0" ) ; CoreProfile . loadFrom ( p , ProfileContext . system ( getClass ( ) . getClassLoader ( ) ) ) ; } @ Test ( expected = IllegalArgumentException . class ) public void loadFrom_invalid_token ( ) { Properties p = new Properties ( ) ; p . setProperty ( CoreProfile . KEY_PREFIX + CoreProfile . KEY_MAX_PROCESSES , "INVALID" ) ; CoreProfile . loadFrom ( p , ProfileContext . system ( getClass ( ) . getClassLoader ( ) ) ) ; } @ Test public void storeTo ( ) { Properties p = new Properties ( ) ; p . setProperty ( CoreProfile . KEY_PREFIX + CoreProfile . KEY_MAX_PROCESSES , "10" | |
1,691 | <s> package com . asakusafw . utils . java . internal . parser . javadoc . ir ; public enum IrBasicTypeKind { INT , LONG , FLOAT , | |
1,692 | <s> package org . oddjob . schedules ; import java . | |
1,693 | <s> package com . asakusafw . compiler . repository ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . Arrays ; import java . util . Collection ; import java . util . Collections ; import java . util . List ; import java . util . Set ; import org . hamcrest . Matcher ; import org . junit . Rule ; import org . junit . Test ; import com . asakusafw . compiler . batch . AbstractWorkDescriptionProcessor ; import com . asakusafw . compiler . batch . AbstractWorkflowProcessor ; import com . asakusafw . compiler . batch . BatchCompilerEnvironmentProvider ; import com . asakusafw . compiler . batch . WorkDescriptionProcessor ; import com . asakusafw . compiler . batch . Workflow ; import com . asakusafw . compiler . batch . WorkflowProcessor ; import com . asakusafw . compiler . flow . example . SimpleJobFlow ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Sets ; import com . asakusafw . vocabulary . batch . JobFlowWorkDescription ; import com . asakusafw . vocabulary . batch . WorkDescription ; public class SpiWorkflowProcessorRepositoryTest { @ Rule public BatchCompilerEnvironmentProvider prov = new BatchCompilerEnvironmentProvider ( ) ; @ Test public void findWorkflowProcessors_simple ( ) { SpiWorkflowProcessorRepository repo = new SpiWorkflowProcessorRepository ( ) { @ Override protected Iterable < ? extends WorkflowProcessor > loadServices ( ) { return Arrays . asList ( new WorkflowProcessor [ ] { new MockProc1 ( ) , } ) ; } } ; repo . initialize ( prov . getEnvironment ( ) ) ; Set < WorkflowProcessor > processors = repo . findWorkflowProcessors ( set ( new MockDesc1 ( ) ) ) ; assertThat ( classes ( processors ) , contains ( ( Object ) MockProc1 . class ) ) ; } @ Test public void findWorkflowProcessors_multi ( ) { SpiWorkflowProcessorRepository repo = new SpiWorkflowProcessorRepository ( ) { @ Override protected Iterable < ? extends WorkflowProcessor > loadServices ( ) { return Arrays . asList ( new WorkflowProcessor [ ] { new MockProc1 ( ) , new MockProc2 ( ) , } ) ; } } ; repo . initialize ( prov . getEnvironment ( ) ) ; Set < WorkflowProcessor > processors = repo . findWorkflowProcessors ( set ( new MockDesc1 ( ) , new MockDesc2 ( ) ) ) ; assertThat ( classes ( processors ) , contains ( ( Object ) MockProc2 . class ) ) ; } @ Test public void findWorkflowProcessors_super ( ) { SpiWorkflowProcessorRepository repo = new SpiWorkflowProcessorRepository ( ) { @ Override protected Iterable < ? extends WorkflowProcessor > loadServices ( ) { return Arrays . asList ( new WorkflowProcessor [ ] { new MockProc3 ( ) , } ) ; } } ; repo . initialize ( prov . getEnvironment ( ) ) ; Set < WorkflowProcessor > processors = repo . findWorkflowProcessors ( set ( new MockDesc1 ( ) , new MockDesc2 ( ) , new JobFlowWorkDescription ( SimpleJobFlow . class ) ) ) ; assertThat ( classes ( processors ) , contains ( ( Object ) MockProc3 . class ) ) ; } @ Test public void findWorkflowProcessors_containsUnknown ( ) { SpiWorkflowProcessorRepository repo = new SpiWorkflowProcessorRepository ( ) { @ Override protected Iterable < ? extends WorkflowProcessor > loadServices ( ) { return Arrays . asList ( new WorkflowProcessor [ ] { new MockProc1 ( ) , new MockProc2 ( ) , } ) ; } } ; repo . initialize ( prov . getEnvironment ( ) ) ; Set < WorkflowProcessor > processors = repo . findWorkflowProcessors ( set ( new MockDesc1 ( ) , new JobFlowWorkDescription ( SimpleJobFlow . class ) , new MockDesc2 ( ) ) ) ; assertThat ( processors . size ( ) , is ( 0 ) ) ; } @ Test public void findDescriptionProcessor_simple ( ) { SpiWorkflowProcessorRepository repo = new SpiWorkflowProcessorRepository ( ) { @ Override protected Iterable < ? extends WorkflowProcessor > loadServices ( ) { return Arrays . asList ( new WorkflowProcessor [ | |
1,694 | <s> package com . asakusafw . compiler . fileio . model ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . IOException ; import org . apache . hadoop . io . Text ; import org . apache . hadoop . io . Writable ; import com . asakusafw . compiler . fileio . io . Ex1Input ; import com . asakusafw . compiler . fileio . io . Ex1Output ; import com . asakusafw . runtime . model . DataModel ; import com . asakusafw . runtime . model . DataModelKind ; import com . asakusafw . runtime . model . ModelInputLocation ; import com . asakusafw . runtime . model . ModelOutputLocation ; import com . asakusafw . runtime . value . IntOption ; import com . asakusafw . runtime . value . LongOption ; import com . asakusafw . runtime . value . StringOption ; @ DataModelKind ( "DMDL" ) @ ModelInputLocation ( Ex1Input . class ) @ ModelOutputLocation ( Ex1Output . class ) public class Ex1 implements DataModel < Ex1 > , Writable { private final LongOption sid = new LongOption ( ) ; private final IntOption value = new IntOption ( ) ; private final StringOption string = new StringOption ( ) ; @ Override @ SuppressWarnings ( "deprecation" ) public void reset ( ) { this . sid . setNull ( ) ; this . value . setNull ( ) ; this . string . setNull ( ) ; } @ Override @ SuppressWarnings ( "deprecation" ) public void copyFrom ( Ex1 other ) { this . sid . copyFrom ( other . sid ) ; this . value . copyFrom ( other . value ) ; this . string . copyFrom ( other . string ) ; } public long getSid ( ) { return this . sid . get ( ) ; } @ SuppressWarnings ( "deprecation" ) public void setSid ( long value0 ) { this . sid . modify ( value0 ) ; } public LongOption getSidOption ( ) { return this . sid ; } @ SuppressWarnings ( "deprecation" ) public void setSidOption ( LongOption option ) { this . sid . copyFrom ( option ) ; } public int getValue ( ) { return this . value . get ( ) ; } @ SuppressWarnings ( "deprecation" ) public void setValue ( int value0 ) { this . value | |
1,695 | <s> package org . rubypeople . rdt . refactoring . tests . core . encapsulatefield ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . eclipse . jface . text . BadLocationException ; import org . rubypeople . rdt . refactoring . core . encapsulatefield . EncapsulateFieldConditionChecker ; import org . rubypeople . rdt . refactoring . core . encapsulatefield . EncapsulateFieldConfig ; import org . rubypeople . rdt . refactoring . core . encapsulatefield . FieldEncapsulator ; import org . rubypeople . rdt . refactoring . nodewrapper . VisibilityNodeWrapper . METHOD_VISIBILITY ; import org . rubypeople . rdt . refactoring . tests . FileTestData ; import org . rubypeople . rdt . refactoring . tests . RefactoringTestCase ; public class EncapsulateFieldTester extends RefactoringTestCase { public EncapsulateFieldTester ( String fileName ) { super ( fileName ) ; } | |
1,696 | <s> package org . oddjob . jmx . handlers ; import java . lang . reflect . UndeclaredThrowableException ; import javax . management . MBeanAttributeInfo ; import javax . management . MBeanException ; import javax . management . MBeanNotificationInfo ; import javax . management . MBeanOperationInfo ; import javax . management . ReflectionException ; import org . oddjob . jmx . RemoteOperation ; import org . oddjob . jmx . SharedConstants ; import org . oddjob . jmx . client . ClientHandlerResolver ; import org . oddjob . jmx . client . ClientInterfaceHandlerFactory ; import org . oddjob . jmx . client . ClientSideToolkit ; import org . oddjob . jmx . client . HandlerVersion ; import org . oddjob . jmx . client . LogPollable ; import org . oddjob . jmx . client . SimpleHandlerResolver ; import org . oddjob . jmx . server . JMXOperationPlus ; import org . oddjob . jmx . server . LogArchiverHelper ; import org . oddjob . jmx . server . ServerContext ; import org . oddjob . jmx . server . ServerInterfaceHandler ; import org . oddjob . jmx . server . ServerInterfaceHandlerFactory ; import org . oddjob . jmx . server . ServerSideToolkit ; import org . oddjob . logging . LogEvent ; public class LogPollableHandlerFactory implements ServerInterfaceHandlerFactory < Object , LogPollable > { public static final HandlerVersion VERSION = new HandlerVersion ( 1 , 0 ) ; private static final JMXOperationPlus < String > CONSOLE_ID = new JMXOperationPlus < String > ( "consoleId" , "Console ID" , String . class , MBeanOperationInfo . INFO ) ; private static final JMXOperationPlus < String > URL = new JMXOperationPlus < String > ( "url" , "Remote URL" , String . class , MBeanOperationInfo . INFO ) ; private static final JMXOperationPlus < LogEvent [ ] > RETRIEVE_CONSOLE_EVENTS = new JMXOperationPlus < LogEvent [ ] > ( SharedConstants . RETRIEVE_CONSOLE_EVENTS_METHOD , "" , LogEvent [ ] . class , MBeanOperationInfo . INFO ) . addParam ( "seqNum" , Long . TYPE , "" ) . addParam ( "history" , Integer . TYPE , "History" ) ; private static final JMXOperationPlus < LogEvent [ ] > RETRIEVE_LOG_EVENTS = new JMXOperationPlus < LogEvent [ ] > ( SharedConstants . RETRIEVE_LOG_EVENTS_METHOD , "" , LogEvent [ ] . class , MBeanOperationInfo . INFO ) . addParam ( "seqNum" , Long . TYPE , "" ) . addParam ( "history" , Integer . TYPE , "History" ) ; public Class < Object > interfaceClass ( ) { return Object . class ; } public MBeanAttributeInfo [ ] getMBeanAttributeInfo ( ) { return new MBeanAttributeInfo [ 0 ] ; } public MBeanOperationInfo [ ] getMBeanOperationInfo ( ) { return new MBeanOperationInfo [ ] { CONSOLE_ID . getOpInfo ( ) , URL . getOpInfo ( ) , RETRIEVE_CONSOLE_EVENTS . getOpInfo ( ) , RETRIEVE_LOG_EVENTS . getOpInfo ( ) } ; } public MBeanNotificationInfo [ ] getMBeanNotificationInfo ( ) { return new MBeanNotificationInfo [ 0 ] ; } public ServerInterfaceHandler createServerHandler ( Object target , ServerSideToolkit ojmb ) { return new ServerLogPollableHandler ( target , ojmb ) ; } public ClientHandlerResolver < LogPollable > clientHandlerFactory ( ) { return new SimpleHandlerResolver < LogPollable > ( ClientLogPollableHandlerFactory . class . getName ( ) , VERSION ) ; } public static class ClientLogPollableHandlerFactory implements ClientInterfaceHandlerFactory < LogPollable > { public Class < LogPollable > interfaceClass ( ) { return LogPollable . class ; } public HandlerVersion getVersion ( ) { return VERSION ; } public LogPollable createClientHandler ( LogPollable ignored , ClientSideToolkit toolkit ) { return new ClientLogPollableHandler ( toolkit ) ; } } static class ClientLogPollableHandler implements LogPollable { private final String consoleId ; private final String url ; private final ClientSideToolkit toolkit ; ClientLogPollableHandler ( ClientSideToolkit toolkit ) { this . toolkit = toolkit ; try { consoleId = ( String ) toolkit . invoke ( CONSOLE_ID ) ; url = ( String ) toolkit . invoke ( URL ) ; } catch ( Throwable t ) { throw new UndeclaredThrowableException ( t ) ; } } public String consoleId ( ) { return consoleId ; } public String url ( ) { return url ; } public LogEvent [ ] retrieveConsoleEvents ( long from , int | |
1,697 | <s> package org . rubypeople . rdt . refactoring . core . inlinemethod ; import java . util . ArrayList ; import java . util . Collection ; import org . jruby . ast . FCallNode ; import org . jruby . ast . InstAsgnNode ; import org . jruby . ast . InstVarNode ; import org . jruby . ast . Node ; import org . jruby . ast . ReturnNode ; import org . jruby . ast . SelfNode ; import org . jruby . ast . VCallNode ; import org . jruby . ast . types . INameNode ; import org . rubypeople . rdt . refactoring . classnodeprovider . IncludedClassesProvider ; import org . rubypeople . rdt . refactoring . core . NodeProvider ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentProvider ; import org . rubypeople . rdt . refactoring . documentprovider . StringDocumentProvider ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodCallNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodNodeWrapper ; public class MethodBodyStatementReplacer implements IMethodBodyStatementReplacer { public DocumentProvider replaceSelfWithObject ( final DocumentProvider doc , final String object ) { Collection < Node > selfNodes = null ; DocumentProvider result = new StringDocumentProvider ( doc ) ; do { selfNodes = NodeProvider . gatherNodesOfTypeInAktScopeNode ( result . getActiveFileRootNode ( ) . getBodyNode ( ) , SelfNode . class ) ; if ( selfNodes . isEmpty ( ) ) { continue ; } final SelfNode node = ( SelfNode ) selfNodes . iterator ( ) . next ( ) ; StringBuilder tempResult = new StringBuilder ( ) ; tempResult . append ( result . getActiveFileContent ( ) . substring ( 0 , node . getPosition ( ) . getStartOffset ( ) ) ) ; tempResult . append ( object ) ; tempResult . append ( result . getActiveFileContent ( ) . substring ( node . getPosition ( ) . getEndOffset ( ) ) ) ; result = new StringDocumentProvider ( "part_of_" + doc . getActiveFileName ( ) , tempResult . toString ( ) ) ; } while ( ! selfNodes . isEmpty ( ) ) ; return result ; } public DocumentProvider replaceVarsWithAccessor ( DocumentProvider doc , String object , Collection < String > usedMembers ) { DocumentProvider result = new StringDocumentProvider ( doc ) ; Collection < Node > varNodes = null ; do { varNodes = NodeProvider . gatherNodesOfTypeInAktScopeNode ( result . getActiveFileRootNode ( ) . getBodyNode ( ) , InstVarNode . class , InstAsgnNode . class ) ; for ( Node actVarNode : new ArrayList < Node > ( varNodes ) ) { if ( ( ( INameNode ) actVarNode ) . getName ( ) . equals ( object ) ) { varNodes . remove ( actVarNode ) ; } } if ( varNodes . isEmpty ( ) ) { continue ; } final Node varNode = varNodes . iterator ( ) . next ( ) ; String name = ( ( INameNode ) varNode ) . getName ( ) ; usedMembers . add ( name ) ; StringBuilder src = new StringBuilder ( result . getActiveFileContent ( ) ) ; src . replace ( varNode . getPosition ( ) . getStartOffset ( ) , varNode . getPosition ( ) . getStartOffset ( ) + name . length ( ) , object + '.' + name . substring ( 1 ) ) ; result = new StringDocumentProvider | |
1,698 | <s> package org . rubypeople . rdt . internal . ui . text . ruby ; import org . eclipse . jface . text . Assert ; import org . eclipse . jface . text . IDocument ; import org . eclipse . swt . graphics . Image ; public class RubyCompletionProposal extends AbstractRubyCompletionProposal { public RubyCompletionProposal ( String replacementString , int replacementOffset , int replacementLength , Image image , String displayString , int relevance ) { this ( replacementString , replacementOffset , | |
1,699 | <s> package test . modelgen . table . io ; import java . io . IOException ; import javax . annotation . Generated ; import test . modelgen . table . model . TempImportTarget2Df ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . RecordEmitter ; @ Generated ( "" ) @ SuppressWarnings ( "deprecation" ) public final class TempImportTarget2DfModelOutput implements ModelOutput < TempImportTarget2Df > { private |
Subsets and Splits