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

Abdelaziz Said Modifications #38

Open
wants to merge 17 commits into
base: master
Choose a base branch
from

Commits on Dec 30, 2021

  1. - Add ConnectionParam.java to extract the connection parameters under…

    … ConnectedAP tag in the CID/SCD file while parsing it.
    
    - Add the ConnectionParam to the ServerModel.java to be retrieved after parsing the CID/SCD file.
    - Enhance the SclParser.java to parse the ConnectionParam under the ConnectedAP tag.
    - Optimize imports in the SclParser.java
    - Remove the unnecessary .toStrings in the SclParser.java
    - Replace the If-else with switch case in the SclParser.java
    AbdelazizSaid250 committed Dec 30, 2021
    Configuration menu
    Copy the full SHA
    c8f49bd View commit details
    Browse the repository at this point in the history
  2. - Edit SclParser.java to set current timestamp.

    - Edit SclParser.java to let the Parsed CID/SCD (ServerModel) returns some attributes and Values that programmer may need after parsing.
    - Let each returned LogicalDevice that returned from the ServerModel to return their LogicalNodes and some attributes after parsing.
    - Let each returned LogicalNode that returned from the LogicalDevice that returned from the ServerModel to return their DataObjects and some attributes after parsing.
    - Let FcDataObject returns some attributes after parsing.
    - Let FcModelNode returns some attibutes after parsing.
    AbdelazizSaid250 committed Dec 30, 2021
    Configuration menu
    Copy the full SHA
    9191f42 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2022

  1. Configuration menu
    Copy the full SHA
    f1360c7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    39c7ef8 View commit details
    Browse the repository at this point in the history
  3. -

    AbdelazizSaid250 committed Jan 2, 2022
    Configuration menu
    Copy the full SHA
    e2807b9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3ddfa9a View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2022

  1. - Add the Jlibmodbus library as a module in the project.

    - Edit the Jlibmodbus library to supports the little endian and big endian modbus slaves which contains three registers (48 bits).
    - Put the IEC61850 Server Connection in the Common module.
    AbdelazizSaid250 committed Jan 3, 2022
    Configuration menu
    Copy the full SHA
    271dbc0 View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2022

  1. - Edit the Data Point Modbus table to contain the last value and last…

    … time.
    
    - Add functionality to the IEC61850 Server.
    - Create ModbusMasterRTU.java to implements the modbus master functionality.
    - Create the Mapping class from Modbus to IEC61850.
    AbdelazizSaid250 committed Jan 5, 2022
    Configuration menu
    Copy the full SHA
    ac45a7c View commit details
    Browse the repository at this point in the history
  2. - Edit the Data Point Modbus table to contain the last value and last…

    … time.
    
    - Add functionality to the IEC61850 Server.
    - Create ModbusMasterRTU.java to implements the modbus master functionality.
    - Create the Mapping class from Modbus to IEC61850.
    AbdelazizSaid250 committed Jan 5, 2022
    Configuration menu
    Copy the full SHA
    bf9f3f9 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2022

  1. Configuration menu
    Copy the full SHA
    d814fe2 View commit details
    Browse the repository at this point in the history
  2. - init commit

    AbdelazizSaid250 committed Jan 8, 2022
    Configuration menu
    Copy the full SHA
    e82c93b View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2022

  1. - Finished the Runtime module to retrieve the runtime mapping from th…

    …e database.
    
    - Created a layer to check if the system is Windows or Linux.
    - Edited the  problem of the scanBasePackages.
    - Added functionalities to the IECServer in the common module.
    AbdelazizSaid250 committed Jan 9, 2022
    Configuration menu
    Copy the full SHA
    eea184e View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2022

  1. - Put the ServerModel and ServerSap inside the Runtime Controller and…

    … remove them from the thread to prevent parsing each loop.
    
    - Remove the IED, and DataSet tables from the schema.
    - Rename the ConfigurationManager.java to CachingRepository.java
    AbdelazizSaid250 committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    0948a27 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2022

  1. - Create a native query to find the DataSourceModbus with the Server ID.

    - Edit the Conversion tool to override the Mapping elements when the DataSourceModbus is existing in the database.
    - Edit the data_point_modbus table by adding new threshold percentage column.
    - Edit the Mapping to consider the thresholdPercentage in the DataPointModbus.
    - Edit the APIs to accept requests from the Combo-boxes as an Objects.
    AbdelazizSaid250 committed Jan 11, 2022
    Configuration menu
    Copy the full SHA
    8ea2199 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2022

  1. Configuration menu
    Copy the full SHA
    1a6dea4 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. - Change Modbus Master Connection type from JSSC to JSerialComm

    - Edit the Runtime Module to be run with the tester.
    AbdelazizSaid250 committed Jan 18, 2022
    Configuration menu
    Copy the full SHA
    0eee857 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. - Add ConnectionParam.java to extract the connection parameters under…

    … ConnectedAP tag in the CID/SCD file while parsing it.
    
    - Add the ConnectionParam to the ServerModel.java to be retrieved after parsing the CID/SCD file.
    - Enhance the SclParser.java to parse the ConnectionParam under the ConnectedAP tag.
    - Optimize imports in the SclParser.java
    - Remove the unnecessary .toStrings in the SclParser.java
    - Replace the If-else with switch case in the SclParser.java
    - Edit SclParser.java to set current timestamp.
    - Edit SclParser.java to let the Parsed CID/SCD (ServerModel) returns some attributes and Values that programmer may need after parsing.
    - Let each returned LogicalDevice that returned from the ServerModel to return their LogicalNodes and some attributes after parsing.
    - Let each returned LogicalNode that returned from the LogicalDevice that returned from the ServerModel to return their DataObjects and some attributes after parsing.
    - Let FcDataObject returns some attributes after parsing.
    - Let FcModelNode returns some attibutes after parsing.
    AbdelazizSaid250 committed Jul 6, 2023
    Configuration menu
    Copy the full SHA
    261f2f0 View commit details
    Browse the repository at this point in the history