19
Fri, Apr
5 New Articles

TechTip: Edit Files in the IFS

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Editing files in the IFS has been a hot topic since COMMON Spring 2016. I wanted to share how I currently do it.

 

With PASE becoming more and more popular via open-source languages, it makes sense that there are more and more ways to edit code in the IFS. For example, you could use the dinosaur EDTF 5250 command, which is fairly rudimentary but can do the job in a pinch (hey, I still use it sometimes). A next step up is the Joe editor, which can be used from an SSH session and actually works decentlyyet another editor I use in a pinch. I've also used RPGNextGen.com's editor for IFS files, and that has worked, though it lacked syntax coloring. And of course I'd be remiss if I didn't mention RDi and its ability to easily navigate and edit IFS files. But as we all know, RDi comes at a premium and still doesn't run on Mac (which is what I use).

So what do I use when I'm doing significant IFS file editing? Well, up until recently I used SublimeText3 and the SFTP plugin. This worked OK but required I manually set up multiple config files, one for each project in the IFS I was working on, and also did a lot of file syncing back and forth that was clumsy sometimes. I've now found a better way that is even simpler and more robust (didn't require an editor plugin and instead ran at the operating-system level).

I can't believe the following sentence is coming from my mouth and is accurate and truthful. Get ready. Drum roll.

I am using Microsoft's Visual Studio Code as my primary editor, it works great, and I like it…a lot. [Aaron shivers, wags his pseudo tail, and claps]

[Aaron looks to see if he lost friends]

OK, glad some of you are still here and are willing to hear me out. Let me clarify a few things. First, it's not the Visual Studio that you might be thinking of. It is specifically named Visual Studio Code and can be obtained for free at the following URL: code.visualstudio.com. Second, it is written in…wait for it…wait a little longer...Node.js. How do I know that? Because it's also open source, and the source can be found here. Note: There are other languages, like Typescript, also used in Visual Studio Code (I will call it VSCode for the remainder of the article to stave off carpal tunnel).

Installing VSCode on your computer is simple and can be accomplished by visiting code.visualstudio.com and following the directions for your operating system.

Before getting too much further, I want to show a screenshot of what my installation looks like, as shown in Figure 1.

090916bartell figure1 vscode gitdiff

Figure 1: Here’s VSCode Editing a Node.js file in the IFS

In Figure 1, we see IFS file /home/aaron/git/splitty/index.js in the editor. Splitty is a browser-based editor I have been playing around with. VSCode has a number of things you'd expect in an editor, such as syntax coloring, code collapsing, code completion, file system search, source file search, etc. I like those things a lot, but what really took VSCode to the next level for me is the integrated Git support, specifically the Git Diff features (the ability to see the changes I've made since the last commit to the repository). That's what we see in Figure 1, a split view that has the "before changes" view on the left (red) and the "after changes" view on the right (green). Not only does it show you the changed lines, but it also does an excellent job of conveying what on the line changed (in this case, I changed from JavaScript arrow functions to an old-school function definition). Further to that, I can also edit the code on the right and it continues to show the diff. The reason this is so nice is it keeps me from having to remember all the areas I touched; instead, I can simply review the far left scroll column, where the red and green marks tell me where there have been changes in this file.

I've only touched the tip of the features in VSCode, and this article isn't as much to convey the editor but instead to explain how to connect any client-side editor to the IFS using something called SSHFS.

SSHFS is a two-part definition; the first part is SSH, which stands for Secure Shell, and the second is File System, or defined in full: Secure SHell File System. Wikipedia defines SSHFS as follows:

In computing, SSHFS (SSH Filesystem) is a filesystem client to mount and interact with directories and files located on a remote server or workstation over a normal ssh connection.

Translating the above into my world, that means I can use SSHFS to mount a local directory on my laptop that points at a remote directory on my IBM i, and it communicates back and forth using the SSH protocol, which is already installed on 99 percent of the IBM i machines I come into contact with. Since we've mentioned the requirement of SSH on IBM I, it would be good for me to convey how to start it. The below command starts the "SSH Daemon." Starting SSH the first time will potentially take a long time (it generates a number of things).

STRTCPSVR *SSHD

Once SSH is started, you could connect to your IBM i via a client SSH terminal so you can interact with the PASE environment. This is an alternative to using CALL QP2TERM to interact with the PASE environment. There are a number of options for SSH clients, and Krengeltech's Litmis team has documented a few here. Putty or Chrome's Secure Shell are probably the easiest to get started with. BTW, that is a publicly editable wiki, so please feel free to add more that you have come across.

