idx
int64
0
41.2k
question
stringlengths
83
4.15k
target
stringlengths
5
715
20,200
public void process ( String inputFile , String outputFile ) throws Exception { System . out . println ( "Reading input file started." ) ; long start = System . currentTimeMillis ( ) ; ProjectFile projectFile = readFile ( inputFile ) ; long elapsed = System . currentTimeMillis ( ) - start ; System . out . println ( "Re...
Convert one project file format to another .
20,201
private ProjectFile readFile ( String inputFile ) throws MPXJException { ProjectReader reader = new UniversalProjectReader ( ) ; ProjectFile projectFile = reader . read ( inputFile ) ; if ( projectFile == null ) { throw new IllegalArgumentException ( "Unsupported file type" ) ; } return projectFile ; }
Use the universal project reader to open the file . Throw an exception if we can t determine the file type .
20,202
private void readProjectProperties ( Settings phoenixSettings , Storepoint storepoint ) { ProjectProperties mpxjProperties = m_projectFile . getProjectProperties ( ) ; mpxjProperties . setName ( phoenixSettings . getTitle ( ) ) ; mpxjProperties . setDefaultDurationUnits ( phoenixSettings . getBaseunit ( ) ) ; mpxjPrope...
This method extracts project properties from a Phoenix file .
20,203
private void readCalendars ( Storepoint phoenixProject ) { Calendars calendars = phoenixProject . getCalendars ( ) ; if ( calendars != null ) { for ( Calendar calendar : calendars . getCalendar ( ) ) { readCalendar ( calendar ) ; } ProjectCalendar defaultCalendar = m_projectFile . getCalendarByName ( phoenixProject . g...
This method extracts calendar data from a Phoenix file .
20,204
private void readCalendar ( Calendar calendar ) { ProjectCalendar mpxjCalendar = m_projectFile . addCalendar ( ) ; mpxjCalendar . setName ( calendar . getName ( ) ) ; for ( Day day : Day . values ( ) ) { mpxjCalendar . setWorkingDay ( day , true ) ; } List < NonWork > nonWorkingDays = calendar . getNonWork ( ) ; for ( ...
This method extracts data for a single calendar from a Phoenix file .
20,205
private void readResources ( Storepoint phoenixProject ) { Resources resources = phoenixProject . getResources ( ) ; if ( resources != null ) { for ( net . sf . mpxj . phoenix . schema . Project . Storepoints . Storepoint . Resources . Resource res : resources . getResource ( ) ) { Resource resource = readResource ( re...
This method extracts resource data from a Phoenix file .
20,206
private Resource readResource ( net . sf . mpxj . phoenix . schema . Project . Storepoints . Storepoint . Resources . Resource phoenixResource ) { Resource mpxjResource = m_projectFile . addResource ( ) ; TimeUnit rateUnits = phoenixResource . getMonetarybase ( ) ; if ( rateUnits == null ) { rateUnits = TimeUnit . HOUR...
This method extracts data for a single resource from a Phoenix file .
20,207
private void readTasks ( Project phoenixProject , Storepoint storepoint ) { processLayouts ( phoenixProject ) ; processActivityCodes ( storepoint ) ; processActivities ( storepoint ) ; updateDates ( ) ; }
Read phases and activities from the Phoenix file to create the task hierarchy .
20,208
private void processActivityCodes ( Storepoint storepoint ) { for ( Code code : storepoint . getActivityCodes ( ) . getCode ( ) ) { int sequence = 0 ; for ( Value value : code . getValue ( ) ) { UUID uuid = getUUID ( value . getUuid ( ) , value . getName ( ) ) ; m_activityCodeValues . put ( uuid , value . getName ( ) )...
Map from an activity code value UUID to the actual value itself and its sequence number .
20,209
private void processLayouts ( Project phoenixProject ) { Layout activeLayout = getActiveLayout ( phoenixProject ) ; for ( CodeOption option : activeLayout . getCodeOptions ( ) . getCodeOption ( ) ) { if ( option . isShown ( ) . booleanValue ( ) ) { m_codeSequence . add ( getUUID ( option . getCodeUuid ( ) , option . ge...
Find the current layout and extract the activity code order and visibility .
20,210
private Layout getActiveLayout ( Project phoenixProject ) { Layout activeLayout = phoenixProject . getLayouts ( ) . getLayout ( ) . get ( 0 ) ; if ( ! activeLayout . isActive ( ) . booleanValue ( ) ) { for ( Layout layout : phoenixProject . getLayouts ( ) . getLayout ( ) ) { if ( layout . isActive ( ) . booleanValue ( ...
Find the current active layout .
20,211
private void processActivities ( Storepoint phoenixProject ) { final AlphanumComparator comparator = new AlphanumComparator ( ) ; List < Activity > activities = phoenixProject . getActivities ( ) . getActivity ( ) ; Collections . sort ( activities , new Comparator < Activity > ( ) { public int compare ( Activity o1 , A...
Process the set of activities from the Phoenix file .
20,212
private void processActivity ( Activity activity ) { Task task = getParentTask ( activity ) . addTask ( ) ; task . setText ( 1 , activity . getId ( ) ) ; task . setActualDuration ( activity . getActualDuration ( ) ) ; task . setActualFinish ( activity . getActualFinish ( ) ) ; task . setActualStart ( activity . getActu...
Create a Task instance from a Phoenix activity .
20,213
private boolean activityIsMilestone ( Activity activity ) { String type = activity . getType ( ) ; return type != null && type . indexOf ( "Milestone" ) != - 1 ; }
Returns true if the activity is a milestone .
20,214
private boolean activityIsStartMilestone ( Activity activity ) { String type = activity . getType ( ) ; return type != null && type . indexOf ( "StartMilestone" ) != - 1 ; }
Returns true if the activity is a start milestone .
20,215
private ChildTaskContainer getParentTask ( Activity activity ) { Map < UUID , UUID > map = getActivityCodes ( activity ) ; ChildTaskContainer parent = m_projectFile ; StringBuilder uniqueIdentifier = new StringBuilder ( ) ; for ( UUID activityCode : m_codeSequence ) { UUID activityCodeValue = map . get ( activityCode )...
Retrieves the parent task for a Phoenix activity .
20,216
private Task findChildTaskByUUID ( ChildTaskContainer parent , UUID uuid ) { Task result = null ; for ( Task task : parent . getChildTasks ( ) ) { if ( uuid . equals ( task . getGUID ( ) ) ) { result = task ; break ; } } return result ; }
Locates a task within a child task container which matches the supplied UUID .
20,217
private void readAssignments ( Resource mpxjResource , net . sf . mpxj . phoenix . schema . Project . Storepoints . Storepoint . Resources . Resource res ) { for ( Assignment assignment : res . getAssignment ( ) ) { readAssignment ( mpxjResource , assignment ) ; } }
Reads Phoenix resource assignments .
20,218
private void readAssignment ( Resource resource , Assignment assignment ) { Task task = m_activityMap . get ( assignment . getActivity ( ) ) ; if ( task != null ) { task . addResourceAssignment ( resource ) ; } }
Read a single resource assignment .
20,219
private void readRelationships ( Storepoint phoenixProject ) { for ( Relationship relation : phoenixProject . getRelationships ( ) . getRelationship ( ) ) { readRelation ( relation ) ; } }
Read task relationships from a Phoenix file .
20,220
private void readRelation ( Relationship relation ) { Task predecessor = m_activityMap . get ( relation . getPredecessor ( ) ) ; Task successor = m_activityMap . get ( relation . getSuccessor ( ) ) ; if ( predecessor != null && successor != null ) { Duration lag = relation . getLag ( ) ; RelationType type = relation . ...
Read an individual Phoenix task relationship .
20,221
Map < UUID , UUID > getActivityCodes ( Activity activity ) { Map < UUID , UUID > map = m_activityCodeCache . get ( activity ) ; if ( map == null ) { map = new HashMap < UUID , UUID > ( ) ; m_activityCodeCache . put ( activity , map ) ; for ( CodeAssignment ca : activity . getCodeAssignment ( ) ) { UUID code = getUUID (...
For a given activity retrieve a map of the activity code values which have been assigned to it .
20,222
private Storepoint getCurrentStorepoint ( Project phoenixProject ) { List < Storepoint > storepoints = phoenixProject . getStorepoints ( ) . getStorepoint ( ) ; Collections . sort ( storepoints , new Comparator < Storepoint > ( ) { public int compare ( Storepoint o1 , Storepoint o2 ) { return DateHelper . compare ( o2 ...
Retrieve the most recent storepoint .
20,223
public TableReader read ( ) throws IOException { int tableHeader = m_stream . readInt ( ) ; if ( tableHeader != 0x39AF547A ) { throw new IllegalArgumentException ( "Unexpected file format" ) ; } int recordCount = m_stream . readInt ( ) ; for ( int loop = 0 ; loop < recordCount ; loop ++ ) { int rowMagicNumber = m_strea...
Read data from the table . Return a reference to the current instance to allow method chaining .
20,224
protected void readUUID ( StreamReader stream , Map < String , Object > map ) throws IOException { int unknown0Size = stream . getMajorVersion ( ) > 5 ? 8 : 16 ; map . put ( "UNKNOWN0" , stream . readBytes ( unknown0Size ) ) ; map . put ( "UUID" , stream . readUUID ( ) ) ; }
Read the optional row header and UUID .
20,225
protected int readShort ( int offset , byte [ ] data ) { int result = 0 ; int i = offset + m_offset ; for ( int shiftBy = 0 ; shiftBy < 16 ; shiftBy += 8 ) { result |= ( ( data [ i ] & 0xff ) ) << shiftBy ; ++ i ; } return result ; }
Read a two byte integer from the data .
20,226
public void loadObject ( Object object , Set < String > excludedMethods ) { m_model . setTableModel ( createTableModel ( object , excludedMethods ) ) ; }
Populate the model with the object s properties .
20,227
private TableModel createTableModel ( Object object , Set < String > excludedMethods ) { List < Method > methods = new ArrayList < Method > ( ) ; for ( Method method : object . getClass ( ) . getMethods ( ) ) { if ( ( method . getParameterTypes ( ) . length == 0 ) || ( method . getParameterTypes ( ) . length == 1 && me...
Create a table model from an object s properties .
20,228
private Object filterValue ( Object value ) { if ( value instanceof Boolean && ! ( ( Boolean ) value ) . booleanValue ( ) ) { value = null ; } if ( value instanceof String && ( ( String ) value ) . isEmpty ( ) ) { value = null ; } if ( value instanceof Double && ( ( Double ) value ) . doubleValue ( ) == 0.0 ) { value =...
Replace default values will null allowing them to be ignored .
20,229
private void getSingleValue ( Method method , Object object , Map < String , String > map ) { Object value ; try { value = filterValue ( method . invoke ( object ) ) ; } catch ( Exception ex ) { value = ex . toString ( ) ; } if ( value != null ) { map . put ( getPropertyName ( method ) , String . valueOf ( value ) ) ; ...
Retrieve a single value property .
20,230
private void getMultipleValues ( Method method , Object object , Map < String , String > map ) { try { int index = 1 ; while ( true ) { Object value = filterValue ( method . invoke ( object , Integer . valueOf ( index ) ) ) ; if ( value != null ) { map . put ( getPropertyName ( method , index ) , String . valueOf ( val...
Retrieve multiple properties .
20,231
private String getPropertyName ( Method method ) { String result = method . getName ( ) ; if ( result . startsWith ( "get" ) ) { result = result . substring ( 3 ) ; } return result ; }
Convert a method name into a property name .
20,232
public void setLocale ( Locale locale ) { List < SimpleDateFormat > formats = new ArrayList < SimpleDateFormat > ( ) ; for ( SimpleDateFormat format : m_formats ) { formats . add ( new SimpleDateFormat ( format . toPattern ( ) , locale ) ) ; } m_formats = formats . toArray ( new SimpleDateFormat [ formats . size ( ) ] ...
This method is called when the locale of the parent file is updated . It resets the locale specific date attributes to the default values for the new locale .
20,233
public Map < String , Table > process ( File directory , String prefix ) throws IOException { String filePrefix = prefix . toUpperCase ( ) ; Map < String , Table > tables = new HashMap < String , Table > ( ) ; File [ ] files = directory . listFiles ( ) ; if ( files != null ) { for ( File file : files ) { String name = ...
Main entry point . Reads a directory containing a P3 Btrieve database files and returns a map of table names and table content .
20,234
public static void openLogFile ( ) throws IOException { if ( LOG_FILE != null ) { System . out . println ( "SynchroLogger Configured" ) ; LOG = new PrintWriter ( new FileWriter ( LOG_FILE ) ) ; } }
Open the log file for writing .
20,235
public static void log ( String label , byte [ ] data ) { if ( LOG != null ) { LOG . write ( label ) ; LOG . write ( ": " ) ; LOG . println ( ByteArrayHelper . hexdump ( data , true ) ) ; LOG . flush ( ) ; } }
Log a byte array .
20,236
public static void log ( String label , String data ) { if ( LOG != null ) { LOG . write ( label ) ; LOG . write ( ": " ) ; LOG . println ( data ) ; LOG . flush ( ) ; } }
Log a string .
20,237
public static void log ( byte [ ] data ) { if ( LOG != null ) { LOG . println ( ByteArrayHelper . hexdump ( data , true , 16 , "" ) ) ; LOG . flush ( ) ; } }
Log a byte array as a hex dump .
20,238
public static void log ( String label , Class < ? > klass , Map < String , Object > map ) { if ( LOG != null ) { LOG . write ( label ) ; LOG . write ( ": " ) ; LOG . println ( klass . getSimpleName ( ) ) ; for ( Map . Entry < String , Object > entry : map . entrySet ( ) ) { LOG . println ( entry . getKey ( ) + ": " + e...
Log table contents .
20,239
public void setValue ( FieldContainer container , byte [ ] data ) { if ( data != null ) { container . set ( m_type , ( ( MPPUtility . getInt ( data , m_offset ) & m_mask ) == 0 ) ? m_zeroValue : m_nonZeroValue ) ; } }
Extracts the value of this bit flag from the supplied byte array and sets the value in the supplied container .
20,240
private void setFieldType ( FastTrackTableType tableType ) { switch ( tableType ) { case ACTBARS : { m_type = ActBarField . getInstance ( m_header . getColumnType ( ) ) ; break ; } case ACTIVITIES : { m_type = ActivityField . getInstance ( m_header . getColumnType ( ) ) ; break ; } case RESOURCES : { m_type = ResourceF...
Set the enum representing the type of this column .
20,241
public void process ( File file ) throws Exception { openLogFile ( ) ; int blockIndex = 0 ; int length = ( int ) file . length ( ) ; m_buffer = new byte [ length ] ; FileInputStream is = new FileInputStream ( file ) ; try { int bytesRead = is . read ( m_buffer ) ; if ( bytesRead != length ) { throw new RuntimeException...
Read a FastTrack file .
20,242
public FastTrackTable getTable ( FastTrackTableType type ) { FastTrackTable result = m_tables . get ( type ) ; if ( result == null ) { result = EMPTY_TABLE ; } return result ; }
Retrieve a table of data .
20,243
private void readBlock ( int blockIndex , int startIndex , int blockLength ) throws Exception { logBlock ( blockIndex , startIndex , blockLength ) ; if ( blockLength < 128 ) { readTableBlock ( startIndex , blockLength ) ; } else { readColumnBlock ( startIndex , blockLength ) ; } }
Read a block of data from the FastTrack file and determine if it contains a table definition or columns .
20,244
private void readTableBlock ( int startIndex , int blockLength ) { for ( int index = startIndex ; index < ( startIndex + blockLength - 11 ) ; index ++ ) { if ( matchPattern ( TABLE_BLOCK_PATTERNS , index ) ) { int offset = index + 7 ; int nameLength = FastTrackUtility . getInt ( m_buffer , offset ) ; offset += 4 ; Stri...
Read the name of a table and prepare to populate it with column data .
20,245
private void readColumnBlock ( int startIndex , int blockLength ) throws Exception { int endIndex = startIndex + blockLength ; List < Integer > blocks = new ArrayList < Integer > ( ) ; for ( int index = startIndex ; index < endIndex - 11 ; index ++ ) { if ( matchChildBlock ( index ) ) { int childBlockStart = index - 2 ...
Read multiple columns from a block .
20,246
private void readColumn ( int startIndex , int length ) throws Exception { if ( m_currentTable != null ) { int value = FastTrackUtility . getByte ( m_buffer , startIndex ) ; Class < ? > klass = COLUMN_MAP [ value ] ; if ( klass == null ) { klass = UnknownColumn . class ; } FastTrackColumn column = ( FastTrackColumn ) k...
Read data for a single column .
20,247
private final boolean matchPattern ( byte [ ] [ ] patterns , int bufferIndex ) { boolean match = false ; for ( byte [ ] pattern : patterns ) { int index = 0 ; match = true ; for ( byte b : pattern ) { if ( b != m_buffer [ bufferIndex + index ] ) { match = false ; break ; } ++ index ; } if ( match ) { break ; } } return...
Locate a feature in the file by match a byte pattern .
20,248
private final boolean matchChildBlock ( int bufferIndex ) { int index = 0 ; for ( byte b : CHILD_BLOCK_PATTERN ) { if ( b != m_buffer [ bufferIndex + index ] ) { return false ; } ++ index ; } int nameLength = FastTrackUtility . getInt ( m_buffer , bufferIndex + index ) ; return nameLength > 0 && nameLength < 100 ; }
Locate a child block by byte pattern and validate by checking the length of the string we are expecting to follow the pattern .
20,249
private void updateDurationTimeUnit ( FastTrackColumn column ) { if ( m_durationTimeUnit == null && isDurationColumn ( column ) ) { int value = ( ( DurationColumn ) column ) . getTimeUnitValue ( ) ; if ( value != 1 ) { m_durationTimeUnit = FastTrackUtility . getTimeUnit ( value ) ; } } }
Update the default time unit for durations based on data read from the file .
20,250
private void updateWorkTimeUnit ( FastTrackColumn column ) { if ( m_workTimeUnit == null && isWorkColumn ( column ) ) { int value = ( ( DurationColumn ) column ) . getTimeUnitValue ( ) ; if ( value != 1 ) { m_workTimeUnit = FastTrackUtility . getTimeUnit ( value ) ; } } }
Update the default time unit for work based on data read from the file .
20,251
private void logBlock ( int blockIndex , int startIndex , int blockLength ) { if ( m_log != null ) { m_log . println ( "Block Index: " + blockIndex ) ; m_log . println ( "Length: " + blockLength + " (" + Integer . toHexString ( blockLength ) + ")" ) ; m_log . println ( ) ; m_log . println ( FastTrackUtility . hexdump (...
Log block data .
20,252
private void logColumnData ( int startIndex , int length ) { if ( m_log != null ) { m_log . println ( ) ; m_log . println ( FastTrackUtility . hexdump ( m_buffer , startIndex , length , true , 16 , "" ) ) ; m_log . println ( ) ; m_log . flush ( ) ; } }
Log the data for a single column .
20,253
private void logUnexpectedStructure ( ) { if ( m_log != null ) { m_log . println ( "ABORTED COLUMN - unexpected structure: " + m_currentColumn . getClass ( ) . getSimpleName ( ) + " " + m_currentColumn . getName ( ) ) ; } }
Log unexpected column structure .
20,254
private void logColumn ( FastTrackColumn column ) { if ( m_log != null ) { m_log . println ( "TABLE: " + m_currentTable . getType ( ) ) ; m_log . println ( column . toString ( ) ) ; m_log . flush ( ) ; } }
Log column data .
20,255
private void populateCurrencySettings ( Record record , ProjectProperties properties ) { properties . setCurrencySymbol ( record . getString ( 0 ) ) ; properties . setSymbolPosition ( record . getCurrencySymbolPosition ( 1 ) ) ; properties . setCurrencyDigits ( record . getInteger ( 2 ) ) ; Character c = record . getCh...
Populates currency settings .
20,256
private void populateDefaultSettings ( Record record , ProjectProperties properties ) throws MPXJException { properties . setDefaultDurationUnits ( record . getTimeUnit ( 0 ) ) ; properties . setDefaultDurationIsFixed ( record . getNumericBoolean ( 1 ) ) ; properties . setDefaultWorkUnits ( record . getTimeUnit ( 2 ) )...
Populates default settings .
20,257
private void populateDateTimeSettings ( Record record , ProjectProperties properties ) { properties . setDateOrder ( record . getDateOrder ( 0 ) ) ; properties . setTimeFormat ( record . getTimeFormat ( 1 ) ) ; Date time = getTimeFromInteger ( record . getInteger ( 2 ) ) ; if ( time != null ) { properties . setDefaultS...
Populates date time settings .
20,258
private Date getTimeFromInteger ( Integer time ) { Date result = null ; if ( time != null ) { int minutes = time . intValue ( ) ; int hours = minutes / 60 ; minutes -= ( hours * 60 ) ; Calendar cal = DateHelper . popCalendar ( ) ; cal . set ( Calendar . MILLISECOND , 0 ) ; cal . set ( Calendar . SECOND , 0 ) ; cal . se...
Converts a time represented as an integer to a Date instance .
20,259
private void populateProjectHeader ( Record record , ProjectProperties properties ) throws MPXJException { properties . setProjectTitle ( record . getString ( 0 ) ) ; properties . setCompany ( record . getString ( 1 ) ) ; properties . setManager ( record . getString ( 2 ) ) ; properties . setDefaultCalendarName ( recor...
Populates the project header .
20,260
private void populateCalendarHours ( Record record , ProjectCalendarHours hours ) throws MPXJException { hours . setDay ( Day . getInstance ( NumberHelper . getInt ( record . getInteger ( 0 ) ) ) ) ; addDateRange ( hours , record . getTime ( 1 ) , record . getTime ( 2 ) ) ; addDateRange ( hours , record . getTime ( 3 )...
Populates a calendar hours instance .
20,261
private void addDateRange ( ProjectCalendarHours hours , Date start , Date end ) { if ( start != null && end != null ) { Calendar cal = DateHelper . popCalendar ( end ) ; if ( cal . get ( Calendar . HOUR_OF_DAY ) == 0 && cal . get ( Calendar . MINUTE ) == 0 && cal . get ( Calendar . SECOND ) == 0 && cal . get ( Calenda...
Get a date range that correctly handles the case where the end time is midnight . In this instance the end time should be the start of the next day .
20,262
private void populateCalendarException ( Record record , ProjectCalendar calendar ) throws MPXJException { Date fromDate = record . getDate ( 0 ) ; Date toDate = record . getDate ( 1 ) ; boolean working = record . getNumericBoolean ( 2 ) ; if ( fromDate != null && toDate == null ) { toDate = fromDate ; } ProjectCalenda...
Populates a calendar exception instance .
20,263
private void addExceptionRange ( ProjectCalendarException exception , Date start , Date finish ) { if ( start != null && finish != null ) { exception . addRange ( new DateRange ( start , finish ) ) ; } }
Add a range to an exception ensure that we don t try to add null ranges .
20,264
private void populateCalendar ( Record record , ProjectCalendar calendar , boolean isBaseCalendar ) { if ( isBaseCalendar == true ) { calendar . setName ( record . getString ( 0 ) ) ; } else { calendar . setParent ( m_projectFile . getCalendarByName ( record . getString ( 0 ) ) ) ; } calendar . setWorkingDay ( Day . SU...
Populates a calendar instance .
20,265
private void populateResource ( Resource resource , Record record ) throws MPXJException { String falseText = LocaleData . getString ( m_locale , LocaleData . NO ) ; int length = record . getLength ( ) ; int [ ] model = m_resourceModel . getModel ( ) ; for ( int i = 0 ; i < length ; i ++ ) { int mpxFieldType = model [ ...
Populates a resource .
20,266
private void populateRelationList ( Task task , TaskField field , String data ) { DeferredRelationship dr = new DeferredRelationship ( ) ; dr . setTask ( task ) ; dr . setField ( field ) ; dr . setData ( data ) ; m_deferredRelationships . add ( dr ) ; }
Populates a relation list .
20,267
private void processDeferredRelationship ( DeferredRelationship dr ) throws MPXJException { String data = dr . getData ( ) ; Task task = dr . getTask ( ) ; int length = data . length ( ) ; if ( length != 0 ) { int start = 0 ; int end = 0 ; while ( end != length ) { end = data . indexOf ( m_delimiter , start ) ; if ( en...
This method processes a single deferred relationship list .
20,268
private void populateRelation ( TaskField field , Task sourceTask , String relationship ) throws MPXJException { int index = 0 ; int length = relationship . length ( ) ; while ( ( index < length ) && ( Character . isDigit ( relationship . charAt ( index ) ) == true ) ) { ++ index ; } Integer taskID ; try { taskID = Int...
Creates and populates a new task relationship .
20,269
private void populateRecurringTask ( Record record , RecurringTask task ) throws MPXJException { task . setStartDate ( record . getDateTime ( 1 ) ) ; task . setFinishDate ( record . getDateTime ( 2 ) ) ; task . setDuration ( RecurrenceUtility . getDuration ( m_projectFile . getProjectProperties ( ) , record . getIntege...
Populates a recurring task .
20,270
private void populateResourceAssignment ( Record record , ResourceAssignment assignment ) throws MPXJException { Resource resource = m_projectFile . getResourceByUniqueID ( record . getInteger ( 12 ) ) ; if ( resource == null ) { resource = m_projectFile . getResourceByID ( record . getInteger ( 0 ) ) ; } assignment . ...
Populate a resource assignment .
20,271
private void populateResourceAssignmentWorkgroupFields ( Record record , ResourceAssignmentWorkgroupFields workgroup ) throws MPXJException { workgroup . setMessageUniqueID ( record . getString ( 0 ) ) ; workgroup . setConfirmed ( NumberHelper . getInt ( record . getInteger ( 1 ) ) == 1 ) ; workgroup . setResponsePendi...
Populate a resource assignment workgroup instance .
20,272
static void populateFileCreationRecord ( Record record , ProjectProperties properties ) { properties . setMpxProgramName ( record . getString ( 0 ) ) ; properties . setMpxFileVersion ( FileVersion . getInstance ( record . getString ( 1 ) ) ) ; properties . setMpxCodePage ( record . getCodePage ( 2 ) ) ; }
Populate a file creation record .
20,273
public static RelationType getInstance ( Locale locale , String type ) { int index = - 1 ; String [ ] relationTypes = LocaleData . getStringArray ( locale , LocaleData . RELATION_TYPES ) ; for ( int loop = 0 ; loop < relationTypes . length ; loop ++ ) { if ( relationTypes [ loop ] . equalsIgnoreCase ( type ) == true ) ...
This method takes the textual version of a relation type and returns an appropriate class instance . Note that unrecognised values will cause this method to return null .
20,274
public static final Duration parseDuration ( String value ) { Duration result = null ; if ( value != null ) { int split = value . indexOf ( ' ' ) ; if ( split != - 1 ) { double durationValue = Double . parseDouble ( value . substring ( 0 , split ) ) ; TimeUnit durationUnits = parseTimeUnits ( value . substring ( split ...
Convert the Phoenix representation of a duration into a Duration instance .
20,275
public static final String printDuration ( Duration duration ) { String result = null ; if ( duration != null ) { result = duration . getDuration ( ) + " " + printTimeUnits ( duration . getUnits ( ) ) ; } return result ; }
Retrieve a duration in the form required by Phoenix .
20,276
public static final String printFinishDateTime ( Date value ) { if ( value != null ) { value = DateHelper . addDays ( value , 1 ) ; } return ( value == null ? null : DATE_FORMAT . get ( ) . format ( value ) ) ; }
Retrieve a finish date time in the form required by Phoenix .
20,277
public static final Date parseFinishDateTime ( String value ) { Date result = parseDateTime ( value ) ; if ( result != null ) { result = DateHelper . addDays ( result , - 1 ) ; } return result ; }
Convert the Phoenix representation of a finish date time into a Date instance .
20,278
private FieldType getFieldType ( byte [ ] data , int offset ) { int fieldIndex = MPPUtility . getInt ( data , offset ) ; return FieldTypeHelper . mapTextFields ( FieldTypeHelper . getInstance14 ( fieldIndex ) ) ; }
Retrieves a field type from a location in a data block .
20,279
private ProjectFile readFile ( File file ) throws MPXJException { try { String url = "jdbc:sqlite:" + file . getAbsolutePath ( ) ; Properties props = new Properties ( ) ; m_connection = org . sqlite . JDBC . createConnection ( url , props ) ; m_documentBuilder = DocumentBuilderFactory . newInstance ( ) . newDocumentBui...
By the time we reach this method we should be looking at the SQLite database file itself .
20,280
private ProjectFile read ( ) throws Exception { m_project = new ProjectFile ( ) ; m_eventManager = m_project . getEventManager ( ) ; ProjectConfig config = m_project . getProjectConfig ( ) ; config . setAutoCalendarUniqueID ( false ) ; config . setAutoTaskUniqueID ( false ) ; config . setAutoResourceUniqueID ( false ) ...
Read the project data and return a ProjectFile instance .
20,281
private void populateEntityMap ( ) throws SQLException { for ( Row row : getRows ( "select * from z_primarykey" ) ) { m_entityMap . put ( row . getString ( "Z_NAME" ) , row . getInteger ( "Z_ENT" ) ) ; } }
Create a mapping from entity names to entity ID values .
20,282
private void processCalendars ( ) throws Exception { List < Row > rows = getRows ( "select * from zcalendar where zproject=?" , m_projectID ) ; for ( Row row : rows ) { ProjectCalendar calendar = m_project . addCalendar ( ) ; calendar . setUniqueID ( row . getInteger ( "Z_PK" ) ) ; calendar . setName ( row . getString ...
Read calendar data .
20,283
private void processDays ( ProjectCalendar calendar ) throws Exception { for ( Day day : Day . values ( ) ) { calendar . setWorkingDay ( day , false ) ; } List < Row > rows = getRows ( "select * from zcalendarrule where zcalendar1=? and z_ent=?" , calendar . getUniqueID ( ) , m_entityMap . get ( "CalendarWeekDayRule" )...
Process normal calendar working and non - working days .
20,284
private void processResources ( ) throws SQLException { List < Row > rows = getRows ( "select * from zresource where zproject=? order by zorderinproject" , m_projectID ) ; for ( Row row : rows ) { Resource resource = m_project . addResource ( ) ; resource . setUniqueID ( row . getInteger ( "Z_PK" ) ) ; resource . setEm...
Read resource data .
20,285
private void processTasks ( ) throws SQLException { List < Row > rows = getRows ( "select * from zscheduleitem where zproject=? and zparentactivity_ is null and z_ent=? order by zorderinparentactivity" , m_projectID , m_entityMap . get ( "Activity" ) ) ; for ( Row row : rows ) { Task task = m_project . addTask ( ) ; po...
Read all top level tasks .
20,286
private void processChildTasks ( Task parentTask ) throws SQLException { List < Row > rows = getRows ( "select * from zscheduleitem where zparentactivity_=? and z_ent=? order by zorderinparentactivity" , parentTask . getUniqueID ( ) , m_entityMap . get ( "Activity" ) ) ; for ( Row row : rows ) { Task task = parentTask ...
Read all child tasks for a given parent .
20,287
private void populateTask ( Row row , Task task ) { task . setUniqueID ( row . getInteger ( "Z_PK" ) ) ; task . setName ( row . getString ( "ZTITLE" ) ) ; task . setPriority ( Priority . getInstance ( row . getInt ( "ZPRIORITY" ) ) ) ; task . setMilestone ( row . getBoolean ( "ZISMILESTONE" ) ) ; task . setActualFinish...
Read data for an individual task .
20,288
private void populateConstraints ( Row row , Task task ) { Date endDateMax = row . getTimestamp ( "ZGIVENENDDATEMAX_" ) ; Date endDateMin = row . getTimestamp ( "ZGIVENENDDATEMIN_" ) ; Date startDateMax = row . getTimestamp ( "ZGIVENSTARTDATEMAX_" ) ; Date startDateMin = row . getTimestamp ( "ZGIVENSTARTDATEMIN_" ) ; C...
Populate the constraint type and constraint date . Note that Merlin allows both start and end constraints simultaneously . As we can t have both we ll prefer the start constraint .
20,289
private void processAssignments ( ) throws SQLException { List < Row > rows = getRows ( "select * from zscheduleitem where zproject=? and z_ent=? order by zorderinactivity" , m_projectID , m_entityMap . get ( "Assignment" ) ) ; for ( Row row : rows ) { Task task = m_project . getTaskByUniqueID ( row . getInteger ( "ZAC...
Read assignment data .
20,290
private Duration assignmentDuration ( Task task , Duration work ) { Duration result = work ; if ( result != null ) { if ( result . getUnits ( ) == TimeUnit . PERCENT ) { Duration taskWork = task . getWork ( ) ; if ( taskWork != null ) { result = Duration . getInstance ( taskWork . getDuration ( ) * result . getDuration...
Extract a duration amount from the assignment converting a percentage into an actual duration .
20,291
private void processDependencies ( ) throws SQLException { List < Row > rows = getRows ( "select * from zdependency where zproject=?" , m_projectID ) ; for ( Row row : rows ) { Task nextTask = m_project . getTaskByUniqueID ( row . getInteger ( "ZNEXTACTIVITY_" ) ) ; Task prevTask = m_project . getTaskByUniqueID ( row ....
Read relation data .
20,292
private NodeList getNodeList ( String document , XPathExpression expression ) throws Exception { Document doc = m_documentBuilder . parse ( new InputSource ( new StringReader ( document ) ) ) ; return ( NodeList ) expression . evaluate ( doc , XPathConstants . NODESET ) ; }
Retrieve a node list based on an XPath expression .
20,293
public void process ( ProjectProperties properties , FilterContainer filters , FixedData fixedData , Var2Data varData ) { int filterCount = fixedData . getItemCount ( ) ; boolean [ ] criteriaType = new boolean [ 2 ] ; CriteriaReader criteriaReader = getCriteriaReader ( ) ; for ( int filterLoop = 0 ; filterLoop < filter...
Entry point for processing filter definitions .
20,294
@ SuppressWarnings ( "unchecked" ) public static TimeUnit getInstance ( String units , Locale locale ) throws MPXJException { Map < String , Integer > map = LocaleData . getMap ( locale , LocaleData . TIME_UNITS_MAP ) ; Integer result = map . get ( units . toLowerCase ( ) ) ; if ( result == null ) { throw new MPXJExcep...
This method is used to parse a string representation of a time unit and return the appropriate constant value .
20,295
public BlockHeader read ( byte [ ] buffer , int offset , int postHeaderSkipBytes ) { m_offset = offset ; System . arraycopy ( buffer , m_offset , m_header , 0 , 8 ) ; m_offset += 8 ; int nameLength = FastTrackUtility . getInt ( buffer , m_offset ) ; m_offset += 4 ; if ( nameLength < 1 || nameLength > 255 ) { throw new ...
Reads the header data from a block .
20,296
public void process ( ProjectFile file , Var2Data varData , byte [ ] fixedData ) throws IOException { Props props = getProps ( varData ) ; if ( props != null ) { String viewName = MPPUtility . removeAmpersands ( props . getUnicodeString ( VIEW_NAME ) ) ; byte [ ] listData = props . getByteArray ( VIEW_CONTENTS ) ; List...
Entry point for processing saved view state .
20,297
@ SuppressWarnings ( "unchecked" ) public final List < MapRow > getRows ( String name ) { return ( List < MapRow > ) getObject ( name ) ; }
Retrieve row from a nested table .
20,298
public static String strip ( String text ) { String result = text ; if ( text != null && ! text . isEmpty ( ) ) { try { boolean formalRTF = isFormalRTF ( text ) ; StringTextConverter stc = new StringTextConverter ( ) ; stc . convert ( new RtfStringSource ( text ) ) ; result = stripExtraLineEnd ( stc . getText ( ) , for...
This method removes all RTF formatting from a given piece of text .
20,299
private static String stripExtraLineEnd ( String text , boolean formalRTF ) { if ( formalRTF && text . endsWith ( "\n" ) ) { text = text . substring ( 0 , text . length ( ) - 1 ) ; } return text ; }
Remove the trailing line end from an RTF block .