This lesson is being piloted (Beta version)

Using the Python HWDB Upload Tool

Overview

Teaching: 60 min
Exercises: 0 min
Questions
  • Active user privilage is required.

  • How does one upload bulk data with the Python HWDB Upload Tool?

Objectives
  • objective 1

  • objective 2

Contents

  Description
Introduction  
Requirements  
Installation  
Configuration  
Lesson 1: Some Simple Examples  
HWDB Setup  
Example 1.1: A very simple example  
Example 1.2: Providing Default Values  
Example 1.3: Editing Items  
Example 1.4: Providing values on command line  
Example 1.5: Providing values via a docket file  
Example 1.6: Specification fields  
Lesson 2: Subcomponents  
HWDB Setup  
Example 2.1: Linking a subcomponent  
Lesson 3: Item Images  
Example 3.1: Uploading an image  
Lesson 4: Tests  
Example 4.1: Simple Test  
Example 4.2: Complex Structures  



Introduction

[Explain what the Python API is and its relationship to the HWDB]

[screenshots of live demo to illustrate what it does, without explaining in detail]

back to top

Requirements

This software was developed on Ubuntu 20.04 running under WSL for Windows 11, and was tested for compatibility on [Mac version]. This software requires Anaconda to be installed on your device. Anaconda may be downloaded at https://www.anaconda.com/. Before the upload tool can be used, users need to download a PKCS12 certificate for their Fermilab account.

back to top

Installation

Follow these instructions to install the Python HWDB API:

export HWDB=~/DUNE-HWDB-Python
export PATH=$HWDB:$HWDB/bin:$HWDB/devtools:$PATH
export PYTHONPATH=$HWDB/lib:$PYTHONPATH
chmod +x hwdb-*

back to top

Configuration

Before using the software, you must configure it to use your PKCS12 certificate. To do this, enter:

hwdb-configure --cert <path-to-your-p12-file> --password <your password>

Note that this command does NOT save your password locally. Instead, it extracts a PEM certificate and saves it in $HOME/.sisyphus. This directory will be automatically created when you first configure the application, and it should be set to have read permissions for the user only, but you may wish to verify that the permissions are set correctly. The PEM certificate could be used by other parties to access the HWDB under your account, so take care to keep it protected.

Configuration automatically sets the server to Development. When you are ready to work with the official Production server, enter:

hwdb-configure --prod 

Likewise, to set it back to Development, enter:

hwdb-configure --dev 

Note that the –prod and –dev switches may also be added to the initial configuration command instead of being run separately. back to top

Lesson 1: Some Simple Examples

The examples in this lesson demonstrate how to upload simple spreadsheets that do not require an additional “docket” file that describes their contents. Typically, if the component type has no specifications, or the specifications are simple key/value pairs, it is possible to upload item sheets directly, as demonstated in these examples.

HWDB Setup

The examples below assume that the following configuration has been set up in the HWDB. These should already be available on the Development server, but since they are not protected from modification, it is possible that they may be edited by others. If the examples appear not to work, check the following:

• A component type named “Z.Sandbox.HWDBUnitTest.doodad” has been created, which has a type ID of Z00100300012.

• The component is managed by (at least) the group “tester,” and the user running the examples is a member of this group.

• The component has “Acme Corporation” listed as one of its available manufacturers.

• The component’s specifications are: { “DATA”: {}, “_meta”: {} }

For the first several examples, we will only be uploading Item information with no tests attached, but most of the principles involved with uploading tests is the same as uploading items, so it is worthwhile to follow all the item examples before moving on to tests.

Example 1.1: A very simple example

