void Update() { if (InitConnection()) { try { if (m_bBrokenConnection) { DestroyConnection(); } else { // Check our stuff HPMUInt64 CurrentTime = GetTimeSince1970(); if (CurrentTime > m_NextUpdate) #if (DEBUG) { m_NextUpdate = CurrentTime + 10000000; // Check every 10 seconds } #else { m_NextUpdate = CurrentTime + 120000000; // Check every 120 seconds } #endif // Get text field HPMCustomSettingValue EditFieldValue = m_Session.GlobalGetCustomSettingsValue(EHPMCustomSettingsType.Admin, m_IntegrationIdentifier, "GlobalSettings1/TestTab1/Edit"); Console.WriteLine("Example edit field: " + EditFieldValue.m_Value); // Get selected resources HPMCustomSettingValue SelectedResourcesValue = m_Session.GlobalGetCustomSettingsValue(EHPMCustomSettingsType.Admin, m_IntegrationIdentifier, "GlobalSettings1/TestTab2/Subset0"); if (SelectedResourcesValue.m_Value.Length > 0) { char[] DelimitChars = { ' ' }; // This will not work for values with escaped space in them String[] Values = SelectedResourcesValue.m_Value.Split(DelimitChars); foreach (String Value in Values) { HPMCustomChoiceValue CustomValue = m_Session.UtilDecodeCustomChoiceValue(Value); Console.WriteLine("Value " + Value + " has unique ID " + CustomValue.m_UniqueID); HPMResourceProperties Properties = m_Session.ResourceGetProperties(CustomValue.m_UniqueID); Console.WriteLine("Name: " + Properties.m_Name + ", Email: " + Properties.m_EmailAddress); } } HPMCustomSettingValue AllChoiceValue = m_Session.GlobalGetCustomSettingsValue(EHPMCustomSettingsType.Admin, m_IntegrationIdentifier, "GlobalSettings1/TestTab3/Subset1/Choices"); Console.WriteLine("All choices in TestTab3: " + AllChoiceValue.m_Value); // Add new value from SDK if it's not there if (!AllChoiceValue.m_Value.Contains(m_NewValue)) { String NewAllChoices = m_NewValue + " " + AllChoiceValue.m_Value; AllChoiceValue.m_Value = NewAllChoices; m_Session.GlobalSetCustomSettingsValue(EHPMCustomSettingsType.Admin, m_IntegrationIdentifier, "GlobalSettings1/TestTab3/Subset1/Choices", AllChoiceValue); } } } catch (HPMSdkException _Error) { Console.WriteLine("Exception in processing loop: " + _Error.ErrorAsStr()); } catch (HPMSdkManagedException _Error) { Console.WriteLine("Exception in processing loop: " + _Error.ErrorAsStr()); } } }
void Update() { if (InitConnection()) { try { if (m_bBrokenConnection) { DestroyConnection(); } else { // Check our stuff HPMUInt64 CurrentTime = GetTimeSince1970(); if (CurrentTime > m_NextUpdate) { // Find administrator resource HPMResourceEnum Resources = m_Session.ResourceEnum(); HPMUniqueID AdminResourceUID = -1; string ResourceToFind = "Administrator"; for (HPMUInt32 i = 0; i < Resources.m_Resources.Length && !AdminResourceUID.IsValid(); ++i) { HPMUniqueID ResourceUID = Resources.m_Resources[i]; HPMResourceProperties ResourceInfo = m_Session.ResourceGetProperties(ResourceUID);; if (ResourceInfo.m_Name == ResourceToFind) { AdminResourceUID = ResourceUID; } } if (AdminResourceUID.IsValid()) { // Enumerate projects HPMProjectEnum Projects = m_Session.ProjectEnum(); // Loop through projects for (HPMUInt32 i = 0; i < Projects.m_Projects.Length; ++i) { // Enumerate tasks HPMUniqueID ProjectUID = Projects.m_Projects[i]; HPMTaskEnum Tasks = m_Session.TaskEnum(ProjectUID); HPMProjectProperties ProjectProp = m_Session.ProjectGetProperties(ProjectUID); HPMUniqueID OurTaskID = -1; string OurTaskDesc = "HPM SDK Simple Sample Task"; for (HPMUInt32 j = 0; j < Tasks.m_Tasks.Length && !OurTaskID.IsValid(); ++j) { string Description = m_Session.TaskGetDescription(Tasks.m_Tasks[j]); if (Description == OurTaskDesc) { OurTaskID = Tasks.m_Tasks[j]; } } // Impersonate resource so it looks like this resource made the changes. // The string in the third argument will be shown in the "Change originates from" column in the change history m_Session.ResourceImpersonate(AdminResourceUID, EHPMDataHistoryClientOrigin.CustomSDK, m_Session.LocalizationCreateUntranslatedStringFromString("Task updated from Sample_SimpleManaged")); if (!OurTaskID.IsValid()) { // No old task was found, create a new one HPMTaskCreateUnified CreateData = new HPMTaskCreateUnified(); Array.Resize(ref CreateData.m_Tasks, 1); CreateData.m_Tasks[0] = new HPMTaskCreateUnifiedEntry(); // Set previous to -1 to make it the top task. HPMTaskCreateUnifiedReference PrevRefID = new HPMTaskCreateUnifiedReference(); PrevRefID.m_RefID = -1; HPMTaskCreateUnifiedReference PrevWorkPrioRefID = new HPMTaskCreateUnifiedReference(); PrevWorkPrioRefID.m_RefID = -2; CreateData.m_Tasks[0].m_LocalID = 1; CreateData.m_Tasks[0].m_PreviousRefID = PrevRefID; CreateData.m_Tasks[0].m_PreviousWorkPrioRefID = PrevWorkPrioRefID; HPMChangeCallbackData_TaskCreateUnified TaskCreateReturn = m_Session.TaskCreateUnifiedBlock(ProjectUID, CreateData); if (TaskCreateReturn.m_Tasks.Length == 1) { // The returned is a task ref in the project container. We need the task id not the reference id. HPMUniqueID OurTaskRefID = TaskCreateReturn.m_Tasks[0].m_TaskRefID; OurTaskID = m_Session.TaskRefGetTask(OurTaskRefID); m_Session.TaskSetDescription(OurTaskID, OurTaskDesc); // When we set fully created the task becomes visible to users. m_Session.TaskSetFullyCreated(OurTaskID); Console.Write("Successfully created task for project: " + ProjectProp.m_Name + "\r\n"); } else { Console.Write("The wrong number of tasks were created, aborting\r\n"); } } if (OurTaskID.IsValid()) { // Set to todays date HPMTaskTimeZones Zones = new HPMTaskTimeZones(); Array.Resize(ref Zones.m_Zones, 1); Zones.m_Zones[0] = new HPMTaskTimeZonesZone(); Zones.m_Zones[0].m_Start = (CurrentTime / (((HPMUInt64)(60 * 60 * 24)) * 1000000)) * (((HPMUInt64)(60 * 60 * 24)) * 1000000); // We must align the time on whole days Zones.m_Zones[0].m_End = Zones.m_Zones[0].m_Start; // When the end is the same as the start the task is one day long. m_Session.TaskSetTimeZones(OurTaskID, Zones, false); Console.Write("Successfully updated task for project: " + ProjectProp.m_Name + "\r\n"); } } } else { Console.Write("No administrator user was found, aborting.\r\n"); } #if (DEBUG) m_NextUpdate = CurrentTime + 10000000; // Check every 10 seconds #else m_NextUpdate = CurrentTime + 120000000; // Check every 120 seconds #endif } } } catch (HPMSdkException _Error) { Console.Write("Exception in processing loop: " + _Error.ErrorAsStr() + "\r\n"); } catch (HPMSdkManagedException _Error) { Console.Write("Exception in processing loop: " + _Error.ErrorAsStr() + "\r\n"); } } }