idx
int64
0
41.2k
question
stringlengths
83
4.15k
target
stringlengths
5
715
20,000
private void set ( FieldType field , boolean value ) { set ( field , ( value ? Boolean . TRUE : Boolean . FALSE ) ) ; }
This method inserts a name value pair into internal storage .
20,001
private List < Row > getRows ( String sql ) throws SQLException { allocateConnection ( ) ; try { List < Row > result = new LinkedList < Row > ( ) ; m_ps = m_connection . prepareStatement ( sql ) ; m_rs = m_ps . executeQuery ( ) ; populateMetaData ( ) ; while ( m_rs . next ( ) ) { result . add ( new MpdResultSetRow ( m_rs , m_meta ) ) ; } return ( result ) ; } finally { releaseConnection ( ) ; } }
Retrieve a number of rows matching the supplied query .
20,002
private void releaseConnection ( ) { if ( m_rs != null ) { try { m_rs . close ( ) ; } catch ( SQLException ex ) { } m_rs = null ; } if ( m_ps != null ) { try { m_ps . close ( ) ; } catch ( SQLException ex ) { } m_ps = null ; } }
Releases a database connection and cleans up any resources associated with that connection .
20,003
private void populateMetaData ( ) throws SQLException { m_meta . clear ( ) ; ResultSetMetaData meta = m_rs . getMetaData ( ) ; int columnCount = meta . getColumnCount ( ) + 1 ; for ( int loop = 1 ; loop < columnCount ; loop ++ ) { String name = meta . getColumnName ( loop ) ; Integer type = Integer . valueOf ( meta . getColumnType ( loop ) ) ; m_meta . put ( name , type ) ; } }
Retrieves basic meta data from the result set .
20,004
public void setSchema ( String schema ) { if ( schema . charAt ( schema . length ( ) - 1 ) != '.' ) { schema = schema + '.' ; } m_schema = schema ; }
Set the name of the schema containing the schedule tables .
20,005
public ActivityCodeValue addValue ( Integer uniqueID , String name , String description ) { ActivityCodeValue value = new ActivityCodeValue ( this , uniqueID , name , description ) ; m_values . add ( value ) ; return value ; }
Add a value to this activity code .
20,006
public static final long getLong ( byte [ ] data , int offset ) { long result = 0 ; int i = offset ; for ( int shiftBy = 0 ; shiftBy < 64 ; shiftBy += 8 ) { result |= ( ( long ) ( data [ i ] & 0xff ) ) << shiftBy ; ++ i ; } return result ; }
Read a long int from a byte array .
20,007
public static final int getInt ( InputStream is ) throws IOException { byte [ ] data = new byte [ 4 ] ; is . read ( data ) ; return getInt ( data , 0 ) ; }
Read an int from an input stream .
20,008
public static final int getShort ( InputStream is ) throws IOException { byte [ ] data = new byte [ 2 ] ; is . read ( data ) ; return getShort ( data , 0 ) ; }
Read a short int from an input stream .
20,009
public static final long getLong ( InputStream is ) throws IOException { byte [ ] data = new byte [ 8 ] ; is . read ( data ) ; return getLong ( data , 0 ) ; }
Read a long int from an input stream .
20,010
public static final String getString ( InputStream is ) throws IOException { int type = is . read ( ) ; if ( type != 1 ) { throw new IllegalArgumentException ( "Unexpected string format" ) ; } Charset charset = CharsetHelper . UTF8 ; int length = is . read ( ) ; if ( length == 0xFF ) { length = getShort ( is ) ; if ( length == 0xFFFE ) { charset = CharsetHelper . UTF16LE ; length = ( is . read ( ) * 2 ) ; } } String result ; if ( length == 0 ) { result = null ; } else { byte [ ] stringData = new byte [ length ] ; is . read ( stringData ) ; result = new String ( stringData , charset ) ; } return result ; }
Read a Synchro string from an input stream .
20,011
public static final UUID getUUID ( InputStream is ) throws IOException { byte [ ] data = new byte [ 16 ] ; is . read ( data ) ; long long1 = 0 ; long1 |= ( ( long ) ( data [ 3 ] & 0xFF ) ) << 56 ; long1 |= ( ( long ) ( data [ 2 ] & 0xFF ) ) << 48 ; long1 |= ( ( long ) ( data [ 1 ] & 0xFF ) ) << 40 ; long1 |= ( ( long ) ( data [ 0 ] & 0xFF ) ) << 32 ; long1 |= ( ( long ) ( data [ 5 ] & 0xFF ) ) << 24 ; long1 |= ( ( long ) ( data [ 4 ] & 0xFF ) ) << 16 ; long1 |= ( ( long ) ( data [ 7 ] & 0xFF ) ) << 8 ; long1 |= ( ( long ) ( data [ 6 ] & 0xFF ) ) << 0 ; long long2 = 0 ; long2 |= ( ( long ) ( data [ 8 ] & 0xFF ) ) << 56 ; long2 |= ( ( long ) ( data [ 9 ] & 0xFF ) ) << 48 ; long2 |= ( ( long ) ( data [ 10 ] & 0xFF ) ) << 40 ; long2 |= ( ( long ) ( data [ 11 ] & 0xFF ) ) << 32 ; long2 |= ( ( long ) ( data [ 12 ] & 0xFF ) ) << 24 ; long2 |= ( ( long ) ( data [ 13 ] & 0xFF ) ) << 16 ; long2 |= ( ( long ) ( data [ 14 ] & 0xFF ) ) << 8 ; long2 |= ( ( long ) ( data [ 15 ] & 0xFF ) ) << 0 ; return new UUID ( long1 , long2 ) ; }
Retrieve a UUID from an input stream .
20,012
public static final Date getDate ( InputStream is ) throws IOException { long timeInSeconds = getInt ( is ) ; if ( timeInSeconds == 0x93406FFF ) { return null ; } timeInSeconds -= 3600 ; timeInSeconds *= 1000 ; return DateHelper . getDateFromLong ( timeInSeconds ) ; }
Read a Synchro date from an input stream .
20,013
public static final Date getTime ( InputStream is ) throws IOException { int timeValue = getInt ( is ) ; timeValue -= 86400 ; timeValue /= 60 ; return DateHelper . getTimeFromMinutesPastMidnight ( Integer . valueOf ( timeValue ) ) ; }
Read a Synchro time from an input stream .
20,014
public static final Duration getDuration ( InputStream is ) throws IOException { double durationInSeconds = getInt ( is ) ; durationInSeconds /= ( 60 * 60 ) ; return Duration . getInstance ( durationInSeconds , TimeUnit . HOURS ) ; }
Retrieve a Synchro Duration from an input stream .
20,015
public static final Double getDouble ( InputStream is ) throws IOException { double result = Double . longBitsToDouble ( getLong ( is ) ) ; if ( Double . isNaN ( result ) ) { result = 0 ; } return Double . valueOf ( result ) ; }
Retrieve a Double from an input stream .
20,016
public void process ( ) { if ( m_data != null ) { int index = 0 ; int offset = 0 ; int length = MPPUtility . getInt ( m_data , offset ) ; offset += 8 ; int numberOfAliases = MPPUtility . getInt ( m_data , offset ) ; offset += 4 ; while ( index < numberOfAliases && offset < length ) { int fieldID = MPPUtility . getInt ( m_data , offset ) ; offset += 4 ; int aliasOffset = MPPUtility . getInt ( m_data , offset ) + 4 ; offset += 4 ; if ( aliasOffset < m_data . length ) { String alias = MPPUtility . getUnicodeString ( m_data , aliasOffset ) ; m_fields . getCustomField ( FieldTypeHelper . getInstance ( fieldID ) ) . setAlias ( alias ) ; } index ++ ; } } }
Process field aliases .
20,017
public List < ProjectListType . Project > getProject ( ) { if ( project == null ) { project = new ArrayList < ProjectListType . Project > ( ) ; } return this . project ; }
Gets the value of the project property .
20,018
public static final String printExtendedAttributeCurrency ( Number value ) { return ( value == null ? null : NUMBER_FORMAT . get ( ) . format ( value . doubleValue ( ) * 100 ) ) ; }
Print an extended attribute currency value .
20,019
public static final Number parseExtendedAttributeCurrency ( String value ) { Number result ; if ( value == null ) { result = null ; } else { result = NumberHelper . getDouble ( Double . parseDouble ( correctNumberFormat ( value ) ) / 100 ) ; } return result ; }
Parse an extended attribute currency value .
20,020
public static final Boolean parseExtendedAttributeBoolean ( String value ) { return ( ( value . equals ( "1" ) ? Boolean . TRUE : Boolean . FALSE ) ) ; }
Parse an extended attribute boolean value .
20,021
public static final String printExtendedAttributeDate ( Date value ) { return ( value == null ? null : DATE_FORMAT . get ( ) . format ( value ) ) ; }
Print an extended attribute date value .
20,022
public static final Date parseExtendedAttributeDate ( String value ) { Date result = null ; if ( value != null ) { try { result = DATE_FORMAT . get ( ) . parse ( value ) ; } catch ( ParseException ex ) { } } return ( result ) ; }
Parse an extended attribute date value .
20,023
public static final String printExtendedAttribute ( MSPDIWriter writer , Object value , DataType type ) { String result ; if ( type == DataType . DATE ) { result = printExtendedAttributeDate ( ( Date ) value ) ; } else { if ( value instanceof Boolean ) { result = printExtendedAttributeBoolean ( ( Boolean ) value ) ; } else { if ( value instanceof Duration ) { result = printDuration ( writer , ( Duration ) value ) ; } else { if ( type == DataType . CURRENCY ) { result = printExtendedAttributeCurrency ( ( Number ) value ) ; } else { if ( value instanceof Number ) { result = printExtendedAttributeNumber ( ( Number ) value ) ; } else { result = value . toString ( ) ; } } } } } return ( result ) ; }
Print an extended attribute value .
20,024
public static final void parseExtendedAttribute ( ProjectFile file , FieldContainer mpx , String value , FieldType mpxFieldID , TimeUnit durationFormat ) { if ( mpxFieldID != null ) { switch ( mpxFieldID . getDataType ( ) ) { case STRING : { mpx . set ( mpxFieldID , value ) ; break ; } case DATE : { mpx . set ( mpxFieldID , parseExtendedAttributeDate ( value ) ) ; break ; } case CURRENCY : { mpx . set ( mpxFieldID , parseExtendedAttributeCurrency ( value ) ) ; break ; } case BOOLEAN : { mpx . set ( mpxFieldID , parseExtendedAttributeBoolean ( value ) ) ; break ; } case NUMERIC : { mpx . set ( mpxFieldID , parseExtendedAttributeNumber ( value ) ) ; break ; } case DURATION : { mpx . set ( mpxFieldID , parseDuration ( file , durationFormat , value ) ) ; break ; } default : { break ; } } } }
Parse an extended attribute value .
20,025
public static final String printCurrencySymbolPosition ( CurrencySymbolPosition value ) { String result ; switch ( value ) { default : case BEFORE : { result = "0" ; break ; } case AFTER : { result = "1" ; break ; } case BEFORE_WITH_SPACE : { result = "2" ; break ; } case AFTER_WITH_SPACE : { result = "3" ; break ; } } return ( result ) ; }
Prints a currency symbol position value .
20,026
public static final CurrencySymbolPosition parseCurrencySymbolPosition ( String value ) { CurrencySymbolPosition result = CurrencySymbolPosition . BEFORE ; switch ( NumberHelper . getInt ( value ) ) { case 0 : { result = CurrencySymbolPosition . BEFORE ; break ; } case 1 : { result = CurrencySymbolPosition . AFTER ; break ; } case 2 : { result = CurrencySymbolPosition . BEFORE_WITH_SPACE ; break ; } case 3 : { result = CurrencySymbolPosition . AFTER_WITH_SPACE ; break ; } } return ( result ) ; }
Parse a currency symbol position value .
20,027
public static final String printAccrueType ( AccrueType value ) { return ( Integer . toString ( value == null ? AccrueType . PRORATED . getValue ( ) : value . getValue ( ) ) ) ; }
Print an accrue type .
20,028
public static final String printResourceType ( ResourceType value ) { return ( Integer . toString ( value == null ? ResourceType . WORK . getValue ( ) : value . getValue ( ) ) ) ; }
Print a resource type .
20,029
public static final String printWorkGroup ( WorkGroup value ) { return ( Integer . toString ( value == null ? WorkGroup . DEFAULT . getValue ( ) : value . getValue ( ) ) ) ; }
Print a work group .
20,030
public static final String printWorkContour ( WorkContour value ) { return ( Integer . toString ( value == null ? WorkContour . FLAT . getValue ( ) : value . getValue ( ) ) ) ; }
Print a work contour .
20,031
public static final String printBookingType ( BookingType value ) { return ( Integer . toString ( value == null ? BookingType . COMMITTED . getValue ( ) : value . getValue ( ) ) ) ; }
Print a booking type .
20,032
public static final String printTaskType ( TaskType value ) { return ( Integer . toString ( value == null ? TaskType . FIXED_UNITS . getValue ( ) : value . getValue ( ) ) ) ; }
Print a task type .
20,033
public static final BigInteger printEarnedValueMethod ( EarnedValueMethod value ) { return ( value == null ? BigInteger . valueOf ( EarnedValueMethod . PERCENT_COMPLETE . getValue ( ) ) : BigInteger . valueOf ( value . getValue ( ) ) ) ; }
Print an earned value method .
20,034
public static final BigDecimal printUnits ( Number value ) { return ( value == null ? BIGDECIMAL_ONE : new BigDecimal ( value . doubleValue ( ) / 100 ) ) ; }
Print units .
20,035
public static final Number parseUnits ( Number value ) { return ( value == null ? null : NumberHelper . getDouble ( value . doubleValue ( ) * 100 ) ) ; }
Parse units .
20,036
public static final BigInteger printTimeUnit ( TimeUnit value ) { return ( BigInteger . valueOf ( value == null ? TimeUnit . DAYS . getValue ( ) + 1 : value . getValue ( ) + 1 ) ) ; }
Print time unit .
20,037
public static final TimeUnit parseWorkUnits ( BigInteger value ) { TimeUnit result = TimeUnit . HOURS ; if ( value != null ) { switch ( value . intValue ( ) ) { case 1 : { result = TimeUnit . MINUTES ; break ; } case 3 : { result = TimeUnit . DAYS ; break ; } case 4 : { result = TimeUnit . WEEKS ; break ; } case 5 : { result = TimeUnit . MONTHS ; break ; } case 7 : { result = TimeUnit . YEARS ; break ; } default : case 2 : { result = TimeUnit . HOURS ; break ; } } } return ( result ) ; }
Parse work units .
20,038
public static final BigInteger printWorkUnits ( TimeUnit value ) { int result ; if ( value == null ) { value = TimeUnit . HOURS ; } switch ( value ) { case MINUTES : { result = 1 ; break ; } case DAYS : { result = 3 ; break ; } case WEEKS : { result = 4 ; break ; } case MONTHS : { result = 5 ; break ; } case YEARS : { result = 7 ; break ; } default : case HOURS : { result = 2 ; break ; } } return ( BigInteger . valueOf ( result ) ) ; }
Print work units .
20,039
public static final Double parseCurrency ( Number value ) { return ( value == null ? null : NumberHelper . getDouble ( value . doubleValue ( ) / 100 ) ) ; }
Parse currency .
20,040
public static final BigDecimal printCurrency ( Number value ) { return ( value == null || value . doubleValue ( ) == 0 ? null : new BigDecimal ( value . doubleValue ( ) * 100 ) ) ; }
Print currency .
20,041
public static final TimeUnit parseDurationTimeUnits ( BigInteger value , TimeUnit defaultValue ) { TimeUnit result = defaultValue ; if ( value != null ) { switch ( value . intValue ( ) ) { case 3 : case 35 : { result = TimeUnit . MINUTES ; break ; } case 4 : case 36 : { result = TimeUnit . ELAPSED_MINUTES ; break ; } case 5 : case 37 : { result = TimeUnit . HOURS ; break ; } case 6 : case 38 : { result = TimeUnit . ELAPSED_HOURS ; break ; } case 7 : case 39 : case 53 : { result = TimeUnit . DAYS ; break ; } case 8 : case 40 : { result = TimeUnit . ELAPSED_DAYS ; break ; } case 9 : case 41 : { result = TimeUnit . WEEKS ; break ; } case 10 : case 42 : { result = TimeUnit . ELAPSED_WEEKS ; break ; } case 11 : case 43 : { result = TimeUnit . MONTHS ; break ; } case 12 : case 44 : { result = TimeUnit . ELAPSED_MONTHS ; break ; } case 19 : case 51 : { result = TimeUnit . PERCENT ; break ; } case 20 : case 52 : { result = TimeUnit . ELAPSED_PERCENT ; break ; } default : { result = PARENT_FILE . get ( ) . getProjectProperties ( ) . getDefaultDurationUnits ( ) ; break ; } } } return ( result ) ; }
Parse duration time units .
20,042
public static final Priority parsePriority ( BigInteger priority ) { return ( priority == null ? null : Priority . getInstance ( priority . intValue ( ) ) ) ; }
Parse priority .
20,043
public static final BigInteger printPriority ( Priority priority ) { int result = Priority . MEDIUM ; if ( priority != null ) { result = priority . getValue ( ) ; } return ( BigInteger . valueOf ( result ) ) ; }
Print priority .
20,044
public static final Duration parseDurationInThousanthsOfMinutes ( ProjectProperties properties , Number value , TimeUnit targetTimeUnit ) { return parseDurationInFractionsOfMinutes ( properties , value , targetTimeUnit , 1000 ) ; }
Parse duration represented in thousandths of minutes .
20,045
public static final BigDecimal printDurationInDecimalThousandthsOfMinutes ( Duration duration ) { BigDecimal result = null ; if ( duration != null && duration . getDuration ( ) != 0 ) { result = BigDecimal . valueOf ( printDurationFractionsOfMinutes ( duration , 1000 ) ) ; } return result ; }
Print duration in thousandths of minutes .
20,046
public static final BigInteger printDurationInIntegerTenthsOfMinutes ( Duration duration ) { BigInteger result = null ; if ( duration != null && duration . getDuration ( ) != 0 ) { result = BigInteger . valueOf ( ( long ) printDurationFractionsOfMinutes ( duration , 10 ) ) ; } return result ; }
Print duration in tenths of minutes .
20,047
public static final UUID parseUUID ( String value ) { return value == null || value . isEmpty ( ) ? null : UUID . fromString ( value ) ; }
Convert the MSPDI representation of a UUID into a Java UUID instance .
20,048
private static final Duration parseDurationInFractionsOfMinutes ( ProjectProperties properties , Number value , TimeUnit targetTimeUnit , int factor ) { Duration result = null ; if ( value != null ) { result = Duration . getInstance ( value . intValue ( ) / factor , TimeUnit . MINUTES ) ; if ( targetTimeUnit != result . getUnits ( ) ) { result = result . convertUnits ( targetTimeUnit , properties ) ; } } return ( result ) ; }
Parse duration represented as an arbitrary fraction of minutes .
20,049
private static final double printDurationFractionsOfMinutes ( Duration duration , int factor ) { double result = 0 ; if ( duration != null ) { result = duration . getDuration ( ) ; switch ( duration . getUnits ( ) ) { case HOURS : case ELAPSED_HOURS : { result *= 60 ; break ; } case DAYS : { result *= ( 60 * 8 ) ; break ; } case ELAPSED_DAYS : { result *= ( 60 * 24 ) ; break ; } case WEEKS : { result *= ( 60 * 8 * 5 ) ; break ; } case ELAPSED_WEEKS : { result *= ( 60 * 24 * 7 ) ; break ; } case MONTHS : { result *= ( 60 * 8 * 5 * 4 ) ; break ; } case ELAPSED_MONTHS : { result *= ( 60 * 24 * 30 ) ; break ; } case YEARS : { result *= ( 60 * 8 * 5 * 52 ) ; break ; } case ELAPSED_YEARS : { result *= ( 60 * 24 * 365 ) ; break ; } default : { break ; } } } result *= factor ; return ( result ) ; }
Print a duration represented by an arbitrary fraction of minutes .
20,050
public static final BigDecimal printRate ( Rate rate ) { BigDecimal result = null ; if ( rate != null && rate . getAmount ( ) != 0 ) { result = new BigDecimal ( rate . getAmount ( ) ) ; } return result ; }
Print rate .
20,051
public static final Rate parseRate ( BigDecimal value ) { Rate result = null ; if ( value != null ) { result = new Rate ( value , TimeUnit . HOURS ) ; } return ( result ) ; }
Parse rate .
20,052
public static final BigInteger printDay ( Day day ) { return ( day == null ? null : BigInteger . valueOf ( day . getValue ( ) - 1 ) ) ; }
Print a day .
20,053
public static final BigInteger printConstraintType ( ConstraintType value ) { return ( value == null ? null : BigInteger . valueOf ( value . getValue ( ) ) ) ; }
Print a constraint type .
20,054
public static final String printTaskUID ( Integer value ) { ProjectFile file = PARENT_FILE . get ( ) ; if ( file != null ) { file . getEventManager ( ) . fireTaskWrittenEvent ( file . getTaskByUniqueID ( value ) ) ; } return ( value . toString ( ) ) ; }
Print a task UID .
20,055
public static final String printResourceUID ( Integer value ) { ProjectFile file = PARENT_FILE . get ( ) ; if ( file != null ) { file . getEventManager ( ) . fireResourceWrittenEvent ( file . getResourceByUniqueID ( value ) ) ; } return ( value . toString ( ) ) ; }
Print a resource UID .
20,056
public static final Boolean parseBoolean ( String value ) { return ( value == null || value . charAt ( 0 ) != '1' ? Boolean . FALSE : Boolean . TRUE ) ; }
Parse a boolean .
20,057
public static final String printDateTime ( Date value ) { return ( value == null ? null : DATE_FORMAT . get ( ) . format ( value ) ) ; }
Print a date time value .
20,058
private static final String correctNumberFormat ( String value ) { String result ; int index = value . indexOf ( ',' ) ; if ( index == - 1 ) { result = value ; } else { char [ ] chars = value . toCharArray ( ) ; chars [ index ] = '.' ; result = new String ( chars ) ; } return result ; }
Detect numbers using comma as a decimal separator and replace with period .
20,059
public static final ProjectFile setProjectNameAndRead ( File directory ) throws MPXJException { List < String > projects = listProjectNames ( directory ) ; if ( ! projects . isEmpty ( ) ) { P3DatabaseReader reader = new P3DatabaseReader ( ) ; reader . setProjectName ( projects . get ( 0 ) ) ; return reader . read ( directory ) ; } return null ; }
Convenience method which locates the first P3 database in a directory and opens it .
20,060
public static final List < String > listProjectNames ( File directory ) { List < String > result = new ArrayList < String > ( ) ; File [ ] files = directory . listFiles ( new FilenameFilter ( ) { public boolean accept ( File dir , String name ) { return name . toUpperCase ( ) . endsWith ( "STR.P3" ) ; } } ) ; if ( files != null ) { for ( File file : files ) { String fileName = file . getName ( ) ; String prefix = fileName . substring ( 0 , fileName . length ( ) - 6 ) ; result . add ( prefix ) ; } } Collections . sort ( result ) ; return result ; }
Retrieve a list of the available P3 project names from a directory .
20,061
private void readProjectHeader ( ) { Table table = m_tables . get ( "DIR" ) ; MapRow row = table . find ( "" ) ; if ( row != null ) { setFields ( PROJECT_FIELDS , row , m_projectFile . getProjectProperties ( ) ) ; m_wbsFormat = new P3WbsFormat ( row ) ; } }
Read general project properties .
20,062
private void readWBS ( ) { Map < Integer , List < MapRow > > levelMap = new HashMap < Integer , List < MapRow > > ( ) ; for ( MapRow row : m_tables . get ( "STR" ) ) { Integer level = row . getInteger ( "LEVEL_NUMBER" ) ; List < MapRow > items = levelMap . get ( level ) ; if ( items == null ) { items = new ArrayList < MapRow > ( ) ; levelMap . put ( level , items ) ; } items . add ( row ) ; } int level = 1 ; while ( true ) { List < MapRow > items = levelMap . get ( Integer . valueOf ( level ++ ) ) ; if ( items == null ) { break ; } for ( MapRow row : items ) { m_wbsFormat . parseRawValue ( row . getString ( "CODE_VALUE" ) ) ; String parentWbsValue = m_wbsFormat . getFormattedParentValue ( ) ; String wbsValue = m_wbsFormat . getFormattedValue ( ) ; row . setObject ( "WBS" , wbsValue ) ; row . setObject ( "PARENT_WBS" , parentWbsValue ) ; } final AlphanumComparator comparator = new AlphanumComparator ( ) ; Collections . sort ( items , new Comparator < MapRow > ( ) { public int compare ( MapRow o1 , MapRow o2 ) { return comparator . compare ( o1 . getString ( "WBS" ) , o2 . getString ( "WBS" ) ) ; } } ) ; for ( MapRow row : items ) { String wbs = row . getString ( "WBS" ) ; if ( wbs != null && ! wbs . isEmpty ( ) ) { ChildTaskContainer parent = m_wbsMap . get ( row . getString ( "PARENT_WBS" ) ) ; if ( parent == null ) { parent = m_projectFile ; } Task task = parent . addTask ( ) ; String name = row . getString ( "CODE_TITLE" ) ; if ( name == null || name . isEmpty ( ) ) { name = wbs ; } task . setName ( name ) ; task . setWBS ( wbs ) ; task . setSummary ( true ) ; m_wbsMap . put ( wbs , task ) ; } } } }
Read tasks representing the WBS .
20,063
private void readRelationships ( ) { for ( MapRow row : m_tables . get ( "REL" ) ) { Task predecessor = m_activityMap . get ( row . getString ( "PREDECESSOR_ACTIVITY_ID" ) ) ; Task successor = m_activityMap . get ( row . getString ( "SUCCESSOR_ACTIVITY_ID" ) ) ; if ( predecessor != null && successor != null ) { Duration lag = row . getDuration ( "LAG_VALUE" ) ; RelationType type = row . getRelationType ( "LAG_TYPE" ) ; successor . addPredecessor ( predecessor , type , lag ) ; } } }
Read task relationships .
20,064
private void setFields ( Map < String , FieldType > map , MapRow row , FieldContainer container ) { if ( row != null ) { for ( Map . Entry < String , FieldType > entry : map . entrySet ( ) ) { container . set ( entry . getValue ( ) , row . getObject ( entry . getKey ( ) ) ) ; } } }
Set the value of one or more fields based on the contents of a database row .
20,065
private static void defineField ( Map < String , FieldType > container , String name , FieldType type ) { defineField ( container , name , type , null ) ; }
Configure the mapping between a database column and a field .
20,066
private static void dumpTree ( PrintWriter pw , DirectoryEntry dir , String prefix , boolean showData , boolean hex , String indent ) throws Exception { long byteCount ; for ( Iterator < Entry > iter = dir . getEntries ( ) ; iter . hasNext ( ) ; ) { Entry entry = iter . next ( ) ; if ( entry instanceof DirectoryEntry ) { String childIndent = indent ; if ( childIndent != null ) { childIndent += " " ; } String childPrefix = prefix + "[" + entry . getName ( ) + "]." ; pw . println ( "start dir: " + prefix + entry . getName ( ) ) ; dumpTree ( pw , ( DirectoryEntry ) entry , childPrefix , showData , hex , childIndent ) ; pw . println ( "end dir: " + prefix + entry . getName ( ) ) ; } else if ( entry instanceof DocumentEntry ) { if ( showData ) { pw . println ( "start doc: " + prefix + entry . getName ( ) ) ; if ( hex == true ) { byteCount = hexdump ( new DocumentInputStream ( ( DocumentEntry ) entry ) , pw ) ; } else { byteCount = asciidump ( new DocumentInputStream ( ( DocumentEntry ) entry ) , pw ) ; } pw . println ( "end doc: " + prefix + entry . getName ( ) + " (" + byteCount + " bytes read)" ) ; } else { if ( indent != null ) { pw . print ( indent ) ; } pw . println ( "doc: " + prefix + entry . getName ( ) ) ; } } else { pw . println ( "found unknown: " + prefix + entry . getName ( ) ) ; } } }
This method recursively descends the directory structure dumping details of any files it finds to the output file .
20,067
private static long hexdump ( InputStream is , PrintWriter pw ) throws Exception { byte [ ] buffer = new byte [ BUFFER_SIZE ] ; long byteCount = 0 ; char c ; int loop ; int count ; StringBuilder sb = new StringBuilder ( ) ; while ( true ) { count = is . read ( buffer ) ; if ( count == - 1 ) { break ; } byteCount += count ; sb . setLength ( 0 ) ; for ( loop = 0 ; loop < count ; loop ++ ) { sb . append ( " " ) ; sb . append ( HEX_DIGITS [ ( buffer [ loop ] & 0xF0 ) >> 4 ] ) ; sb . append ( HEX_DIGITS [ buffer [ loop ] & 0x0F ] ) ; } while ( loop < BUFFER_SIZE ) { sb . append ( " " ) ; ++ loop ; } sb . append ( " " ) ; for ( loop = 0 ; loop < count ; loop ++ ) { c = ( char ) buffer [ loop ] ; if ( c > 200 || c < 27 ) { c = ' ' ; } sb . append ( c ) ; } pw . println ( sb . toString ( ) ) ; } return ( byteCount ) ; }
This method dumps the entire contents of a file to an output print writer as hex and ASCII data .
20,068
private static long asciidump ( InputStream is , PrintWriter pw ) throws Exception { byte [ ] buffer = new byte [ BUFFER_SIZE ] ; long byteCount = 0 ; char c ; int loop ; int count ; StringBuilder sb = new StringBuilder ( ) ; while ( true ) { count = is . read ( buffer ) ; if ( count == - 1 ) { break ; } byteCount += count ; sb . setLength ( 0 ) ; for ( loop = 0 ; loop < count ; loop ++ ) { c = ( char ) buffer [ loop ] ; if ( c > 200 || c < 27 ) { c = ' ' ; } sb . append ( c ) ; } pw . print ( sb . toString ( ) ) ; } return ( byteCount ) ; }
This method dumps the entire contents of a file to an output print writer as ascii data .
20,069
protected void mergeSameCost ( LinkedList < TimephasedCost > list ) { LinkedList < TimephasedCost > result = new LinkedList < TimephasedCost > ( ) ; TimephasedCost previousAssignment = null ; for ( TimephasedCost assignment : list ) { if ( previousAssignment == null ) { assignment . setAmountPerDay ( assignment . getTotalAmount ( ) ) ; result . add ( assignment ) ; } else { Number previousAssignmentCost = previousAssignment . getAmountPerDay ( ) ; Number assignmentCost = assignment . getTotalAmount ( ) ; if ( NumberHelper . equals ( previousAssignmentCost . doubleValue ( ) , assignmentCost . doubleValue ( ) , 0.01 ) ) { Date assignmentStart = previousAssignment . getStart ( ) ; Date assignmentFinish = assignment . getFinish ( ) ; double total = previousAssignment . getTotalAmount ( ) . doubleValue ( ) ; total += assignmentCost . doubleValue ( ) ; TimephasedCost merged = new TimephasedCost ( ) ; merged . setStart ( assignmentStart ) ; merged . setFinish ( assignmentFinish ) ; merged . setAmountPerDay ( assignmentCost ) ; merged . setTotalAmount ( Double . valueOf ( total ) ) ; result . removeLast ( ) ; assignment = merged ; } else { assignment . setAmountPerDay ( assignment . getTotalAmount ( ) ) ; } result . add ( assignment ) ; } previousAssignment = assignment ; } list . clear ( ) ; list . addAll ( result ) ; }
This method merges together assignment data for the same cost .
20,070
public void write ( ProjectFile projectFile , OutputStream out ) throws IOException { m_projectFile = projectFile ; m_eventManager = projectFile . getEventManager ( ) ; m_writer = new PrintStream ( out ) ; m_buffer = new StringBuilder ( ) ; try { write ( ) ; } finally { m_writer = null ; m_projectFile = null ; m_buffer = null ; } }
Write a project file in SDEF format to an output stream .
20,071
private void writeProjectProperties ( ProjectProperties record ) throws IOException { m_minutesPerDay = record . getMinutesPerDay ( ) . doubleValue ( ) ; m_minutesPerWeek = record . getMinutesPerWeek ( ) . doubleValue ( ) ; m_daysPerMonth = record . getDaysPerMonth ( ) . doubleValue ( ) ; m_buffer . setLength ( 0 ) ; m_buffer . append ( "PROJ " ) ; m_buffer . append ( m_formatter . format ( record . getStartDate ( ) ) . toUpperCase ( ) + " " ) ; m_buffer . append ( SDEFmethods . lset ( record . getManager ( ) , 4 ) + " " ) ; m_buffer . append ( SDEFmethods . lset ( record . getProjectTitle ( ) , 48 ) + " " ) ; m_buffer . append ( SDEFmethods . lset ( record . getSubject ( ) , 36 ) + " " ) ; m_buffer . append ( "P " ) ; m_buffer . append ( SDEFmethods . lset ( record . getKeywords ( ) , 7 ) ) ; m_buffer . append ( m_formatter . format ( record . getStartDate ( ) ) . toUpperCase ( ) + " " ) ; m_buffer . append ( m_formatter . format ( record . getFinishDate ( ) ) . toUpperCase ( ) ) ; m_writer . println ( m_buffer ) ; }
Write project properties .
20,072
private void writeCalendars ( List < ProjectCalendar > records ) { for ( ProjectCalendar record : records ) { m_buffer . setLength ( 0 ) ; m_buffer . append ( "CLDR " ) ; m_buffer . append ( SDEFmethods . lset ( record . getUniqueID ( ) . toString ( ) , 2 ) ) ; String workDays = SDEFmethods . workDays ( record ) ; m_buffer . append ( SDEFmethods . lset ( workDays , 8 ) ) ; m_buffer . append ( SDEFmethods . lset ( record . getName ( ) , 30 ) ) ; m_writer . println ( m_buffer ) ; } }
This will create a line in the SDEF file for each calendar if there are more than 9 calendars you ll have a big error as USACE numbers them 0 - 9 .
20,073
private void writeExceptions ( List < ProjectCalendar > records ) throws IOException { for ( ProjectCalendar record : records ) { if ( ! record . getCalendarExceptions ( ) . isEmpty ( ) ) { for ( ProjectCalendarException ex : record . getCalendarExceptions ( ) ) { writeCalendarException ( record , ex ) ; } } m_eventManager . fireCalendarWrittenEvent ( record ) ; } }
Write calendar exceptions .
20,074
private void writeTaskPredecessors ( Task record ) { m_buffer . setLength ( 0 ) ; if ( ! record . getSummary ( ) && ! record . getPredecessors ( ) . isEmpty ( ) ) { m_buffer . append ( "PRED " ) ; List < Relation > predecessors = record . getPredecessors ( ) ; for ( Relation pred : predecessors ) { m_buffer . append ( SDEFmethods . rset ( pred . getSourceTask ( ) . getUniqueID ( ) . toString ( ) , 10 ) + " " ) ; m_buffer . append ( SDEFmethods . rset ( pred . getTargetTask ( ) . getUniqueID ( ) . toString ( ) , 10 ) + " " ) ; String type = "C" ; if ( ! pred . getType ( ) . toString ( ) . equals ( "FS" ) ) { type = pred . getType ( ) . toString ( ) . substring ( 0 , 1 ) ; } m_buffer . append ( type + " " ) ; Duration dd = pred . getLag ( ) ; double duration = dd . getDuration ( ) ; if ( dd . getUnits ( ) != TimeUnit . DAYS ) { dd = Duration . convertUnits ( duration , dd . getUnits ( ) , TimeUnit . DAYS , m_minutesPerDay , m_minutesPerWeek , m_daysPerMonth ) ; } Double days = Double . valueOf ( dd . getDuration ( ) + 0.5 ) ; Integer est = Integer . valueOf ( days . intValue ( ) ) ; m_buffer . append ( SDEFmethods . rset ( est . toString ( ) , 4 ) + " " ) ; } m_writer . println ( m_buffer . toString ( ) ) ; } }
Write each predecessor for a task .
20,075
private Duration getAssignmentWork ( ProjectCalendar calendar , TimephasedWork assignment ) { Date assignmentStart = assignment . getStart ( ) ; Date splitStart = assignmentStart ; Date splitFinishTime = calendar . getFinishTime ( splitStart ) ; Date splitFinish = DateHelper . setTime ( splitStart , splitFinishTime ) ; Duration calendarSplitWork = calendar . getWork ( splitStart , splitFinish , TimeUnit . MINUTES ) ; Duration assignmentWorkPerDay = assignment . getAmountPerDay ( ) ; Duration splitWork ; double splitMinutes = assignmentWorkPerDay . getDuration ( ) ; splitMinutes *= calendarSplitWork . getDuration ( ) ; splitMinutes /= ( 8 * 60 ) ; splitWork = Duration . getInstance ( splitMinutes , TimeUnit . MINUTES ) ; return splitWork ; }
Retrieves the pro - rata work carried out on a given day .
20,076
private Map < Integer , List < Row > > createWorkPatternAssignmentMap ( List < Row > rows ) throws ParseException { Map < Integer , List < Row > > map = new HashMap < Integer , List < Row > > ( ) ; for ( Row row : rows ) { Integer calendarID = row . getInteger ( "ID" ) ; String workPatterns = row . getString ( "WORK_PATTERNS" ) ; map . put ( calendarID , createWorkPatternAssignmentRowList ( workPatterns ) ) ; } return map ; }
Create the work pattern assignment map .
20,077
private List < Row > createWorkPatternAssignmentRowList ( String workPatterns ) throws ParseException { List < Row > list = new ArrayList < Row > ( ) ; String [ ] patterns = workPatterns . split ( ",|:" ) ; int index = 1 ; while ( index < patterns . length ) { Integer workPattern = Integer . valueOf ( patterns [ index + 1 ] ) ; Date startDate = DatatypeConverter . parseBasicTimestamp ( patterns [ index + 3 ] ) ; Date endDate = DatatypeConverter . parseBasicTimestamp ( patterns [ index + 4 ] ) ; Map < String , Object > map = new HashMap < String , Object > ( ) ; map . put ( "WORK_PATTERN" , workPattern ) ; map . put ( "START_DATE" , startDate ) ; map . put ( "END_DATE" , endDate ) ; list . add ( new MapRow ( map ) ) ; index += 5 ; } return list ; }
Extract a list of work pattern assignments .
20,078
private Map < Integer , List < Row > > createExceptionAssignmentMap ( List < Row > rows ) { Map < Integer , List < Row > > map = new HashMap < Integer , List < Row > > ( ) ; for ( Row row : rows ) { Integer calendarID = row . getInteger ( "ID" ) ; String exceptions = row . getString ( "EXCEPTIONS" ) ; map . put ( calendarID , createExceptionAssignmentRowList ( exceptions ) ) ; } return map ; }
Create the exception assignment map .
20,079
private List < Row > createExceptionAssignmentRowList ( String exceptionData ) { List < Row > list = new ArrayList < Row > ( ) ; String [ ] exceptions = exceptionData . split ( ",|:" ) ; int index = 1 ; while ( index < exceptions . length ) { Date startDate = DatatypeConverter . parseEpochTimestamp ( exceptions [ index + 0 ] ) ; Date endDate = DatatypeConverter . parseEpochTimestamp ( exceptions [ index + 1 ] ) ; Map < String , Object > map = new HashMap < String , Object > ( ) ; map . put ( "STARU_DATE" , startDate ) ; map . put ( "ENE_DATE" , endDate ) ; list . add ( new MapRow ( map ) ) ; index += 3 ; } return list ; }
Extract a list of exception assignments .
20,080
private Map < Integer , List < Row > > createTimeEntryMap ( List < Row > rows ) throws ParseException { Map < Integer , List < Row > > map = new HashMap < Integer , List < Row > > ( ) ; for ( Row row : rows ) { Integer workPatternID = row . getInteger ( "ID" ) ; String shifts = row . getString ( "SHIFTS" ) ; map . put ( workPatternID , createTimeEntryRowList ( shifts ) ) ; } return map ; }
Create the time entry map .
20,081
private List < Row > createTimeEntryRowList ( String shiftData ) throws ParseException { List < Row > list = new ArrayList < Row > ( ) ; String [ ] shifts = shiftData . split ( ",|:" ) ; int index = 1 ; while ( index < shifts . length ) { index += 2 ; int entryCount = Integer . parseInt ( shifts [ index ] ) ; index ++ ; for ( int entryIndex = 0 ; entryIndex < entryCount ; entryIndex ++ ) { Integer exceptionTypeID = Integer . valueOf ( shifts [ index + 0 ] ) ; Date startTime = DatatypeConverter . parseBasicTime ( shifts [ index + 1 ] ) ; Date endTime = DatatypeConverter . parseBasicTime ( shifts [ index + 2 ] ) ; Map < String , Object > map = new HashMap < String , Object > ( ) ; map . put ( "START_TIME" , startTime ) ; map . put ( "END_TIME" , endTime ) ; map . put ( "EXCEPTIOP" , exceptionTypeID ) ; list . add ( new MapRow ( map ) ) ; index += 3 ; } } return list ; }
Extract a list of time entries .
20,082
public Map < Integer , TableDefinition > tableDefinitions ( ) { Map < Integer , TableDefinition > result = new HashMap < Integer , TableDefinition > ( ) ; result . put ( Integer . valueOf ( 2 ) , new TableDefinition ( "PROJECT_SUMMARY" , columnDefinitions ( PROJECT_SUMMARY_COLUMNS , projectSummaryColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 7 ) , new TableDefinition ( "BAR" , columnDefinitions ( BAR_COLUMNS , barColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 11 ) , new TableDefinition ( "CALENDAR" , columnDefinitions ( CALENDAR_COLUMNS , calendarColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 12 ) , new TableDefinition ( "EXCEPTIONN" , columnDefinitions ( EXCEPTIONN_COLUMNS , exceptionColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 14 ) , new TableDefinition ( "EXCEPTION_ASSIGNMENT" , columnDefinitions ( EXCEPTION_ASSIGNMENT_COLUMNS , exceptionAssignmentColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 15 ) , new TableDefinition ( "TIME_ENTRY" , columnDefinitions ( TIME_ENTRY_COLUMNS , timeEntryColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 17 ) , new TableDefinition ( "WORK_PATTERN" , columnDefinitions ( WORK_PATTERN_COLUMNS , workPatternColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 18 ) , new TableDefinition ( "TASK_COMPLETED_SECTION" , columnDefinitions ( TASK_COMPLETED_SECTION_COLUMNS , taskCompletedSectionColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 21 ) , new TableDefinition ( "TASK" , columnDefinitions ( TASK_COLUMNS , taskColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 22 ) , new TableDefinition ( "MILESTONE" , columnDefinitions ( MILESTONE_COLUMNS , milestoneColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 23 ) , new TableDefinition ( "EXPANDED_TASK" , columnDefinitions ( EXPANDED_TASK_COLUMNS , expandedTaskColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 25 ) , new TableDefinition ( "LINK" , columnDefinitions ( LINK_COLUMNS , linkColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 61 ) , new TableDefinition ( "CONSUMABLE_RESOURCE" , columnDefinitions ( CONSUMABLE_RESOURCE_COLUMNS , consumableResourceColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 62 ) , new TableDefinition ( "PERMANENT_RESOURCE" , columnDefinitions ( PERMANENT_RESOURCE_COLUMNS , permanentResourceColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 63 ) , new TableDefinition ( "PERM_RESOURCE_SKILL" , columnDefinitions ( PERMANENT_RESOURCE_SKILL_COLUMNS , permanentResourceSkillColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 67 ) , new TableDefinition ( "PERMANENT_SCHEDUL_ALLOCATION" , columnDefinitions ( PERMANENT_SCHEDULE_ALLOCATION_COLUMNS , permanentScheduleAllocationColumnsOrder ( ) ) ) ) ; result . put ( Integer . valueOf ( 190 ) , new TableDefinition ( "WBS_ENTRY" , columnDefinitions ( WBS_ENTRY_COLUMNS , wbsEntryColumnsOrder ( ) ) ) ) ; return result ; }
Retrieves the table structure for an Asta PP file . Subclasses determine the exact contents of the structure for a specific version of the Asta PP file .
20,083
private ColumnDefinition [ ] columnDefinitions ( ColumnDefinition [ ] columns , String [ ] order ) { Map < String , ColumnDefinition > map = makeColumnMap ( columns ) ; ColumnDefinition [ ] result = new ColumnDefinition [ order . length ] ; for ( int index = 0 ; index < order . length ; index ++ ) { result [ index ] = map . get ( order [ index ] ) ; } return result ; }
Generate an ordered set of column definitions from an ordered set of column names .
20,084
private Map < String , ColumnDefinition > makeColumnMap ( ColumnDefinition [ ] columns ) { Map < String , ColumnDefinition > map = new HashMap < String , ColumnDefinition > ( ) ; for ( ColumnDefinition def : columns ) { map . put ( def . getName ( ) , def ) ; } return map ; }
Convert an array of column definitions into a map keyed by column name .
20,085
private void writeProjectExtendedAttributes ( Project project ) { Project . ExtendedAttributes attributes = m_factory . createProjectExtendedAttributes ( ) ; project . setExtendedAttributes ( attributes ) ; List < Project . ExtendedAttributes . ExtendedAttribute > list = attributes . getExtendedAttribute ( ) ; Set < FieldType > customFields = new HashSet < FieldType > ( ) ; for ( CustomField customField : m_projectFile . getCustomFields ( ) ) { FieldType fieldType = customField . getFieldType ( ) ; if ( fieldType != null ) { customFields . add ( fieldType ) ; } } customFields . addAll ( m_extendedAttributesInUse ) ; List < FieldType > customFieldsList = new ArrayList < FieldType > ( ) ; customFieldsList . addAll ( customFields ) ; final CustomFieldContainer customFieldContainer = m_projectFile . getCustomFields ( ) ; Collections . sort ( customFieldsList , new Comparator < FieldType > ( ) { public int compare ( FieldType o1 , FieldType o2 ) { CustomField customField1 = customFieldContainer . getCustomField ( o1 ) ; CustomField customField2 = customFieldContainer . getCustomField ( o2 ) ; String name1 = o1 . getClass ( ) . getSimpleName ( ) + "." + o1 . getName ( ) + " " + customField1 . getAlias ( ) ; String name2 = o2 . getClass ( ) . getSimpleName ( ) + "." + o2 . getName ( ) + " " + customField2 . getAlias ( ) ; return name1 . compareTo ( name2 ) ; } } ) ; for ( FieldType fieldType : customFieldsList ) { Project . ExtendedAttributes . ExtendedAttribute attribute = m_factory . createProjectExtendedAttributesExtendedAttribute ( ) ; list . add ( attribute ) ; attribute . setFieldID ( String . valueOf ( FieldTypeHelper . getFieldID ( fieldType ) ) ) ; attribute . setFieldName ( fieldType . getName ( ) ) ; CustomField customField = customFieldContainer . getCustomField ( fieldType ) ; attribute . setAlias ( customField . getAlias ( ) ) ; } }
This method writes project extended attribute data into an MSPDI file .
20,086
private void writeCalendars ( Project project ) { Project . Calendars calendars = m_factory . createProjectCalendars ( ) ; project . setCalendars ( calendars ) ; List < Project . Calendars . Calendar > calendar = calendars . getCalendar ( ) ; for ( ProjectCalendar cal : m_projectFile . getCalendars ( ) ) { calendar . add ( writeCalendar ( cal ) ) ; } }
This method writes calendar data to an MSPDI file .
20,087
private Project . Calendars . Calendar writeCalendar ( ProjectCalendar bc ) { Project . Calendars . Calendar calendar = m_factory . createProjectCalendarsCalendar ( ) ; calendar . setUID ( NumberHelper . getBigInteger ( bc . getUniqueID ( ) ) ) ; calendar . setIsBaseCalendar ( Boolean . valueOf ( ! bc . isDerived ( ) ) ) ; ProjectCalendar base = bc . getParent ( ) ; calendar . setBaseCalendarUID ( base == null ? NULL_CALENDAR_ID : NumberHelper . getBigInteger ( base . getUniqueID ( ) ) ) ; calendar . setName ( bc . getName ( ) ) ; Project . Calendars . Calendar . WeekDays days = m_factory . createProjectCalendarsCalendarWeekDays ( ) ; Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes . WorkingTime time ; ProjectCalendarHours bch ; List < Project . Calendars . Calendar . WeekDays . WeekDay > dayList = days . getWeekDay ( ) ; for ( int loop = 1 ; loop < 8 ; loop ++ ) { DayType workingFlag = bc . getWorkingDay ( Day . getInstance ( loop ) ) ; if ( workingFlag != DayType . DEFAULT ) { Project . Calendars . Calendar . WeekDays . WeekDay day = m_factory . createProjectCalendarsCalendarWeekDaysWeekDay ( ) ; dayList . add ( day ) ; day . setDayType ( BigInteger . valueOf ( loop ) ) ; day . setDayWorking ( Boolean . valueOf ( workingFlag == DayType . WORKING ) ) ; if ( workingFlag == DayType . WORKING ) { Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes times = m_factory . createProjectCalendarsCalendarWeekDaysWeekDayWorkingTimes ( ) ; day . setWorkingTimes ( times ) ; List < Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes . WorkingTime > timesList = times . getWorkingTime ( ) ; bch = bc . getCalendarHours ( Day . getInstance ( loop ) ) ; if ( bch != null ) { for ( DateRange range : bch ) { if ( range != null ) { time = m_factory . createProjectCalendarsCalendarWeekDaysWeekDayWorkingTimesWorkingTime ( ) ; timesList . add ( time ) ; time . setFromTime ( range . getStart ( ) ) ; time . setToTime ( range . getEnd ( ) ) ; } } } } } } List < ProjectCalendarException > exceptions = new ArrayList < ProjectCalendarException > ( bc . getCalendarExceptions ( ) ) ; if ( ! exceptions . isEmpty ( ) ) { Collections . sort ( exceptions ) ; writeExceptions ( calendar , dayList , exceptions ) ; } if ( ! dayList . isEmpty ( ) ) { calendar . setWeekDays ( days ) ; } writeWorkWeeks ( calendar , bc ) ; m_eventManager . fireCalendarWrittenEvent ( bc ) ; return ( calendar ) ; }
This method writes data for a single calendar to an MSPDI file .
20,088
private void writeExceptions ( Project . Calendars . Calendar calendar , List < Project . Calendars . Calendar . WeekDays . WeekDay > dayList , List < ProjectCalendarException > exceptions ) { writeExceptions9 ( dayList , exceptions ) ; if ( m_saveVersion . getValue ( ) > SaveVersion . Project2003 . getValue ( ) ) { writeExceptions12 ( calendar , exceptions ) ; } }
Main entry point used to determine the format used to write calendar exceptions .
20,089
private void writeExceptions9 ( List < Project . Calendars . Calendar . WeekDays . WeekDay > dayList , List < ProjectCalendarException > exceptions ) { for ( ProjectCalendarException exception : exceptions ) { boolean working = exception . getWorking ( ) ; Project . Calendars . Calendar . WeekDays . WeekDay day = m_factory . createProjectCalendarsCalendarWeekDaysWeekDay ( ) ; dayList . add ( day ) ; day . setDayType ( BIGINTEGER_ZERO ) ; day . setDayWorking ( Boolean . valueOf ( working ) ) ; Project . Calendars . Calendar . WeekDays . WeekDay . TimePeriod period = m_factory . createProjectCalendarsCalendarWeekDaysWeekDayTimePeriod ( ) ; day . setTimePeriod ( period ) ; period . setFromDate ( exception . getFromDate ( ) ) ; period . setToDate ( exception . getToDate ( ) ) ; if ( working ) { Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes times = m_factory . createProjectCalendarsCalendarWeekDaysWeekDayWorkingTimes ( ) ; day . setWorkingTimes ( times ) ; List < Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes . WorkingTime > timesList = times . getWorkingTime ( ) ; for ( DateRange range : exception ) { Project . Calendars . Calendar . WeekDays . WeekDay . WorkingTimes . WorkingTime time = m_factory . createProjectCalendarsCalendarWeekDaysWeekDayWorkingTimesWorkingTime ( ) ; timesList . add ( time ) ; time . setFromTime ( range . getStart ( ) ) ; time . setToTime ( range . getEnd ( ) ) ; } } } }
Write exceptions in the format used by MSPDI files prior to Project 2007 .
20,090
private void writeExceptions12 ( Project . Calendars . Calendar calendar , List < ProjectCalendarException > exceptions ) { Exceptions ce = m_factory . createProjectCalendarsCalendarExceptions ( ) ; calendar . setExceptions ( ce ) ; List < Exceptions . Exception > el = ce . getException ( ) ; for ( ProjectCalendarException exception : exceptions ) { Exceptions . Exception ex = m_factory . createProjectCalendarsCalendarExceptionsException ( ) ; el . add ( ex ) ; ex . setName ( exception . getName ( ) ) ; boolean working = exception . getWorking ( ) ; ex . setDayWorking ( Boolean . valueOf ( working ) ) ; if ( exception . getRecurring ( ) == null ) { ex . setEnteredByOccurrences ( Boolean . FALSE ) ; ex . setOccurrences ( BigInteger . ONE ) ; ex . setType ( BigInteger . ONE ) ; } else { populateRecurringException ( exception , ex ) ; } Project . Calendars . Calendar . Exceptions . Exception . TimePeriod period = m_factory . createProjectCalendarsCalendarExceptionsExceptionTimePeriod ( ) ; ex . setTimePeriod ( period ) ; period . setFromDate ( exception . getFromDate ( ) ) ; period . setToDate ( exception . getToDate ( ) ) ; if ( working ) { Project . Calendars . Calendar . Exceptions . Exception . WorkingTimes times = m_factory . createProjectCalendarsCalendarExceptionsExceptionWorkingTimes ( ) ; ex . setWorkingTimes ( times ) ; List < Project . Calendars . Calendar . Exceptions . Exception . WorkingTimes . WorkingTime > timesList = times . getWorkingTime ( ) ; for ( DateRange range : exception ) { Project . Calendars . Calendar . Exceptions . Exception . WorkingTimes . WorkingTime time = m_factory . createProjectCalendarsCalendarExceptionsExceptionWorkingTimesWorkingTime ( ) ; timesList . add ( time ) ; time . setFromTime ( range . getStart ( ) ) ; time . setToTime ( range . getEnd ( ) ) ; } } } }
Write exceptions into the format used by MSPDI files from Project 2007 onwards .
20,091
private void populateRecurringException ( ProjectCalendarException mpxjException , Exceptions . Exception xmlException ) { RecurringData data = mpxjException . getRecurring ( ) ; xmlException . setEnteredByOccurrences ( Boolean . TRUE ) ; xmlException . setOccurrences ( NumberHelper . getBigInteger ( data . getOccurrences ( ) ) ) ; switch ( data . getRecurrenceType ( ) ) { case DAILY : { xmlException . setType ( BigInteger . valueOf ( 7 ) ) ; xmlException . setPeriod ( NumberHelper . getBigInteger ( data . getFrequency ( ) ) ) ; break ; } case WEEKLY : { xmlException . setType ( BigInteger . valueOf ( 6 ) ) ; xmlException . setPeriod ( NumberHelper . getBigInteger ( data . getFrequency ( ) ) ) ; xmlException . setDaysOfWeek ( getDaysOfTheWeek ( data ) ) ; break ; } case MONTHLY : { xmlException . setPeriod ( NumberHelper . getBigInteger ( data . getFrequency ( ) ) ) ; if ( data . getRelative ( ) ) { xmlException . setType ( BigInteger . valueOf ( 5 ) ) ; xmlException . setMonthItem ( BigInteger . valueOf ( data . getDayOfWeek ( ) . getValue ( ) + 2 ) ) ; xmlException . setMonthPosition ( BigInteger . valueOf ( NumberHelper . getInt ( data . getDayNumber ( ) ) - 1 ) ) ; } else { xmlException . setType ( BigInteger . valueOf ( 4 ) ) ; xmlException . setMonthDay ( NumberHelper . getBigInteger ( data . getDayNumber ( ) ) ) ; } break ; } case YEARLY : { xmlException . setMonth ( BigInteger . valueOf ( NumberHelper . getInt ( data . getMonthNumber ( ) ) - 1 ) ) ; if ( data . getRelative ( ) ) { xmlException . setType ( BigInteger . valueOf ( 3 ) ) ; xmlException . setMonthItem ( BigInteger . valueOf ( data . getDayOfWeek ( ) . getValue ( ) + 2 ) ) ; xmlException . setMonthPosition ( BigInteger . valueOf ( NumberHelper . getInt ( data . getDayNumber ( ) ) - 1 ) ) ; } else { xmlException . setType ( BigInteger . valueOf ( 2 ) ) ; xmlException . setMonthDay ( NumberHelper . getBigInteger ( data . getDayNumber ( ) ) ) ; } } } }
Writes the details of a recurring exception .
20,092
private BigInteger getDaysOfTheWeek ( RecurringData data ) { int value = 0 ; for ( Day day : Day . values ( ) ) { if ( data . getWeeklyDay ( day ) ) { value = value | DAY_MASKS [ day . getValue ( ) ] ; } } return BigInteger . valueOf ( value ) ; }
Converts days of the week into a bit field .
20,093
private void writeWorkWeeks ( Project . Calendars . Calendar xmlCalendar , ProjectCalendar mpxjCalendar ) { List < ProjectCalendarWeek > weeks = mpxjCalendar . getWorkWeeks ( ) ; if ( ! weeks . isEmpty ( ) ) { WorkWeeks xmlWorkWeeks = m_factory . createProjectCalendarsCalendarWorkWeeks ( ) ; xmlCalendar . setWorkWeeks ( xmlWorkWeeks ) ; List < WorkWeek > xmlWorkWeekList = xmlWorkWeeks . getWorkWeek ( ) ; for ( ProjectCalendarWeek week : weeks ) { WorkWeek xmlWeek = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeek ( ) ; xmlWorkWeekList . add ( xmlWeek ) ; xmlWeek . setName ( week . getName ( ) ) ; TimePeriod xmlTimePeriod = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeekTimePeriod ( ) ; xmlWeek . setTimePeriod ( xmlTimePeriod ) ; xmlTimePeriod . setFromDate ( week . getDateRange ( ) . getStart ( ) ) ; xmlTimePeriod . setToDate ( week . getDateRange ( ) . getEnd ( ) ) ; WeekDays xmlWeekDays = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeekWeekDays ( ) ; xmlWeek . setWeekDays ( xmlWeekDays ) ; List < Project . Calendars . Calendar . WorkWeeks . WorkWeek . WeekDays . WeekDay > dayList = xmlWeekDays . getWeekDay ( ) ; for ( int loop = 1 ; loop < 8 ; loop ++ ) { DayType workingFlag = week . getWorkingDay ( Day . getInstance ( loop ) ) ; if ( workingFlag != DayType . DEFAULT ) { Project . Calendars . Calendar . WorkWeeks . WorkWeek . WeekDays . WeekDay day = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeekWeekDaysWeekDay ( ) ; dayList . add ( day ) ; day . setDayType ( BigInteger . valueOf ( loop ) ) ; day . setDayWorking ( Boolean . valueOf ( workingFlag == DayType . WORKING ) ) ; if ( workingFlag == DayType . WORKING ) { Project . Calendars . Calendar . WorkWeeks . WorkWeek . WeekDays . WeekDay . WorkingTimes times = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeekWeekDaysWeekDayWorkingTimes ( ) ; day . setWorkingTimes ( times ) ; List < Project . Calendars . Calendar . WorkWeeks . WorkWeek . WeekDays . WeekDay . WorkingTimes . WorkingTime > timesList = times . getWorkingTime ( ) ; ProjectCalendarHours bch = week . getCalendarHours ( Day . getInstance ( loop ) ) ; if ( bch != null ) { for ( DateRange range : bch ) { if ( range != null ) { Project . Calendars . Calendar . WorkWeeks . WorkWeek . WeekDays . WeekDay . WorkingTimes . WorkingTime time = m_factory . createProjectCalendarsCalendarWorkWeeksWorkWeekWeekDaysWeekDayWorkingTimesWorkingTime ( ) ; timesList . add ( time ) ; time . setFromTime ( range . getStart ( ) ) ; time . setToTime ( range . getEnd ( ) ) ; } } } } } } } } }
Write the work weeks associated with this calendar .
20,094
private void writeResources ( Project project ) { Project . Resources resources = m_factory . createProjectResources ( ) ; project . setResources ( resources ) ; List < Project . Resources . Resource > list = resources . getResource ( ) ; for ( Resource resource : m_projectFile . getResources ( ) ) { list . add ( writeResource ( resource ) ) ; } }
This method writes resource data to an MSPDI file .
20,095
private void writeResourceBaselines ( Project . Resources . Resource xmlResource , Resource mpxjResource ) { Project . Resources . Resource . Baseline baseline = m_factory . createProjectResourcesResourceBaseline ( ) ; boolean populated = false ; Number cost = mpxjResource . getBaselineCost ( ) ; if ( cost != null && cost . intValue ( ) != 0 ) { populated = true ; baseline . setCost ( DatatypeConverter . printCurrency ( cost ) ) ; } Duration work = mpxjResource . getBaselineWork ( ) ; if ( work != null && work . getDuration ( ) != 0 ) { populated = true ; baseline . setWork ( DatatypeConverter . printDuration ( this , work ) ) ; } if ( populated ) { xmlResource . getBaseline ( ) . add ( baseline ) ; baseline . setNumber ( BigInteger . ZERO ) ; } for ( int loop = 1 ; loop <= 10 ; loop ++ ) { baseline = m_factory . createProjectResourcesResourceBaseline ( ) ; populated = false ; cost = mpxjResource . getBaselineCost ( loop ) ; if ( cost != null && cost . intValue ( ) != 0 ) { populated = true ; baseline . setCost ( DatatypeConverter . printCurrency ( cost ) ) ; } work = mpxjResource . getBaselineWork ( loop ) ; if ( work != null && work . getDuration ( ) != 0 ) { populated = true ; baseline . setWork ( DatatypeConverter . printDuration ( this , work ) ) ; } if ( populated ) { xmlResource . getBaseline ( ) . add ( baseline ) ; baseline . setNumber ( BigInteger . valueOf ( loop ) ) ; } } }
Writes resource baseline data .
20,096
private void writeResourceExtendedAttributes ( Project . Resources . Resource xml , Resource mpx ) { Project . Resources . Resource . ExtendedAttribute attrib ; List < Project . Resources . Resource . ExtendedAttribute > extendedAttributes = xml . getExtendedAttribute ( ) ; for ( ResourceField mpxFieldID : getAllResourceExtendedAttributes ( ) ) { Object value = mpx . getCachedValue ( mpxFieldID ) ; if ( FieldTypeHelper . valueIsNotDefault ( mpxFieldID , value ) ) { m_extendedAttributesInUse . add ( mpxFieldID ) ; Integer xmlFieldID = Integer . valueOf ( MPPResourceField . getID ( mpxFieldID ) | MPPResourceField . RESOURCE_FIELD_BASE ) ; attrib = m_factory . createProjectResourcesResourceExtendedAttribute ( ) ; extendedAttributes . add ( attrib ) ; attrib . setFieldID ( xmlFieldID . toString ( ) ) ; attrib . setValue ( DatatypeConverter . printExtendedAttribute ( this , value , mpxFieldID . getDataType ( ) ) ) ; attrib . setDurationFormat ( printExtendedAttributeDurationFormat ( value ) ) ; } } }
This method writes extended attribute data for a resource .
20,097
private void writeCostRateTables ( Project . Resources . Resource xml , Resource mpx ) { List < Project . Resources . Resource . Rates . Rate > ratesList = null ; for ( int tableIndex = 0 ; tableIndex < 5 ; tableIndex ++ ) { CostRateTable table = mpx . getCostRateTable ( tableIndex ) ; if ( table != null ) { Date from = DateHelper . FIRST_DATE ; for ( CostRateTableEntry entry : table ) { if ( costRateTableWriteRequired ( entry , from ) ) { if ( ratesList == null ) { Rates rates = m_factory . createProjectResourcesResourceRates ( ) ; xml . setRates ( rates ) ; ratesList = rates . getRate ( ) ; } Project . Resources . Resource . Rates . Rate rate = m_factory . createProjectResourcesResourceRatesRate ( ) ; ratesList . add ( rate ) ; rate . setCostPerUse ( DatatypeConverter . printCurrency ( entry . getCostPerUse ( ) ) ) ; rate . setOvertimeRate ( DatatypeConverter . printRate ( entry . getOvertimeRate ( ) ) ) ; rate . setOvertimeRateFormat ( DatatypeConverter . printTimeUnit ( entry . getOvertimeRateFormat ( ) ) ) ; rate . setRatesFrom ( from ) ; from = entry . getEndDate ( ) ; rate . setRatesTo ( from ) ; rate . setRateTable ( BigInteger . valueOf ( tableIndex ) ) ; rate . setStandardRate ( DatatypeConverter . printRate ( entry . getStandardRate ( ) ) ) ; rate . setStandardRateFormat ( DatatypeConverter . printTimeUnit ( entry . getStandardRateFormat ( ) ) ) ; } } } } }
Writes a resource s cost rate tables .
20,098
private boolean costRateTableWriteRequired ( CostRateTableEntry entry , Date from ) { boolean fromDate = ( DateHelper . compare ( from , DateHelper . FIRST_DATE ) > 0 ) ; boolean toDate = ( DateHelper . compare ( entry . getEndDate ( ) , DateHelper . LAST_DATE ) > 0 ) ; boolean costPerUse = ( NumberHelper . getDouble ( entry . getCostPerUse ( ) ) != 0 ) ; boolean overtimeRate = ( entry . getOvertimeRate ( ) != null && entry . getOvertimeRate ( ) . getAmount ( ) != 0 ) ; boolean standardRate = ( entry . getStandardRate ( ) != null && entry . getStandardRate ( ) . getAmount ( ) != 0 ) ; return ( fromDate || toDate || costPerUse || overtimeRate || standardRate ) ; }
This method determines whether the cost rate table should be written . A default cost rate table should not be written to the file .
20,099
private void writeAvailability ( Project . Resources . Resource xml , Resource mpx ) { AvailabilityPeriods periods = m_factory . createProjectResourcesResourceAvailabilityPeriods ( ) ; xml . setAvailabilityPeriods ( periods ) ; List < AvailabilityPeriod > list = periods . getAvailabilityPeriod ( ) ; for ( Availability availability : mpx . getAvailability ( ) ) { AvailabilityPeriod period = m_factory . createProjectResourcesResourceAvailabilityPeriodsAvailabilityPeriod ( ) ; list . add ( period ) ; DateRange range = availability . getRange ( ) ; period . setAvailableFrom ( range . getStart ( ) ) ; period . setAvailableTo ( range . getEnd ( ) ) ; period . setAvailableUnits ( DatatypeConverter . printUnits ( availability . getUnits ( ) ) ) ; } }
This method writes a resource s availability table .