Alfresco version 5.1.g
Use this table to check what version of the mms - mdk - ve triple you should be using: https://github.com/Open-MBEE/mdk/blob/support/2.5/manual/MDK%20-%20MMS%20-%20VE%20Compatibility%20Matrix.pdf
- Open Project with root of 'mms-ent'
- Import Maven Project
- Eclipse > File > Import > General > Existing Projects into Workspace
- Set 'Root Directory' as the path to mms e.g. Browse to
$HOME/workspace/mms
- In the 'Projects' list, you should see all poms. Click Finish
- Eclipse > File > Import > Maven > Existing Maven Projects
- Set 'Root Directory' as the path to mms e.g. Browse to
$HOME/workspace/mms/mms-ent
- In the 'Projects' list, you should see all poms. Click Finish
- Eclipse > Window > Preferences > Maven > Installation
- Toggle Maven 3.X.X
- If Maven 3.X.X is not listed, download and install it.
- On a Mac, install it at /usr/local/Cellar/maven.
- On a Linux, anywhere in your $PATH.
- Return to Eclipse > Window > Preferences > Maven > Installation
- Choose Add...
- Browse and select Maven 3.X.X installed location.
- Location is the maven home that you can get by running the newly installed maven, with mvn -V
- Select mms-ent project
- From menu bar, choose Run > Run Configurations
- Right-click Maven Build > New
- Enter
mms
for Name textbox - At Main tab
- Enter
${project_loc}
or${workspace_loc}
for Base Directory textbox - Enter
install
for Goals textbox - Enter
run
for Profiles textbox - Select Maven 3.X.X (whatever you chose to setup in step 2) for Maven Runtime
- Enter
- At JRE tab
- Select Java 8 for JRE.
- If it's not installed, download and install Java 8. Afterward, return to here and select Java 8.
- Enter
- Download Elasticsearch 5.X
- Install Elasticsearch
- Start Elasticsearch then run
mms-ent/repo-amp/src/main/java/gov/nasa/jpl/view_repo/db/mms-mappings.sh
- Download Postgresql 9.x
- If using Postgresql as the database for Alfresco, Postgresl 9.3 is the latest supported version
- Install Postgresql
- Start Postgresql server
- Connect to the Postgresql server and:
- Create a
mms
user (referenced by pg.user in yourmms-ent/mms.properties
file)- Ensure you set a password (referenced by pg.pass)
- Create a
mms
database ( referenced by pg.name)
- Create a
- Execute
mms-ent/repo-amp/src/main/java/gov/nasa/jpl/view_repo/db/mms.sql
- windows CMD e.g.:
psql -h localhost -p 5432 -U mms -d mms -v schema=public < C:\path\to\mms\repo\mms.sql
- windows CMD e.g.:
- Download ActiveMQ
- Install ActiveMQ
- Start ActiveMQ service
- Select file menu Run > Run Configurations
- Expand Maven Build
- Select mms
- Click Run button
- If you get error:-Dmaven.multiModuleProjectDirectory system property is not set. Check $M2_HOME environment variable and mvn script match. Goto Window -> Preference -> Java -> Installed JREs -> Edit -> Default VM arguments set -Dmaven.multiModuleProjectDirectory=$M2_HOME
- From mms-ent directory, either run
clean-run.sh
,run.sh
, or./mvnw install -Prun -Ddependency.surf.version=6.3
- Enter http://localhost:8080/share/ at a browser's url address textbox.
- Enter admin for user name
- Enter admin for password
General Design
+----------------+ \
| REST API Layer | \
|----------------| \
| WebScripts | MMS
|----------------| /
|Storage | Layer | /
+----------------+ /
/\ /\
|| ||
\/ \/
+-----+ +----+
| RDB | | ES |
+-----+ +----+
(Graph) (Data)
- Global PG database called 'mms' holds configuration information per project
- Contains Org, Project, and DB Location information
-
Each project has it's own database configured in the
mms
database -
All graph related information stored in relational database
-
Schema defined in mms.sql
- Nodes
- Edges
- Edge types
- Node types
- Commits
- Refs
-
Functions defined that are recursive for getting parents, children etc.
-
All access to the graph is done via the PostgresHelper that contains functions to interface with the database
-
The graph should never be manipulated directly from anywhere else
The nodes in the graph contain pointers to ElasticSearch documents which contain the real information * Same goes for other things such as configurations or commits
Each of these pointers is the “latest one” * Because for a given SYSMLID there can be multiple documents for each version of that node
The history of each node can be retrieved via a query to ElasticSearch (see ElasticHelper.java)
Nodes and edges both have a type associated with them The type must exist in the NodeTypes and EdgeTypes tables
- Correspondingly, the types also exist in the PostgresHelper code
- Each node can be assigned a particular type, by default it is just element
- Each edge can be assigned a particular type, containment being the basic type
Some assertions about the graph:
- It is always the case that each node in the graph has a single containment parent
- If you have multiple, something wrong happened!
- Multiple root parents are only possible for not containment type edges
- There should never be any orphan nodes in the graph
- Always have either children or parents
- All elastic references in the graph must exist in ES
Structure of the graph for each "project"
+---------+
+--| Commits |
+===+ | +---------+ +-------------+ +----------+
| P | | +---| Holding bin |----| Elements |
| R | | +-------+ | +-------------+ +----------+
| O | +--| Nodes |--------|
| J | | +-------+ | +----------+
| E | | +---| Elements |
| C | --| +-------+ +----------+
| T | +--| Edges |
| | | +-------+
| | |
| | | +----------------+
+===+ +--| Refs |
+----------------+
Create instance of EmsNodeUtil Get all other relevant information, validation, etc. form request Figure out if the elements are to go to the holding bin or not Calculate the qualified name and ID information for each node Add metadata for each element Store elements in ES Update graph Create JSON response and return
Create instance of EmsNodeUtil Get all other relevant information, validation, etc. form request Access PG to get the ElasticSearch IDs for all documents that we are interested in Access ES via ElasticHelper and get those IDs Create JSON response and return
Create instance of EmsNodeUtil Get all other relevant information, validation, etc. form request Understand how to:
- Add information to ES
- Update the graph with the corresponding information from ES
All the work is to be done here for each webscript. The pre and post should always be the same.
Create JSON response and return
Use the following curl commands to post an initial organization + project:
curl -w "\n%{http_code}\n" -H "Content-Type: application/json" -u admin:admin --data '{"orgs": [{"id": "vetest", "name": "vetest"}]}' -X POST "http://localhost:8080/alfresco/service/orgs"
curl -w "\n%{http_code}\n" -H "Content-Type: application/json" -u admin:admin --data '{"projects": [{"id": "123456","name": "vetest","type": "Project"}]}' -X POST "http://localhost:8080/alfresco/service/orgs/vetest/projects"
Then you can post some elements. For convenience, there is a json file in repo-amp/test-data/javawebscripts/JsonData. Using the project from above:
curl -w "\n%{http_code}\n" -H "Content-Type: application/json" -u admin:admin --data @JsonData/elementsNew.json -X POST "http://localhost:8080/alfresco/service/projects/123456/refs/master/elements"
Make sure the elements went in:
curl -w "\n%{http_code}\n" -H "Content-Type: application/json" -u admin:admin -X GET "http://localhost:8080/alfresco/service/projects/123456/refs/master/elements/123456?depth=-1"
Robot tests can be run with the following maven profiles in the mms-ent directory:
./mvnw install -Ddependency.surf.version=6.3 -Prun,robot-tests
Please note that tests should be run on a clean instance, therefore, it may be helpful to run clean.sh before running the tests
The Robotframework tests require the 'requests' python module. Install it as follows:
pip install --target=runner/src/test/robotframework/libraries requests
OR:
pip install --target=$HOME/.m2/repository/org/robotframework/robotframework/{ROBOTPLUGINVERSION}/Lib requests
If you need to change debug levels on the fly, use the following endpoint.
alfresco/service/loglevel
It takes as input JSON that specifies the classes and the log levels. For example:
[
{
"classname": "gov.nasa.jpl.view_repo.webscripts.ModelGet",
"loglevel": "DEBUG"
}
]
API Documentation is located at the following endpoint:
alfresco/mms/raml/index.html