OK, now that the SSH Daemon is running on your IBM i, it is time to install another bit of software on the clientspecifically, the SSHFS portion. I first learned of SSHFS via this Digital Ocean tutorial, which has setup instructions for Windows, Mac, and Linux. Please follow the directions for your laptop's operating system and then return to this article once complete.

In my case, I am on a Mac and went the route of installing OS X Fuse. Once the install was complete, I needed to create a local directory that will act like a shortcut (think Windows desktop shortcut) to a directory on my IBM i. Below, I issue the pwd (print working directory) command from the Mac Terminal app so you can see where I am in the file system. Mac Terminal is similar to Window's cmd.exe program.

$ pwd

/Users/aaronbartell

Next I create a new directory named remote_spaceslitmis_home_git using the mkdir command. Note this is done on my Mac, not the IBM i.

$ mkdir remote_spaceslitmis_home_git

Now it's time to make the stateful connection using the sshfs command. Note this is how Mac and Linux accomplish the task. Windows does it slightly differently based on the aforementioned Digital Ocean tutorial.

$ sshfs -o allow_other,defer_permissions,IdentityFile=~/.ssh/id_rsa This email address is being protected from spambots. You need JavaScript enabled to view it.:/home/aaron/git ~/remote_spaceslitmis_home_git

The -o portion of the command stands for "options." In this scenario, I am connecting to spaces.litmis.com, which only allows ssh key authentication (no passwords allowed), which is a topic for another day, but that means I had to add the IdentityFile=~/.ssh/id_rsa portion to let it know where my private key was stored so it could look to that for the authentication portion. If you don't have key-based authentication set up, you will be prompted for a password. The next portion, This email address is being protected from spambots. You need JavaScript enabled to view it.:/home/aaron/git, details the IBM i profile and server I am connecting to, along with the remote directory I want it to connect to. I do most of my editing in a directory named "git" because that's where I clone all Git-controlled projects. The last portion of the command, ~/remote_spaceslitmis_home_git, details the local directory that will map to the remote IBM i directory. The command takes only a moment to run, and once complete, you have a stateful SSHFS connection to your IBM i.

I can now see the remote folder in the Finder app (Finder is like Windows Explorer), as shown in Figure 2.

090916bartell figure2 mac finder

Figure 2: SSHFS is shown in Finder.

The cool thing about using SSHFS at the laptop operating system level is that I can now use my editor of choice to edit code. That could be NodePad++, Eclipse, SublimeText3, TextMate, notepad.exe, VSCode, or any other local editor. Heck, I even tested editing the IFS with the nano shell editor on my Mac.

At this point, your setup is complete. To edit IFS files in VSCode, you simply do a File > Open and navigate to the SSHFS directory on your local machine. Simple! Note: Sometimes the first load of a larger directory can take some time (i.e., 15 seconds for me), but subsequent editing/saving/traversing of files was much quicker (usually subsecond).

The other thing I want to talk about is editing RPG source in the IFS. This has been a hot topic as of late, and that's a good thing because storing RPG in the IFS affords the use of Git to manage it. Obviously, VSCode could be used to edit RPG in the IFS, but there isn't currently a plugin for RPG syntax colorization. Never fear! The VSCode project has a full tutorial showing how to add new languages for syntax colorization. Learn more here. It would be great if somebody from the community would take this on for RPG. If you end up pursuing this task of RPG colorization for VSCode, then please issue a comment below so others don't duplicate efforts and can maybe even collaborate with you on the effort.

I hope this has given you more perspective on yet another option for how you can interact with the IBM i for code development. I believe there will be more integrated developments in the future that are more "IBM i aware," but for now this works. If you have any questions or comments, please comment below or email me at  This email address is being protected from spambots. You need JavaScript enabled to view it..

Aaron Bartell

Aaron Bartell is Director of IBM i Innovation for Krengel Technology, Inc. Aaron facilitates adoption of open-source technologies on IBM i through professional services, staff training, speaking engagements, and the authoring of best practices within industry publications andwww.litmis.comWith a strong background in RPG application development, Aaron covers topics that enable IBM i shops to embrace today's leading technologies, including Ruby on Rails, Node.js, Git for RPG source change management, and RSpec for unit testing RPG. Aaron is a passionate advocate of vibrant technology communities and the corresponding benefits available for today's modern application developers. Connect with Aaron via email atThis email address is being protected from spambots. You need JavaScript enabled to view it..

Aaron lives with his wife and five children in southern Minnesota. He enjoys the vast amounts of laughter that having a young family brings, along with camping and music. He believes there's no greater purpose than to give of our life and time to help others.

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: