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

Add "incomplete database" concept #39

Open
aik099 opened this issue Dec 27, 2024 · 0 comments
Open

Add "incomplete database" concept #39

aik099 opened this issue Dec 27, 2024 · 0 comments

Comments

@aik099
Copy link
Member

aik099 commented Dec 27, 2024

As Code-Inside code is updated we might end up in a situation (e.g. introduced by a #37 or #38), where the sync command will discover more information about the code, than before. Since the actual scanned code base is the same, then:

  • the sync command won't rescan the code to pull missing data;
  • the bc command won't notice new/changed information in the database.

TODO:

  1. in a PHP/SQL migration script:
    1. figure out in which table the data is now incomplete (e.g. ClassMethods)
    2. if a FileId column is found in that table, then use its value
    3. otherwise trace back that table to the table with a FileId column (e.g. ClassMethods > Classes) and get the FileId value
    4. set 0 or -1 to the Files.Size column for files with the above-found IDs
  2. next time the sync runs it will reparse these files, because of a filesize difference and add all missing info to the database
  3. add the public KnowledgeBase::isIncomplete method, which would count records in the Files table that has Size=-1 or 0 and return true, when such records were found or false otherwise
  4. the bc command would call isIncomplete method on both databases and if throw an exception asking ti resync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant