Yestercode: Improving Code-Change Support in Visual Dataflow

Yestercode: Improving Code-Change Support in Visual Dataflow

Yestercode: Improving Code-Change Support in Visual Dataflow Programming Environments Austin Z. Henley, Scott D. Fleming Department of Computer Science University of Memphis Memphis, Tennessee 38152-3240 Email: azhenley, Scott.Fleming @memphis.edu { } Abstract—In this paper, we present the Yestercode tool for sup- and BeneFactor [9]), and code smell detection (e.g., PMD porting code changes in visual dataflow programming environ- and DETEX [15]). Although a few researchers have begun ments. In a formative investigation of LabVIEW programmers, investigating code-change support for visual programming we found that making code changes posed a significant challenge. To address this issue, we designed Yestercode to enable the environments (e.g., SDPA [6]), the work is still in the early efficient recording, retrieval, and juxtaposition of visual dataflow stages, and has yet to see widespread adoption in practice. code while making code changes. To evaluate Yestercode, we im- In our own formative interviews of LabVIEW programmers plemented our design as a prototype extension to the LabVIEW (Section III-A), many confirmed that making code changes programming environment, and ran a user study involving 14 was currently difficult and problematic. professional LabVIEW programmers that compared Yestercode- extended LabVIEW to the standard LabVIEW IDE. Our results In a formative user study of LabVIEW programmers showed that Yestercode users introduced fewer bugs during engaged in refactoring (Section III-B), we found that the tasks, completed tasks in about the same time, and experienced programmers encountered considerable challenges during lower cognitive loads on tasks. Moreover, participants generally rewiring. In visual dataflow languages, rewiring may in- reported that Yestercode was easy to use and that it helped in volve changing existing wires to connect to different box making change tasks easier. input/outputs, or introducing new wires into existing code. The I. INTRODUCTION ability to rewire effectively is of critical importance in visual Visual dataflow programming languages are receiving re- dataflow languages, because nearly every code change requires newed attention for industrial applications. At their core, some manipulation of wires. However, during rewiring activ- these languages represent code using graphical box-and-wire ities, participants consistently forgot what wires represented diagrams, where boxes denote functions and wires denote and introduced bugs by mixing up wires. the passing of values between functions. Although textual To address these problems with rewiring, we propose Yester- languages, such as Java and Python, have tended to dominate code, a novel tool concept for visual dataflow programming mainstream programming, a few visual dataflow languages environments (Section IV). Two key goals of Yestercode are have been able to carve out successful niches—for example, to enable programmers to efficiently access past versions of LabVIEW1 has been used in the domain of science and engi- their code, and to juxtapose a reference copy of an older neering applications for over 30 years. The benefits of visual version with their current code by viewing them side by side. dataflow languages have been well documented: easier to Toward achieving these goals, we made several key design learn [3], [5], improved liveness or immediate feedback [25], decisions, including transparent automated version logging, and more informative notations [11], [28]. A recent surge of vi- tight code-editor integration (e.g., copy and pasting capability sual dataflow languages have aimed to leverage these benefits from reference-copy to code editor), and annotations to aid for a variety of purposes: Google/RelativeWave’s Form tool comprehension of the differences between the reference copy for prototyping phone apps, Filter Forge for producing image and current code. filters, RapidMiner for data analysis, and Microsoft Robotics In this paper, we present an initial prototype of Yestercode Developer Studio for programming robots. for LabVIEW and report a user-study evaluation using the However, despite this success, visual programming envi- prototype (Section V). In particular, our user study involved ronments have received little or no tool support for making 14 professional LabVIEW programmers, and addressed the code changes. The tediousness and error-proneness of making following research questions: code changes, such as refactorings [8], has been well recog- RQ1: Do programmers using Yestercode introduce fewer nized in textual programming environments [13], [17], [18]. bugs during change tasks? Textual programming environments support code changes RQ2: Does using Yestercode affect the time it takes pro- in various ways, including autocomplete (e.g., Calcite [16] grammers to complete change tasks (for better or for and Graphite [21]), automated refactoring (e.g., ReBA [7] worse)? 1http://www.ni.com/labview/ 978-1-5090-0252-8/16/$31.00 c 2016 IEEE Software Engineers, 4 Hardware Engineers, 4 Group Man- B agers, and 3 UX Engineers. We guided the discussion with questions regarding problems they have with the LabVIEW A IDE, problems customers run into, and potential tool support to address these problems. A key trend from the interviews was that participants found C modifying existing LabVIEW code a challenge. Participants often said that either they or customers will go to great lengths to avoid modifying existing code. For example, they often “start from a blank slate” and rewrite code rather than directly D modifying code they had previously written. One manager even said that, for her team, modifying code was a “million Fig. 1. LabVIEW block-diagram editor. Editors have a palette (A), along dollar problem,” because several of her engineers waste effort with debugging and other controls (B). The pictured editor has open a block each day rewriting similar but different programs, and then diagram (C) that is under construction, with several broken wires (e.g., D). ultimately “throw away the code.” When we prompted participants about why modifying ex- RQ3: Do programmers using Yestercode have lower cogni- isting code was a challenge, their responses provided only tive load during change tasks? a few insights. Most often, they offered vague answers, like that it was “just easier” to rewrite code. A few participants RQ4: Do programmers have favorable opinions of Yester- said that it was difficult to remember what specific code does, code? and that it was too time consuming and tedious to make substantial changes. Three engineers cited the general lack of II. BACKGROUND:VISUAL DATAFLOW LANGUAGES explicit textual identifiers in visual dataflow code as making In this work, our aim is to address the problem of code it particularly difficult to recall what wires “mean”. changes in visual dataflow languages. Instead of textual source B. User Study: Rewiring Barriers and Coping Strategies code, visual dataflow languages are characterized by programs being made up of boxes (functions) and wires (values), as To better understand why programmers said that it is easier illustrated in Fig. 1-C. The execution of the program follows to rewrite code rather than modify it in LabVIEW, we con- the dataflow via the wires. Although visual dataflow languages ducted an exploratory user study of LabVIEW programmers have a radically different syntax than textual languages, such engaged in change tasks. The study involved 6 participants: 3 as Java, they still provide many of the same foundational graduate students with 1–2.5 years of LabVIEW experience, 1 features, such as modularity. Hardware Engineer with 4 years of LabVIEW experience, and In this paper, we focus on LabVIEW, a commercial visual 2 Software Engineers with 16 years of LabVIEW experience dataflow programming environment that is one of the most each. Each participant took part in a 60-minute programming widely used visual programming languages to date [29]. In session in which he/she made improvements to an existing LabVIEW, programs are composed of modules, called Virtual LabVIEW application that we provided. To get each partic- Instruments (VIs). Fig. 1-C illustrates the code for a VI, ipant started, we gave him/her three change tasks. Once the represented as a block diagram. This VI has four inputs (box participant completed those tasks, we asked him/her to make icons along the left side of the diagram) and one output additional improvements as he/she saw fit. If the participant (box icon at far right). It performs some conditional logic on became stuck, we suggested additional change tasks. At the its input (yellow triangle icons), and calls another VI (gray end of the session, the participant took part in a 30-minute box; similar to subroutine). This VI is under construction, semi-structured interview in which we played back a video of and contains several broken wires that have one or more his/her task performance, and asked questions about his/her disconnected ends and are denoted as dashed lines with red goals, barriers, and strategies. exclamation icons (Fig. 1-D). A key trend in our user study was that participants exhibited difficulty rewiring components correctly. Many participants III. FORMATIVE INVESTIGATION made comments about how tedious rewiring a portion of code was. For example, one participant began rewiring, and quickly A. User Interviews: Modifying Code Is a Problem exclaimed “This is going to take all day!” Rewiring was so As a first step in understanding the barriers that visual difficult that all 6

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    9 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us