The simplest way to upload hardware items to the HWDB is to create a spreadsheet where the top several rows form a “header” that indicates, at minimum, that the “Record Type” being uploaded is “Item,” and either the “Part Type ID” or the “Part Type Name.” (Both may be given, but they must indicate the exact same component type. There must be an empty row between the header and the section containing the actual data.

A B C
1 Record Type Item
2 Part Type ID Z00100300012
3 Part Type Name Z.Sandbox.HWDBUnitTest.doodad
4
5 Serial Number Institution Manufacturer
6 SN000001 (186) University of Minnesota Twin Cities (50) Acme Corporation
7 SN000002 (186) University of Minnesota Twin Cities (50) Acme Corporation
8 SN000003 (186) University of Minnesota Twin Cities (50) Acme Corporation
9 SN000004 (186) University of Minnesota Twin Cities (50) Acme Corporation
10 SN000005 (186) University of Minnesota Twin Cities (50) Acme Corporation
Items.xlsx

To do a mock test of uploading this spreadsheet, enter the following. This will not actually commit the changes to the HWDB. It will only do a trial run to test for errors.

hwdb-upload Items.xlsx

If this appears to run without errors, you may commit the update by using “–submit”

hwdb-upload Items.xlsx --submit


About Field Names

TBD

back to top

Example 1.2: Providing default values

In the above example, every item had the exact same Institution and Manufacturer. A shortcut is available for this case. Additional fields may be provided in the header indicating default values for a column. The column itself may be omitted if there are no exceptions to the default values.

A B
1 Record Type Item
2 Part Type ID Z00100300012
3 Part Type Name Z.Sandbox.HWDBUnitTest.doodad
4 Institution (186) University of Minnesota Twin Cities
5 Manufacturer (50) Acme Corporation
6
7 Serial Number
8 SN000001
9 SN000002
10 SN000003
11 SN000004
12 SN000005
Items.xlsx

back to top

Example 1.3: Editing Items

Once a sheet has been uploaded to the HWDB, any subsequent attempts to upload the sheet will only result in the HWDB attempting to edit the items instead of adding new ones. But, if you explicity want to edit an item, you may use an “External ID” column instead of or in addition to the “Serial Number” column. You may even change the existing serial numbers this way!

Note that you may not change the Institution for an item after it was initially set.

A B C
1 Record Type Item
2 Part Type ID Z00100300012
3 Part Type Name Z.Sandbox.HWDBUnitTest.doodad
4 Institution (186) University of Minnesota Twin Cities
5 Manufacturer (50) Acme Corporation
6
7 External ID Serial Number Comments
8 Z00100300012-00001 AAA000001 first
9 Z00100300012-00002 AAA000002 second
10 Z00100300012-00003 AAA000003 third
11 Z00100300012-00004 AAA000004 fourth
12 Z00100300012-00005 AAA000005 fifth
Items.xlsx

Example 1.4: Providing values on the command line

If you do not wish to provide a header inside a spreadsheet, you may provide values on the command line.

A
1Serial Number
2SN000001
3SN000002
4SN000003
5SN000004
6SN000005
Items.xlsx

To upload this example:

hwdb-upload \
    --part-type-id=Z00100300012 \
    --record-type=Item \
    --value "Manufacturer ID" 50 \
    --value "Institution ID" 186 \
    Items.xlsx \
    --submit

back to top

Example 1.5: Providing values via a docket file

Another alternative way to provide external values is by using a docket file.

A
1Serial Number
2SN000001
3SN000002
4SN000003
5SN000004
6SN000005
Items.xlsx


{
    "Sources": [
        {
            "Source Name": "Item Source",
            "Files": "Items.xlsx"
        }
    ],
    "Values": {
        "Record Type": "Item",
        "Part Type ID": "Z00100300012",
        "Part Type Name": "Z.Sandbox.HWDBUnitTest.doodad",
        "Institution": "(186) University of Minnesota Twin Cities",
        "Manufacturer": "(50) Acme Corporation"
    }
}
        
docket.json


To upload this example:

hwdb-upload docket.json --submit

Example 1.6: Specification fields

The type “doodad” has a specification field named “DATA.” (Ignore the “_meta” field. It is for internal use by the application.) Top-level specification fields such as “DATA” can be provided the same way as Institution or Manufacturer.

A B
1Record TypeItem
2Part Type IDZ00100300012
3Part Type NameZ.Sandbox.HWDBUnitTest.doodad
4Institution(186) University of Minnesota Twin Cities
5Manufacturer(50) Acme Corporation
6
7Serial NumberDATA
8SN000001ABC
9SN000002123
10SN000003{"A":1,"B":2}
11SN000004[2,3,5,7,11]
12SN000005<null>
Items.xlsx

back to top

Lesson 2: Subcomponents

HWDB Setup

For this lesson, we want to create a hierarchy of components. We will therefore need a second component type. The examples below assume that the following configuration has been set up in the HWDB, in addition to the configuration from Lesson 1:

• A component type named “Z.Sandbox.HWDBUnitTest.doohickey” has been created, which has a type ID of Z00100300013.

• The component is managed by (at least) the group “tester,” and the user running the examples is a member of this group.

• The component has “Acme Corporation” listed as one of its available manufacturers.

• The component’s specifications are: { “DATA”: {}, “_meta”: {} }

• The component type has a single subcomponent slot named “Doodad” of type “Z.Sandbox.HWDBUnitTest.doodad”

Example 2.1: Linking a subcomponent

For this example, we need to upload items of two different component types. We can do this by adding multiple worksheets to our Excel file.

A B
1Record TypeItem
2Part Type IDZ00100300012
3Part Type NameZ.Sandbox.HWDBUnitTest.doodad
4Institution(186) University of Minnesota Twin Cities
5Manufacturer(50) Acme Corporation
6
7Serial NumberComments
8SN000001first
9SN000002second
Items.xlsx, sheet "Doodad"


A B C
1Record TypeItem
2Part Type IDZ00100300013
3Part Type NameZ.Sandbox.HWDBUnitTest.doohickey
4Institution(186) University of Minnesota Twin Cities
5Manufacturer(50) Acme Corporation
6
7Serial NumberCommentsDoodad
8SN900001by serial numberSN000001
9SN900002by part idZ00100300012-00010
10SN900003keep as it is
10SN900004void it out<null>
Items.xlsx, sheet "Doohickey"


To upload this example:

hwdb-upload Items.xlsx --submit

Some notes on linking subcomponents:

• The “Doodad” column may contain the serial number of the item to be connected, or the Part ID if the item already exists in the database.

• If the subcomponent item is already in the database, it is not strictly necessary to include a sheet defining the item.

• The subcomponent to be linked must not have its “status” set to anything besides “available.” (“Available” is the default status for an item, so an item will not have a different status unless deliberately changed.)

Lesson 3: Item Images

Example 3.1: Uploading an image

This example demonstrates how to upload an image for an item.

(NOTE: due to a bug, you can currently only have one image per item on a sheet! We apologize for the inconvenience.)

A B C
1Record TypeItem Image
2Part Type IDZ00100300012
3
4External IDCommentsImage File
5Z00100300012-00001This is fine.this_is_fine.jpg
Items.xlsx, sheet "Doodad"


back to top

Lesson 4: Tests

Example 4.1: Simple Test

A B C
1Record TypeTest
2Part Type IDZ00100300012
3Part Type NameZ.Sandbox.HWDBUnitTest.doodad
4Test NameDoodad Test
5
6Serial NumberDATA
7SN000001pass
Items.xlsx, sheet "Doodad-Test"


Example 4.2: Complex Structures

A B C D E F G H I
1Record TypeTest
2Part Type IDZ00100300012
3Part Type NameZ.Sandbox.HWDBUnitTest.doodad
4Test NameDoodad Test
5
6 Serial Number Test Date Test Operator Operator Note Overall Status Subtest Name Trial Number Trial Description Trial Result
7 SN000001 2024-03-22 08:45:00 Alex heavy snow pass bounce 1 drop from 1 meter pass
8 SN000001 2024-03-22 08:45:00 Alex heavy snow pass bounce 2 drop from 2 meter pass
9 SN000001 2024-03-22 08:45:00 Alex heavy snow pass smash 1 smash with 5# hammer pass
10 SN000001 2024-03-22 08:45:00 Alex heavy snow pass smash 2 smash with 9# hammer pass
11 SN000001 2024-03-29 14:00:00 Alex cold, windy pass bounce 1 drop from 1 meter pass
12 SN000001 2024-03-29 14:00:00 Bill cold, windy pass bounce 2 drop from 2 meter pass
Items.xlsx, sheet "Doodad"


{
    "Sources": [
        {
            "Source Name": "Doodad Tests",
            "Files": "Items.xlsx",
            "Encoder": "Doodad Test Encoder"
        }
    ],
    "Encoders": [
        {
            "Encoder Name": "Doodad Test Encoder",
            "Record Type": "Test",
            "Part Type Name": "Z.Sandbox.HWDBUnitTest.doodad",
            "Part Type ID": "Z00100300012",
            "Test Name": "Doodad Test",
            "Schema": {
                "Test Results": {
                    "DATA": {
                        "type": "group",
                        "key": [
                            "Test Date",
                            "Test Operator"
                        ],
                        "members": {
                            "Test Date": "string",
                            "Test Operator": "string",
                            "Overall Status": "string",
                            "Operator Note": "null,string",
                            "Subtest": {
                                "type": "group",
                                "key": "Subtest Name",
                                "members": {
                                    "Subtest Name": "string",
                                    "Trial": {
                                        "type": "group",
                                        "key": "Trial Number",
                                        "members": {
                                            "Trial Number": "integer",
                                            "Trial Description": "null,string",
                                            "Trial Result": "any"
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    ]
}



        
docket.json


back to top







Key Points

  • keypoint 1