Home Applications Port

Port

This application is not supported by InterSystems Corporation. Please be notified that you use it at your own risk.
0
0 reviews
0
Awards
161
Views
0
IPM installs
0
4
Details
Releases
Reviews
Issues
Pull requests
Articles
A Caché project-based set of utilities with %Studio.SourceControl integration to import/export items in plain-text (UDL).

What's new in this version

Improvements

  • Improved the way the encoding is handled as it now uses a per-extension configuration.

Fixes

  • Fixed an issue when passing the qspec to the test manager.

Port

Port is a VCS-agnostic Caché Studio utility to export or import Caché files based on projects instead of namespaces.
It's recommended to use Port locally, which makes it ideal for Studio users and quick open-source projects.

Its name origins from 'portability', 'export' and 'import'.

NOTE: Although you can use Port for a shared instance, keep in mind that if two users are working in the same project their changes could overlap each other, this would cause an extremely undesired result. So if you plan on using Port for a single shared instance, then make sure that only one person works exclusively for a single project.

The Five 'Why Projects?' Reasons

Since it uses a project based approach to handle the source code, we can consider the following advantages:

  • Development and organization: Development and versioning is kept within the project scope.
  • Tests: Allows the code to be tested atomically within the same project (which means no ^UnitTestRoot usage).
  • SourceControl integration: Seamlessly exports the active item when saved. No need to check-in items manually.
  • Synchronization: Keeps your repository in-sync with the project. Removes extraneous items when exported, thus avoiding check-out usage.
  • Smart backup: Mirrors the application directory and backups only what is changed inside the project.

How to install

In order to install Port, you just need to import the file port.xml with the compile flag enabled and restart your Studio.

Configuration

After installing Port, it'll define a set of default configurations. However sometimes these settings might not be adequate for you.

You can re-configure these settings using the class Port.Configuration. You can also check what you can configure by running ##class(Port.Configuration).Help() or using the wizard: Wizard^Port.

It also includes settings that allow you more per-project customizations.

NOTE: Some configurations are not available when using the Wizard. For such cases, use the Port.Configuration class.

How to use

Port will act whenever a file is saved (not compiled), as long as you're working on some project that isn't the 'Default'. You can see if Port is working correctly by checking the Studio's Output window.

Source Control Menu

When installed, Port adds a Source Control menu, composed with the following options:

  • Export: Exports only the modified items from the current project using the UDL format.
  • Export to XML: Exports the current project to XML.
  • Export tests: Exports all unit test classes related to the current project, only available if test format is set to XML.
  • Remove classes: Shortcut for removing all classes from the current project.
  • Remove routines: Shortcut for removing all routines from the current project.
  • Remove files: Shortcut for removing all static (web) files from the current project.
  • Scan and fix: Scans the project and remove all entries that are invalid (nonexistent or with an invalid name).
  • Run tests: Runs all test suites associated to the current project.
  • Export (forced): Skips timestamp checks and exports all the current project items.
  • Import (forced): Skips timestamp checks and imports all tracked files from the project repository.

Source Control Context Menu

  • Export from here: Forces the current item to be exported to the repository overwriting it's current matching source code. If the target is a package or a folder, then all its children will be exported recursively.
  • Import from here: Forces the current item to be imported to the project overwriting it's current matching project item. If the target is a package or a folder, then all its children will be imported recursively.
  • Run test: Only available if there's an associated test. If it does, runs the test atomically.

Ignoring paths

Sometimes you might want to ignore paths that aren't related to Caché but must be kept inside, files like a README.md to describe a package are a good example. You can do this by creating a file called .portignore in the root of the repository and putting the paths to ignore
inside it, one per line. Note that you MUST provide the folder that indicates the item type since the paths are relative to the repository root.

In the example below, notice that cls and int folders are included. These are the item types.

cls/Package/ignoreme <- This ignores the folder called ignoreme and anything inside it.
int/ignoreme <- This also ignores the folder called ignoreme but only if it's inside the int folder.

Workspaces

When using Port you'll notice the usage of the term workspace. This is basically the path where the project's source code is exported. There're two types of workspaces: primary workspace and custom workspaces.

Whenever a new project is exported by Port it will use the primary workspace configuration pattern to 'seed' the path to the project being exported for the first time. After this, the resulting path will be always used for this project, this path is called a custom workspace.

You can modify that path by using the Wizard or the method SetCustomWorkspace from the Port.Configuration class. Modifying it will cause the project you selected to be exported to a new location. Port will detect a path change and warn the user about exporting the whole project again.

NOTE: This'll not move any of the existing source code from your old path, but instead it'll export the project straight from your instance again.

You can also modify the primary workspace by using the Wizard or the method SetPrimaryWorkspace from the Port.Configuration class. However this will affect only the projects that weren't exported by Port yet or had their custom workspace removed by calling the method RemoveCustomWorkspace.

Extended Hooks

Extended hooks allows another source control class to take over the Studio event (hook) cycle and execute specific tasks. In order to create extended hooks, you need to create a class that implements one or more of the following hooks:

  • OnBeforeLoad
  • OnAfterLoad
  • OnBeforeSave
  • OnAfterSave
  • OnAfterStorage
  • OnBeforeCompile
  • OnAfterCompile
  • OnBeforeClassCompile
  • OnAfterClassCompile
  • OnBeforeAllClassCompile
  • OnAfterAllClassCompile
  • OnBeforeDelete
  • OnAfterDelete
  • UserAction
  • AfterUserAction

You can check what each hook does by reading %Studio.Extension.Base documentation.

