Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

avoid global isHistoryEnabled() checks in favor of per repository check #4746

Merged
merged 8 commits into from
Mar 20, 2025

Conversation

vladak
Copy link
Member

@vladak vladak commented Mar 18, 2025

This change allows for real per project history override.

Tested with indexer running with:

-P
-S
-R
/var/opengrok/etc/readonly_configuration-per_project_history.xml
-s
/var/opengrok/src.perproj
-d
/var/opengrok/data.perproj
-W
/var/opengrok/etc/configuration.xml

where the contents of /var/opengrok/etc/readonly_configuration-per_project_history.xml looked like this:

<?xml version="1.0" encoding="UTF-8"?>
<java version="11.0.4" class="java.beans.XMLDecoder">
 <object class="org.opengrok.indexer.configuration.Configuration" id="Configuration0">

  <void property="historyEnabled">
    <boolean>true</boolean>
  </void>

  <void property="projectsEnabled">
   <boolean>true</boolean>
  </void>

   <void property="projects">
     <void method="put">
      <string>foo</string>
      <object class="org.opengrok.indexer.configuration.Project">
       <void property="handleRenamedFiles">
        <boolean>false</boolean>
       </void>
       <void property="historyEnabled">
        <boolean>false</boolean>
       </void>
       <void property="name">
        <string>foo</string>
       </void>
       <void property="path">
        <string>/foo</string>
       </void>
       <void property="mergeCommitsEnabled">
        <boolean>false</boolean>
       </void>
      </object>
     </void>
   </void>

 </object>
</java>

The source root had two projects, each with single Git repository, named foo and bar. I ran two tests, one with global history on and per project/repository off and vice versa. Checked the list/minisearch JSPs in debugger for each test.

Also ran indexer with and without -H to make sure the history is disabled by default as before the change and also that the history cache is created if history is on (to test the AnalyzerGuru changes).

Also tested in project-less mode.

@vladak vladak added the indexer label Mar 18, 2025
@oracle-contributor-agreement oracle-contributor-agreement bot added the OCA Verified All contributors have signed the Oracle Contributor Agreement. label Mar 18, 2025
@vladak vladak force-pushed the project_history_override branch from 92c4fa9 to 3fca07a Compare March 18, 2025 18:16
@vladak vladak requested a review from ginoaugustine March 19, 2025 13:03
@vladak vladak merged commit 7b5f14f into oracle:master Mar 20, 2025
9 checks passed
@vladak vladak deleted the project_history_override branch March 20, 2025 11:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
indexer OCA Verified All contributors have signed the Oracle Contributor Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants