id
int32
0
3k
input
stringlengths
43
33.8k
gt
stringclasses
1 value
2,000
<s> package de . fuberlin . wiwiss . d2rq . algebra ; import java . util . Collections ; import java . util . List ; import de . fuberlin . wiwiss . d2rq . expr . Expression ; import de . fuberlin . wiwiss . d2rq . sql . ConnectedDB ; public class OrderSpec { public final static List < OrderSpec > NONE = Collections . emptyList ( ) ; private Expression expression ; private boolean ascending ; public OrderSpec ( Expression expression ) { this ( expression , true ) ; } public OrderSpec ( Expression expression , boolean ascending ) { this . expression =
2,001
<s> package org . oddjob . values ; import java . io . Serializable ; import java . util . ArrayList ; import java . util . LinkedHashMap ; import java . util . List ; import java . util . Map ; import org . apache . commons . beanutils . ConversionException ; import org . apache . commons . beanutils . DynaBean ; import org . apache . commons . beanutils . DynaClass ; import org . apache . commons . beanutils . DynaProperty ; import org . apache . commons . beanutils . LazyDynaBean ; import org . apache . commons . beanutils . LazyDynaMap ; import org . apache . commons . beanutils . MutableDynaClass ; import org . oddjob . arooa . ArooaConstants ; import org . oddjob . arooa . ArooaValue ; import org . oddjob . arooa . beanutils . BeanUtilsPropertyAccessor ; import org . oddjob . framework . SimpleJob ; public class VariablesJob extends SimpleJob implements DynaBean { private final Map < String , Object > values = new LinkedHashMap < String , Object > ( ) ; private final LazyDynaBean dynaBean = new LazyDynaMap ( values ) ; private final MutableDynaClass dynaClass = new VariablesDynaClass ( dynaBean ) ; public void setValue ( String name , ArooaValue value ) { logger ( ) . debug ( "Setting [" + name + "] = [" + value + "]" ) ; dynaBean . set ( name , value ) ; } protected int execute ( ) throws Exception { return 0 ; } @ Override protected void onReset ( ) { List < String > keySet = new ArrayList < String > ( values . keySet ( ) ) ; for ( String name : keySet ) { if ( ArooaConstants . ID_PROPERTY . equals ( name ) ) { continue ; } values . remove ( name ) ; dynaClass . remove ( name ) ; } } public boolean contains ( String name , String key ) { return dynaBean . contains ( name ,
2,002
<s> package org . rubypeople . rdt . internal . core ; import java . util . ArrayList ; import org . eclipse . core . resources . IContainer ; import org . eclipse . core . resources . IResource ; import org . eclipse . core . runtime . Path ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyModelStatus ; import org . rubypeople . rdt . core . IRubyModelStatusConstants ; import org . rubypeople . rdt . core . IRubyProject ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . RubyConventions ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . internal . core . util . CharOperation ; import org . rubypeople . rdt . internal . core . util . Messages ; import org . rubypeople . rdt . internal . core . util . Util ; public class CreateSourceFolderOperation extends RubyModelOperation { protected String [ ] pkgName ; public CreateSourceFolderOperation ( SourceFolderRoot root , String packageName , boolean force ) { super ( null , new IRubyElement [ ] { root } , force ) ; this . pkgName = packageName == null ? null : Util . getTrimmedSimpleNames ( packageName ) ; } protected void executeOperation ( ) throws RubyModelException { RubyElementDelta delta = null ; SourceFolderRoot root = ( SourceFolderRoot ) getParentElement ( ) ; beginTask ( Messages . operation_createPackageFragmentProgress , this . pkgName . length ) ; IContainer parentFolder = ( IContainer ) root . getResource ( ) ; String [ ] sideEffectPackageName = CharOperation . NO_STRINGS ; ArrayList results = new ArrayList ( this . pkgName . length ) ; int i ; for ( i = 0 ; i < this . pkgName . length ; i ++ ) { String subFolderName = this . pkgName [ i ] ; sideEffectPackageName = Util . arrayConcat ( sideEffectPackageName , subFolderName ) ; IResource subFolder = parentFolder . findMember ( subFolderName ) ; if ( subFolder == null ) { createFolder ( parentFolder , subFolderName , force ) ; parentFolder = parentFolder . getFolder ( new Path ( subFolderName ) ) ; ISourceFolder addedFrag = root . getSourceFolder ( sideEffectPackageName ) ; if ( delta == null ) { delta = newRubyElementDelta ( ) ; } delta . added ( addedFrag ) ; results . add ( addedFrag ) ; } else { parentFolder = ( IContainer ) subFolder ; } worked ( 1 ) ; } if ( results . size ( ) > 0 ) { this . resultElements =
2,003
<s> package org . rubypeople . rdt . internal . launching ; import java . io . File ; import java . text . MessageFormat ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . eclipse . core . runtime . IPath ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Path ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . osgi . service . environment . Constants ; import org . rubypeople . rdt . core . util . Util ; import org . rubypeople . rdt . launching . AbstractVMInstallType ; import org . rubypeople . rdt . launching . IVMInstall ; public class StandardVMType extends AbstractVMInstallType { private static final String DEFAULT_MAJOR_MINOR_VERSION = "1.8" ; private static final String DEFAULT_VERSION = "1.8.6" ; private static final String USR = "/usr" ; private static final String USR_BIN_RUBY = USR + "/bin/ruby" ; private static final String USR_LOCAL_BIN_RUBY = "" ; private static final String OPT_LOCAL_BIN_RUBY = "" ; private static final String MAC_OSX_LEOPARD_RUBY_PATH = "" ; private static Map < String , LibraryInfo > fgFailedInstallPath = new HashMap < String , LibraryInfo > ( ) ; private static final char fgSeparator = File . separatorChar ; private static final String [ ] fgCandidateRubyFiles = { "rubyw" , "rubyw.exe" , "ruby" , "ruby.exe" } ; private static final String [ ] fgCandidateRubyLocations = { "" , "bin" + fgSeparator } ; @ Override protected IVMInstall doCreateVMInstall ( String id ) { return new StandardVM ( this , id ) ; } public IPath [ ] getDefaultLibraryLocations ( File installLocation ) { File rubyExecutable = findRubyExecutable ( installLocation ) ; LibraryInfo info ; if ( rubyExecutable == null ) { LaunchingPlugin . logInfo ( "" + installLocation ) ; info = getDefaultLibraryInfo ( installLocation ) ; } else { info = getLibraryInfo ( installLocation , rubyExecutable ) ; } String [ ] loadpath = info . getBootpath ( ) ; IPath [ ] paths = new IPath [ loadpath . length ] ; for ( int i = 0 ; i < loadpath . length ; i ++ ) { paths [ i ] = new Path ( loadpath [ i ] ) ; } return paths ; } public String getName ( ) { return LaunchingMessages . StandardVMType_Standard_VM_3 ; } public IStatus validateInstallLocation ( File rubyHome ) { IStatus status = null ; File rubyExecutable = findRubyExecutable ( rubyHome ) ; if ( rubyExecutable == null ) { status = new Status ( IStatus . ERROR , LaunchingPlugin . getUniqueIdentifier ( ) , 0 , LaunchingMessages . StandardVMType_Not_a_JDK_Root__Java_executable_was_not_found_1 , null ) ; } else { if ( canDetectDefaultSystemLibraries ( rubyHome , rubyExecutable ) ) { status = new Status ( IStatus . OK , LaunchingPlugin . getUniqueIdentifier ( ) , 0 ,
2,004
<s> package net . sf . sveditor . core . db . persistence ; import java . lang . reflect . Field ; import java . lang . reflect . Modifier ; import java . lang . reflect . ParameterizedType ; import java . lang . reflect . Type ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import java . util . Set ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . SVDBLocation ; import net . sf . sveditor . core . db . attr . SVDBDoNotSaveAttr ; import net . sf . sveditor . core . db . attr . SVDBParentAttr ; import net . sf . sveditor . core . db . index . SVDBArgFileIndexCacheData ; import net . sf . sveditor . core . db . index . SVDBBaseIndexCacheData ; import net . sf . sveditor . core . db . index . SVDBDeclCacheItem ; import net . sf . sveditor . core . db . index . SVDBFileTree ; import net . sf . sveditor . core . db . refs . SVDBRefCacheEntry ; import org . objectweb . asm . ClassWriter ; import org . objectweb . asm . Label ; import org . objectweb . asm . MethodVisitor ; import org . objectweb . asm . Opcodes ; @ SuppressWarnings ( { "rawtypes" , "unchecked" } ) public class JITPersistenceDelegateFactory implements Opcodes { private static JITPersistenceDelegateFactory fInstance ; private Class < JITPersistenceDelegateBase > fDelegateCls ; private String fTargetPkg ; private List < String > fTargetPkgList ; private Map < SVDBItemType , Class > fTypeClassMap ; private List < Class > fClassList ; private Set < Class > fClassSet ; private static final String fBaseClass = getClassName ( JITPersistenceDelegateBase . class ) ; private static final String fPersistenceDelegateParentClass = getClassName ( ISVDBPersistenceRWDelegateParent . class ) ; private static final String fChildItem = "" ; private static final String fDBFormatException = "" ; private static final String fDBWriteException = "" ; private static final String WRITE_ENUM_TYPE_SIG = "" ; private static final String READ_ENUM_TYPE_SIG = "" ; private static final String WRITE_STRING_SIG = "" ; private static final String READ_STRING_SIG = "" ; private static final String WRITE_LOCATION_SIG = "" ; private static final String READ_LOCATION_SIG = "" ; private static final String READ_LIST_SIG = "" ; private static final String WRITE_LIST_SIG = "" ; private static final String READ_SET_SIG = "" ; private static final String WRITE_SET_SIG = "" ; private static final String READ_ITEM_LIST_SIG = "(L" + fChildItem + "" ; private static final String WRITE_INT_SIG = "(I)V" ; private static final String READ_INT_SIG = "()I" ; private static final String WRITE_LONG_SIG = "(J)V" ; private static final String READ_LONG_SIG = "()J" ; private static final String WRITE_BOOL_SIG = "(Z)V" ; private static final String READ_BOOL_SIG = "()Z" ; private static final String WRITE_ITEM_SIG = "" ; private static final String READ_ITEM_SIG = "(L" + getClassName ( ISVDBChildItem . class ) + "" ; private static final String WRITE_MAP_SIG = "" ; private static final String READ_MAP_SIG = "" ; private boolean fDebugEn = false ; private int fLevel ; private static final int THIS_VAR = 0 ; private static final int READ_PARENT_VAR = 1 ; private static final int READ_OBJ_VAR = 2 ; private static final int WRITE_OBJ_VAR = 1 ; private class JITClassLoader extends ClassLoader { private byte fClassBytes [ ] ; private Class < JITPersistenceDelegateBase > fCls ; JITClassLoader ( ClassLoader parent , byte class_bytes [ ] ) { super ( parent ) ; fClassBytes = class_bytes ; } @ Override protected Class < ? > findClass ( String name ) throws ClassNotFoundException { if ( name . equals ( fTargetPkg + "" ) ) { if ( fCls == null ) { fCls = ( Class < JITPersistenceDelegateBase > ) defineClass ( name , fClassBytes , 0 , fClassBytes . length ) ; } return fCls ; } return super . findClass ( name ) ; } } private JITPersistenceDelegateFactory ( ) { fTypeClassMap = new HashMap < SVDBItemType , Class > ( ) ; fClassList = new ArrayList < Class > ( ) ; fClassSet = new HashSet < Class > ( ) ; fTargetPkg = "" ; fTargetPkgList = new ArrayList < String > ( ) ; fTargetPkgList . add ( "" ) ; fTargetPkgList . add ( "" ) ; fTargetPkgList . add ( "" ) ; fClassList . add ( SVDBFile . class ) ; fClassList . add ( SVDBFileTree . class ) ; fClassList . add ( SVDBBaseIndexCacheData . class ) ; fClassList . add ( SVDBArgFileIndexCacheData . class ) ; fClassList . add ( SVDBDeclCacheItem . class ) ; fClassList . add ( SVDBRefCacheEntry . class ) ; fClassSet . addAll ( fClassList ) ; } private void build ( ) { ClassWriter cw = new ClassWriter ( 0 ) ; final ClassLoader cl = getClass ( ) . getClassLoader ( ) ; for ( SVDBItemType t : SVDBItemType . values ( ) ) { Class cls = null ; for ( String pkg : fTargetPkgList ) { try { cls = cl . loadClass ( pkg + ".SVDB" + t . name ( ) ) ; } catch ( Exception e ) { } if ( cls != null ) { break ; } } if ( cls != null ) { fTypeClassMap . put ( t , cls ) ; } else { System . out . println ( "" + t . name ( ) ) ; } } long start = System . currentTimeMillis ( ) ; build_boilerplate ( cw ) ; for ( SVDBItemType t : fTypeClassMap . keySet ( ) ) { Class cls = fTypeClassMap . get ( t ) ; buildItemAccessor ( cw , t , cls ) ; } for ( Class c : fClassList ) { buildObjectAccessor ( cw , c ) ; } cw . visitEnd ( ) ; JITClassLoader jit_cl = new JITClassLoader ( cl , cw . toByteArray ( ) ) ; try { fDelegateCls = ( Class < JITPersistenceDelegateBase > ) jit_cl . loadClass ( fTargetPkg + "" ) ; } catch ( Exception e ) { e . printStackTrace ( ) ; } long end = System . currentTimeMillis ( ) ; System . out . println ( "" + ( end - start ) ) ; System . out . println ( "Size: " + cw . toByteArray ( ) . length ) ; } private void build_boilerplate ( ClassWriter cw ) { String classname = "" ; String full_classname = transform_cls ( fTargetPkg ) + "/" + classname ; cw . visit ( Opcodes . V1_5 , ACC_PROTECTED + ACC_PUBLIC + ACC_SUPER , full_classname , null , fBaseClass , null ) ; cw . visitSource ( classname + ".java" , null ) ; MethodVisitor mv ; mv = cw . visitMethod ( ACC_PUBLIC , "<init>" , "()V" , null , null ) ; mv . visitCode ( ) ; mv . visitVarInsn ( ALOAD , 0 ) ; mv . visitMethodInsn ( INVOKESPECIAL , fBaseClass , "<init>" , "()V" ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 1 , 1 ) ; mv . visitEnd ( ) ; buildItemDispatchMethods ( cw ) ; buildObjectDispatchMethods ( cw ) ; } private void buildItemDispatchMethods ( ClassWriter cw ) { String classname = "" ; String full_classname = transform_cls ( fTargetPkg ) + "/" + classname ; Label labels [ ] = new Label [ SVDBItemType . values ( ) . length ] ; int indexes [ ] = new int [ SVDBItemType . values ( ) . length ] ; Label dflt , endcase ; for ( int i = 0 ; i < SVDBItemType . values ( ) . length ; i ++ ) { indexes [ i ] = i ; } MethodVisitor mv = cw . visitMethod ( ACC_PUBLIC , "" , "(L" + getClassName ( ISVDBItemBase . class ) + ";)V" , null , new String [ ] { fDBWriteException } ) ; for ( int i = 0 ; i < SVDBItemType . values ( ) . length ; i ++ ) { labels [ i ] = new Label ( ) ; } dflt = new Label ( ) ; endcase = new Label ( ) ; mv . visitVarInsn ( ALOAD , WRITE_OBJ_VAR ) ; mv . visitMethodInsn ( INVOKEINTERFACE , getClassName ( ISVDBItemBase . class ) , "getType" , "()L" + getClassName ( SVDBItemType . class ) + ";" ) ; mv . visitMethodInsn ( INVOKEVIRTUAL , getClassName ( SVDBItemType . class ) , "ordinal" , "()I" ) ; mv . visitLookupSwitchInsn ( dflt , indexes , labels ) ; for ( SVDBItemType t : SVDBItemType . values ( ) ) { Class c = fTypeClassMap . get ( t ) ; mv . visitLabel ( labels [ t . ordinal ( ) ] ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , WRITE_OBJ_VAR ) ; mv . visitTypeInsn ( CHECKCAST , getClassName ( c ) ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "write" + t . name ( ) , "(L" + getClassName ( c ) + ";)V" ) ; mv . visitJumpInsn ( GOTO , endcase ) ; } mv . visitLabel ( dflt ) ; mv . visitLabel ( endcase ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 16 , 16 ) ; mv . visitEnd ( ) ; mv = cw . visitMethod ( ACC_PUBLIC , "readSVDBItem" , "(L" + getClassName ( SVDBItemType . class ) + ";L" + getClassName ( ISVDBChildItem . class ) + ";)L" + getClassName ( ISVDBItemBase . class ) + ";" , null , new String [ ] { fDBWriteException } ) ; for ( int i = 0 ; i < SVDBItemType . values ( ) . length ; i ++ ) { labels [ i ] = new Label ( ) ; } dflt = new Label ( ) ; endcase = new Label ( ) ; mv . visitVarInsn ( ALOAD , 1 ) ; mv . visitMethodInsn ( INVOKEVIRTUAL , getClassName ( SVDBItemType . class ) , "ordinal" , "()I" ) ; mv . visitLookupSwitchInsn ( dflt , indexes , labels ) ; for ( SVDBItemType t : SVDBItemType . values ( ) ) { Class c = fTypeClassMap . get ( t ) ; mv . visitLabel ( labels [ t . ordinal ( ) ] ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , 2 ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "read" + t . name ( ) , "(L" + getClassName ( ISVDBChildItem . class ) + ";)" + "L" + getClassName ( c ) + ";" ) ; mv . visitJumpInsn ( GOTO , endcase ) ; } mv . visitLabel ( dflt ) ; mv . visitInsn ( ACONST_NULL ) ; mv . visitLabel ( endcase ) ; mv . visitInsn ( ARETURN ) ; mv . visitMaxs ( 16 , 16 ) ; mv . visitEnd ( ) ; } private void buildObjectDispatchMethods ( ClassWriter cw ) { String classname = "" ; String full_classname = transform_cls ( fTargetPkg ) + "/" + classname ; int idx ; Label labels [ ] = new Label [ fClassList . size ( ) ] ; int indexes [ ] = new int [ fClassList . size ( ) ] ; Label dflt , endcase ; for ( int i = 0 ; i < fClassList . size ( ) ; i ++ ) { indexes [ i ] = i ; } MethodVisitor mv = cw . visitMethod ( ACC_PUBLIC , "writeObject" , "(L" + getClassName ( Class . class ) + ";" + "L" + getClassName ( Object . class ) + ";)V" , null , new String [ ] { fDBWriteException } ) ; for ( int i = 0 ; i < fClassList . size ( ) ; i ++ ) { labels [ i ] = new Label ( ) ; } dflt = new Label ( ) ; endcase = new Label ( ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitFieldInsn ( GETFIELD , fBaseClass , "" , "L" + getClassName ( List . class ) + ";" ) ; mv . visitVarInsn ( ALOAD , 1 ) ; mv . visitMethodInsn ( INVOKEINTERFACE , getClassName ( List . class ) , "indexOf" , "(L" + getClassName ( Object . class ) + ";)I" ) ; mv . visitLookupSwitchInsn ( dflt , indexes , labels ) ; idx = 0 ; for ( Class c : fClassList ) { mv . visitLabel ( labels [ idx ] ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , 2 ) ; mv . visitTypeInsn ( CHECKCAST , getClassName ( c ) ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "write" + getClassLeafName ( c ) , "(L" + getClassName ( c ) + ";)V" ) ; mv . visitJumpInsn ( GOTO , endcase ) ; idx ++ ; } mv . visitLabel ( dflt ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , 2 ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "" , "(L" + getClassName ( Object . class ) + ";)V" ) ; mv . visitLabel ( endcase ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 16 , 16 ) ; mv . visitEnd ( ) ; mv = cw . visitMethod ( ACC_PUBLIC , "readObject" , "(L" + getClassName ( ISVDBChildItem . class ) + ";" + "L" + getClassName ( Class . class ) + ";" + "L" + getClassName ( Object . class ) + ";)V" , null , new String [ ] { fDBWriteException } ) ; for ( int i = 0 ; i < fClassList . size ( ) ; i ++ ) { labels [ i ] = new Label ( ) ; } dflt = new Label ( ) ; endcase = new Label ( ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitFieldInsn ( GETFIELD , fBaseClass , "" , "L" + getClassName ( List . class ) + ";" ) ; mv . visitVarInsn ( ALOAD , 2 ) ; mv . visitMethodInsn ( INVOKEINTERFACE , getClassName ( List . class ) , "indexOf" , "(L" + getClassName ( Object . class ) + ";)I" ) ; mv . visitLookupSwitchInsn ( dflt , indexes , labels ) ; idx = 0 ; for ( Class c : fClassList ) { mv . visitLabel ( labels [ idx ] ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , 1 ) ; mv . visitVarInsn ( ALOAD , 3 ) ; mv . visitTypeInsn ( CHECKCAST , getClassName ( c ) ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "read" + getClassLeafName ( c ) , "(L" + getClassName ( ISVDBChildItem . class ) + ";" + "L" + getClassName ( c ) + ";)V" ) ; mv . visitJumpInsn ( GOTO , endcase ) ; idx ++ ; } mv . visitLabel ( dflt ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitVarInsn ( ALOAD , 3 ) ; mv . visitMethodInsn ( INVOKESPECIAL , full_classname , "" , "(L" + getClassName ( Object . class ) + ";)V" ) ; mv . visitLabel ( endcase ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 4 , 4 ) ; mv . visitEnd ( ) ; } private void buildObjectAccessor ( ClassWriter cw , Class cls ) { MethodVisitor mv ; if ( fDebugEn ) { debug ( "" + cls . getName ( ) ) ; } String tgt_clsname = getClassName ( cls ) ; String cls_name = getClassLeafName ( cls ) ; mv = cw . visitMethod ( ACC_PRIVATE , "read" + cls_name , "(L" + fChildItem + ";" + "L" + tgt_clsname + ";)V" , null , new String [ ] { fDBFormatException } ) ; mv . visitCode ( ) ; visit ( false , tgt_clsname , mv , cls ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 3 , 3 ) ; mv . visitEnd ( ) ; mv = cw . visitMethod ( ACC_PRIVATE , "write" + cls_name , "(L" + tgt_clsname + ";)V" , null , new String [ ] { fDBWriteException } ) ; mv . visitCode ( ) ; visit ( true , tgt_clsname , mv , cls ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 3 , 3 ) ; mv . visitEnd ( ) ; if ( fDebugEn ) { debug ( "" + cls . getName ( ) ) ; } } private void buildItemAccessor ( ClassWriter cw , SVDBItemType t , Class cls ) { MethodVisitor mv ; if ( fDebugEn ) { debug ( "" + t . name ( ) + " cls=" + cls . getName ( ) ) ; } String item_name = t . name ( ) ; String tgt_clsname = getClassName ( cls ) ; mv = cw . visitMethod ( ACC_PRIVATE , "read" + item_name , "(L" + fChildItem + ";)L" + tgt_clsname + ";" , null , new String [ ] { fDBFormatException } ) ; mv . visitCode ( ) ; mv . visitTypeInsn ( NEW , tgt_clsname ) ; mv . visitInsn ( DUP ) ; mv . visitMethodInsn ( INVOKESPECIAL , tgt_clsname , "<init>" , "()V" ) ; mv . visitVarInsn ( ASTORE , READ_OBJ_VAR ) ; visit ( false , tgt_clsname , mv , cls ) ; mv . visitVarInsn ( ALOAD , READ_OBJ_VAR ) ; mv . visitInsn ( ARETURN ) ; mv . visitMaxs ( 3 , 3 ) ; mv . visitEnd ( ) ; mv = cw . visitMethod ( ACC_PRIVATE , "write" + item_name , "(L" + tgt_clsname + ";)V" , null , new String [ ] { fDBWriteException } ) ; mv . visitCode ( ) ; visit ( true , tgt_clsname , mv , cls ) ; mv . visitInsn ( RETURN ) ; mv . visitMaxs ( 3 , 3 ) ; mv . visitEnd ( ) ; if ( fDebugEn ) { debug ( "" + t + " cls=" + cls . getName ( ) ) ; } } protected void visit ( boolean write , String tgt_classname , MethodVisitor mv , Class cls ) { if ( fDebugEn ) { debug ( "--> " + ( ++ fLevel ) + "" + cls . getName ( ) ) ; } if ( cls . getSuperclass ( ) != null && cls . getSuperclass ( ) != Object . class ) { String tgt_super_classname = getClassName ( cls . getSuperclass ( ) ) ; visit ( write , tgt_super_classname , mv , cls . getSuperclass ( ) ) ; } Field fields [ ] = cls . getDeclaredFields ( ) ; for ( Field f : fields ) { Class field_class = f . getType ( ) ; String field_classname = getClassName ( field_class ) ; if ( ! Modifier . isStatic ( f . getModifiers ( ) ) ) { if ( f . getAnnotation ( SVDBParentAttr . class ) != null ) { if ( ! write ) { mv . visitVarInsn ( ALOAD , READ_OBJ_VAR ) ; mv . visitVarInsn ( ALOAD , READ_PARENT_VAR ) ; mv . visitFieldInsn ( PUTFIELD , tgt_classname , f . getName ( ) , "L" + field_classname + ";" ) ; } continue ; } if ( f . getAnnotation ( SVDBDoNotSaveAttr . class ) != null ) { continue ; } if ( ( f . getModifiers ( ) & Modifier . PUBLIC ) == 0 ) { throw new RuntimeException ( "" + tgt_classname + "." + f . getName ( ) ) ; } try { if ( Enum . class . isAssignableFrom ( field_class ) ) { if ( fDebugEn ) { debug ( " " + fLevel + " Field " + f . getName ( ) + " is an enum " + field_class . getName ( ) ) ; } if ( write ) { mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitFieldInsn ( GETFIELD , fBaseClass , "fParent" , "L" + fPersistenceDelegateParentClass + ";" ) ; mv . visitLdcInsn ( org . objectweb . asm . Type . getType ( field_class ) ) ; mv . visitVarInsn ( ALOAD , WRITE_OBJ_VAR ) ; mv . visitFieldInsn ( GETFIELD , tgt_classname , f . getName ( ) , "L" + field_classname + ";" ) ; mv . visitMethodInsn ( INVOKEINTERFACE , fPersistenceDelegateParentClass , "" , WRITE_ENUM_TYPE_SIG ) ; } else { mv . visitVarInsn ( ALOAD , READ_OBJ_VAR ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitFieldInsn ( GETFIELD , fBaseClass , "fParent" , "L" + fPersistenceDelegateParentClass + ";" ) ; mv . visitLdcInsn ( org . objectweb . asm . Type . getType ( field_class ) ) ; mv . visitMethodInsn ( INVOKEINTERFACE , fPersistenceDelegateParentClass , "readEnumType" , READ_ENUM_TYPE_SIG ) ; mv . visitTypeInsn ( CHECKCAST , field_classname ) ; mv . visitFieldInsn ( PUTFIELD , tgt_classname , f . getName ( ) , "L" + field_classname + ";" ) ; } } else if ( List . class . isAssignableFrom ( field_class ) ) { Type t = f . getGenericType ( ) ; if ( t instanceof ParameterizedType ) { ParameterizedType pt = ( ParameterizedType ) t ; Type args [ ] = pt . getActualTypeArguments ( ) ; String readMethod = null , writeMethod = null ; boolean useStdRW = true ; if ( args . length != 1 ) { throw new DBFormatException ( "" + args . length + "" ) ; } Class c = ( Class ) args [ 0 ] ; if ( c == String . class ) { if ( fDebugEn ) { debug ( " " + fLevel + " Field " + f . getName ( ) + "" ) ; } writeMethod = "" ; readMethod = "" ; } else if ( c == Integer . class ) { if ( fDebugEn ) { debug ( " " + fLevel + " Field " + f . getName ( ) + "" ) ; } writeMethod = "writeIntList" ; readMethod = "readIntList" ; } else if ( c == Long . class ) { if ( fDebugEn ) { debug ( " " + fLevel + " Field " + f . getName ( ) + "" ) ; } writeMethod = "" ; readMethod = "readLongList" ; } else if ( ISVDBItemBase . class . isAssignableFrom ( c ) ) { if ( fDebugEn ) { debug ( " " + fLevel + " Field " + f . getName ( ) + "" ) ; } useStdRW = false ; if ( ! write ) { mv . visitVarInsn ( ALOAD , READ_OBJ_VAR ) ; mv . visitVarInsn ( ALOAD , THIS_VAR ) ; mv . visitFieldInsn ( GETFIELD , fBaseClass , "fParent" , "L" + fPersistenceDelegateParentClass + ";" ) ; mv . visitVarInsn ( ALOAD , READ_OBJ_VAR ) ; mv . visitMethodInsn ( INVOKEINTERFACE , fPersistenceDelegateParentClass
2,005
<s> package com . asakusafw . windgate . core . util ; import static org . hamcrest . CoreMatchers . * ; import static org . junit . Assert . * ; import java . util . HashMap ; import java . util . Map ; import java . util . Properties ; import org . junit . Test ; public class PropertiesUtilTest { @ Test public void createPrefixMap ( ) { Properties properties = new Properties ( ) ; properties . put ( "abcde" , "abcde" ) ; properties . put ( "abc0" , "abc0" ) ; properties . put ( "abc" , "abc" ) ; properties . put ( "ab" , "ab" ) ; properties . put ( "abbde" , "abbde" ) ; properties . put ( "abd" , "abd" ) ; properties . put ( "bcdef" , "bcdef" ) ; char [ ] array = "abc[]" . toCharArray ( ) ; properties . put ( array , "abc[]" ) ; properties . put ( "abc[]" , array ) ; Map < String , String > answer = new HashMap < String , String > ( ) ; answer . put ( "de" , "abcde" ) ; answer . put ( "0" , "abc0" ) ; answer . put ( "" , "abc" ) ; assertThat ( PropertiesUtil . createPrefixMap ( properties , "abc" ) , is ( answer ) ) ; } @ Test public void removeKeyPrefix ( ) { Properties properties = new Properties ( ) ; properties . put ( "abcde" , "abcde" ) ; properties . put ( "abc0" , "abc0" ) ; properties . put ( "abc" , "abc" ) ; properties . put ( "ab" , "ab" ) ; properties . put ( "abbde" , "abbde" ) ; properties . put ( "abd" , "abd" ) ; properties . put ( "bcdef" , "bcdef" ) ; char [ ] array = "abc[]" . toCharArray ( ) ; properties . put ( array , "abc[]" ) ; properties . put ( "abc[]" , array ) ; Properties answer = new Properties ( ) ; answer . put ( "ab" , "ab" ) ; answer . put ( "abbde" , "abbde" ) ; answer . put ( "abd" , "abd" ) ; answer . put ( "bcdef" , "bcdef" ) ; answer . put ( array , "abc[]" ) ; PropertiesUtil . removeKeyPrefix ( properties , "abc" ) ; assertThat ( properties , is ( answer ) ) ; } @ Test public void checkAbsentKey ( ) { Properties properties = new Properties ( ) ; properties . put ( "abcde" , "abcde" ) ; properties . put ( "abc0" , "abc0" ) ; properties . put ( "ab" , "ab" ) ; properties . put ( "abd" , "ab" ) ; char [ ] array = "abc" . toCharArray ( ) ; properties . put ( array , "abc" ) ; PropertiesUtil . checkAbsentKey ( properties ,
2,006
<s> package org . rubypeople . rdt . ui . actions ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . IImportDeclaration ; import org . rubypeople . rdt . core . IMethod ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . IRubyScript ; import org . rubypeople . rdt . core . ISourceFolder ; import org . rubypeople . rdt . core . IType ; import org . rubypeople . rdt . core . RubyModelException ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . core . search . IRubySearchScope ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui
2,007
<s> package com . asakusafw . utils . java . internal . model . syntax ; import com . asakusafw . utils . java . model . syntax . ContinueStatement ; import com . asakusafw . utils . java . model . syntax . ModelKind ; import com . asakusafw . utils . java . model . syntax . SimpleName ; import com . asakusafw . utils . java . model . syntax . Visitor ; public final class ContinueStatementImpl extends ModelRoot implements ContinueStatement { private SimpleName target ; @ Override public SimpleName getTarget ( ) { return this . target ; } public void setTarget ( SimpleName target ) { this . target = target ; } @ Override public ModelKind getModelKind ( )
2,008
<s> package net . sf . sveditor . core . db . search ; import java . util . List ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBTypeInfoClassType ; import net . sf . sveditor . core . db . index . ISVDBIndexIterator ; public class SVDBFindSuperClass { ISVDBIndexIterator fIndexIterator ; private ISVDBFindNameMatcher fMatcher ; public SVDBFindSuperClass ( ISVDBIndexIterator index_it
2,009
<s> package com . devtty . gat . test ; import com . devtty . gat . controller . MemberRegistration ; import com . devtty . gat . data . MemberRepository ; import com . devtty . gat . data . MemberRepositoryProducer ; import com . devtty . gat . model . Member ; import javax . enterprise . inject . Produces ; import javax . enterprise . inject . spi . InjectionPoint ; import static org . junit . Assert . * ; import javax . inject . Inject ; import org . jboss . arquillian . api . Deployment ; import org . jboss . arquillian . junit . Arquillian ; import org . jboss . shrinkwrap . api . ShrinkWrap ; import org
2,010
<s> package com . asakusafw . bulkloader . importer ; import java . io . File ; import java . util . List ; import com . asakusafw . bulkloader . bean . ImportBean ; import com . asakusafw . bulkloader . bean . ImportTargetTableBean ; import com . asakusafw . bulkloader . log . Log ; public class ImportFileDelete { static final Log LOG = new Log ( ImportFileDelete . class ) ; public void deleteFile ( ImportBean bean ) { List < String > list = bean . getImportTargetTableList ( ) ; for ( String tableName : list ) { ImportTargetTableBean targetTable = bean . getTargetTable (
2,011
<s> package org . rubypeople . rdt . refactoring . tests . core . movemethod . conditionchecks ; import java . io . FileNotFoundException ; import java . io . IOException ; import org . rubypeople . rdt . refactoring . core . movemethod . MethodMover ; import org . rubypeople . rdt . refactoring . core . movemethod . MoveMethodConditionChecker ; import org . rubypeople . rdt . refactoring . core . movemethod . MoveMethodConfig ; import org . rubypeople . rdt . refactoring .
2,012
<s> package net . sf . sveditor . core . tests . scanner ; import java . util . ArrayList ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core
2,013
<s> package net . sf . sveditor . core . db . index ; import java . io . InputStream ; import java . util . List ; import net . sf . sveditor . core . Tuple ; 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 . SVDBItemType ; import net . sf . sveditor . core . db . SVDBMarker ; import net . sf . sveditor . core . db . index . cache . ISVDBIndexCache ; import net . sf . sveditor . core . db . refs . ISVDBRefMatcher ; import net . sf . sveditor . core . db . refs . SVDBRefCacheItem ; import net . sf . sveditor . core . db . search . ISVDBFindNameMatcher ; import net . sf . sveditor . core . db . search . SVDBSearchResult ; import net . sf . sveditor . core . log . ILogLevel ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . NullProgressMonitor ; public class SVDBFileOverrideIndex implements ISVDBIndex , ISVDBIndexIterator , ILogLevel { private SVDBFile fFile ; private SVDBFile fFilePP ; private ISVDBIndex fIndex ; private ISVDBIndexIterator fSuperIterator ; private List < SVDBMarker > fMarkers ; private LogHandle fLog ; public SVDBFileOverrideIndex ( SVDBFile file , SVDBFile file_pp , ISVDBIndex index , ISVDBIndexIterator item_it , List < SVDBMarker > markers ) { fFile = file ; fFilePP = file_pp ; fIndex = index ; fSuperIterator = item_it ; fMarkers = markers ; fLog = LogFactory . getLogHandle ( getClass ( ) . getName ( ) ) ; } public void setFile ( SVDBFile file ) { fFile = file ; } public void setFilePP ( SVDBFile file ) { fFilePP = file ; } public ISVDBItemIterator getItemIterator ( IProgressMonitor monitor ) { if ( fSuperIterator != null ) { ISVDBItemIterator super_it = fSuperIterator . getItemIterator ( monitor ) ; if ( super_it instanceof SVDBIndexCollectionItemIterator ) { SVDBIndexCollectionItemIterator it = ( SVDBIndexCollectionItemIterator ) super_it ; it . setOverride ( fIndex , fFile ) ; return it ; } else { return super_it ; } } else { return SVEmptyItemIterator ; } } private ISVDBItemIterator SVEmptyItemIterator = new ISVDBItemIterator ( ) { public ISVDBItemBase nextItem ( SVDBItemType ... type_list ) { return null ; } public boolean hasNext ( SVDBItemType ... type_list ) { return false ; } } ; public List < SVDBDeclCacheItem > findGlobalScopeDecl ( IProgressMonitor monitor , String name , ISVDBFindNameMatcher matcher ) { List < SVDBDeclCacheItem > ret = fSuperIterator . findGlobalScopeDecl ( monitor , name , matcher ) ; for ( int i = 0 ; i < ret . size ( ) ; i ++ ) { if ( ret . get ( i ) == null ) { System . out . println ( "Element " + i + " is null" ) ; } if ( ret . get ( i ) . getFile ( ) == null ) { System . out . println ( "Element " + i + "" ) ; continue ; } else if ( ret . get ( i ) . getFile ( ) . getFilePath ( ) == null ) { System . out . println ( "" + i + "" ) ; continue ; } if ( fFile == null ) { System . out . println ( "" ) ; } if ( fFile . getFilePath ( ) == null ) { System . out . println ( "" ) ; } String filepath = ret . get ( i ) . getFile ( ) . getFilePath ( ) ; String filepath_f = fFile . getFilePath ( ) ; if ( filepath != null && filepath . equals ( filepath_f ) ) { fLog . debug ( LEVEL_MID , "" + ret . get ( i ) . getName ( ) + "" ) ; ret . remove ( i ) ; i -- ; } } findDecl ( ret , fFile , name , matcher ) ; return ret ; } private void findDecl ( List < SVDBDeclCacheItem > result , ISVDBChildParent scope , String name , ISVDBFindNameMatcher matcher ) { for ( ISVDBChildItem item : scope . getChildren ( ) ) { if ( item . getType ( ) . isElemOf ( SVDBItemType . PackageDecl , SVDBItemType . Function , SVDBItemType . Task , SVDBItemType . ClassDecl , SVDBItemType . ModuleDecl , SVDBItemType . InterfaceDecl , SVDBItemType . ProgramDecl , SVDBItemType . TypedefStmt , SVDBItemType . MacroDef ) ) { if ( item instanceof ISVDBNamedItem ) { boolean is_ft = item . getType ( ) . isElemOf ( SVDBItemType . MacroDef ) ; ISVDBNamedItem ni = ( ISVDBNamedItem ) item ; if ( matcher . match ( ni , name ) ) { fLog . debug ( LEVEL_MID , "Add item \"" + ni . getName ( ) + "\" to result" ) ; result . add ( new SVDBDeclCacheItem ( this , fFile . getFilePath ( ) , ni . getName ( ) , ni . getType ( ) , is_ft ) ) ; } } if ( item . getType ( ) == SVDBItemType . PackageDecl ) { findDecl ( result , ( ISVDBChildParent ) item , name , matcher ) ; } } else if ( item . getType ( ) == SVDBItemType . PreProcCond ) { findDecl ( result , ( ISVDBChildParent ) item , name , matcher ) ; } } } public List < SVDBDeclCacheItem > findPackageDecl ( IProgressMonitor monitor , SVDBDeclCacheItem pkg_item ) { return fSuperIterator . findPackageDecl ( monitor , pkg_item ) ; } public SVDBFile getDeclFile ( IProgressMonitor
2,014
<s> package com . asakusafw . testdriver . temporary ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . FileSystem ; import org . apache . hadoop . fs . Path ; import org . apache . hadoop . io . Text ; import org . junit . After ; import org . junit . Before ; import org . junit . Rule ; import org . junit . Test ; import com . asakusafw . compiler . testing . TemporaryOutputDescription ; import com . asakusafw . runtime . configuration . HadoopEnvironmentChecker ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . stage . temporary . TemporaryStorage ; import com . asakusafw . testdriver . core . DataModelReflection ; import com .
2,015
<s> package net . sf . sveditor . core . parser ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . db . SVDBLocation ; import net . sf . sveditor . core . db . SVDBTypeInfo ; import net . sf . sveditor . core . db . SVDBTypeInfoBuiltin ; import net . sf . sveditor . core . db . SVDBTypeInfoBuiltinNet ; import net . sf . sveditor . core . db . SVDBTypeInfoUserDef ; import net . sf . sveditor . core . db . stmt . SVDBParamPortDecl ; import net . sf . sveditor . core . db . stmt . SVDBVarDeclItem ; import net . sf . sveditor . core . db . stmt . SVDBVarDimItem ; public class SVTaskFunctionPortListParser extends SVParserBase { public SVTaskFunctionPortListParser ( ISVParser parser ) { super ( parser ) ; } public List < SVDBParamPortDecl > parse ( ) throws SVParseException { List < SVDBParamPortDecl > params = new ArrayList < SVDBParamPortDecl > ( ) ; int dir = SVDBParamPortDecl . Direction_Input ; SVDBTypeInfo last_type = null ; fLexer . readOperator ( "(" ) ; if ( fLexer . peekOperator ( ")" ) ) { fLexer . eatToken ( ) ; return params ; } while ( true ) { SVDBLocation it_start = fLexer . getStartLocation ( ) ; if ( fLexer . peekKeyword ( "input" , "output" , "inout" , "ref" ) ) { String dir_s = fLexer . eatToken ( ) ; if ( dir_s . equals ( "input" ) ) { dir = SVDBParamPortDecl . Direction_Input ; } else if ( dir_s . equals ( "output" ) ) { dir = SVDBParamPortDecl . Direction_Output ; } else if ( dir_s . equals ( "inout" ) ) { dir = SVDBParamPortDecl . Direction_Inout ; } else if ( dir_s . equals ( "ref" ) ) { dir = SVDBParamPortDecl . Direction_Ref ; } } else if ( fLexer . peekKeyword ( "const" ) ) { fLexer . eatToken ( ) ; fLexer . readKeyword ( "ref" ) ; dir = ( SVDBParamPortDecl . Direction_Ref | SVDBParamPortDecl . Direction_Const ) ; } if ( fLexer . peekKeyword ( "var" ) ) { fLexer . eatToken ( ) ; dir |= SVDBParamPortDecl . Direction_Var ; } SVDBTypeInfo type = parsers ( ) . dataTypeParser ( ) . data_type ( 0 ) ; if ( fLexer . peekOperator ( "[" ) ) { List < SVDBVarDimItem > dim = fParsers . dataTypeParser ( ) . vector_dim ( ) ; if ( type instanceof SVDBTypeInfoBuiltin ) { ( ( SVDBTypeInfoBuiltin
2,016
<s> package de . fuberlin . wiwiss . d2rq . map ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collection ; import java . util . HashSet ; import java . util . List ; import java . util . Set ; import com . hp . hpl . jena . datatypes . RDFDatatype ; import com . hp . hpl . jena . datatypes . TypeMapper ; import com . hp . hpl . jena . rdf . model . Literal ; import com . hp . hpl . jena . rdf . model . Property ; import com . hp . hpl . jena . rdf . model . RDFNode ; import com . hp . hpl . jena . rdf . model . Resource ; import de . fuberlin . wiwiss . d2rq . D2RQException ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap ; import de . fuberlin . wiwiss . d2rq . algebra . AliasMap . Alias ; import de . fuberlin . wiwiss . d2rq . algebra . Attribute ; import de . fuberlin . wiwiss . d2rq . algebra . Join ; import de . fuberlin . wiwiss . d2rq . algebra . ProjectionSpec ; import de . fuberlin . wiwiss . d2rq . algebra . Relation ; import de . fuberlin . wiwiss . d2rq . expr . SQLExpression ; import de . fuberlin . wiwiss . d2rq . nodes . FixedNodeMaker ; import de . fuberlin . wiwiss . d2rq . nodes . NodeMaker ; import de . fuberlin . wiwiss . d2rq . nodes . TypedNodeMaker ; import de . fuberlin . wiwiss . d2rq . nodes . TypedNodeMaker . NodeType ; import de . fuberlin . wiwiss . d2rq . parser . MapParser ; import de . fuberlin . wiwiss . d2rq . parser . RelationBuilder ; import de . fuberlin . wiwiss . d2rq . pp . PrettyPrinter ; import de . fuberlin . wiwiss . d2rq . sql . ConnectedDB ; import de . fuberlin . wiwiss . d2rq . sql . SQL ; import de . fuberlin . wiwiss . d2rq . values . BlankNodeID ; import de . fuberlin . wiwiss . d2rq . values . Column ; import de . fuberlin . wiwiss . d2rq . values . Pattern ; import de . fuberlin . wiwiss . d2rq . values . SQLExpressionValueMaker ; import de . fuberlin . wiwiss . d2rq . values . ValueDecorator ; import de . fuberlin . wiwiss . d2rq . values . ValueDecorator . ValueConstraint ; import de . fuberlin . wiwiss . d2rq . values . ValueMaker ; import de . fuberlin . wiwiss . d2rq . vocab . D2RQ ; public abstract class ResourceMap extends MapObject { protected String bNodeIdColumns = null ; protected String uriColumn = null ; protected String uriPattern = null ; protected RDFNode constantValue = null ; protected Collection < String > valueRegexes = new ArrayList < String > ( ) ; protected Collection < String > valueContainses = new ArrayList < String > ( ) ; protected int valueMaxLength = Integer . MAX_VALUE ; protected Collection < String > joins = new ArrayList < String > ( ) ; protected Collection < String > conditions = new ArrayList < String > ( ) ; protected Collection < String > aliases = new ArrayList < String > ( ) ; protected boolean containsDuplicates ; protected TranslationTable translateWith = null ; protected String column = null ; protected String pattern = null ; protected String sqlExpression = null ; protected String uriSqlExpression = null ; protected String datatype = null ; protected String lang = null ; protected ClassMap refersToClassMap = null ; protected Integer limit = null ; protected Integer limitInverse = null ; protected String order = null ; protected Boolean orderDesc = null ; private NodeMaker cachedNodeMaker ; private Relation cachedRelation ; Collection < Literal > definitionLabels = new ArrayList < Literal > ( ) ; Collection < Literal > definitionComments = new ArrayList < Literal > ( ) ; Collection < Resource > additionalDefinitionProperties = new ArrayList < Resource > ( ) ; public ResourceMap ( Resource resource , boolean defaultContainsDuplicate ) { super ( resource ) ; this . containsDuplicates = defaultContainsDuplicate ; } public void setBNodeIdColumns ( String columns ) { assertNotYetDefined ( this . bNodeIdColumns , D2RQ . bNodeIdColumns , D2RQException . RESOURCEMAP_DUPLICATE_BNODEIDCOLUMNS ) ; this . bNodeIdColumns = columns ; } public void setURIColumn ( String column ) { assertNotYetDefined ( this . uriColumn , D2RQ . uriColumn , D2RQException . RESOURCEMAP_DUPLICATE_URICOLUMN ) ; this . uriColumn = column ; } public void setURIPattern ( String pattern ) { assertNotYetDefined ( this . uriColumn , D2RQ . uriPattern , D2RQException . RESOURCEMAP_DUPLICATE_URIPATTERN ) ; this . uriPattern = pattern ; } public void setUriSQLExpression ( String uriSqlExpression ) { assertNotYetDefined ( this . column , D2RQ . uriSqlExpression , D2RQException . PROPERTYBRIDGE_DUPLICATE_URI_SQL_EXPRESSION ) ; this . uriSqlExpression = uriSqlExpression ; } public void setConstantValue ( RDFNode constantValue ) { assertNotYetDefined ( this . constantValue , D2RQ . constantValue , D2RQException . RESOURCEMAP_DUPLICATE_CONSTANTVALUE ) ; this . constantValue = constantValue ; } public void addValueRegex ( String regex ) { this . valueRegexes . add ( regex ) ; } public void addValueContains ( String contains ) { this . valueContainses . add ( contains ) ; } public void setValueMaxLength ( int maxLength ) { if ( this . valueMaxLength != Integer . MAX_VALUE ) { assertNotYetDefined ( this , D2RQ . valueMaxLength , D2RQException . PROPERTYBRIDGE_DUPLICATE_VALUEMAXLENGTH ) ; } this . valueMaxLength = maxLength ; } public void setTranslateWith ( TranslationTable table ) { assertNotYetDefined ( this . translateWith , D2RQ . translateWith , D2RQException . RESOURCEMAP_DUPLICATE_TRANSLATEWITH ) ; assertArgumentNotNull ( table , D2RQ . translateWith , D2RQException . RESOURCEMAP_INVALID_TRANSLATEWITH ) ; this . translateWith = table ; } public void addJoin ( String join ) { this . joins . add ( join ) ; } public void addCondition ( String condition ) { this . conditions . add ( condition ) ; } public void addAlias ( String alias ) { this . aliases . add ( alias ) ; } public void setContainsDuplicates ( boolean b ) { this . containsDuplicates = b ; } private Collection < Alias > aliases ( ) { Set < Alias > parsedAliases = new HashSet < Alias > ( ) ; for ( String alias : aliases ) { parsedAliases . add ( SQL . parseAlias ( alias ) ) ; } return parsedAliases ; } public RelationBuilder relationBuilder ( ConnectedDB database ) { RelationBuilder result = new RelationBuilder ( database ) ; for ( Join join : SQL . parseJoins ( joins ) ) { result . addJoinCondition ( join ) ; } for ( String condition : conditions ) { result . addCondition ( condition ) ; } result . addAliases ( aliases ( ) ) ; for ( ProjectionSpec projection : nodeMaker ( ) . projectionSpecs ( ) ) { result . addProjection ( projection ) ; } if ( ! containsDuplicates ) { result . setIsUnique ( true ) ; } return result ; } public Relation relation ( ) { if ( this . cachedRelation == null ) { this . cachedRelation = buildRelation ( ) ; } return this . cachedRelation ; } protected abstract Relation buildRelation ( ) ; public NodeMaker nodeMaker ( ) { if ( this . cachedNodeMaker == null ) { this . cachedNodeMaker = buildNodeMaker ( ) ; } return this . cachedNodeMaker ; } private NodeMaker buildNodeMaker ( ) { if ( this . constantValue != null ) { return new FixedNodeMaker ( this . constantValue . asNode ( ) , ! this . containsDuplicates ) ; } if ( this . refersToClassMap
2,017
<s> package org . rubypeople . rdt . internal . ui . browsing ; import java . util . List ; import org . eclipse . core . runtime . ListenerList ; import org . eclipse . jface . util . Assert ; import org . eclipse . jface . viewers . IBaseLabelProvider ; import org . eclipse . jface . viewers . IContentProvider ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . IOpenListener ; import org . eclipse . jface . viewers . ISelection ; import org . eclipse . jface . viewers . ISelectionChangedListener ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . StructuredSelection ; import org . eclipse . jface . viewers . StructuredViewer ; import org . eclipse . jface . viewers . ViewerFilter ; import org . eclipse . jface . viewers . ViewerSorter ; import org . eclipse . swt . events . HelpListener ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . Item ; import org . eclipse . swt . widgets . Widget ; import org . rubypeople . rdt . core . ISourceFolder ; class PackageViewerWrapper extends StructuredViewer { private StructuredViewer fViewer ; private ListenerList fListenerList ; private ListenerList fSelectionChangedListenerList ; private ListenerList fPostSelectionChangedListenerList ; public PackageViewerWrapper ( ) { fListenerList = new ListenerList ( ListenerList . IDENTITY ) ; fPostSelectionChangedListenerList = new ListenerList ( ListenerList . IDENTITY ) ; fSelectionChangedListenerList = new ListenerList ( ListenerList . IDENTITY ) ; } public void setViewer ( StructuredViewer viewer ) { Assert . isNotNull ( viewer ) ; StructuredViewer oldViewer = fViewer ; fViewer = viewer ; if ( fViewer . getContentProvider ( ) != null ) super . setContentProvider ( fViewer . getContentProvider ( ) ) ; transferFilters ( oldViewer ) ; transferListeners ( ) ; } StructuredViewer getViewer ( ) { return fViewer ; } private void transferFilters ( StructuredViewer oldViewer ) { if ( oldViewer != null ) { ViewerFilter [ ] filters = oldViewer . getFilters ( ) ; for ( int i = 0 ; i < filters . length ; i ++ ) { ViewerFilter filter = filters [ i ] ; fViewer . addFilter ( filter ) ; } } } private void transferListeners ( ) { Object [ ] listeners = fPostSelectionChangedListenerList . getListeners ( ) ; for ( int i = 0 ; i < listeners . length ; i ++ ) { Object object = listeners [ i ] ; ISelectionChangedListener listener = ( ISelectionChangedListener ) object ; fViewer . addPostSelectionChangedListener ( listener ) ; } listeners = fSelectionChangedListenerList . getListeners ( ) ; for ( int i = 0 ; i < listeners . length ; i ++ ) { Object object = listeners [ i ] ; ISelectionChangedListener listener = ( ISelectionChangedListener ) object ; fViewer . addSelectionChangedListener ( listener ) ; } listeners = fListenerList . getListeners ( ) ; for ( int i = 0 ; i < listeners . length ; i ++ ) { Object object = listeners [ i ] ; if ( object instanceof IOpenListener ) { IOpenListener listener = ( IOpenListener ) object ; addOpenListener ( listener ) ; } else if ( object instanceof HelpListener ) { HelpListener listener = ( HelpListener ) object ; addHelpListener ( listener ) ; } else if ( object instanceof IDoubleClickListener ) { IDoubleClickListener listener = ( IDoubleClickListener ) object ; addDoubleClickListener ( listener ) ; } } } public void setSelection ( ISelection selection , boolean reveal ) { fViewer . setSelection ( selection , reveal ) ; } public void addPostSelectionChangedListener ( ISelectionChangedListener listener ) { fPostSelectionChangedListenerList . add ( listener ) ; fViewer . addPostSelectionChangedListener ( listener ) ; } public void addSelectionChangedListener ( ISelectionChangedListener listener ) { fSelectionChangedListenerList . add ( listener ) ; fViewer . addSelectionChangedListener ( listener ) ; } public void addDoubleClickListener ( IDoubleClickListener listener ) { fViewer . addDoubleClickListener ( listener ) ; fListenerList . add ( listener ) ; } public void addOpenListener ( IOpenListener listener ) { fViewer . addOpenListener ( listener ) ; fListenerList . add ( listener ) ; } public void addHelpListener ( HelpListener listener ) { fViewer . addHelpListener ( listener ) ; fListenerList . add ( listener ) ; } public void removeSelectionChangedListener ( ISelectionChangedListener listener ) { fViewer . removeSelectionChangedListener ( listener ) ; fSelectionChangedListenerList . remove ( listener ) ; } public void removePostSelectionChangedListener ( ISelectionChangedListener listener ) { fViewer . removePostSelectionChangedListener ( listener ) ; fPostSelectionChangedListenerList . remove ( listener ) ; } public void removeHelpListener ( HelpListener listener ) { fListenerList . remove ( listener ) ; fViewer . removeHelpListener ( listener ) ; } public void removeDoubleClickListener ( IDoubleClickListener listener ) { fViewer . removeDoubleClickListener ( listener ) ; fListenerList . remove ( listener ) ; } public void removeOpenListener ( IOpenListener listener ) { fViewer . removeOpenListener ( listener ) ; fListenerList . remove ( listener ) ; } public Control getControl ( ) { return fViewer . getControl ( ) ; } public void addFilter ( ViewerFilter filter ) { fViewer . addFilter ( filter ) ; } public void refresh ( ) { fViewer . refresh ( ) ; } public void removeFilter ( ViewerFilter filter ) { fViewer . removeFilter ( filter ) ; } public ISelection getSelection ( ) { return fViewer . getSelection ( ) ; } public void refresh ( boolean updateLabels ) { fViewer . refresh ( updateLabels ) ; } public void refresh ( Object element , boolean updateLabels ) { fViewer . refresh ( element , updateLabels ) ; } public void refresh ( Object element ) { fViewer . refresh ( element ) ; } public void resetFilters ( ) { fViewer . resetFilters ( ) ; } public void reveal ( Object element ) { fViewer . reveal ( element ) ; } public void setContentProvider ( IContentProvider contentProvider ) { fViewer . setContentProvider ( contentProvider ) ; } public void setSorter ( ViewerSorter sorter ) { fViewer . setSorter ( sorter ) ; } public void setUseHashlookup ( boolean enable ) { fViewer . setUseHashlookup ( enable ) ; } public Widget testFindItem ( Object element ) { return fViewer . testFindItem ( element ) ; } public void update ( Object element , String [ ] properties ) { fViewer . update ( element , properties ) ; } public void update ( Object [ ] elements , String [ ] properties ) { fViewer . update ( elements , properties ) ; } public IContentProvider getContentProvider ( ) { return fViewer . getContentProvider ( ) ; } public Object getInput ( ) { return fViewer . getInput ( ) ; } public IBaseLabelProvider getLabelProvider ( ) { return fViewer . getLabelProvider ( ) ; } public void setLabelProvider ( IBaseLabelProvider
2,018
<s> package edsdk . utils . commands ; import edsdk . utils . CanonTask ; import edsdk . utils . CanonUtils ; public class GetPropertyTask extends CanonTask < Long > { private long property ; public GetPropertyTask
2,019
<s> package com . pogofish . jadt . checker ; import java . util . List ; import
2,020
<s> package com . asakusafw . dmdl . directio . csv . driver ; import java . text . SimpleDateFormat ; import java . util . Map ; import com . asakusafw . dmdl . Diagnostic ; import com . asakusafw . dmdl . Diagnostic . Level ; import com . asakusafw . dmdl . directio . csv . driver . CsvFormatTrait . Configuration ; import com . asakusafw . dmdl . model . AstAttribute ; import com . asakusafw . dmdl . model . AstAttributeElement ; import com . asakusafw . dmdl . model . AstLiteral ; import com . asakusafw . dmdl . model . LiteralKind ; import com . asakusafw . dmdl . semantics . DmdlSemantics ; import com . asakusafw . dmdl . semantics . ModelDeclaration ; import com . asakusafw . dmdl . spi . ModelAttributeDriver ; import com . asakusafw . dmdl . util . AttributeUtil ; import com . asakusafw . runtime . io . csv . CsvConfiguration ; import com . asakusafw . runtime . value . Date ; import com . asakusafw . runtime . value . DateTime ; public class CsvFormatDriver extends ModelAttributeDriver { public static final String TARGET_NAME = "directio.csv" ; public static final String ELEMENT_CHARSET_NAME = "charset" ; public static final String ELEMENT_HAS_HEADER_NAME = "has_header" ; public static final String ELEMENT_ALLOW_LINEFEED = "" ; public static final String ELEMENT_TRUE_NAME = "true" ; public static final String ELEMENT_FALSE_NAME = "false" ; public static final String ELEMENT_DATE_NAME = "date" ; public static final String ELEMENT_DATE_TIME_NAME = "datetime" ; @ Override public String getTargetName ( ) { return TARGET_NAME ; } @ Override public void process ( DmdlSemantics environment , ModelDeclaration declaration , AstAttribute attribute ) { Map < String , AstAttributeElement > elements = AttributeUtil . getElementMap ( attribute ) ; Configuration conf = analyzeConfig ( environment , attribute , elements ) ; if ( conf != null ) { declaration . putTrait ( CsvFormatTrait . class , new CsvFormatTrait ( attribute , conf ) ) ; } } private Configuration analyzeConfig ( DmdlSemantics environment , AstAttribute attribute , Map < String , AstAttributeElement > elements ) { AstLiteral charset = take ( environment , elements , ELEMENT_CHARSET_NAME , LiteralKind . STRING ) ; AstLiteral header = take ( environment , elements , ELEMENT_HAS_HEADER_NAME , LiteralKind . BOOLEAN ) ; AstLiteral allowlf = take ( environment , elements , ELEMENT_ALLOW_LINEFEED , LiteralKind . BOOLEAN ) ; AstLiteral trueRep = take ( environment , elements , ELEMENT_TRUE_NAME , LiteralKind . STRING ) ; AstLiteral falseRep = take ( environment , elements , ELEMENT_FALSE_NAME , LiteralKind . STRING ) ; AstLiteral dateFormat = take ( environment , elements , ELEMENT_DATE_NAME , LiteralKind . STRING ) ; AstLiteral dateTimeFormat = take ( environment , elements , ELEMENT_DATE_TIME_NAME , LiteralKind . STRING ) ; environment . reportAll ( AttributeUtil . reportInvalidElements ( attribute ,
2,021
<s> package com . asakusafw . yaess . tools ; import java . io . File ; import java . io . IOException ; import java . io . OutputStreamWriter ; import java . io . PrintWriter ; import java . io . Writer ; import java . nio . charset . Charset ; import java . text . MessageFormat ; import java . util . Arrays ; import java . util . Collection ; import java . util . Map ; import java . util . Properties ; import java . util . Set ; import org . apache . commons . cli . BasicParser ; import org . apache . commons . cli . CommandLine ; import org . apache . commons . cli . CommandLineParser ; import org . apache . commons . cli . HelpFormatter ; import org . apache . commons . cli . Option ; import org . apache . commons . cli . Options ; import org . apache . commons . cli . ParseException ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . yaess . core . BatchScript ; import com . asakusafw . yaess . core . ExecutionPhase ; import com . asakusafw . yaess . core . ExecutionScript ; import com . asakusafw . yaess . core . FlowScript ; import com . google . gson . Gson ; import com . google . gson . GsonBuilder ; import com . google . gson . JsonArray ; import com . google . gson . JsonObject ; import com . google . gson . JsonPrimitive ; public final class Explain { static final Logger LOG = LoggerFactory . getLogger ( Explain . class ) ; static final Option OPT_SCRIPT ; private static final Options OPTIONS ; static { OPT_SCRIPT = new Option ( "script" , true , "script path" ) ; OPT_SCRIPT . setArgName ( "" ) ; OPT_SCRIPT . setRequired ( true ) ; OPTIONS = new Options ( ) ; OPTIONS . addOption ( OPT_SCRIPT ) ; } private Explain ( ) { return ; } public static void main ( String ... args ) { int status = execute ( args ) ; System . exit ( status ) ; } static int execute ( String [ ] args ) { assert args != null ; Configuration conf ; try { conf = parseConfiguration ( args ) ; } catch ( Exception e ) { HelpFormatter formatter = new HelpFormatter ( ) ; formatter . setWidth ( Integer . MAX_VALUE ) ; formatter . printHelp ( MessageFormat . format ( "" , Explain . class . getName ( ) ) , OPTIONS , true ) ; e . printStackTrace ( System . out ) ; return 1 ; } try { explainBatch ( conf . script ) ; } catch ( Exception e ) { e . printStackTrace ( ) ; return 1 ; } return 0 ; } private static void explainBatch ( BatchScript script ) throws IOException { assert script != null ; JsonObject batch = analyzeBatch ( script ) ; Gson gson = new GsonBuilder ( ) . disableHtmlEscaping ( ) . setPrettyPrinting ( ) . create ( ) ; Writer writer = new PrintWriter ( new OutputStreamWriter ( System . out , Charset . defaultCharset ( ) ) ) ; gson . toJson ( batch , writer ) ; writer . flush ( ) ; } private static JsonObject analyzeBatch ( BatchScript script ) { assert script != null ; JsonArray jobflows = new JsonArray ( ) ; for ( FlowScript flowScript : script . getAllFlows ( ) ) { JsonObject jobflow = analyzeJobflow ( flowScript ) ; jobflows . add ( jobflow ) ; } JsonObject batch = new JsonObject
2,022
<s> package org . rubypeople . rdt . internal . ui . text . template . contentassist ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import org . eclipse . swt . graphics . Image ; import org . eclipse . swt . graphics . Point ; import org . eclipse . jface . text . Assert ; import org . eclipse . jface . text . BadLocationException ; import org . eclipse . jface . text . DocumentEvent ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . ITextViewer ; import org . eclipse . jface . text . contentassist . ICompletionProposal ; import org . eclipse . jface . text . contentassist . ICompletionProposalExtension2 ; import org . eclipse . jface . text . contentassist . IContextInformation ; public class MultiVariableGuess { class Proposal implements ICompletionProposal , ICompletionProposalExtension2 { private String fDisplayString ; String fReplacementString ; private int fReplacementOffset ; private int fReplacementLength ; private int fCursorPosition ; private Image fImage ; private IContextInformation fContextInformation ; private String fAdditionalProposalInfo ; public Proposal ( String replacementString , int replacementOffset , int replacementLength , int cursorPosition ) { this ( replacementString , replacementOffset , replacementLength , cursorPosition , null , null , null , null ) ; } public Proposal ( String replacementString , int replacementOffset , int replacementLength , int cursorPosition , Image image , String displayString , IContextInformation contextInformation , String additionalProposalInfo ) { Assert . isNotNull ( replacementString ) ; Assert . isTrue ( replacementOffset >= 0 ) ; Assert . isTrue ( replacementLength >= 0 ) ; Assert . isTrue ( cursorPosition >= 0 ) ; fReplacementString = replacementString ; fReplacementOffset = replacementOffset ; fReplacementLength = replacementLength ; fCursorPosition = cursorPosition ; fImage = image ;
2,023
<s> package net . sf . sveditor . core . tests . open_decl ; import java . util . List ; import junit . framework . TestCase ; import net . sf . sveditor . core . SVCorePlugin ; import net . sf . sveditor . core . Tuple ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBFile ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . index . ISVDBIndexIterator ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import net . sf . sveditor . core . open_decl . OpenDeclUtils ; import net . sf . sveditor . core . scanutils . StringBIDITextScanner ; import net . sf . sveditor . core . tests . FileIndexIterator ; import net . sf . sveditor . core . tests . SVDBTestUtils ; public class TestOpenClass extends TestCase { public void testOpenVariableRef ( ) { String testname = "" ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; LogHandle log = LogFactory . getLogHandle ( testname ) ; String doc = "class foo;n" + "endclassn" + "n" + "class bar;n" + "" + "n" + "" + "" + "" + "n" + "endclassn" ; SVDBFile file = SVDBTestUtils . parse ( doc , "" ) ; SVDBTestUtils . assertNoErrWarn ( file ) ; SVDBTestUtils . assertFileHasElements ( file , "foo" , "bar" ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( doc ) ; int idx = doc . indexOf ( "m_foo = 5;n" ) ; log . debug ( "index: " + idx ) ; scanner . seek ( idx + "m_f" . length ( ) ) ; ISVDBIndexIterator target_index = new FileIndexIterator ( file ) ; List < Tuple < ISVDBItemBase , SVDBFile > > ret = OpenDeclUtils . openDecl_2 ( file , 4 , scanner , target_index ) ; log . debug ( ret . size ( ) + " items" ) ; assertEquals ( 1 , ret . size ( ) ) ; assertEquals ( SVDBItemType . VarDeclItem , ret . get ( 0 ) . first ( ) . getType ( ) ) ; assertEquals ( "m_foo" , SVDBItem . getName ( ret . get ( 0 ) . first ( ) ) ) ; LogFactory . removeLogHandle ( log ) ; } public void testOpenVariableRefTaskScope ( ) { LogHandle log = LogFactory . getLogHandle ( "" ) ; SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc = "" + "n" + "" + "n" + "tendtaskn" + "n" + "endclassn" + "n" + "class abc;n" + "n" + "tint a;n" + "tint b;n" + "tint c;n" + "n" + "" + "n" + "" + "n" + "" + "" + "n" + "" + "n" + "tendtaskn" + "n" + "endclassn" ; SVDBFile file = SVDBTestUtils . parse ( doc , "" ) ; SVDBTestUtils . assertNoErrWarn ( file ) ; SVDBTestUtils . assertFileHasElements ( file , "abc" , "class_a" ) ; StringBIDITextScanner scanner = new StringBIDITextScanner ( doc ) ; int idx = doc . indexOf ( "" ) ; log . debug ( "index: " + idx ) ; scanner . seek ( idx + "ext_class.cl" . length ( ) ) ; ISVDBIndexIterator target_index = new FileIndexIterator ( file ) ; List < Tuple < ISVDBItemBase , SVDBFile > > ret = OpenDeclUtils . openDecl_2 ( file , 22 , scanner , target_index ) ; log . debug ( ret . size ( ) + " items" ) ; assertEquals ( 1 , ret . size ( ) ) ; assertEquals ( SVDBItemType . Task , ret . get ( 0 ) . first ( ) . getType ( ) ) ; assertEquals ( "class_a_task" , SVDBItem . getName ( ret . get ( 0 ) . first ( ) ) ) ; LogFactory . removeLogHandle ( log ) ; } public void testOpenVariableDottedRef ( ) { SVCorePlugin . getDefault ( ) . enableDebug ( false ) ; String doc = "class foo;n" + "" + "endclassn" + "n" + "class bar;n" + "" + "n" + "" + "" + "" + "n" + "endclassn" ; SVDBFile file = SVDBTestUtils . parse ( doc , "" ) ; SVDBTestUtils . assertNoErrWarn ( file ) ; SVDBTestUtils . assertFileHasElements ( file , "foo" , "bar" ) ; StringBIDITextScanner scanner = new StringBIDITextScanner
2,024
<s> package com . asakusafw . compiler . operator . processor ; import java . util . Collections ; import java . util . List ; import javax . lang . model . element . ExecutableElement ; import javax . lang . model . element . VariableElement ; import com . asakusafw . compiler . common . JavaName ; import com . asakusafw . compiler . common . Precondition ; import com . asakusafw . compiler . common . TargetOperator ; import com . asakusafw . compiler . operator . AbstractOperatorProcessor ; import com . asakusafw . compiler . operator . ExecutableAnalyzer ; import com . asakusafw . compiler . operator . ExecutableAnalyzer . TypeConstraint ; import com . asakusafw . compiler . operator . OperatorMethodDescriptor ; import com . asakusafw . compiler . operator . OperatorMethodDescriptor . Builder ; import com . asakusafw . compiler . operator . processor . MasterKindOperatorAnalyzer . ResolveException ; import com . asakusafw . vocabulary . flow . graph . FlowBoundary ; import com . asakusafw . vocabulary . flow . graph . ShuffleKey ; import com . asakusafw . vocabulary . operator . MasterBranch ; @ TargetOperator ( MasterBranch . class ) public class MasterBranchOperatorProcessor extends AbstractOperatorProcessor { @ Override public OperatorMethodDescriptor describe ( Context context ) { Precondition . checkMustNotBeNull ( context , "context" ) ; ExecutableAnalyzer a = new ExecutableAnalyzer ( context . environment , context . element ) ; if ( a . isAbstract ( ) ) { a . error ( "" ) ; } List < VariableElement > constants = Collections . emptyList ( ) ; if ( a . getReturnType ( ) . isEnum ( ) == false ) { a . error ( "" ) ; } else { constants = a . getReturnType ( ) . getEnumConstants ( ) ; if ( constants . isEmpty ( ) ) { a . error ( "" ) ; } } TypeConstraint master = a . getParameterType ( 0 ) ; if ( master . isModel ( ) == false ) { a . error ( 0 , "" ) ; } TypeConstraint transaction = a . getParameterType ( 1 ) ; if ( transaction . isModel ( ) == false ) { a
2,025
<s> package org . oddjob . monitor . model ; import java . util . LinkedList ; import java . util . List ; import java . util . concurrent . CopyOnWriteArrayList ; import java . util . concurrent . Executor ; import javax . swing . event . TreeModelEvent ; import javax . swing . event . TreeModelListener ; import javax . swing . tree . TreeNode ; public class ExecutorTreeEventDispatcher implements TreeEventDispatcher { private final List < TreeModelListener > listeners = new CopyOnWriteArrayList < TreeModelListener > ( ) ; private final Executor executor ; public ExecutorTreeEventDispatcher ( Executor executor ) { this . executor = executor ; } @ Override public synchronized void addTreeModelListener ( TreeModelListener tml ) { listeners . add ( tml ) ; } @ Override public synchronized void removeTreeModelListener ( TreeModelListener tml ) { listeners . remove ( tml ) ; } private Object [ ] pathToRoot ( TreeNode changed ) { LinkedList < TreeNode > list = new LinkedList < TreeNode > ( ) ; for ( TreeNode i = changed ; i != null ; i = i . getParent ( ) ) { list . addFirst ( i ) ; } return list . toArray ( new Object [ list . size ( ) ] ) ; }
2,026
<s> package com . asakusafw . utils . java . model . util ; import java . io . PrintWriter ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Collections ; import java . util . HashMap ; import java . util . LinkedList ; import java . util . List ; import java . util . Map ; import com . asakusafw . utils . java . internal . model . syntax . ModelFactoryImpl ; import com . asakusafw . utils . java . internal . model . util . LiteralAnalyzer ; import com . asakusafw . utils . java . internal . model . util . ModelEmitter ; import com . asakusafw . utils . java . internal . model . util . ReflectionTypeMapper ; import com . asakusafw . utils . java . model . syntax . ArrayInitializer ; import com . asakusafw . utils . java . model . syntax . BasicTypeKind ; import com . asakusafw . utils . java . model . syntax . ClassLiteral ; import com . asakusafw . utils . java . model . syntax . Expression ; import com . asakusafw . utils . java . model . syntax . Literal ; import com . asakusafw . utils . java . model . syntax . Model ; import com . asakusafw . utils . java . model . syntax . ModelFactory ; 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 . Type ; public final class Models { private static final Map < Class < ? > , BasicTypeKind > WRAPPER_TYPE_KINDS ; static { Map < Class < ? > , BasicTypeKind > map = new HashMap < Class < ? > , BasicTypeKind > ( ) ; map . put ( Byte . class , BasicTypeKind . BYTE ) ; map . put ( Short . class , BasicTypeKind . SHORT ) ; map . put ( Integer . class , BasicTypeKind . INT ) ; map . put ( Long . class , BasicTypeKind . LONG ) ; map . put ( Float . class , BasicTypeKind . FLOAT ) ; map . put ( Double . class , BasicTypeKind . DOUBLE ) ; map . put ( Character . class , BasicTypeKind . CHAR ) ; map . put ( Boolean . class , BasicTypeKind . BOOLEAN ) ; WRAPPER_TYPE_KINDS = map ; } public static ModelFactory getModelFactory ( ) { return new ModelFactoryImpl ( ) ; } public static List < SimpleName > toList ( Name name ) { if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } ModelKind kind = name . getModelKind ( ) ; if ( kind == ModelKind . SIMPLE_NAME ) { return Collections . singletonList ( ( SimpleName ) name ) ; } else { LinkedList < SimpleName > result = new LinkedList < SimpleName > ( ) ; Name current = name ; do { QualifiedName qname = ( QualifiedName ) current ; result . addFirst ( qname . getSimpleName ( ) ) ; current = qname . getQualifier ( ) ; } while ( current . getModelKind ( ) == ModelKind . QUALIFIED_NAME ) ; assert current . getModelKind ( ) == ModelKind . SIMPLE_NAME ; result . addFirst ( ( SimpleName ) current ) ; return result ; } } public static Name append ( ModelFactory factory , Name prefix , String rest ) { if ( factory == null ) { throw new IllegalArgumentException ( "" ) ; } if ( prefix == null ) { throw new IllegalArgumentException ( "" ) ; } if ( rest == null ) { throw new IllegalArgumentException ( "" ) ; } Name name = Models . toName ( factory , rest ) ; return append ( factory , prefix , name ) ; } public static Name append ( ModelFactory factory , Name ... names ) { if ( factory == null ) { throw new IllegalArgumentException ( "" ) ; } if ( names == null ) { throw new IllegalArgumentException ( "" ) ; } if ( names . length == 0 ) { throw new IllegalArgumentException ( "" ) ; } if ( names . length == 1 ) { return names [ 0 ] ; } Name current = names [ 0 ] ; for ( int i = 1 ; i < names . length ; i ++ ) { for ( SimpleName segment : toList ( names [ i ] ) ) { current = factory . newQualifiedName ( current , segment ) ; } } return current ; } public static void emit ( Model model , PrintWriter writer ) { if ( model == null ) { throw new IllegalArgumentException ( "" ) ; } if ( writer == null ) { throw new IllegalArgumentException ( "" ) ; } ModelEmitter emitter = new ModelEmitter ( writer ) ; emitter . emit ( model ) ; } public static Type toType ( ModelFactory factory , java . lang . reflect . Type type ) { if ( factory == null ) { throw new IllegalArgumentException ( "" ) ; } if ( type == null ) { throw new IllegalArgumentException ( "" ) ; } return new ReflectionTypeMapper ( ) . dispatch ( type , factory ) ; } public static Name toName ( ModelFactory factory , String nameString ) { if ( factory == null ) { throw new IllegalArgumentException ( "" ) ; } if ( nameString == null ) { throw new IllegalArgumentException ( "" ) ; } String [ ] segments = nameString . trim ( ) . split ( "\\s*\\.\\s*" ) ; if ( segments . length == 0 || segments [ 0 ] . length ( ) == 0 ) { throw new IllegalArgumentException ( "" ) ; } Name left = factory . newSimpleName ( segments [ 0 ] ) ; for ( int i = 1 ; i < segments . length ; i ++ ) { SimpleName right = factory . newSimpleName ( segments [ i ] ) ; left = factory . newQualifiedName ( left , right ) ; } return left ; }
2,027
<s> package net . bioclipse . opentox . api ; import java . io . IOException ; import java . io . InputStream ; import java . security . GeneralSecurityException ; import java . util . HashMap ; import net . bioclipse . core . business . BioclipseException ; import net . bioclipse . core . domain . StringMatrix ; import net . bioclipse . opentox . Activator ; import net . bioclipse . opentox . api . TaskState . STATUS ; import net . bioclipse . rdf . business . IRDFStore ; import net . bioclipse . rdf . business . RDFManager ; import org . apache . commons . httpclient . HttpClient ; import org . apache . commons . httpclient . methods . DeleteMethod ; import org . apache . commons . httpclient . methods . GetMethod ; import org . apache . log4j . Logger ; public class Task { private static final Logger logger = Logger . getLogger ( Task . class ) ; private static RDFManager rdf = new RDFManager ( ) ; private final static String QUERY_TASK_DETAILS = "" + "" + "" + "" + "" + "" + "}" ; private final static String QUERY_ERROR_REPORT = "" + "" + "" + "" + "" + "}" ; public static void delete ( String task ) throws IOException , GeneralSecurityException { HttpClient client = new HttpClient ( ) ; DeleteMethod method = new DeleteMethod ( task ) ; method . getParams ( ) . setParameter ( "" , new Integer ( Activator . TIME_OUT ) ) ; client . executeMethod ( method ) ; int status = method . getStatusCode ( ) ; switch ( status ) { case 200 : break ; case 401 : throw new GeneralSecurityException ( "" ) ; case 404 : break ; case 503 : throw new IOException ( "" ) ; default : throw new IOException ( "" + status ) ; } } @ SuppressWarnings ( "serial" ) public static TaskState getState ( String task ) throws IOException { HttpClient client = new HttpClient ( ) ; GetMethod method = new GetMethod (
2,028
<s> package org . oddjob . input ; import java . io . File ; import java . io . IOException ; import org . oddjob . arooa . design . screem . FileSelectionOptions ; abstract class TerminalInput implements InputMedium { private String value ; @ Override public void prompt ( String prompt , String defaultValue ) { StringBuilder promptBuilder = new StringBuilder ( ) ; if ( prompt != null ) { promptBuilder . append ( prompt ) ; } promptBuilder . append ( "? " ) ; if ( defaultValue != null ) { promptBuilder . append ( "(" + defaultValue + ") " ) ; } String value = doPrompt ( promptBuilder . toString ( ) ) ; if ( value == null ) { this . value = null ; } else if ( value . length ( ) == 0 && defaultValue != null ) { this . value = defaultValue ; } else { this . value = value ; } } @ Override public void password ( String prompt ) { StringBuilder promptBuilder = new StringBuilder ( ) ; if ( prompt != null ) { promptBuilder . append ( prompt ) ; } promptBuilder . append ( "? " ) ; this . value = doPassword ( promptBuilder . toString ( ) ) ; } @ Override public void confirm ( String message , Boolean defaultValue ) { StringBuilder promptBuilder = new StringBuilder ( ) ; if ( message != null ) { promptBuilder . append ( message ) ; promptBuilder . append ( ' ' ) ; } promptBuilder . append ( "(Yes/No)" ) ; promptBuilder . append ( "? " ) ; if ( defaultValue != null ) { promptBuilder . append ( "(" + ( defaultValue ? "Yes" : "No" ) + ") " ) ; } do { String value = doPrompt ( promptBuilder . toString ( ) ) ; if ( value == null ) { this . value = null ; break ; } else if ( value . length ( ) == 0 && defaultValue != null ) { this . value = defaultValue . toString ( ) ; } else { if ( value . toUpperCase ( ) . matches ( "Y(E(S)?)?" ) ) { this . value = Boolean . TRUE .
2,029
<s> package net . sf . sveditor . core . scanutils ; import java . util . ArrayList ; import java . util . List ; public class StringBIDITextScanner extends AbstractTextScanner implements IBIDITextScanner { private String fData ; private int fIdx ; private int fUngetCh ; List < Integer > fLineOffsets ; public StringBIDITextScanner ( String data ) { fData = data ; fIdx = 0 ; fUngetCh = - 1 ; fLineOffsets = new ArrayList < Integer > ( ) ; fLineOffsets . add ( 0 ) ; for ( int i = 0 ; i < fData . length ( ) ; i ++ ) { if ( fData . charAt ( i ) == '\n' ) { fLineOffsets . add ( i + 1 ) ; } } } public void setScanFwd ( boolean scanFwd ) { if ( fScanFwd != scanFwd ) { fUngetCh = - 1 ; } fScanFwd = scanFwd ; } public int get_ch ( ) { int ret = - 1 ; if ( fUngetCh != - 1 ) { ret = fUngetCh ; fUngetCh = - 1 ; } else { if ( fScanFwd ) { if ( fIdx < fData . length ( ) ) { ret = fData . charAt ( fIdx ) ; fIdx ++ ; } } else { if ( ( fIdx - 1 ) >= 0 && fData . length ( ) > 0 ) { if ( fIdx >= fData . length ( ) ) { fIdx = fData . length ( ) - 1 ; } ret = fData . charAt ( fIdx ) ; fIdx -- ; } } } return ret ; } public ScanLocation getLocation ( ) { int lineno = - 1 ; int linepos
2,030
<s> package com . asakusafw . compiler . flow . processor . operator ; import java . util . List ; import com . asakusafw . compiler . flow . processor . MasterCheckFlowProcessor ; import com . asakusafw . compiler . flow . testing . model . Ex1 ; import com . asakusafw . compiler . flow . testing . model . Ex2 ; import com . asakusafw . vocabulary . model . Key ; import com . asakusafw . vocabulary . operator . MasterJoinUpdate ; import com . asakusafw . vocabulary . operator . MasterSelection ; public abstract class MasterJoinUpdateFlow { @ MasterJoinUpdate public void simple ( @ Key ( group = "string" ) Ex2 master , @ Key ( group = "string" ) Ex1 model ) { withParameter ( master , model , 0 ) ; } @ MasterJoinUpdate public void withParameter ( @ Key ( group = "string" ) Ex2 master , @ Key ( group = "string" ) Ex1 model , int parameter ) { model . setValue ( ( int ) master . getSid ( ) + parameter ) ; }
2,031
<s> package com . asakusafw . compiler . flow ; import com . asakusafw . compiler . flow . example . MockHogeExporterDescription ; import com . asakusafw . compiler . flow . example . MockHogeImporterDescription ; import com . asakusafw . compiler . operator . model . MockHoge ; 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 ( name = "testing" ) class NotPublicJobFlow extends FlowDescription {
2,032
<s> package org . rubypeople . rdt . refactoring . action ; import org . rubypeople . rdt . refactoring . core . pushdown . PushDownRefactoring ; public class PushDownAction
2,033
<s> package net . sf . sveditor . ui . views . diagram ; import org . eclipse . zest . layouts . algorithms . AbstractLayoutAlgorithm ; import org . eclipse . zest . layouts . dataStructures . InternalNode ; import org . eclipse . zest . layouts . dataStructures . InternalRelationship ; public class LeaveEmBeLayoutAlgoritm extends AbstractLayoutAlgorithm { public LeaveEmBeLayoutAlgoritm ( int styles ) { super ( styles ) ; } @ Override public void setLayoutArea ( double x , double y ,
2,034
<s> package com . asakusafw . yaess . basic ; import java . text . MessageFormat ; import java . util . ResourceBundle ; import com . asakusafw .
2,035
<s> package org . rubypeople . rdt . internal . ti . util ; import java . util . List ; import org . jruby . ast . Node ; import org . rubypeople . rdt . internal . core . parser . InOrderVisitor ; public class NodeLocator extends InOrderVisitor { protected List < String > typeNameStack ; protected boolean nodeDoesSpanOffset ( Node node , int offset ) { if ( node == null ) return false ; if ( node . getPosition ( ) == null ) return false ; return ( node . getPosition ( ) . getStartOffset ( ) <= offset ) && ( node . getPosition ( ) . getEndOffset ( ) > offset ) ; } protected int nodeSpanLength ( Node node ) { if ( node == null || node . getPosition
2,036
<s> package com . pogofish . jadt . sink ; import static org . junit . Assert . assertEquals ; import static org . junit . Assert . fail ; import org . junit . Test ; public class StringSinkTest { @ Test public void testHappy ( ) { final StringSink sink = new StringSink ( "test" ) ; try { sink . write ( "world" ) ; } finally { sink . close ( ) ; } assertEquals ( "world" , sink . result ( ) ) ; } @ Test public void
2,037
<s> package com . asakusafw . compiler . operator . model ; import com . asakusafw . compiler . operator . io . MockProjectionInput ; import com . asakusafw . compiler . operator . io . MockProjectionOutput ; import com . asakusafw . runtime . model . DataModelKind ; import com . asakusafw . runtime .
2,038
<s> package com . mcbans . firestar . mcbans . callBacks ; import java . util . HashMap ; import org . bukkit . ChatColor ; import org . bukkit . OfflinePlayer ; import com . mcbans . firestar . mcbans . BukkitInterface ; import com . mcbans . firestar . mcbans . org . json . JSONException ; import com . mcbans . firestar . mcbans . org . json . JSONObject ; import com . mcbans . firestar . mcbans . request . JsonHandler ; public class ManualSync implements Runnable { private final BukkitInterface MCBans ; private String commandSend = "" ; public ManualSync ( BukkitInterface p , String player ) { MCBans = p ; commandSend = player ; } @ Override public void run ( ) { if ( MCBans . syncRunning == true ) { return ; } while ( MCBans . notSelectedServer ) { try { Thread . sleep ( 1000 ) ; } catch ( InterruptedException e ) { } } int fre = 0 ; MCBans . syncRunning = true ; boolean goNext = true ; while ( goNext )
2,039
<s> package net . sf . sveditor . core . db . index . cache ; import java . io . DataInput ; import java . io . DataOutput ; import java . io . File ; import java . io . IOException ; import java . io . InputStream ; import java . io . OutputStream ; import java . io . RandomAccessFile ;
2,040
<s> package org . oddjob ; import java . beans . PropertyVetoException ; import java . io . Serializable ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . life . ComponentPersistException ; import org . oddjob . arooa . life . ComponentPersister ; import org . oddjob . arooa . life . MockComponentPersister ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . registry . Path ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . persist . MapPersister ; import org . oddjob . persist . OddjobPersister ; import org . oddjob . state . JobState ; import org . oddjob . state . ParentState ; import org . oddjob . state . StateEvent ; public class OddjobPersisterTest extends TestCase { private static final Logger logger = Logger . getLogger ( OddjobPersisterTest . class ) ; @ Override protected void setUp ( ) throws Exception { logger . info ( "" + getName ( ) + "" ) ; } private class OurPersister implements OddjobPersister { private final Path rootPath ; private Map < String , InnerPersister > persisters = new HashMap < String , InnerPersister > ( ) ; private List < String > persisterIds = new ArrayList < String > ( ) ; public OurPersister ( String rootPath ) { this . rootPath = new Path ( rootPath ) ; } public ComponentPersister persisterFor ( String persisterId ) { persisterIds . add ( persisterId ) ; String path = persisterId ; if ( path == null ) { path = rootPath . toString ( ) ; } InnerPersister inner = persisters . get ( path ) ; if ( inner == null ) { inner = new InnerPersister ( path ) ; persisters . put ( path , inner ) ; logger . debug ( "" + path ) ; } else { logger . debug ( "" + path ) ; } return inner ; } private class InnerPersister extends MockComponentPersister implements OddjobPersister { private final String path ; private boolean closed ; Map < String , Object > store = new HashMap < String , Object > ( ) ; public InnerPersister ( String path ) { this . path = path ; } @ Override public ComponentPersister persisterFor ( String id ) { return OurPersister . this . persisterFor ( new Path ( this . path ) . addId ( id ) . toString ( ) ) ; } @ Override public void close ( ) { closed = true ; } @ Override public void persist ( String id , Object proxy , ArooaSession session ) { if ( closed ) { return ; } try { store . put ( id , Helper . copy ( proxy ) ) ; } catch ( Exception e ) { throw new RuntimeException ( e ) ; } } @ Override public Object restore ( String id , ClassLoader classLoader , ArooaSession session ) { return store . remove ( id ) ; } @ Override public void remove ( String id , ArooaSession session ) { if ( closed ) { return ; } store . remove ( id ) ; logger . info ( "removed " + id ) ; } } } public void testPersist ( ) throws PropertyVetoException { String xml = "<oddjob>" + " <job>" + "" + " </job>" + "</oddjob>" ; Oddjob test = new Oddjob ( ) ; OurPersister persister = new OurPersister ( "root" ) ; test . setPersister ( persister ) ; test . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; assertEquals ( 0 , persister . persisters . size ( ) ) ; test . run ( ) ; OurPersister . InnerPersister inner = persister . persisters . get ( "root" ) ; assertEquals ( 1 , inner . store . size ( ) ) ; assertTrue ( inner . store . containsKey ( "e" ) ) ; test . hardReset ( ) ; test . run ( ) ; assertEquals ( JobState . COMPLETE , Helper . getJobState ( new OddjobLookup ( test ) . lookup ( "e" ) ) ) ; test . destroy ( ) ; } String xml = "" + " <job>" + "" + "" + " <xml>" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + " </xml>" + "" + " </oddjob>" + " </job>" + "</oddjob>" ; public void testNestedPersisterResets ( ) throws PropertyVetoException , ArooaPropertyException , ArooaConversionException { Oddjob test = new Oddjob ( ) ; test . setConfiguration ( new XMLConfiguration ( "XML" , xml ) ) ; OurPersister persister = new OurPersister ( "root" ) ; test . setPersister ( persister ) ; logger . debug ( "* Running *" ) ; test . run ( ) ; OurPersister . InnerPersister outer = persister . persisters
2,041
<s> package br . com . caelum . vraptor . dash . statement ; import java . util . List ; import br . com . caelum . vraptor . Delete ; import br . com . caelum . vraptor . Get ; import br . com . caelum . vraptor . Path ; import br . com . caelum . vraptor . Post ; import br . com . caelum . vraptor . Put ; import br . com . caelum . vraptor . Resource ; import br . com . caelum . vraptor . Result ; import br . com . caelum . vraptor . Validator ; import br . com . caelum . vraptor . freemarker . FreemarkerView ; import br . com . caelum . vraptor . validator . I18nMessage ; import br . com . caelum . vraptor . view . HttpResult ; import br . com . caelum . vraptor . view . Results ; @ Resource public class StatementController { private static final String SHOW = "" ; private static final String NONE = "" ; private static final String INDEX = "" ; private final Result result ; private final Validator validator ; private final StatementDao statements ; private final StatementAwareUser currentUser ; public StatementController ( Result result , Validator validator , StatementDao statementDao , StatementAwareUser currentUser ) { this . result = result ; this . validator = validator ; this . statements = statementDao ; this . currentUser = currentUser ; } @ Path ( "" ) @ Get public void index ( Integer size ) { if ( ! currentUser . canCreateStatements ( ) ) { result . use ( HttpResult . class ) . sendError ( 401 ) ; return ; } if ( size == null ) { size = 100 ; } result . include ( "statements" , statements . all ( size ) ) ; result . include ( "size" , size ) ; result . use ( FreemarkerView . class ) . withTemplate ( INDEX ) ; } @ Path ( value = "" , priority = Path . LOWEST ) @ Post public void show ( Statement statement , String password , Integer maxResults ) { statement = statements . load ( statement . getId ( ) ) ; maxResults = ( maxResults == null ? 100 : maxResults ) ; if ( canView ( statement , password ) ) { List < Object [ ] > results = executeStatement ( statement , maxResults ) ; List < String > columns = statement . getColumns ( ) ; renderResponse ( statement , results , columns , maxResults ) ; } else { result . use ( HttpResult . class ) . sendError ( 401 ) ; } } private boolean canView ( Statement statement , String password ) { return currentUser . canCreateStatements ( ) || statement . canBeAccessedWithKey ( password ) ; } @ Path ( "" ) @ Get public void form ( Statement statement , Integer maxResults ) { if ( canView ( statement , "" ) ) { result . forwardTo ( this ) . show ( statement , "" , maxResults ) ; } else { result . include ( "maxResults" , maxResults ) ; result . include ( "statement" , statement ) ; result . use ( FreemarkerView . class ) . withTemplate ( "" ) ; } } @ Path ( "" ) @ Post public void showJSON ( Statement statement , String password , Integer maxResults ) { statement = statements . load ( statement . getId ( ) ) ; if ( canView ( statement , password ) ) { List < Object [ ] > results = executeStatement ( statement , maxResults ) ; result . use ( Results . json ( ) ) . from ( results ) . serialize ( ) ; } else { result . use ( HttpResult . class ) . sendError ( 401
2,042
<s> package org . rubypeople . rdt . refactoring . ui ; import org . eclipse . jface . viewers . ITreeContentProvider ; import org . eclipse . jface . viewers . Viewer ; public abstract class TreeContentProvider implements ITreeContentProvider { public Object [ ] getChildren ( Object parentElement ) { if ( parentElement instanceof IChildrenProvider ) { return ( ( IChildrenProvider ) parentElement ) . getChildren ( ) ; } return new Object [ 0 ] ; } public Object getParent ( Object element ) { return null ; } public boolean hasChildren ( Object element ) { if ( element instanceof IChildrenProvider ) { return ( ( IChildrenProvider ) element ) . hasChildren ( ) ; } return false ; }
2,043
<s> package com . asakusafw . runtime . directio . hadoop ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . io . IOException ; import java . util . Random ; import org . apache . hadoop . conf . Configuration ; import org . apache . hadoop . fs . FSDataOutputStream ; import org . apache . hadoop . fs . FileSystem ; import org . apache . hadoop . fs . LocalFileSystem ; import org . apache . hadoop . fs . Path ; import org . apache . hadoop . io . LongWritable ; import org . apache . hadoop . io . SequenceFile ; import org . apache . hadoop . io . Text ; import org . apache . hadoop . io . compress . CompressionCodec ; import org . apache . hadoop . io . compress . DefaultCodec ; import org . junit . Before ; import org . junit . Rule ; import org . junit . Test ; import org . junit . rules . TemporaryFolder ; import com . asakusafw . runtime . directio . Counter ; import com . asakusafw . runtime . io . ModelInput ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . value . StringOption ; public class SequenceFileFormatTest { @ Rule public final TemporaryFolder folder = new TemporaryFolder ( ) ; private Configuration conf ; private MockFormat format ; @ Before public void setUp ( ) throws Exception { this . conf = new Configuration ( true ) ; this . format = new MockFormat ( ) ; format . setConf ( conf ) ; } @ Test public void input ( ) throws Exception { final int count = 10000 ; LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; SequenceFile . Writer writer = SequenceFile . createWriter ( fs , conf , path , LongWritable . class , Text . class ) ; try { LongWritable k = new LongWritable ( ) ; Text v = new Text ( ) ; for ( int i = 0 ; i < count ; i ++ ) { k . set ( i ) ; v . set ( "" + i ) ; writer . append ( k , v ) ; } } finally { writer . close ( ) ; } ModelInput < StringOption > in = format . createInput ( StringOption . class , fs , path , 0 , fs . getFileStatus ( path ) . getLen ( ) , new Counter ( ) ) ; try { StringOption value = new StringOption ( ) ; for ( int i = 0 ; i < count ; i ++ ) { String answer = "" + i ; assertThat ( answer , in . readTo ( value ) , is ( true ) ) ; assertThat ( value . getAsString ( ) , is ( answer ) ) ; } assertThat ( "eof" , in . readTo ( value ) , is ( false ) ) ; } finally { in . close ( ) ; } } @ Test public void input_fragment ( ) throws Exception { final int count = 30000 ; Random rand = new Random ( ) ; LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; SequenceFile . Writer writer = SequenceFile . createWriter ( fs , conf , path , LongWritable . class , Text . class ) ; try { LongWritable k = new LongWritable ( ) ; Text v = new Text ( ) ; for ( int i = 0 ; i < count ; i ++ ) { k . set ( i ) ; v . set ( "" + i ) ; writer . append ( k , v ) ; } } finally { writer . close ( ) ; } long fileLen = fs . getFileStatus ( path ) . getLen ( ) ; StringOption value = new StringOption ( ) ; for ( int attempt = 0 ; attempt < 5 ; attempt ++ ) { int index = 0 ; long offset = 0 ; while ( offset < fileLen ) { long length = SequenceFile . SYNC_INTERVAL * ( rand . nextInt ( 10 ) + 2 ) ; length = Math . min ( length , fileLen - offset ) ; ModelInput < StringOption > in = format . createInput ( StringOption . class , fs , path , offset , length , new Counter ( ) ) ; try { while ( in . readTo ( value ) ) { String answer = "" + index ; assertThat ( value . getAsString ( ) , is ( answer ) ) ; index ++ ; } assertThat ( "eof" , in . readTo ( value ) , is ( false ) ) ; } finally { in . close ( ) ; } offset += length ; } assertThat ( index , is ( count ) ) ; } } @ Test public void input_largerecord ( ) throws Exception { StringBuilder buf = new StringBuilder ( ) ; for ( int i = 0 ; i < 1000000 ; i ++ ) { buf . append ( "" ) ; } Text record = new Text ( buf . toString ( ) ) ; final int count = 5 ; LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; SequenceFile . Writer writer = SequenceFile . createWriter ( fs , conf , path , LongWritable . class , Text . class ) ; try { LongWritable k = new LongWritable ( ) ; Text v = new Text ( ) ; for ( int i = 0 ; i < count ; i ++ ) { k . set ( i ) ; v . set ( record ) ; writer . append ( k , v ) ; } } finally { writer . close ( ) ; } long fileLen = fs . getFileStatus ( path ) . getLen ( ) ; StringOption value = new StringOption ( ) ; int index = 0 ; long offset = 0 ; while ( offset < fileLen ) { long length = SequenceFile . SYNC_INTERVAL * 2 ; length = Math . min ( length , fileLen - offset ) ; ModelInput < StringOption > in = format . createInput ( StringOption . class , fs , path , offset , length , new Counter ( ) ) ; try { while ( in . readTo ( value ) ) { assertThat ( value . get ( ) , is ( record ) ) ; index ++ ; } assertThat ( "eof" , in . readTo ( value ) , is ( false ) ) ; } finally { in . close ( ) ; } offset += length ; } assertThat ( index , is ( count ) ) ; } @ Test public void input_empty ( ) throws Exception { LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; fs . create ( path ) . close ( ) ; ModelInput < StringOption > in = format . createInput ( StringOption . class , fs , path , 0 , fs . getFileStatus ( path ) . getLen ( ) , new Counter ( ) ) ; try { assertThat ( "eof" , in . readTo ( new StringOption ( ) ) , is ( false ) ) ; } finally { in . close ( ) ; } } @ Test ( expected = IOException . class ) public void input_invalid ( ) throws Exception { LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; FSDataOutputStream output = fs . create ( path ) ; try { output . writeUTF ( "" ) ; } finally { output . close ( ) ; } ModelInput < StringOption > in = format . createInput ( StringOption . class , fs , path , 0 , fs . getFileStatus ( path ) . getLen ( ) , new Counter ( ) ) ; in . close ( ) ; } @ SuppressWarnings ( "deprecation" ) @ Test public void output ( ) throws Exception { final int count = 10000 ; LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; ModelOutput < StringOption > out = format . createOutput ( StringOption . class , fs , path , new Counter ( ) ) ; try { StringOption value = new StringOption ( ) ; for ( int i = 0 ; i < count ; i ++ ) { value . modify ( "" + i ) ; out . write ( value ) ; } } finally { out . close ( ) ; } SequenceFile . Reader reader = new SequenceFile . Reader ( fs , path , conf ) ; try { LongWritable k = new LongWritable ( ) ; Text v = new Text ( ) ; for ( int i = 0 ; i < count ; i ++ ) { String answer = "" + i ; assertThat ( answer , reader . next ( k , v ) , is ( true ) ) ; assertThat ( answer , k . get ( ) , is ( 1L ) ) ; assertThat ( answer , v . toString ( ) , is ( answer ) ) ; } assertThat ( "eof" , reader . next ( k ) , is ( false ) ) ; } finally { reader . close ( ) ; } } @ Test public void output_compressed ( ) throws Exception { LocalFileSystem fs = FileSystem . getLocal ( conf ) ; Path path = new Path ( folder . newFile ( "testing" ) . toURI ( ) ) ; ModelOutput < StringOption > out = format . codec ( new DefaultCodec ( ) ) . createOutput ( StringOption . class , fs , path , new Counter ( ) ) ; try { out . write ( new StringOption ( "" ) ) ; } finally { out . close ( ) ; } SequenceFile . Reader reader = new SequenceFile . Reader ( fs , path , conf ) ; try { assertThat ( reader . getCompressionCodec ( ) , instanceOf ( DefaultCodec . class ) ) ; } finally { reader
2,044
<s> package net . sf . sveditor . core . docs ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import net . sf . sveditor . core . Tuple ; import net . sf . sveditor . core . docs . model . DocTopic ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; public class DocCommentParser implements IDocCommentParser { private LogHandle fLog ; private IDocTopicManager fDocTopics ; public DocCommentParser ( ) { this ( null ) ; } public DocCommentParser ( IDocTopicManager docTopics ) { fLog = LogFactory . getLogHandle ( "" ) ; fDocTopics = docTopics ; } private static Pattern fPatternHeaderLine = Pattern . compile ( "" , Pattern . CASE_INSENSITIVE ) ; private static Pattern fPatternIsDocComment = Pattern . compile ( "" , Pattern . CASE_INSENSITIVE | Pattern . DOTALL ) ; private static Pattern fPatternCodeSectionEnd = Pattern . compile ( "" , Pattern . CASE_INSENSITIVE ) ; private static Pattern fPatternDefinition = Pattern . compile ( "" ) ; private static Pattern fPatternCodeSectionStart = Pattern . compile ( "" , Pattern . CASE_INSENSITIVE ) ; private static Pattern headerLinePattern = Pattern . compile ( "" ) ; private static Pattern fSummaryPattern = Pattern . compile ( "" , Pattern . DOTALL ) ; public String isDocComment ( String comment ) { String lines [ ] = DocCommentCleaner . splitCommentIntoLines ( comment ) ; for ( String line : lines ) { Matcher matcher = fPatternIsDocComment . matcher ( line ) ; if ( matcher . matches ( ) ) { if ( fDocTopics == null ) { return matcher . group ( 2 ) ; } String keyword = matcher . group ( 1 ) . toLowerCase ( ) ; if ( fDocTopics . getTopicType ( keyword ) != null ) { return matcher . group ( 2 ) ; } } } return null ; } public DocTopic createDocItemForKeyword ( String keyword , String topicTitle ) { DocKeywordInfo kwi = fDocTopics . getTopicType ( keyword . toLowerCase ( ) ) ; if ( kwi == null ) { return null ; } DocTopic docItem ; String topicTypeName = kwi . getTopicType ( ) . getName ( ) ; docItem = new DocTopic ( topicTitle , topicTypeName , keyword ) ; return docItem ; } public void parse ( String comment , List < DocTopic > docTopics ) { String lines [ ] = DocCommentCleaner . splitCommentIntoLines ( comment ) ; try { DocCommentCleaner . clean ( lines ) ; parseComment ( lines , docTopics ) ; } catch ( Exception e ) { fLog . error ( "" , e ) ; } } enum TagType { POSSIBLE_OPENING_TAG , POSSIBLE_CLOSING_TAG , NOT_A_TAG } ; public int parseComment ( String lines [ ] , List < DocTopic > docTopics ) { int topicCount = 0 ; boolean prevLineBlank = true ; boolean inCodeSection = false ; int index = 0 ; String title = null ; String keyword = null ; int bodyStart = 0 ; int bodyEnd = 0 ; Tuple < String , String > tupleKeywordTitle = new Tuple < String , String > ( null , null ) ; while ( index < lines . length ) { if ( inCodeSection ) { if ( fPatternCodeSectionEnd . matcher ( lines [ index ] ) . matches ( ) ) { inCodeSection = false ; } prevLineBlank = false ; bodyEnd ++ ; } else if ( lines [ index ] . length ( ) == 0 ) { prevLineBlank = true ; if ( topicCount != 0 ) { bodyEnd ++ ; } } else if ( prevLineBlank && parseHeaderLine ( tupleKeywordTitle , lines [ index ] ) ) { if ( topicCount != 0 ) { String body = formatBody ( lines , bodyStart , bodyEnd ) ; String summary = "" ; if ( body != null ) { summary = getSummaryFromBody ( body ) ; } DocTopic newDocItem = createDocItemForKeyword ( keyword , title ) ; newDocItem . setBody ( body ) ; newDocItem . setSummary ( summary ) ; docTopics . add ( newDocItem ) ; } keyword = tupleKeywordTitle . first ( ) ; title = tupleKeywordTitle . second ( ) ; bodyStart = index + 1 ; bodyEnd = index + 1 ; topicCount ++ ; prevLineBlank = false ; } else if ( topicCount != 0 ) { prevLineBlank = false ; bodyEnd ++ ; if ( fPatternCodeSectionStart . matcher ( lines [ index ] ) . matches ( ) ) { inCodeSection = true ; } } index ++ ; } if ( topicCount != 0 ) { String body = formatBody ( lines , bodyStart , bodyEnd ) ; String summary = "" ; if ( body != null ) { summary = getSummaryFromBody ( body ) ; } DocTopic newTopic = createDocItemForKeyword ( keyword , title ) ; newTopic . setBody ( body ) ; newTopic . setSummary ( summary ) ; docTopics . add ( newTopic ) ; topicCount ++ ; } return topicCount ; } private boolean parseHeaderLine ( Tuple < String , String > tupleKeywordTitle , String line ) { Matcher matcher = fPatternHeaderLine . matcher ( line ) ; if ( matcher . matches ( ) ) { String keyWord = matcher . group ( 1 ) ; String title = matcher . group ( 2 ) ; if ( fDocTopics . getTopicType ( keyWord . toLowerCase ( ) ) != null ) { tupleKeywordTitle . setFirst ( keyWord ) ; tupleKeywordTitle . setSecond ( title ) ; return true ; } else { return false ; } } else { return false ; } } enum Tag { NONE , PARAGRAPH , BULLETLIST , DESCRIPTIONLIST , HEADING , PREFIXCODE , TAGCODE } ; private static final Map < Tag , String > fTagEnders ; static { fTagEnders = new HashMap < Tag , String > ( ) ; fTagEnders . put ( Tag . NONE , "" ) ; fTagEnders . put ( Tag . PARAGRAPH , "</p>" ) ; fTagEnders . put ( Tag . BULLETLIST , "</li></ul>" ) ; fTagEnders . put ( Tag . DESCRIPTIONLIST , "</dd></dl>" ) ; fTagEnders . put ( Tag . HEADING , "</h>" ) ; fTagEnders . put ( Tag . PREFIXCODE , "" ) ; fTagEnders . put ( Tag . TAGCODE , "</code>" ) ; } @ SuppressWarnings ( "unused" ) private String formatBody ( String [ ] lines , int startIndex , int endIndex ) { Tag topLevelTag = Tag . NONE ; String output = "" ; String textBlock = null ; boolean prevLineBlank = true ; Tuple < String , Integer > codeBlockTuple = new Tuple < String , Integer > ( "" , 0 ) ; boolean ignoreListSymbols ; int index = startIndex ; while ( index < endIndex ) { Pattern codeDesignatorPattern = Pattern . compile ( "" ) ; Matcher codeDesignatorMatcher = codeDesignatorPattern . matcher ( lines [ index ] ) ; Matcher headerLineMatcher = headerLinePattern . matcher ( lines [ index ] ) ; Matcher definitionMatcher = fPatternDefinition . matcher ( lines [ index ] ) ; if ( topLevelTag == Tag . TAGCODE ) { if ( false ) { } else { AddToCodeBlock ( lines [ index ] , codeBlockTuple ) ; } ; } else if ( codeDesignatorMatcher . matches ( ) ) { String code = codeDesignatorMatcher . group ( 1 ) ; if ( topLevelTag == Tag . PREFIXCODE ) { AddToCodeBlock ( code , codeBlockTuple ) ; } else { if ( textBlock != null ) { output += richFormatTextBlock ( textBlock ) + fTagEnders . get ( topLevelTag ) ; textBlock = null ; } topLevelTag = Tag . PREFIXCODE ; output += "" ; AddToCodeBlock ( code , codeBlockTuple ) ; } } else { lines [ index ] = lines [ index ] . replaceFirst ( "^ +" , "" ) ; Pattern bulletLinePatter = Pattern . compile ( "" ) ; Matcher bulletLineMatcher = bulletLinePatter . matcher ( lines [ index ] ) ; if ( topLevelTag == Tag . PREFIXCODE ) { output += convertAmpChars ( codeBlockTuple . first ( ) ) + "" ; codeBlockTuple . setFirst ( "" ) ; codeBlockTuple . setSecond ( 0 ) ; topLevelTag = Tag . NONE ; prevLineBlank = false ; } if ( lines [
2,045
<s> package org . springframework . social . quickstart . config ; import javax . inject . Inject ; import org . springframework . context . annotation . Bean ; import org . springframework . context . annotation . Configuration ; import org . springframework . social . connect . UsersConnectionRepository ; import org . springframework . social . quickstart . user . UserInterceptor ; import org . springframework . web . multipart . MultipartResolver ; import org . springframework . web . multipart . commons . CommonsMultipartResolver ; import org . springframework . web . servlet . ViewResolver ; import org . springframework . web . servlet . config . annotation . DefaultServletHandlerConfigurer ; import org . springframework . web . servlet . config . annotation . EnableWebMvc ; import org .
2,046
<s> package org . rubypeople . rdt . refactoring . ui . pages ; import java . util . Collection ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . ModifyEvent ; import org . eclipse . swt . events . ModifyListener ; import org . eclipse . swt . graphics . Color ; import org . eclipse . swt . graphics . RGB ; import org . eclipse . swt . layout . FormAttachment ; import org . eclipse . swt . layout . FormData ; import org . eclipse . swt . layout . FormLayout ; 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 . eclipse . swt . widgets . Text ; import org . rubypeople . rdt . refactoring . core . splitlocal . ISplittedNamesReceiver ; import org . rubypeople . rdt . refactoring . core . splitlocal . LocalVarUsage ; import org . rubypeople . rdt . refactoring . core . splitlocal . SplitTempRefactoring ; import org . rubypeople . rdt . refactoring . ui . RdtCodeViewer ; import org . rubypeople . rdt . refactoring . util . NameValidator ; public class SplitLocalPage extends RefactoringWizardPage { private static final int SEPARATOR_AT = 200 ; private static final int BORDER_WIDTH = 5 ; private static RGB [ ] colors ; private final Collection < LocalVarUsage > localUsages ; private final String source ; private final ISplittedNamesReceiver receiver ; private Text [ ] names ; static { colors = new RGB [ ] { new RGB ( 173 , 193 , 217 ) , new RGB ( 223 , 167 , 166 ) , new RGB ( 206 , 221 , 176 ) , new RGB ( 191 , 178 , 207 ) , new RGB ( 165 , 213 , 226 ) , new RGB ( 250 , 206 , 170 ) , new RGB ( 132 , 162 , 198 ) , new RGB ( 207 , 123 , 121 ) , new RGB ( 181 , 204 , 136 ) , new RGB ( 159 , 140 , 183 ) , new RGB ( 120 , 192 , 212 ) , new RGB ( 247 , 181 , 128 ) , new RGB ( 143 , 164 , 190 ) } ; } public SplitLocalPage ( Collection < LocalVarUsage > localUsages , String source , ISplittedNamesReceiver receiver ) { super ( SplitTempRefactoring . NAME + "..." ) ; this . localUsages = localUsages ; this . source = source ; this . receiver = receiver ; setTitle ( SplitTempRefactoring . NAME ) ; } public void createControl ( Composite parent ) { Composite main = new Composite ( parent , SWT . NONE ) ; FormLayout thisLayout = new FormLayout ( ) ; main . setLayout ( thisLayout ) ; Composite variableNames = new Composite ( main , SWT . NONE ) ; GridLayout variableNamesLayout = new GridLayout ( ) ; variableNamesLayout . makeColumnsEqualWidth = true ; FormData variableNamesLayoutData = new FormData ( ) ; variableNamesLayoutData . top = new FormAttachment ( 0 ,
2,047
<s> package org . rubypeople . rdt . refactoring . core . inlinemethod ; import org . rubypeople . rdt . refactoring . classnodeprovider . IncludedClassesProvider ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentProvider ;
2,048
<s> package org . oddjob . doclet ; import java . util . ArrayList ; import java . util . List ; import org . oddjob . arooa . parsing . QTag ; public class PageData { private final QTag name ; private final String fileName ; private String firstSentence ; private String description ; private final List < String
2,049
<s> package org . springframework . social . google . api . tasks ; import java . util . Date ; import org . springframework . social . google . api . query . ApiQueryBuilder ; import org . springframework . social . google . api . query . QueryBuilder ; public interface TaskQueryBuilder extends ApiQueryBuilder < TaskQueryBuilder , TasksPage > { TaskQueryBuilder fromTaskList ( String taskListId ) ; TaskQueryBuilder completedFrom ( Date completedMin ) ; TaskQueryBuilder completedUntil ( Date
2,050
<s> package de . fuberlin . wiwiss . d2rq . vocab ; import com . hp . hpl . jena . rdf . model . Model ; import com . hp . hpl . jena . rdf . model . ModelFactory ; import com . hp . hpl . jena . rdf . model . Property ; import com . hp . hpl . jena . rdf . model . Resource ; public class VoID { private static Model vocabModel = ModelFactory . createDefaultModel ( ) ; public static final String NS = "" ; public static final Resource NAMESPACE = vocabModel . createResource ( NS ) ; public static final Resource Dataset = vocabModel . createResource ( NS + "Dataset" ) ; public static final
2,051
<s> package org . rubypeople . rdt . internal . ui . text . spelling . engine ; import java . util . Set ; public interface ISpellChecker { public void addDictionary ( ISpellDictionary dictionary ) ; public void addListener ( ISpellEventListener listener ) ;
2,052
<s> package br . com . caelum . vraptor . dash . monitor ; import java . lang . management . ManagementFactory ; import java . lang . management . MemoryMXBean ; import java . lang . management . ThreadMXBean ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; public class BasicMonitor { private static final Logger logger = LoggerFactory . getLogger ( BasicMonitor . class ) ; public void logStats ( ) { ThreadMXBean threads = ManagementFactory . getThreadMXBean ( ) ; MemoryMXBean memory = ManagementFactory . getMemoryMXBean ( ) ; checkDeadlocks ( threads ) ; logger . info ( "" , new Object [ ] { memory . getHeapMemoryUsage ( )
2,053
<s> package net . sf . sveditor . core . db . stmt ; import net . sf . sveditor . core . db . ISVDBNamedItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBCoverageOptionStmt extends SVDBStmt implements ISVDBNamedItem { public boolean fIsTypeOption ; public String fName ; public SVDBExpr fExpr ; public SVDBCoverageOptionStmt ( ) { super ( SVDBItemType . CoverageOptionStmt ) ; } public SVDBCoverageOptionStmt ( String name , boolean is_type_option ) { super ( SVDBItemType . CoverageOptionStmt ) ; fName = name ; fIsTypeOption
2,054
<s> package handson . springbatch ; import static org . junit . Assert . assertEquals ; import org . junit . Assert ; import org . junit . Test ; import org . junit . runner . RunWith ; import org . springframework . batch . core . BatchStatus ; import org . springframework . batch . core . JobExecution ; import org . springframework . batch . core . JobParameter ; import org . springframework . batch . core . JobParameters ; import org . springframework . batch . core . JobParametersBuilder ; import org . springframework . batch . core . StepExecution ; import org . springframework . batch . test . JobLauncherTestUtils ; import org . springframework . beans . factory . annotation . Autowired ; import org . springframework . jdbc . core . JdbcTemplate ; import org . springframework . test . annotation . DirtiesContext ; import org . springframework . test . annotation . DirtiesContext . ClassMode ; import org . springframework . test . context . ContextConfiguration ; import org . springframework . test . context . junit4 . SpringJUnit4ClassRunner ; @ RunWith ( SpringJUnit4ClassRunner . class ) @ ContextConfiguration @ DirtiesContext ( classMode = ClassMode . AFTER_EACH_TEST_METHOD ) public class EmployeeStep1Test { @ Autowired private JobLauncherTestUtils jobLauncherTestUtils ; @ Autowired private JdbcTemplate jdbcTemplate ; @ Test public void read_sample_employees ( ) throws Exception { JobParameters jobParameters = new JobParametersBuilder ( ) . addParameter ( "" , new JobParameter ( "" ) ) . toJobParameters ( ) ; JobExecution jobExecution = jobLauncherTestUtils . launchStep ( "step1" , jobParameters ) ; Assert . assertEquals ( BatchStatus . COMPLETED , jobExecution . getStatus (
2,055
<s> package com . asakusafw . compiler . flow . example ; import com . asakusafw . compiler . operator . model . MockHoge ; 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 . Out ; public class NotAnnotatedJobFlow extends FlowDescription { private In < MockHoge > in ; private Out
2,056
<s> package fi . koku . services . entity . person . v1 ; import java . util . ArrayList ; import java . util . List ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import fi . koku . KoKuFaultException ; public class PersonService { private static final Logger LOG = LoggerFactory . getLogger ( PersonService . class ) ; private PersonInfoProvider infoProvider ; public PersonService ( ) { try { infoProvider = ( PersonInfoProvider ) this . getClass ( ) . getClassLoader ( ) . loadClass ( PersonConstants . PERSON_PROVIDER_IMPL_CLASS_NAME ) . newInstance ( ) ; LOG . info ( "" + infoProvider ) ; } catch ( Exception e ) { throw new KoKuFaultException ( 98989 , "" + PersonConstants . PERSON_PROVIDER_IMPL_CLASS_NAME , e ) ; } } public List < Person > getPersonsByPics ( List < String > pics , final String domain , final String auditUserId , final String auditComponentId ) { List < Person > personList = null ; if ( pics != null && ! pics . isEmpty ( ) ) { if ( isNotNullOrEmpty ( auditUserId ) & isNotNullOrEmpty ( auditComponentId ) ) { if ( PersonConstants . PERSON_SERVICE_DOMAIN_CUSTOMER . equals ( domain ) ) { personList = infoProvider . getPersonsFromCustomerDomainWithPicList ( pics , auditUserId , auditComponentId ) ; } else if ( PersonConstants . PERSON_SERVICE_DOMAIN_OFFICER . equals ( domain ) ) { personList = infoProvider . getPersonsFromOfficerDomainWithPicList ( pics , auditUserId , auditComponentId ) ; } else { LOG . error ( "" ) ; } } else { LOG . debug ( "" + domain + "" + auditUserId + "" + auditComponentId ) ; } } else { LOG . debug ( "" ) ; } return personList ; } public List < Person > getPersonsByUids ( List < String > uids , final String domain , final String auditUserId , final String auditComponentId ) { List < Person > personList = null ; if ( uids != null && ! uids . isEmpty ( ) ) { personList = new ArrayList < Person > (
2,057
<s> package de . fuberlin . wiwiss . d2rq . sql ; import java . util . regex . Pattern ; public interface Quoter { public abstract String quote ( String s ) ;
2,058
<s> package org . rubypeople . rdt . ui . text . ruby ; import org . jruby . ast . Node ; import org . jruby . ast . RootNode ; public interface IProblemLocation {
2,059
<s> package org . rubypeople . rdt . internal . corext . template . ruby ; import org . eclipse . jface . text . IDocument ; import org . eclipse . jface . text . templates . GlobalTemplateVariables ; import org . eclipse
2,060
<s> package org . rubypeople . rdt . internal . formatter . rewriter ; import org . rubypeople . rdt . core . formatter . ReWriteVisitor ; import org . rubypeople . rdt . core . formatter . ReWriterContext ; public class DRegxReWriteVisitor extends ReWriteVisitor {
2,061
<s> package org . rubypeople . rdt . refactoring . core . formatsource ; import org . jruby . ast . Node ; import org . rubypeople . rdt . refactoring . editprovider . ReplaceEditProvider ; public class FormattedSourceEditProvider
2,062
<s> package org . rubypeople . rdt . ui . actions ; import org . eclipse . ui . IWorkbenchSite ; import org . eclipse . ui . IWorkingSet ; import org . eclipse . ui . PlatformUI ; import org . rubypeople . rdt . core . IField ; import org . rubypeople . rdt . core . search . IRubySearchConstants ; import org . rubypeople . rdt . internal . ui . IRubyHelpContextIds ; import org . rubypeople . rdt . internal . ui . RubyPluginImages ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyEditor ; import org . rubypeople . rdt . internal . ui . search . SearchMessages ; public class FindReadReferencesInWorkingSetAction extends FindReferencesInWorkingSetAction { public FindReadReferencesInWorkingSetAction ( IWorkbenchSite site ) { super ( site ) ; } public FindReadReferencesInWorkingSetAction ( IWorkbenchSite site , IWorkingSet [ ] workingSets ) { super ( site , workingSets ) ; } public FindReadReferencesInWorkingSetAction ( RubyEditor editor ) { super ( editor ) ; } public FindReadReferencesInWorkingSetAction ( RubyEditor editor , IWorkingSet [ ] workingSets ) { super ( editor , workingSets ) ; } Class
2,063
<s> package net . sf . sveditor . ui . text ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBClassDecl ; import net . sf . sveditor . core . db . SVDBItem ; import net . sf . sveditor . core . db . SVDBItemType ; import net . sf . sveditor . core . hierarchy . ClassHierarchyTreeFactory ; import net . sf . sveditor . core . hierarchy . HierarchyTreeNode ; import net . sf . sveditor . ui . SVEditorUtil ; import net . sf . sveditor . ui . editor . SVEditor ; import net . sf . sveditor . ui . views . hierarchy . HierarchyTreeContentProvider ; import net . sf . sveditor . ui . views . hierarchy . HierarchyTreeLabelProvider ; import org . eclipse . jface . viewers . DoubleClickEvent ; import org . eclipse . jface . viewers . IDoubleClickListener ; import org . eclipse . jface . viewers . IElementComparer ; import org . eclipse . jface . viewers . IStructuredSelection ; import org . eclipse . jface . viewers . TreeViewer ; import org . eclipse . jface . viewers . ViewerComparator ; import org . eclipse . swt . SWT ; import org . eclipse . swt . events . KeyEvent ; import org . eclipse . swt . events . KeyListener ; import org . eclipse . swt . layout . GridData ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Shell ; import org . eclipse . swt . widgets . Tree ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . PartInitException ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . dialogs . FilteredTree ; import org . eclipse . ui . dialogs . PatternFilter ; public class HierarchyInformationControl extends AbstractInformationControl { public HierarchyInformationControl ( Shell parent , int shellStyle , int treeStyle , String commandId ) { super ( parent , shellStyle , treeStyle , commandId , true ) ; } protected FilteredTree fObjectTree ; protected PatternFilter fPatternFilter ; protected TreeViewer fTreeViewer ; protected SVDBClassDecl fClassDecl ; protected SVEditor fEditor ; @ Override public void setFocus ( ) { fObjectTree . getFilterControl ( ) . setFocus ( ) ; } ; @ Override protected TreeViewer createTreeViewer ( Composite parent , int style ) { fPatternFilter = new PatternFilter ( ) ; fObjectTree = new FilteredTree ( parent , SWT . H_SCROLL , fPatternFilter , true ) ; fTreeViewer = fObjectTree . getViewer ( ) ; final Tree tree = fTreeViewer . getTree ( ) ; GridData gd = new GridData ( GridData . FILL_BOTH ) ; gd . heightHint = tree . getItemHeight ( ) * 20 ; gd . widthHint = 600 ; tree . setLayoutData ( gd ) ; fTreeViewer . setContentProvider ( new HierarchyTreeContentProvider ( ) ) ; fTreeViewer . setLabelProvider ( new HierarchyTreeLabelProvider ( ) ) ; fTreeViewer . setComparator ( new ViewerComparator ( ) ) ; fTreeViewer . setComparer ( new IElementComparer ( ) { public int hashCode ( Object element ) { return element . hashCode ( ) ; } public boolean equals ( Object a , Object b ) { return ( a == b ) ; } } ) ; fTreeViewer . addDoubleClickListener ( new IDoubleClickListener ( ) { public void doubleClick ( DoubleClickEvent event ) { IStructuredSelection sel = ( IStructuredSelection ) event . getSelection ( ) ; if ( sel . getFirstElement ( ) instanceof HierarchyTreeNode ) { HierarchyTreeNode n = ( HierarchyTreeNode ) sel . getFirstElement ( ) ; SVDBItem item = n . getItemDecl ( ) ; if ( item != null ) { try { SVEditorUtil . openEditor ( item ) ; } catch ( PartInitException e ) { e . printStackTrace ( ) ; } } close ( ) ; } } } ) ; fTreeViewer . getTree ( ) . addKeyListener ( new KeyListener ( ) { public void keyPressed ( KeyEvent e ) { if ( tree .
2,064
<s> package org . rubypeople . rdt . refactoring . core . renamemethod ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashSet ; import org . jruby . ast . MethodDefNode ; import org . jruby . ast . Node ; import org . jruby . ast . SymbolNode ; import org . rubypeople . rdt . refactoring . classnodeprovider . ClassNodeProvider ; import org . rubypeople . rdt . refactoring . core . IRefactoringConfig ; import org . rubypeople . rdt . refactoring . core . NodeProvider ; import org . rubypeople . rdt . refactoring . core . RefactoringConditionChecker ; import org . rubypeople . rdt . refactoring . core . SelectionNodeProvider ; import org . rubypeople . rdt . refactoring . core . renamefield . FieldProvider ; import org . rubypeople . rdt . refactoring . core . renamefield . InstVarAccessesFinder ; import org . rubypeople . rdt . refactoring . documentprovider . DocumentWithIncluding ; import org . rubypeople . rdt . refactoring . exception . NoClassNodeException ; import org . rubypeople . rdt . refactoring . nodewrapper . ArgsNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . ClassNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . INodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodCallNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . MethodNodeWrapper ; import org . rubypeople . rdt . refactoring . nodewrapper . PartialClassNodeWrapper ; public class RenameMethodConditionChecker extends RefactoringConditionChecker { public static final String DEFAULT_ERROR = Messages . RenameMethodConditionChecker_NoMethodSelected ; private RenameMethodConfig config ; public RenameMethodConditionChecker ( RenameMethodConfig config ) { super ( config ) ; } @ Override public void init ( IRefactoringConfig configObj ) { this . config = ( RenameMethodConfig ) configObj ; config . setDocProvider ( new DocumentWithIncluding ( config . getDocumentProvider ( ) ) ) ; Node rootNode = config . getDocumentProvider ( ) . getActiveFileRootNode ( ) ; try { this . config . setClassNode ( SelectionNodeProvider . getSelectedClassNode ( rootNode , this . config . getCaretPosition ( ) ) ) ; } catch ( NoClassNodeException e ) { } setSelectedMethodNode ( rootNode ) ; if ( config . getTargetMethod ( ) . getWrappedNode ( ) != null ) { this . config . setPossibleCalls ( getAllCallCandidates ( ) ) ; } } private void setSelectedMethodNode ( Node rootNode ) { MethodDefNode methodNode = ( MethodDefNode ) SelectionNodeProvider . getSelectedNodeOfType ( rootNode , this . config . getCaretPosition ( ) , MethodDefNode . class ) ; if ( methodNode == null ) { SymbolNode selectedSymbolNode = ( SymbolNode ) SelectionNodeProvider . getSelectedNodeOfType ( rootNode , config . getCaretPosition ( ) , SymbolNode . class ) ; if ( selectedSymbolNode != null && config . getSelectedClass ( ) != null ) { MethodNodeWrapper method = config . getSelectedClass ( ) . getMethod ( selectedSymbolNode . getName ( ) ) ; if ( method != null ) { methodNode = method . getWrappedNode ( ) ; } } } MethodNodeWrapper targetMethod = new MethodNodeWrapper ( methodNode , config . getSelectedClass ( ) ) ; this . config . setTargetMethod ( targetMethod ) ; if ( methodNode != null && config . getNewName ( ) == null ) { this . config . setNewName ( targetMethod . getName ( ) ) ; } } private Collection < INodeWrapper > getAllCallCandidates ( ) { Collection < Node > allNodes = config . getDocumentProvider ( ) . getAllNodes ( ) ; ArrayList < INodeWrapper > possibleCalls = new ArrayList < INodeWrapper > ( ) ; for ( Node currentNode : allNodes ) { MethodCallNodeWrapper callNode = new MethodCallNodeWrapper ( currentNode ) ; if ( isPossibleCall ( callNode ) ) { possibleCalls . add ( callNode ) ; } } if ( config . getTargetMethod ( ) . isAccessor ( ) && config . renameFields ( ) ) { String name ; if ( config . getTargetMethod ( ) . isWriter ( ) ) { name = config . getTargetMethod ( ) . getName ( ) . replace ( "=" , "" ) ; } else { name = config . getTargetMethod ( ) . getName ( ) ; } possibleCalls . addAll ( InstVarAccessesFinder . find ( config . getDocumentProvider ( ) , name ) ) ; possibleCalls . addAll ( new FieldProvider ( config . getSelectedClass ( ) , config . getDocumentProvider ( ) ) . getFieldItems ( name , false ) ) ; config . setSelectedCalls ( new FieldProvider ( config . getSelectedClass ( ) , config . getDocumentProvider ( ) ) . getFieldItems ( name , false ) ) ; } return possibleCalls ; } private boolean isPossibleCall ( MethodCallNodeWrapper callNode ) { if ( config . getTargetMethod ( ) . isClassMethod ( ) != callNode . isCallToClassMethod ( ) ) { return false ; } if ( callNode . getType ( ) == MethodCallNodeWrapper . INVALID_TYPE ) { return false ; } if ( callNode . getName ( ) . equals ( config . getTargetMethod ( ) . getName ( ) ) ) { ArgsNodeWrapper targetNodeArgs = config . getTargetMethod ( ) . getArgsNode ( ) ; if ( targetNodeArgs . argsCountMatches ( callNode ) ) { return true ; } } return false ; } @ Override protected void checkFinalConditions ( ) { if ( config . getNewName ( ) . equals ( config . getTargetMethod ( ) . getName ( ) ) ) { addWarning ( Messages . RenameMethodConditionChecker_NotChanged ) ; } else if ( getAlreadyUsedNames ( ) . contains ( config . getNewName ( ) ) ) { addError ( Messages . RenameMethodConditionChecker_AlreadyExists ) ; } } private boolean checkMethodIsBeyondClasses ( MethodDefNode currentMethod , ClassNodeProvider classes ) { String methodFile = currentMethod . getPosition ( ) . getFile ( ) ; int methodStart = currentMethod . getPosition ( ) . getStartOffset ( ) ; int methodEnd = currentMethod . getPosition ( ) . getEndOffset ( ) ; for ( ClassNodeWrapper currentClass : classes . getAllClassNodes ( ) ) { for ( PartialClassNodeWrapper currentPart : currentClass . getPartialClassNodes
2,065
<s> package org . oddjob . structural ; import org . oddjob . OddjobException ; public class OddjobChildException extends OddjobException { private static
2,066
<s> package fi . koku . services . entity . family ; import fi . koku . settings . KoKuPropertiesUtil ;
2,067
<s> package net . sf . sveditor . core . db . index . plugin_lib ; import java . io . InputStream ; import java . net . URI ; import java . net . URL ; import org . eclipse . core . filesystem . EFS ; import org . eclipse . core . filesystem . IFileInfo ; import org . eclipse . core . filesystem . IFileStore ; import org . eclipse . core . filesystem . provider . FileInfo ; import org . eclipse . core . filesystem . provider . FileStore ; import org . eclipse . core . runtime . CoreException ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . Platform ; import org . osgi . framework . Bundle ; public class PluginFileStore extends FileStore { private URI fURI ; public PluginFileStore ( URI uri ) { fURI = uri ; } public String getPluginPath ( ) { return fURI . toString ( ) ; } @ Override public String [ ] childNames ( int options , IProgressMonitor monitor ) throws CoreException { return new String [ 0 ] ; } @ Override public IFileInfo fetchInfo ( int options , IProgressMonitor monitor ) throws CoreException { FileInfo info = new FileInfo ( getName (
2,068
<s> package com . aptana . rdt . internal . ui ; import java . util . ArrayList ; import java . util . Collection ; import java . util . List ; import org . eclipse . core . runtime . IProgressMonitor ; import org . eclipse . core . runtime . IStatus ; import org . eclipse . core . runtime . Platform ; import org . eclipse . core . runtime . Status ; import org . eclipse . core . runtime . jobs . ISchedulingRule ; import org . eclipse . core . runtime . jobs . Job ; import org . eclipse . jface . dialogs . Dialog ; import org . eclipse . jface . dialogs . MessageDialogWithToggle ; import org . eclipse . ui . PlatformUI ; import org . eclipse . ui . progress . UIJob ; import org . rubypeople . rdt . debug . ui . InstallDeveloperToolsDialog ; import org . rubypeople . rdt . internal . debug . ui . launcher . InstallGemsJob ; import org . rubypeople . rdt . internal . launching . LaunchingPlugin ; import org . rubypeople . rdt . internal . ui . RubyInstalledDetector ; import org . rubypeople . rdt . internal . ui . RubyPlugin ; 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 com . aptana . rdt . AptanaRDTPlugin ; import com . aptana . rdt . core . gems . ContributedGemRegistry ; import com . aptana . rdt . core . gems . Gem ; import com . aptana . rdt . core . gems . GemListener ; import com . aptana . rdt . core . gems . IGemManager ; import com . aptana . rdt . core . gems . Version ; import com . aptana . rdt . ui . AptanaRDTUIPlugin ; import com . aptana . rdt . ui . preferences . IPreferenceConstants ; public class GemAutoInstallDialogJob extends UIJob implements GemListener , IVMInstallChangedListener { private static class SerialRule implements ISchedulingRule { public SerialRule ( ) { } public boolean contains ( ISchedulingRule rule ) { return rule == this ; } public boolean isConflicting ( ISchedulingRule rule ) { return rule instanceof SerialRule ; } } private boolean rescheduleOnRefresh ; public GemAutoInstallDialogJob ( ) { super ( "" ) ; setRule ( new SerialRule ( ) ) ; AptanaRDTPlugin . getDefault ( ) . getGemManager ( ) . addGemListener ( this ) ; RubyRuntime . addVMInstallChangedListener ( this ) ; } public boolean shouldRun ( ) { return ! PlatformUI . getWorkbench ( ) . isClosing ( ) && AptanaRDTPlugin . getDefault ( ) . getGemManager ( ) . isInitialized ( ) ; } @ Override public IStatus runInUIThread ( IProgressMonitor monitor ) { if ( ! usingIncludedJRuby ( ) && rubyNotInstalled ( ) ) { if ( RubyInstalledDetector . isFinished ( ) ) { return Status . CANCEL_STATUS ; } schedule ( 30000 ) ; return Status . OK_STATUS ; } if ( ! getGemManager ( ) . isRubyGemsInstalled ( ) ) { String key
2,069
<s> package com . asakusafw . compiler . testing ; import java . text . MessageFormat ; import
2,070
<s> package org . oddjob . scheduling ; import junit . framework . TestCase ; import org . oddjob . Helper ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . StateConditions ; public class TriggerDesFaTest extends TestCase { DesignInstance design ; public void testCreate ( ) throws ArooaParseException { String xml = "" + "" + "" + "" + "" + "" + "" + "" + " <job>" + "" + " </job>" + "" ; ArooaDescriptor descriptor = new OddjobDescriptorFactory ( ) . createDescriptor ( null ) ; DesignParser parser = new DesignParser ( new StandardArooaSession ( descriptor ) ) ; parser . setArooaType ( ArooaType
2,071
<s> package net . sf . sveditor . core . db ; import net . sf . sveditor . core . db . attr . SVDBDoNotSaveAttr ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBGenerateIf extends
2,072
<s> package com . asakusafw . runtime . stage . directio ; import java . io . IOException ; import org . apache . hadoop . conf . Configurable ; import org . apache . hadoop . mapreduce . Reducer ; import com . asakusafw . runtime . directio . Counter ; import com . asakusafw . runtime . directio . DataFormat ; import com . asakusafw . runtime . directio . DirectDataSource ; import com . asakusafw . runtime . directio . DirectDataSourceRepository ; import com . asakusafw . runtime . directio . OutputAttemptContext ; import com . asakusafw . runtime . directio . hadoop . HadoopDataSourceUtil ; import com . asakusafw . runtime . io . ModelOutput ; import com . asakusafw . runtime . io . util . Union ; import com . asakusafw . runtime . stage . StageConstants ; import com . asakusafw . runtime . util . VariableTable ; public final class DirectOutputReducer extends Reducer < AbstractDirectOutputKey , AbstractDirectOutputValue , Object , Object > { private static final String COUNTER_GROUP = "" ; private org . apache . hadoop . mapreduce . Counter recordCounter ; private DirectDataSourceRepository repository ; private VariableTable variables ; @ Override protected void setup ( Context context ) throws IOException , InterruptedException { this . recordCounter = context . getCounter ( org . apache . hadoop . mapred . Task . Counter . REDUCE_OUTPUT_RECORDS ) ; this . repository = HadoopDataSourceUtil . loadRepository ( context . getConfiguration ( ) ) ; String arguments = context . getConfiguration ( ) . get ( StageConstants . PROP_ASAKUSA_BATCH_ARGS , "" ) ; this . variables = new VariableTable ( VariableTable . RedefineStrategy . IGNORE ) ; variables . defineVariables ( arguments ) ; } @ SuppressWarnings ( { "unchecked" , "rawtypes" } ) @ Override protected void reduce ( AbstractDirectOutputKey key , Iterable < AbstractDirectOutputValue > values ,
2,073
<s> package com . asakusafw . dmdl . java . emitter . driver ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import org . hamcrest . Matcher ; import org . junit . Before ; import org . junit . Test ; import com . asakusafw . dmdl . java . GeneratorTesterRoot ; public class ProjectionDriverTest extends GeneratorTesterRoot { @ Before public void setUp ( ) throws Exception { emitDrivers . add ( new ProjectionDriver ( ) ) ; } @ Test public void projection ( ) { ModelLoader loader = generate ( ) ; Class < ? > a = loader . modelType ( "A" ) ; Class < ? > b = loader . modelType ( "B" ) ; Class < ? > c = loader . modelType ( "C" ) ; Class < ? > d = loader . modelType ( "D" ) ; assertThat ( a . getInterfaces ( ) ,
2,074
<s> package org . oddjob . designer . components ; import java . util . Map ; import junit . framework . TestCase ; import org . apache . log4j . Logger ; import org . oddjob . Helper ; import org . oddjob . OddjobDescriptorFactory ; import org . oddjob . arooa . ArooaDescriptor ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaType ; import org . oddjob . arooa . design . DesignInstance ; import org . oddjob . arooa . design . DesignParser ; import org . oddjob . arooa . design . view . ViewMainHelper ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . jmx . JMXClientJob ; public class ClientDCTest extends TestCase { private static final Logger logger = Logger . getLogger ( ClientDCTest . class ) ; public void setUp ( ) { logger . debug ( "" + getName ( ) + "" ) ; } DesignInstance design ; public void testCreate ( ) throws ArooaParseException { String xml = "" + "" + "" + "" + "" + "" + "" + "" + "" ; ArooaDescriptor descriptor = new OddjobDescriptorFactory ( ) . createDescriptor ( getClass ( ) . getClassLoader ( ) ) ; DesignParser parser = new DesignParser ( new StandardArooaSession ( descriptor ) ) ; parser . setArooaType ( ArooaType . COMPONENT ) ; parser . parse ( new XMLConfiguration ( "TEST" , xml ) ) ; design = parser . getDesign ( ) ; assertEquals ( ClientDesign . class , design . getClass ( ) ) ; JMXClientJob test = ( JMXClientJob ) Helper . createComponentFromConfiguration ( design . getArooaContext ( ) . getConfigurationNode ( ) ) ; assertEquals ( "Test" , test . getName ( ) ) ; assertEquals ( "" , test . getConnection ( ) ) ; assertEquals ( 5000 , test . getHeartbeat ( ) ) ; assertEquals ( 3000 , test . getLogPollingInterval ( ) ) ; assertEquals ( 200 , test . getMaxConsoleLines ( ) ) ;
2,075
<s> package org . oddjob . monitor . action ; import junit . framework . TestCase ; import org . oddjob . Loadable ; import org . oddjob . monitor . model . MockExplorerContext ; import org . oddjob . util . MockThreadManager ; import org . oddjob . util . ThreadManager ; public class LoadActionTest extends TestCase { private class OurLoadable implements Loadable { boolean loadable = true ; public boolean isLoadable ( ) { return loadable ; } public void load ( ) { setLoadable ( false ) ; } @ Override public void unload ( ) { throw new RuntimeException ( "Unexpected." ) ; } void setLoadable ( boolean loadable ) { this . loadable = loadable ; } } class OurEContext extends MockExplorerContext { OurLoadable loadable = new OurLoadable ( ) ; @ Override public Object getThisComponent ( ) { return loadable ; } @ Override public ThreadManager getThreadManager ( ) { return new MockThreadManager ( ) { @ Override public void run ( Runnable runnable , String description ) { runnable . run ( ) ; } } ; } }
2,076
<s> package com . asakusafw . bulkloader . exception ; public class BulkLoaderReRunnableException extends Exception { private Class < ? > clazz ; private String messageId ; private Object [ ] messageArgs ; private static final long serialVersionUID = 1L ; public BulkLoaderReRunnableException ( Throwable
2,077
<s> package net . sf . sveditor . core . tests . indent ; import java . util . ArrayList ; import java . util . List ; import net . sf . sveditor . core . log . LogFactory ; import net . sf . sveditor . core . log . LogHandle ; import junit . framework . TestCase ; public class IndentComparator { public static void compare ( String msg , String expected , String result ) { LogHandle log = LogFactory . getLogHandle ( msg ) ; compare ( log , msg , expected , result ) ; LogFactory . removeLogHandle ( log ) ; } public static void compare ( LogHandle log , String msg , String expected , String result ) { List < String > lines_expected = split ( expected ) ; List < String > lines_result = split ( result ) ; int lineno = 1 ; StringBuilder exp_sb = new StringBuilder ( ) ; StringBuilder res_sb = new StringBuilder ( ) ; int failures = 0 ; int i ; for ( i = 0 ; i < lines_expected . size ( ) || i < lines_result . size ( ) ; i ++ ) { String e = ( i < lines_expected . size ( ) ) ? lines_expected . get ( i ) : null ; String r = ( i < lines_result . size ( ) ) ? lines_result . get ( i ) : null ; if ( e != null && r != null ) { if ( e . equals ( r ) ) { log . debug ( lineno + " [OK] \"" + r + "\"" ) ; } else { log . error ( lineno + "" + e + "\"" ) ; log . error ( lineno + "" + r + "\"" ) ; failures ++ ; } } else { if ( e == null && r . equals
2,078
<s> package org . oddjob . script ; import java . io . Reader ; import javax . script . ScriptEngine ; import javax . script . ScriptException ; public class NotPreCompiled implements Evaluatable { private final ScriptEngine engine ; private final Reader reader ; public NotPreCompiled ( ScriptEngine engine , Reader reader ) { this . engine = engine ; this . reader = reader ; } @ Override public Object eval ( ) throws ScriptException { return engine . eval ( reader ) ; }
2,079
<s> package org . rubypeople . rdt . internal . ui . filters ; import org . eclipse . core . resources . IResource ; import org . eclipse . jface . viewers . Viewer ; import org
2,080
<s> package com . asakusafw . dmdl . thundergate . util ; import static org . hamcrest . Matchers . * ; import static org . junit . Assert . * ; import java . util . Collections ; import java . util . List ; import java . util . Set ; import org . junit . Test ; import com . asakusafw . dmdl . thundergate . model . Aggregator ; import com . asakusafw . dmdl . thundergate . model . ModelDescription ; import com . asakusafw . dmdl . thundergate . model . ModelProperty ; import com . asakusafw . dmdl . thundergate . model . PropertyTypeKind ; import com . asakusafw . dmdl . thundergate . model . Source ; import com . asakusafw . dmdl . thundergate . model . StringType ; import com . asakusafw . dmdl . thundergate . model . SummarizedModelDescription ; import com . asakusafw . dmdl . thundergate . model . TableModelDescription ; import com . asakusafw . utils . collections . Lists ; import com . asakusafw . utils . collections . Sets ; public class SummarizedModelBuilderTest { @ Test public void simple ( ) { TableModelDescription desc = new TableModelBuilder ( "A" ) . add ( null , "word" , new StringType ( 255 ) ) . toDescription ( ) ; SummarizedModelDescription model = new SummarizedModelBuilder ( "S" , desc , "a" ) . add ( "word" , Aggregator . IDENT , "a.word" ) . add ( "count" , Aggregator . COUNT , "a.word" ) . groupBy ( "a.word" ) . toDescription ( ) ; assertThat ( model . getReference ( ) . getSimpleName ( ) , is ( "S" ) ) ; assertThat ( model . getGroupBy ( ) , is ( sources ( desc , "word" ) ) ) ; List < ModelProperty > properties = model . getProperties ( ) ; assertThat ( properties . size ( ) , is ( 2 ) ) ; ModelProperty word = properties . get ( 0 ) ; assertThat ( word . getName ( ) , is ( "word" ) ) ; assertThat ( word . getType ( ) . getKind ( ) , is ( PropertyTypeKind . STRING ) ) ; assertThat ( word . getJoined ( ) , is ( nullValue ( ) ) ) ; assertThat ( word . getFrom ( ) , is ( source ( desc , "word" , Aggregator . IDENT ) ) ) ; ModelProperty count = properties . get ( 1 ) ; assertThat ( count . getName ( ) , is ( "count" ) ) ; assertThat ( count . getType ( ) . getKind ( ) , is ( PropertyTypeKind . LONG ) ) ; assertThat ( count . getJoined ( ) , is ( nullValue ( ) ) ) ; assertThat ( count . getFrom ( ) , is ( source ( desc , "word" , Aggregator . COUNT ) ) ) ; } @ Test public void singleGroup ( ) { TableModelDescription desc = new TableModelBuilder ( "A" ) . add ( null , "word" , new StringType ( 255 ) ) . toDescription ( ) ; SummarizedModelDescription model = new SummarizedModelBuilder ( "S" , desc , "a" ) . add ( "count" , Aggregator . COUNT , "a.word" ) . toDescription ( ) ; assertThat ( model . getReference ( ) . getSimpleName ( ) , is ( "S" ) ) ; assertThat ( model . getGroupBy ( ) , is ( sources ( desc ) ) ) ; List < ModelProperty > properties = model . getProperties ( ) ; assertThat ( properties . size ( ) , is ( 1 ) ) ; ModelProperty count = properties . get ( 0 ) ; assertThat ( count . getName ( ) , is ( "count" ) ) ; assertThat ( count . getType ( ) . getKind ( ) , is ( PropertyTypeKind . LONG ) ) ; assertThat ( count . getFrom ( ) , is ( source ( desc , "word" , Aggregator . COUNT ) ) ) ; } @ Test public void multiGroupKey ( ) { TableModelDescription desc = new TableModelBuilder ( "A" ) . add ( null , "sex" , PropertyTypeKind . BYTE ) . add ( null , "age" , PropertyTypeKind . SHORT ) . add ( null , "name" , new StringType ( 255 ) ) . toDescription ( ) ; SummarizedModelDescription model = new SummarizedModelBuilder ( "S" , desc , "a" ) . add ( "sex" , Aggregator . IDENT , "sex" ) . add ( "age" , Aggregator . IDENT , "age" ) . add ( "count" , Aggregator . COUNT , "name" ) . groupBy ( "sex" , "age" ) . toDescription ( ) ; assertThat ( model . getReference ( ) . getSimpleName ( ) , is ( "S" ) ) ; assertThat ( model . getGroupBy ( ) , is ( sources ( desc , "sex" , "age" ) ) ) ; List < ModelProperty > properties = model . getProperties ( ) ; assertThat ( properties . size ( ) , is ( 3 ) ) ; ModelProperty sex = properties . get ( 0 ) ; assertThat ( sex . getName ( ) , is ( "sex" ) ) ; assertThat ( sex . getType ( ) . getKind ( ) , is ( PropertyTypeKind . BYTE ) ) ; assertThat ( sex . getFrom ( ) , is ( source ( desc , "sex" , Aggregator . IDENT ) ) ) ; ModelProperty age = properties . get ( 1 ) ; assertThat ( age . getName ( ) , is ( "age" ) ) ; assertThat ( age . getType ( ) . getKind ( ) , is ( PropertyTypeKind . SHORT ) ) ; assertThat ( age . getFrom ( ) , is ( source ( desc , "age" , Aggregator . IDENT ) ) ) ; ModelProperty count = properties . get ( 2 ) ; assertThat ( count . getName ( ) , is ( "count" ) ) ; assertThat ( count . getType ( ) . getKind ( ) , is ( PropertyTypeKind . LONG ) ) ; assertThat ( count . getFrom ( ) , is ( source ( desc , "name" , Aggregator . COUNT ) ) ) ; } @ Test ( expected = RuntimeException . class ) public void empty ( ) { TableModelDescription desc = new TableModelBuilder (
2,081
<s> package net . sf . sveditor . ui . editor ; import java . util . ResourceBundle ; import net . sf . sveditor . ui . SVUiPlugin ; import org . eclipse . jface . action . IMenuManager ; import org . eclipse . jface . action . MenuManager ; import org . eclipse . jface . action . Separator ; import org . eclipse . ui . IActionBars ; import org . eclipse . ui . IEditorPart ; import org . eclipse . ui . IWorkbenchActionConstants ; import org . eclipse . ui . editors . text . TextEditorActionContributor ; import org . eclipse . ui . texteditor . ITextEditor ; import org . eclipse . ui . texteditor . ITextEditorActionDefinitionIds ; import org . eclipse . ui . texteditor . RetargetTextEditorAction ; public class SVActionContributor extends TextEditorActionContributor { protected RetargetTextEditorAction fContentAssistProposal ; protected RetargetTextEditorAction fIndentAction ; protected RetargetTextEditorAction fOpenDeclarationAction ; protected RetargetTextEditorAction fOpenTypeAction ; protected RetargetTextEditorAction fFindReferencesAction ; protected RetargetTextEditorAction fOpenTypeHierarchyAction ; protected RetargetTextEditorAction fOpenObjectsAction ; protected RetargetTextEditorAction fOpenQuickObjectsAction ; protected RetargetTextEditorAction fAddBlockCommentAction ; protected RetargetTextEditorAction fRemoveBlockCommentAction ; protected RetargetTextEditorAction fToggleCommentAction ; protected RetargetTextEditorAction fNextWordAction ; protected RetargetTextEditorAction fPrevWordAction ; protected RetargetTextEditorAction fSelNextWordAction ; protected RetargetTextEditorAction fSelPrevWordAction ; protected MenuManager fSourceMenu ; public SVActionContributor ( ) { super ( ) ; ResourceBundle bundle = SVUiPlugin . getDefault ( ) . getResources ( ) ; fContentAssistProposal = new RetargetTextEditorAction ( bundle , "" ) ; fContentAssistProposal . setActionDefinitionId ( ITextEditorActionDefinitionIds . CONTENT_ASSIST_PROPOSALS ) ; fOpenDeclarationAction = new RetargetTextEditorAction ( bundle , "" ) ; fOpenDeclarationAction . setActionDefinitionId ( "" ) ; fFindReferencesAction = new RetargetTextEditorAction ( bundle , "" ) ; fFindReferencesAction . setActionDefinitionId ( "" ) ; fOpenTypeAction = new RetargetTextEditorAction ( bundle , "OpenType." ) ; fOpenTypeAction . setActionDefinitionId ( "" ) ; fOpenTypeHierarchyAction = new RetargetTextEditorAction ( bundle , "" ) ; fOpenTypeHierarchyAction . setActionDefinitionId ( "" ) ; fOpenObjectsAction = new RetargetTextEditorAction ( bundle , "OpenObjects." ) ; fOpenObjectsAction . setActionDefinitionId ( "" ) ; fOpenQuickObjectsAction = new RetargetTextEditorAction ( bundle , "" ) ; fOpenQuickObjectsAction . setActionDefinitionId ( "" ) ; fIndentAction = new RetargetTextEditorAction ( bundle , "Indent." ) ; fIndentAction . setActionDefinitionId ( "" ) ; fAddBlockCommentAction = new RetargetTextEditorAction ( bundle , "" ) ; fAddBlockCommentAction . setActionDefinitionId ( "" ) ; fRemoveBlockCommentAction = new RetargetTextEditorAction ( bundle , "" ) ; fRemoveBlockCommentAction . setActionDefinitionId ( "" ) ; fToggleCommentAction = new RetargetTextEditorAction ( bundle , "" ) ; fToggleCommentAction . setActionDefinitionId ( SVUiPlugin . PLUGIN_ID + "" ) ; fNextWordAction = new RetargetTextEditorAction ( bundle , "" ) ; fNextWordAction . setActionDefinitionId ( ITextEditorActionDefinitionIds . WORD_NEXT ) ; fPrevWordAction = new RetargetTextEditorAction ( bundle , "" ) ; fPrevWordAction . setActionDefinitionId ( ITextEditorActionDefinitionIds . WORD_PREVIOUS ) ; fSelNextWordAction = new RetargetTextEditorAction ( bundle , "" ) ; fSelNextWordAction . setActionDefinitionId ( ITextEditorActionDefinitionIds . SELECT_WORD_NEXT ) ; fSelPrevWordAction = new RetargetTextEditorAction ( bundle , "" ) ; fSelPrevWordAction . setActionDefinitionId
2,082
<s> package org . rubypeople . rdt . internal . core . search . matching ; import org . rubypeople . rdt . core . search . SearchPattern ; import org . rubypeople . rdt . internal . core . RubyScript ; import org . rubypeople . rdt . internal . core . search . indexing . IIndexConstants ; import org . rubypeople . rdt . internal . core . util . CharOperation ; public class PatternLocator implements IIndexConstants { protected int matchMode ; protected boolean isCaseSensitive ; protected boolean isCamelCase ; protected boolean isEquivalentMatch ; protected boolean isErasureMatch ; protected boolean mustResolve ; protected boolean mayBeGeneric ; public static final int IMPOSSIBLE_MATCH = 0 ; public static final int INACCURATE_MATCH = 1 ; public static final int POSSIBLE_MATCH = 2 ; public static final int ACCURATE_MATCH = 3 ; public static final int ERASURE_MATCH = 4 ; public static final int EXACT_FLAVOR = 0x0010 ; public static final int PREFIX_FLAVOR = 0x0020 ; public static final int PATTERN_FLAVOR = 0x0040 ; public static final int REGEXP_FLAVOR = 0x0080 ; public static final int CAMELCASE_FLAVOR = 0x0100 ; public static final int SUPER_INVOCATION_FLAVOR = 0x0200 ; public static final int SUB_INVOCATION_FLAVOR = 0x0400 ; public static final int OVERRIDDEN_METHOD_FLAVOR = 0x0800 ; public static final int MATCH_LEVEL_MASK = 0x0F ; public static final int FLAVORS_MASK = ~ MATCH_LEVEL_MASK ; public static final int COMPILATION_UNIT_CONTAINER = 1 ; public static final int CLASS_CONTAINER = 2 ; public static final int METHOD_CONTAINER = 4 ; public static final int FIELD_CONTAINER = 8 ; public static final int ALL_CONTAINER = COMPILATION_UNIT_CONTAINER | CLASS_CONTAINER | METHOD_CONTAINER | FIELD_CONTAINER ; public PatternLocator ( SearchPattern pattern ) { int matchRule = pattern . getMatchRule ( ) ; this . isCaseSensitive = ( matchRule & SearchPattern . R_CASE_SENSITIVE ) != 0 ; this . isCamelCase = ( matchRule & SearchPattern . R_CAMELCASE_MATCH ) != 0 ; this . isErasureMatch = ( matchRule & SearchPattern . R_ERASURE_MATCH ) != 0 ; this . isEquivalentMatch = ( matchRule & SearchPattern . R_EQUIVALENT_MATCH ) != 0 ; this . matchMode = matchRule & RubySearchPattern . MATCH_MODE_MASK ; this . mustResolve = ( ( InternalSearchPattern ) pattern ) . mustResolve ; }
2,083
<s> package com . asakusafw . compiler . flow . stage ; public class CompiledReduce { private CompiledType reducerType ; private CompiledType combinerTypeOrNull ; public CompiledReduce ( CompiledType reducerType , CompiledType combinerTypeOrNull ) {
2,084
<s> package $ { package } . jobflow ; import $ { package } . modelgen . table . model . ItemInfo ; import com . asakusafw . vocabulary . bulkloader . DbImporterDescription ; public class ItemInfoFromJdbc extends DbImporterDescription {
2,085
<s> package org . oddjob . logging . log4j ; import org . apache . log4j . Appender ; import org . apache . log4j . Level ; import org . apache . log4j . Logger ; import org . apache . log4j . PatternLayout ; import org . apache . log4j . Priority ; import org . oddjob . logging . ArchiveNameResolver ; import org . oddjob . logging . LogArchiver ; import org . oddjob . logging . LogHelper ; import org . oddjob . logging . LogLevel ; import org . oddjob . logging . LogListener ; import org . oddjob . logging . cache . LogArchiverCache ; import org . oddjob . logging . cache . StructuralArchiverCache ; public class Log4jArchiver implements LogArchiver { private final LogArchiverCache logArchiver ; private final Appender appender ; public Log4jArchiver ( Object root , String pattern ) { logArchiver = new StructuralArchiverCache ( root , new ArchiveNameResolver ( ) { public String resolveName ( Object component ) { return LogHelper . getLogger ( component ) ; } } ) ; appender = new ArchiveAppender ( logArchiver , new PatternLayout ( pattern ) ) ; appender . setName ( this . toString ( ) ) ; Logger . getRootLogger ( ) . addAppender ( appender ) ; }
2,086
<s> package org . oddjob . framework ; import java . net . URL ; import junit . framework . TestCase ; import org . oddjob . arooa . ArooaParseException ; import org . oddjob . arooa . ArooaParser ; import org . oddjob . arooa . ArooaSession ; import org . oddjob . arooa . convert . ArooaConversionException ; import org . oddjob . arooa . deploy . annotations . ArooaComponent ; import org . oddjob . arooa . life . ComponentProxyResolver ; import org . oddjob . arooa . reflect . ArooaClass ; import org . oddjob . arooa . reflect . ArooaPropertyException ; import org . oddjob . arooa . reflect . BeanOverview ; import org . oddjob . arooa . reflect . PropertyAccessor ; import org . oddjob . arooa . registry . BeanDirectory ; import org . oddjob . arooa . standard . StandardArooaParser ; import org . oddjob . arooa . standard . StandardArooaSession ; import org . oddjob . arooa . xml . XMLConfiguration ; public class WrapDynaBeanArooaTest extends TestCase { public static class Root { @ ArooaComponent public void setStuff ( Object stuff ) { } } public static class Stuff { private String text ; private URL url ; public URL getUrl ( ) { return url ; } public void setUrl ( URL url ) { this . url = url ; } public void setText ( String text ) { this . text = text ; } ; public String getText ( ) { return text ; } } private class OurSession extends StandardArooaSession { @ Override public ComponentProxyResolver getComponentProxyResolver ( ) { return new ComponentProxyResolver ( ) { @ Override public Object resolve ( Object object , ArooaSession session )
2,087
<s> package org . oddjob . state ; import org . oddjob . images . IconHelper ; import org . oddjob . persist . Persistable ;
2,088
<s> package org . oddjob . values ; import java . util . concurrent . BlockingQueue ; import java . util . concurrent . LinkedBlockingQueue ; import junit . framework . TestCase ; import org . oddjob . FailedToStopException ; import org . oddjob . Helper ; import org . oddjob . Oddjob ; import org . oddjob . OddjobLookup ; import org . oddjob . StateSteps ; import org . oddjob . Stateful ; import org . oddjob . arooa . xml . XMLConfiguration ; import org . oddjob . state . ParentState ; public class ValueQueueServiceTest extends TestCase { public void testQueueWithTwoConsumers ( ) throws InterruptedException { final BlockingQueue < Object > results = new LinkedBlockingQueue < Object > ( ) ; final ValueQueueService test = new ValueQueueService ( ) ; class Puller implements Runnable { @ Override public void run ( ) { for ( Object value : test . getValues ( ) ) { results . add ( value ) ; } } }
2,089
<s> package net . sf . sveditor . core . db ; import net . sf . sveditor . core . db . expr . SVDBExpr ; public class SVDBModIfcClassParam extends SVDBItem { public SVDBExpr fDefault ; public SVDBTypeInfo fDefaultType ; public SVDBModIfcClassParam ( ) { super ( "" , SVDBItemType . ModIfcClassParam ) ; } public SVDBModIfcClassParam
2,090
<s> package net . ggtools . grand . ui . prefs ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . LinkedList ; import java . util . List ; import org . eclipse . draw2d . ColorConstants ; import org . eclipse . jface . preference . ColorFieldEditor ; import org . eclipse . jface . preference . FieldEditor ; import org . eclipse . jface . preference . IPreferenceStore ; import org . eclipse . jface . preference . IntegerFieldEditor ; import org . eclipse . jface . preference . PreferenceConverter ; import org . eclipse . jface . preference . PreferencePage ; import org . eclipse . jface . preference . RadioGroupFieldEditor ; import org . eclipse . swt . SWT ; import org . eclipse . swt . layout . FillLayout ; import org . eclipse . swt . layout . GridLayout ; import org . eclipse . swt . widgets . Composite ; import org . eclipse . swt . widgets . Control ; import org . eclipse . swt . widgets . TabFolder ; import org . eclipse . swt . widgets . TabItem ; public class NodesPreferencePage extends PreferencePage implements PreferenceKeys { private static final String [ ] [ ] SUPPORTED_SHAPES = new String [ ] [ ] { { "Octagon" , "octagon" } , { "Oval" , "oval" } , { "Box" , "box" } , { "Triangle" , "triangle" } , { "Square" , "square" } , { "Hexagon" , "hexagon" } , { "Circle" , "circle" } } ; public static void setDefaults ( final IPreferenceStore prefs ) { PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . black . getRGB ( ) ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . white . getRGB ( ) ) ; prefs . setDefault ( NODE_PREFIX + "" , "oval" ) ; prefs . setDefault ( NODE_PREFIX + "" , 1 ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "main.fgcolor" , ColorConstants . black . getRGB ( ) ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . cyan . getRGB ( ) ) ; prefs . setDefault ( NODE_PREFIX + "main.shape" , "box" ) ; prefs . setDefault ( NODE_PREFIX + "" , 1 ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . black . getRGB ( ) ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . yellow . getRGB ( ) ) ; prefs . setDefault ( NODE_PREFIX + "start.shape" , "octagon" ) ; prefs . setDefault ( NODE_PREFIX + "" , 2 ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . gray . getRGB ( ) ) ; PreferenceConverter . setDefault ( prefs , NODE_PREFIX + "" , ColorConstants . lightGray . getRGB ( ) ) ; prefs . setDefault ( NODE_PREFIX + "" , "oval" ) ; prefs . setDefault ( NODE_PREFIX + "" , 1 ) ; } private final List < FieldEditor > fields = new ArrayList < FieldEditor > ( ) ; NodesPreferencePage ( ) { super ( "Nodes" ) ; } @ Override public boolean performOk ( ) { if ( fields != null ) { for ( final Iterator < FieldEditor > iter = fields . iterator ( ) ; iter . hasNext ( ) ; ) { final FieldEditor fieldEditor = iter . next ( ) ; fieldEditor . store ( ) ; } } return true ; } private int calcNumberOfColumns ( final List < FieldEditor > tabFields ) { int result = 0 ; if ( tabFields != null ) { final Iterator < FieldEditor > e = tabFields . iterator ( ) ; while ( e . hasNext ( ) ) { final FieldEditor pe = e . next ( ) ; result = Math . max ( result , pe . getNumberOfControls ( ) ) ; } } return result ; } private void createNodeTab ( final TabFolder tabFolder , final String title , final String nodeType ) { final String prefix = NODE_PREFIX + nodeType ; final TabItem tabItem = new TabItem ( tabFolder , SWT . NONE ) ; tabItem . setText ( title ) ; final Composite parent = new Composite ( tabFolder , SWT . NONE ) ; tabItem . setControl ( parent ) ; final List < FieldEditor > tabFields = new LinkedList < FieldEditor > ( ) ; final ColorFieldEditor fgcolorField = new ColorFieldEditor ( prefix + "fgcolor" , "Foreground" , parent ) ; tabFields . add ( fgcolorField ) ; final ColorFieldEditor fillcolorField
2,091
<s> package org . rubypeople . rdt . internal . ui . util ; import java . util . Comparator ; import org . eclipse . core . runtime . Assert ; public class TwoArrayQuickSorter { private Comparator fComparator ; public static final class StringComparator implements Comparator < String > { private boolean fIgnoreCase ; StringComparator ( boolean ignoreCase ) { fIgnoreCase = ignoreCase ; } public int compare ( String left , String right ) { return fIgnoreCase ? left . compareToIgnoreCase ( right ) : left . compareTo ( right ) ; } } public TwoArrayQuickSorter ( boolean ignoreCase ) { fComparator = new StringComparator ( ignoreCase ) ; } public TwoArrayQuickSorter ( Comparator < ? extends Object > comparator ) { fComparator = comparator ; } public void sort ( Object [ ] keys , Object [ ] values ) { if ( ( keys == null ) || ( values == null ) ) { Assert . isTrue ( false , "" ) ; return ; } if ( keys . length <= 1 ) return ; internalSort ( keys , values , 0 , keys . length - 1 ) ; } private void internalSort ( Object [ ] keys , Object [ ] values , int left , int right ) { int original_left = left ; int original_right = right ; Object mid = keys [ ( left + right ) / 2 ] ; do { while ( fComparator . compare ( keys [ left ] , mid ) < 0 ) left ++ ; while ( fComparator . compare ( mid , keys [ right ] ) < 0 ) right -- ; if ( left <= right ) { swap ( keys , left , right
2,092
<s> package net . sf . sveditor . core . db . persistence ; import java . io . DataInput ; import java . io . DataOutput ; import java . util . Set ; import net . sf . sveditor . core . db . ISVDBChildItem ; import net . sf . sveditor . core . db . ISVDBItemBase ; import net . sf . sveditor . core . db . SVDBItemType ; public interface ISVDBPersistenceRWDelegate { void init ( ISVDBPersistenceRWDelegateParent parent , DataInput in , DataOutput out ) ; Set < Class > getSupportedObjects ( ) ; Set < Class > getSupportedEnumTypes ( ) ; Set < SVDBItemType > getSupportedItemTypes ( ) ; void writeObject ( Class cls , Object obj ) throws DBWriteException ;
2,093
<s> package org . rubypeople . rdt . ui . rubyeditor ; import org . eclipse . ui . views . contentoutline . IContentOutlinePage ; import org . rubypeople . rdt . core . IRubyElement ; import org . rubypeople . rdt . core . ISourceReference ; import org . rubypeople . rdt . internal . ui . rubyeditor . RubyAbstractEditor ; public interface ICustomRubyOutlinePage extends IContentOutlinePage { public boolean isEnabled ( IRubyElement inputElement ) ;
2,094
<s> package com . asakusafw . compiler . fileio . flow ; import static com . asakusafw . vocabulary . flow . util . CoreOperators . * ; import com . asakusafw . compiler . fileio . external . Ex1MockExporterDescription ; import com . asakusafw . compiler . fileio . model . Ex1 ; import com . asakusafw . compiler . fileio . 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 ( name = "job" ) public class MixedInputJob extends FlowDescription { private final In < Ex1 > input1 ; private final In < Ex2 > input2 ;
2,095
<s> package com . asakusafw . compiler . windgate . testing . 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 . windgate . testing . io . SimpleInput ; import com . asakusafw . compiler . windgate . testing . io . SimpleOutput ; 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 . StringOption ; @ DataModelKind ( "DMDL" ) @ ModelInputLocation ( SimpleInput . class ) @ ModelOutputLocation ( SimpleOutput . class ) public class Simple implements DataModel < Simple > , Writable { private final StringOption value = new StringOption ( ) ; @ Override @ SuppressWarnings ( "deprecation" ) public void reset ( ) { this . value . setNull ( ) ; } @ Override @ SuppressWarnings ( "deprecation" ) public void copyFrom ( Simple other ) { this . value . copyFrom ( other . value ) ; } public Text getValue ( ) { return this . value . get ( ) ; } @ SuppressWarnings ( "deprecation" ) public void setValue ( Text value0 ) { this . value . modify ( value0 ) ; } public StringOption getValueOption ( ) { return this . value ; } @ SuppressWarnings ( "deprecation" ) public void setValueOption ( StringOption option ) { this . value . copyFrom ( option ) ; } @ Override public String toString ( ) { StringBuilder result = new StringBuilder ( ) ; result . append ( "{" ) ; result . append ( "class=simple" ) ; result . append ( ", value=" ) ; result . append ( this . value ) ; result . append ( "}" ) ; return result . toString ( ) ; } @ Override public int hashCode ( ) { int prime = 31 ; int result = 1 ; result = prime * result + value . hashCode ( ) ; return result ; } @ Override public boolean equals ( Object obj ) { if ( this == obj ) { return true ; } if ( obj == null ) { return false ; } if ( this . getClass ( ) != obj . getClass (
2,096
<s> package net . sf . sveditor . core . templates ; import java . io . InputStream ; import java . util . ArrayList ; import java . util . Iterator ; import java . util . List ; import net . sf . sveditor . core . Tuple ; public class TemplateInfo { private String fId ; private String fName ; private String fCategoryId ; private String fDescription ; private List < Tuple < String , String > > fTemplateList ; private List < TemplateParameter > fParameters ; private ITemplateInStreamProvider fStreamProvider ; public TemplateInfo ( String id , String name , String category_id , String description , ITemplateInStreamProvider stream_provider ) { fId = id ; fName = name ; fCategoryId = ( category_id != null ) ? category_id : "" ; fDescription = description ; fTemplateList = new ArrayList < Tuple < String , String > > ( ) ; fParameters = new ArrayList < TemplateParameter > ( ) ; fStreamProvider = stream_provider ; } public String getId ( )
2,097
<s> package com . asakusafw . dmdl . semantics . trait ; import java . util . List ; import com . asakusafw . dmdl . model . AstNode ; import com . asakusafw . dmdl . semantics . ModelSymbol ; import com . asakusafw . dmdl . semantics . Trait ; public class ProjectionsTrait implements Trait < ProjectionsTrait > { private final AstNode originalAst ; private final List < ModelSymbol > projectives ; public ProjectionsTrait ( AstNode originalAst , List < ModelSymbol > projectives ) { if ( projectives == null ) { throw new IllegalArgumentException ( "" ) ; } this . originalAst = originalAst ;
2,098
<s> package com . asakusafw . testdriver . core ; public class ModelVerifierDriver < T > implements VerifyRule { private final ModelVerifier < ? super T > verifier ; private final DataModelDefinition < ? extends T > definition ; public ModelVerifierDriver ( ModelVerifier < ? super T > verifier , DataModelDefinition < ?
2,099
<s> package com . asakusafw . windgate . core . resource ; import java . text . MessageFormat ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util . List ; import java . util . Map ; import java . util . NavigableMap ; import java . util . Properties ; import java . util . TreeMap ; import java . util . regex . Pattern ; import org . slf4j . Logger ; import org . slf4j . LoggerFactory ; import com . asakusafw . windgate . core . BaseProfile ; import com . asakusafw . windgate . core . ProfileContext ; import com . asakusafw . windgate . core . WindGateCoreLogger ; import com . asakusafw . windgate . core . WindGateLogger ; import com . asakusafw . windgate . core . util . PropertiesUtil ; public final class ResourceProfile extends BaseProfile < ResourceProfile , ResourceProvider > { static final WindGateLogger WGLOG = new WindGateCoreLogger ( ResourceProfile . class ) ; static final Logger LOG = LoggerFactory . getLogger ( ResourceProfile . class ) ; public static final Pattern NAME_PATTERN = Pattern . compile ( "" ) ; public static final String KEY_PREFIX = "resource." ; private final String name ; private final Class < ? extends ResourceProvider > providerClass ; private final ProfileContext context ; private final Map < String , String > configuration ; public ResourceProfile ( String name , Class < ? extends ResourceProvider > providerClass , ProfileContext context , Map < String , String > configuration ) { if ( name == null ) { throw new IllegalArgumentException ( "" ) ; } if ( providerClass == null ) { throw new IllegalArgumentException ( "" ) ; } if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } if ( configuration == null ) { throw new IllegalArgumentException ( "" ) ; } if ( isValidName ( name ) == false ) { throw new IllegalArgumentException ( MessageFormat . format ( "" , name ) ) ; } this . name = name ; this . providerClass = providerClass ; this . context = context ; this . configuration = Collections . unmodifiableMap ( new TreeMap < String , String > ( configuration ) ) ; } public String getName ( ) { return name ; } @ Override public Class < ? extends ResourceProvider > getProviderClass ( ) { return providerClass ; } @ Override public ProfileContext getContext ( ) { return context ; } public Map < String , String > getConfiguration ( ) { return configuration ; } @ Override protected ResourceProfile getThis ( ) { return this ; } @ Deprecated public static Collection < ? extends ResourceProfile > loadFrom ( Properties properties , ClassLoader loader ) { if ( properties == null ) { throw new IllegalArgumentException ( "" ) ; } if ( loader == null ) { throw new IllegalArgumentException ( "" ) ; } return loadFrom ( properties , ProfileContext . system ( loader ) ) ; } public static Collection < ? extends ResourceProfile > loadFrom ( Properties properties , ProfileContext context ) { if ( properties == null ) { throw new IllegalArgumentException ( "" ) ; } if ( context == null ) { throw new IllegalArgumentException ( "" ) ; } LOG . debug ( "" ) ; List < ResourceProfile > results = new ArrayList < ResourceProfile > ( ) ; Map < String , Map < String , String > > resources = partitioning ( properties ) ; for ( Map . Entry < String , Map < String , String > > partitionPair : resources . entrySet ( ) ) { String name = partitionPair . getKey ( ) ; LOG . debug ( "" , name ) ; Map < String , String > partition = partitionPair . getValue ( ) ; assert isValidName ( name ) ; String className = partition . remove ( name ) ; assert className != null ; Map < String , String > conf = PropertiesUtil . createPrefixMap ( partition , name + QUALIFIER ) ; Class < ? extends ResourceProvider > loaded = loadProviderClass ( className , context , ResourceProvider . class ) ; ResourceProfile profile = new ResourceProfile ( name , loaded , context , conf ) ; results . add ( profile ) ; } return results ; } private static Map < String , Map < String , String > > partitioning ( Properties properties ) { assert properties != null ; NavigableMap < String , String > map = PropertiesUtil . createPrefixMap ( properties , KEY_PREFIX ) ; Map < String , Map < String , String > > results = new TreeMap < String , Map < String , String > > ( ) ; while ( map . isEmpty ( ) == false ) { String name = map . firstKey ( ) ; if ( isValidName ( name ) == false ) { WGLOG . error ( "E02004" , name ) ; throw new IllegalArgumentException ( MessageFormat . format ( "" , name ) ) ; } String first = name + QUALIFIER ; String last = name + ( char ) ( QUALIFIER + 1 ) ; Map < String , String > partition = new TreeMap < String