Unlike %Studio.Extension.Base, each hook should be implemented as class method and receive the %Studio.Extension.Base as the first parameter: consider a case where you need to do some validation before the file is saved, you would use OnBeforeSave.

You must consider modifying the method signature from %Studio.Extension.Base:

Method OnBeforeSave(InternalName As %String, Location As %String = "", Object As %RegisteredObject = {$$$NULLOREF}) As %Status

to:

ClassMethod OnBeforeSave(SourceControl As %Studio.Extension.Base,__ InternalName As %String, Location As %String = "", Object As %RegisteredObject = {$$$NULLOREF}) As %Status

Finally, after implementing your hooks you need to register the class with:

do ##class(Port.Configuration).RegisterExtendedHooks("Your.Implementer.Class")

If you want to remove it, just call the same method with an empty string.

NOTE: Using extended hooks means that all output will be redirect to Port. That makes the class you specified responsible for whatever it writes. Port will attempt to capture its output and display it cleanly, but the class still must take care of messages that break into new lines.

WARNING! Make sure you know what you're doing! Bad hook implementations can cause Port and even the Source Control API to go awry thus resulting in code loss.

Quick question: Why not Atelier?

This project started before Atelier was released, and it's still useful for developers that prefer using the Studio instead of installing Eclipse. The original idea was to bring to the developers the capability to export the source code using a scaffolding that is easy to manage, which is pretty much what Atelier does today, however Atelier is not made for working with the Studio's projects. Leaving that task for the Eclipse platform.

The deal is: you might want something simplier to do something simple.

Troubleshooting

I installed Port but it seems to haven't changed anything!

Make sure to check the output and check for a 'All Done' message. After this message, there should have a note requesting you to restart the Studio. Follow this instruction, now see if the Source Control menu appears, if it's there then you're good to go.

I installed Port and it even added the Source Control menu but the text there is empty!

This might be caused due to your current Caché language which is not supported by Port yet, try executing the following method and see check if it fixes the issue:

do ##class(%MessageDictionary).SetSessionLanguage("en-us")

If it does, you are encouraged to open a PR and add your language.

HELP! I removed an old item from my project and exported the project which removed my file, but I find out later that it was the wrong file!

Whenever you export the project Port will check for any files that aren't related to it in your instance. If there's any files that doesn't corresponds to the project, these are considered an orphans and as such they'll be removed in order to keep the workspace synchronized. The're two circustances that can cause the purge: when you remove the item or when you delete the item.

As long as you REMOVE and don't DELETE the source from your instance you can simply re-add this item to the project and export it again, you might need to force export or edit the item though.

If you want to avoid this kind of issue, remember to commit your changes before purging these files.

I'm trying to import a file it seems I can't?

If the file you're trying to import failed or you didn't noticed any message warning you about it, then you must check if:

  1. The file is inside one of the type folders. If it's not the file will be ignored and you won't see any messages regarding it.
  2. The language syntax is acceptable (you can check the output for errors).
  3. You removed this item recently, which in turn updated the last modified timestamp for your project. This will not cause any messages to be displayed as well.

For number 3, remember that Port doesn't check the source code but instead their modified date. So if you attempt to import an item whose last-modified attribute is older than your project's last change, this item will be skipped. This is a by-design limitation introduced to improve the performance for projects with many items, but you can remediate it by using the Import (forced) option. However be warned that it'll import the project as whole.

I've imported/exported a source code but it seems to have broken my encoding? Strange characters are showing up!

This can be caused due to Port working with UTF-8 by default. You can use the following methods to try and fix it:

  • If you're having issues with a routine getting imported with wrong encoding, you can use the method SetRoutineInputTranslateTable, this includes class items.
  • If you're having issues with a routine getting exported with wrong encoding, you can use the method SetRoutineOutputTranslateTable, this also includes class items.
  • If you're having issues importing with any files are that aren't routines, which means that they're public type classified, including CSP files. Then you can use the method SetPublicFileInputTranslateTable.
  • Finally, you're having issues exporting any files that aren't routines as well, then you can use the method SetPublicFileOutputTranslateTable.

NOTE: All the methods accept only a single parameter which is a string representing the charset. If you don't want to apply any translation, you can pass "RAW" to all methods.

It seems I'm not able to export GBL or any binary related files?

Yes, Port supports exporting only source codes, which is mostly plain-text. Anything binary-related is usually associated to the the public folder, e.g. an image. That being said, you can export the project XML that include binary files.

I added a new item but it seems to not have been exported when I saved it?

That's because saving an item is not the same as saving the project. So even though the item was created and added to the current project, since the project wasn't saved as well the item entry is not persisted yet. If you create a new item always remember to save the project it belongs to before saving the item itself.

I have a big project and that seems to be causing the output to freeze!

If you're working with big projects, you'll mostly face this issue. And the solution for that is: wait. Because the Source Control process runs in the same as the Studio itself, exporting or importing a big project will cause the Studio to become inoperable. However this is only visually, because the Source Control process still would be running.
The time it takes to finish depends on the amount of items the project has so don't attempt to interrupt the process because you would risk corrupting the project and the sources themselves.

I'm trying to work with MultiValue Basic routines but I'm facing several errors with attempting to save it!

Even though implemented, the support for MVB routine types is highly bugged due to it using an obscure API, as long as this API keeps this way, I don't plan on improving the support for it as well.

However, working with MVI routines seems to be fine as long as you know the syntax for them.

CONTRIBUTION

Here.

Read more
Version
1.1.003 Mar, 2020
Category
Developer Environment
Works with
Caché
First published
25 Jul, 2019