US20070027560A1 - Device Control System, Device Control Method, and Device Control Program - Google Patents

Device Control System, Device Control Method, and Device Control Program Download PDF

Info

Publication number
US20070027560A1
US20070027560A1 US11/457,073 US45707306A US2007027560A1 US 20070027560 A1 US20070027560 A1 US 20070027560A1 US 45707306 A US45707306 A US 45707306A US 2007027560 A1 US2007027560 A1 US 2007027560A1
Authority
US
United States
Prior art keywords
enabled
added functionality
service
disabled
configuration information
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Granted
Application number
US11/457,073
Other versions
US7930708B2 (en
Inventor
Masatoshi Nakazawa
Atsushi Sakai
Masahiro Katagiri
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Seiko Epson Corp
Original Assignee
Seiko Epson Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Seiko Epson Corp filed Critical Seiko Epson Corp
Assigned to SEIKO EPSON CORPORATION reassignment SEIKO EPSON CORPORATION ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS). Assignors: SAKAI, ATSUSHI, KATAGIRI, MASAHIRO, NAKAZAWA, MASATOSHI
Publication of US20070027560A1 publication Critical patent/US20070027560A1/en
Application granted granted Critical
Publication of US7930708B2 publication Critical patent/US7930708B2/en
Expired - Fee Related legal-status Critical Current
Adjusted expiration legal-status Critical

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/12Discovery or management of network topologies
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/08Configuration management of networks or network elements
    • H04L41/0803Configuration setting
    • H04L41/0813Configuration setting characterised by the conditions triggering a change of settings
    • H04L41/082Configuration setting characterised by the conditions triggering a change of settings the condition being updates or upgrades of network functionality
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L41/00Arrangements for maintenance, administration or management of data switching networks, e.g. of packet switching networks
    • H04L41/08Configuration management of networks or network elements
    • H04L41/085Retrieval of network configuration; Tracking network configuration history
    • H04L41/0853Retrieval of network configuration; Tracking network configuration history by actively collecting configuration information or by backing up configuration information
    • H04L41/0856Retrieval of network configuration; Tracking network configuration history by actively collecting configuration information or by backing up configuration information by backing up or archiving configuration information

Definitions

  • the present invention relates to a device control system, a device control method, and a device control program that control by using an application one or more devices that form a system.
  • POS system Software for standardizing the interface between the host computer and devices in a POS system or other type of system comprising a host computer and peripheral devices based on predetermined specifications is available for developing software applications that render the specific functions of the system without knowing the types of devices that will be used in the system.
  • a POS system is used as an example of such a system below.
  • OPOS OPOS for Retail POS
  • OPOS-conforming object defines a standard interface for the devices constituting the terminal system in a POS system (referred to below as a POS terminal system).
  • An OPOS object uses OLE (Object Linking and Embedding) control, which is supported by the Windows (R) operating system run by the host computer of the POS terminal system, to provide the application developer with API (application program interface) functions that make software application development easier.
  • OPOS-conforming object is referred to below as simply OPOS.
  • Java (R) POS is a program written in the Java (R) language, and is another standard (specification) for building POS systems.
  • Java (R) POS objects provide the application developer with API functions that simplify developing software applications that are operating system independent.
  • Java (R) POS objects are referred to below as JavaPOS.
  • POS for .NET is a standard (specification) for building POS systems using the Microsoft .NET Framework provided by Microsoft and POS for .NET objects provide the application developer with API functions that make software application development easier in the .NET Framework.
  • POS for .NET objects are referred to below as POS for .NET, and the Microsoft .NET Framework is referred to as simply .NET (dot NET).
  • This trace function is a function for compiling a log enabling the software developer to trace the operation of each object, and is not needed during normal use of the software application by the end user.
  • object operation which might be logged by a trace function but is not limited to: executing methods, the result of executing a method, getting and setting properties, the results of getting and setting properties, posting events, and any operation which a programmer might reasonably assume would help the programmer understand the behavior of the object.
  • a device control exists between a device service and the software application in the JavaPOS system.
  • a device control is an object that provides a particular device class, such as a printer or display, and controls the interface between the device class and the application.
  • a device service is an object that interfaces with a particular type of physical device, such as a particular printer model.
  • a device control uses a service factory, which is a class for generating device service objects, to generate a device service object.
  • a service factory may be generated independently by the vendor of the device service, and whether the trace function is enabled or disabled may be determined from the generated service factory. Based on whether the trace function is enabled (on) or disabled (off) when the service factory generates a device service object, the service factory generates a trace service object, which is a device service for tracing, if the trace function is enabled, and generates a normal device service object if the trace function is disabled.
  • FIG. 10 describes how the trace function for a device object is implemented in the JavaPOS architecture.
  • the device control if the application executes an open method on the device service (indicated by ( 1 ) in FIG. 10 ), the device control generates a service factory object ( 2 ). The service factory then internally reads the enable/disable setting of the trace function ( 3 ). If the trace function is enabled, the service factory generates a trace service object ( 4 ), the trace service object generates a normal device service object ( 5 ) and the service factory returns the trace service object to the device control ( 6 ). However, if the service factory determines that the trace function is turned off, the service factory generates a normal device service object ( 7 ) and returns the device service object to the device control ( 6 ).
  • the CCL generates a service object instance based on service object identification information and service object location information.
  • the service object identification information is provided by the application to the CCL.
  • the service object location information is directory information representing the location of the service object in the assembly, and is stored in the registry.
  • FIG. 11 describes the problem implementing a service object trace function in the POS for NET framework using a trace service.
  • the application asks the CCL to generate an instance of a service object represented by identification information A (( 1 ) in FIG. 11 )
  • the CCL gets the directory information for the assembly storing the service object from the registry ( 2 ).
  • identification information A is the identification information for the service object
  • the directory information for the assembly storing the service object is the service object location information.
  • CCL determines if the trace function is enabled or disabled. If the CCL determines that the trace function is enabled, CCL generates an instance of the trace service ( 3 ), the trace service generates an instance of a normal service object ( 4 ), and the CCL returns the trace service instance to the application ( 5 ).
  • the service object identification information or service object location information must be changed according to whether the trace function is enabled or disabled in order to turn the trace function on and off.
  • a trace function can also be built in to a normal service object without providing a service object for tracing.
  • FIG. 12 shows sample code for building a trace function into the service object.
  • whether tracing is enabled must be determined multiple times during the process. As a result, whether the trace function is enabled is also determined during normal operation when the trace function is disabled, and this lowers performance.
  • the present invention is directed to solving these problems, and an object of the invention is to provide a device control system, a device control method, and a device control program for implementing a trace function for service objects providing a device interface to the software application based on the .NET Framework.
  • a device control system is a system for controlling a plurality of devices by means of an application.
  • the plurality of devices referring to one or more devices.
  • the system comprising a first object corresponding to each device for providing to the software application an interface to the device based on a predetermined specification; a second object corresponding to each device for providing the software application with added functionality for the first object; a storage for storing configuration information specifying whether the added functionality is enabled or disabled; and an object generator for generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on the configuration information.
  • the storage of the device control system thus comprised stores configuration information declaring whether the added functionality is enabled or disabled.
  • the object generator Based on the configuration information, the object generator generates a first object that provides the software application with an interface to a particular device based on a predetermined specification, or generates a second object that provides the software application with additional functionality added to the first object for a particular device. More particularly, the second object is generated when the added functionality is enabled, and the first object is generated when the added functionality is disabled.
  • Added functionality can thus be rendered in the first object providing the software application with an interface to a particular device.
  • This added functionality can be implemented in the first object without changing the software application according to whether the added functionality is disabled or enabled.
  • added functionality is not programmed directly into the first object, added functionality can be achieved in the first object without suffering a drop in performance during normal operation when the added functionality is disabled.
  • a device control system further comprises an editor for changing the added functionality from enabled to disabled or from disabled to enabled by changing the configuration information stored in the storage.
  • the device control system thus enables using the editor to change the configuration information to reset the added functionality from enabled to disabled or from disabled to enabled.
  • this embodiment of the invention enables applying the added functionality to the first object that provides the software application with an interface to a particular device based on the predetermined specification by simply changing the configuration information from disabled to enabled.
  • the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and is information describing a location where the first object is defined when the added functionality is disabled.
  • this embodiment of the invention enables applying the added functionality to the first object that provides the software application with an interface to a particular device based on the predetermined specification by simply changing the configuration information from disabled to enabled.
  • the second object corresponding to a device acquires information describing the location where the first object corresponding to the same device is defined, and based on the acquired information generates the first object.
  • Additional functionality can thus be rendered in the first object that provides the software application with an interface to a particular device based on a predetermined specification.
  • the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object.
  • Additional functionality can thus be rendered in the first object that provides the software application with an interface to a particular device based on a predetermined specification.
  • the added functionality is a function for tracing operation of the first object.
  • a trace function can thus be provided for a first object that provides a software application with an interface to a device based on a predetermined specification.
  • This trace function can be implemented in the first object without changing the software application according to whether the trace function is disabled or enabled. Furthermore, because the trace function is not programmed directly into the first object, a trace function can be achieved in the first object without suffering a drop in performance during normal operation when the trace function is disabled.
  • the predetermined specification is the .NET Framework
  • the first object is a service object.
  • a trace function can thus be provided for a service object that provides a software application with an interface to a device based on the .NET Framework.
  • This trace function can be implemented in the service object without changing the software application according to whether the trace function is disabled or enabled. Furthermore, because the trace function is not programmed directly into the service object, a trace function can be achieved in the service object without suffering a drop in performance during normal operation when the trace function is disabled.
  • this embodiment of the invention enables adding a trace function to the service object that provides the software application with an interface to a particular device based on the .NET Framework by simply changing the configuration information from disabled to enabled.
  • a device control method is a device control method for controlling one or a plurality of devices by means of a software application, the device control method comprising: a first object corresponding to each device for providing to the software application an interface to the device based on a predetermined specification; a second object corresponding to each device for providing the software application with added functionality for the first object; and an object generation step of generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on the configuration information.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • the device control method preferably also has an editing step for changing the added functionality from enabled to disabled or from disabled to enabled by changing the configuration information.
  • the object generation step generates the first object or the second object based on the configuration information changed by the editing step.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and is information describing a location where the first object is defined when the added functionality is disabled.
  • the second object corresponding to a device acquires information describing the location where the first object corresponding to the same device is defined, and based on the acquired information generates the first object.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • the added functionality is a function for tracing operation of the first object.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • the predetermined specification is the .NET Framework
  • the first object is a service object.
  • the device control method thus comprised achieves the same effect as the device control system of this invention.
  • Another embodiment of the invention is a device control program for executing on a computer a process for controlling one or a plurality of devices, wherein the device control program executes on a computer a process for rendering the means of the device control system according to the present invention and the function of each object.
  • the computer When the computer reads the program and executes the steps of the program, the computer achieves the same operation and effects as the device control system according to the present invention.
  • the present invention enables implementing a trace function for service objects providing a device interface to software applications based on the .NET Framework.
  • the trace function can be provided for service objects without changing the software application according to whether the trace function is enabled or disabled. Because the program does not build the trace function into service object itself, the trace function can be implemented for service objects without degrading performance during normal operation when the trace function is not enabled.
  • the trace function can be implemented for service objects providing a device interface to the software application based on the .NET Framework by only changing the configuration information to switch from the disabled to the enabled mode.
  • FIG. 1 is a schematic diagram showing an example of the configuration of a POS terminal system
  • FIG. 2 is a schematic block diagram of the host computer 12 contained in the block diagram shown in FIG. 1 ;
  • FIG. 3 shows the location of the POS for .NET service object in the POS terminal system
  • FIG. 4 describes a tracing service object
  • FIG. 5 describes generating a tracing service object
  • FIG. 6 describes a method of implementing a trace function for service objects in the POS for .NET Framework
  • FIG. 7 shows an example of a dialog box for enabling and disabling the trace function in a setup utility
  • FIG. 8 is a flow chart of the process for generating a normal service object from the tracing service object
  • FIG. 9 describes a method of implementing a service object trace function in the POS for .NET Framework when a Plug-and-Play report is the trigger;
  • FIG. 10 describes implementing a trace function for device objects in the JavaPOS architecture
  • FIG. 11 describes problems with implementing a service object trace function in the POS for .NET Framework using the trace service.
  • FIG. 12 shows an example of a program incorporating a trace function in the service object.
  • FIG. 1 shows an example of the configuration of a POS terminal system.
  • the POS terminal system 10 comprises a host computer 12 , printer 14 , customer display 16 , and cash drawer 18 .
  • the host computer 12 stores a software application for implementing the functions of the POS terminal system 10 .
  • the host computer 12 is connected by way of a communication bus 20 to a printer 14 for printing receipts and a journal, for example, a customer display 16 for displaying product information for a customer to view, and a cash drawer 18 for storing money and other instruments.
  • the communication bus 20 uses the communication protocol of the selected communication medium, which could be a serial cable, a parallel cable, a network cable, a Universal Serial Bus (USB), or other medium.
  • FIG. 2 is a schematic block diagram of the host computer 12 shown in the block diagram shown in FIG. 1 .
  • the host computer 12 has an interface 32 for connecting to the communication bus 20 , a CPU (central processing unit 34 , RAM (random access memory) 36 used as working memory for storing the program run by the CPU 34 and temporary work content, a hard disk 38 for storing the program run by the CPU 34 and other data, a display monitor 40 for presenting messages and prompts to the user, an input device 42 such as a mouse or keyboard for getting user input, and a bus 44 to which these parts are connected.
  • a CPU central processing unit 34
  • RAM random access memory
  • FIG. 3 shows where a POS for .NET service object is positioned in the POS terminal system.
  • a POS for .NET service object is between the software application controlling the POS terminal system devices and the operating system, and provides a standard interface between the host computer and the devices based on predetermined specifications.
  • a separate service object is provided for each device such as a specific printer model, and controls the device through the operating system.
  • the location information for the service object that is referenced to generate a service object is stored in the registry, and the registry is managed by the operating system.
  • the software application desirably controls the device being controlled by means of methods and properties, and gets the result of controlling the device by means of events and properties.
  • FIG. 4 describes service objects for tracing.
  • the tracing service object identification information is the same as the identification information for the corresponding normal service object, and the tracing service object is generated substantially identically to the normal service object.
  • the assembly containing the tracing service objects is defined separately from the assembly containing the normal service objects, and the assembly containing the normal service objects and the assembly containing the tracing service objects are stored in different places. For example, when a service object is installed by an installer, the assembly containing the normal service objects and the assembly containing the tracing service objects are installed in different directories. If the assembly containing the normal service objects is installed in the directory “C: ⁇ Program . . . ⁇ OPOS for .NET,” the assembly containing the tracing service objects is installed in the directory “C: ⁇ Program . . . ⁇ OPOS for .NET ⁇ Trace.”
  • a tracing service object internally generates a normal service object (( 2 ) in FIG. 4 ).
  • the assembly containing the tracing service objects can therefore get the directory where the assembly containing the normal service objects is installed.
  • a specific rule could control the relationship between the directory where the assembly containing the tracing service objects is installed and the directory where the assembly containing the normal service objects is installed, and the assembly containing the tracing service objects can know the directory where the assembly containing the normal service objects is installed based on this rule.
  • This rule could, for example, declare that “the directory where the assembly containing the normal service objects is installed is the parent directory of the directory where the assembly containing the tracing service objects is installed.” Alternatively, the location of the directory where the assembly containing the normal service objects is installed could be written in the registry. The tracing service object then reads the registry to get the directory where the assembly containing the normal service objects is installed.
  • FIG. 5 describes generating a tracing service object when the trace function is turned on.
  • the location of the assembly containing the tracing service objects is first written in the registry (( 1 ) in FIG. 5 ).
  • the directory where the assembly containing the tracing service objects is installed that is, “C: ⁇ Program . . . ⁇ OPOS for .NET ⁇ Trace,” is stored in the registry.
  • the CCL gets the location of the assembly containing the tracing service objects from the registry ( 3 ).
  • a tracing service object identified as A is then generated from the assembly stored at the acquired address ( 4 ), and the resulting tracing service object is returned to the application ( 5 ).
  • FIG. 6 describes a method of implementing a trace function for service objects in the POS for .NET architecture.
  • the trace function is enabled or disabled is configured using the setup utility (( 1 ) in FIG. 6 )). If the trace function is enabled, the location (b) of the assembly containing the tracing service objects is stored as the location information in the registry. If the trace function is disabled, the location (a) of the assembly containing the normal service objects is stored in the registry.
  • FIG. 7 shows an example of a dialog box presented by the setup utility for turning the trace function on and off.
  • the trace function is enabled.
  • the checkbox 50 is deselected and empty, the trace function is turned off.
  • the trace function is enabled, the filename and file size of the trace file for storing a log are entered in the name box 52 and file size box 54 , respectively.
  • the CCL gets the location of the assembly containing the tracing service objects from the registry ( 3 ).
  • a service object identified as A is then generated from the assembly stored at the acquired address ( 4 ), and the resulting service object is returned to the application ( 5 ).
  • the location acquired by the CCL is (a), and a normal service object is generated from the assembly containing the normal service objects stored at location (a).
  • the location acquired by the CCL is (b), and a tracing service object is generated from the assembly containing the tracing service objects stored at location (b).
  • the tracing service object gets the location (a) of the assembly containing the normal service objects based on a predefined rule, such as “the directory where the assembly containing the normal service objects is installed is the parent directory of the directory where the assembly containing the tracing service objects is installed,” and then generates a normal service object from the assembly stored at location (a) ( 6 ).
  • FIG. 8 is a flow chart of the process for generating a normal service object from a tracing service object.
  • a tracing service object “A” when a tracing service object “A” is generated, the location where the assembly containing the tracing service object is stored is acquired (S 102 ). The location where the assembly containing the normal service object is stored is then acquired based on the location where the assembly containing the tracing service object is stored (S 104 ). The assembly stored at the acquired address is then read, and a normal service object “A” is generated (S 106 ). The generated normal service object “A” is then held (S 108 ) and the process ends.
  • FIG. 9 describes a method of implementing a trace function for service objects in the POS for .NET Framework using Plug-and-Play reports as the trigger.
  • the registration entry file stores the trace function setting, that is, whether the trace function is enabled or disabled, in the registry (( 1 ′) in FIG. 9 ).
  • the CCL reads the registry to get the location information ( 3 ).
  • the CCL then generates a service object from the assembly stored at the acquired location ( 4 ), and returns the generated service object to the application ( 5 ).
  • the trace function is implemented in this embodiment of the invention by running a device control program stored on the hard disk 38 of the host computer 12 , but this program can be read into and run from RAM 36 from a data storage medium storing a program for executing the steps of this method.
  • the data storage medium could be semiconductor memory such as RAM or ROM, a magnetic storage medium such as a floppy disk or hard disk, an optical read-only storage medium such as a CD, CDV, LD, or DVD disc, a magnetically-writable, optically readable storage medium such as a magneto-optical disc, or any other computer-readable data storage medium that can be read electronically, magnetically, optically, or otherwise.
  • the program could also be downloaded over a network and executed.

Abstract

A device control system, a device control method, and a device control program for rendering a trace function as a function added to a service object that provides the software application with an interface to a particular device based on the Microsoft .NET Framework. The device control system has a service object, a service object for tracing, and renders a trace function in a service object that provides a device interface to a software application based on the .NET Framework. The trace function can be rendered in the service object based on whether the trace function is disabled or enabled without modifying the software application.

Description

    RELATED APPLICATIONS
  • Japanese patent application No.: 2005-205176, is hereby incorporated by reference in its entirety.
  • BACKGROUND OF THE INVENTION
  • 1. Field of the Invention
  • The present invention relates to a device control system, a device control method, and a device control program that control by using an application one or more devices that form a system.
  • 2. Description of the Related Art
  • Software for standardizing the interface between the host computer and devices in a POS system or other type of system comprising a host computer and peripheral devices based on predetermined specifications is available for developing software applications that render the specific functions of the system without knowing the types of devices that will be used in the system. A POS system is used as an example of such a system below.
  • OPOS (OLE for Retail POS) is an international standard (specification), and an OPOS-conforming object defines a standard interface for the devices constituting the terminal system in a POS system (referred to below as a POS terminal system). An OPOS object uses OLE (Object Linking and Embedding) control, which is supported by the Windows (R) operating system run by the host computer of the POS terminal system, to provide the application developer with API (application program interface) functions that make software application development easier. An OPOS-conforming object is referred to below as simply OPOS.
  • Java (R) POS is a program written in the Java (R) language, and is another standard (specification) for building POS systems. Java (R) POS objects provide the application developer with API functions that simplify developing software applications that are operating system independent. Java (R) POS objects are referred to below as JavaPOS.
  • POS for .NET is a standard (specification) for building POS systems using the Microsoft .NET Framework provided by Microsoft and POS for .NET objects provide the application developer with API functions that make software application development easier in the .NET Framework. POS for .NET objects are referred to below as POS for .NET, and the Microsoft .NET Framework is referred to as simply .NET (dot NET).
  • The ability to trace the operation of individual objects is needed for checking system operation and developing software applications that provide the POS system functions using the standardized software development tools based on a particular specification. This trace function is a function for compiling a log enabling the software developer to trace the operation of each object, and is not needed during normal use of the software application by the end user. Examples of object operation which might be logged by a trace function but is not limited to: executing methods, the result of executing a method, getting and setting properties, the results of getting and setting properties, posting events, and any operation which a programmer might reasonably assume would help the programmer understand the behavior of the object.
  • Japanese Unexamined Patent Appl. Pub. 2002-318703 teaches a method of implementing a trace function for device objects in the Java (R) POS system.
  • A device control exists between a device service and the software application in the JavaPOS system. A device control is an object that provides a particular device class, such as a printer or display, and controls the interface between the device class and the application.
  • A device service is an object that interfaces with a particular type of physical device, such as a particular printer model.
  • Software applications are referred to as simply applications below. A device control uses a service factory, which is a class for generating device service objects, to generate a device service object.
  • A service factory may be generated independently by the vendor of the device service, and whether the trace function is enabled or disabled may be determined from the generated service factory. Based on whether the trace function is enabled (on) or disabled (off) when the service factory generates a device service object, the service factory generates a trace service object, which is a device service for tracing, if the trace function is enabled, and generates a normal device service object if the trace function is disabled.
  • FIG. 10 describes how the trace function for a device object is implemented in the JavaPOS architecture. As indicated by the arrows in FIG. 10, if the application executes an open method on the device service (indicated by (1) in FIG. 10), the device control generates a service factory object (2). The service factory then internally reads the enable/disable setting of the trace function (3). If the trace function is enabled, the service factory generates a trace service object (4), the trace service object generates a normal device service object (5) and the service factory returns the trace service object to the device control (6). However, if the service factory determines that the trace function is turned off, the service factory generates a normal device service object (7) and returns the device service object to the device control (6).
  • Because a device control is between the application and the device service, switching between the normal device service and the trace service, which is a device service for tracing the device service, when the application sends a command to the device service has no effect on the application. Therefore, as indicated by the white arrows showing flow control when the trace function is enabled and the black arrows showing flow control the trace function is disabled, the application controls the controlled device as desired by means of methods and properties and gets the result of controlling the device by means of events and properties.
  • OBJECTS OF THE INVENTION
  • A method of implementing a trace function for service objects in the POS for .NET framework has not been defined, however. Generating an instance of a service object in the POS for .NET framework is handled by modules provided by Microsoft. The Common Control Library (CCL) is the module provided by Microsoft. A service object in POS for .NET is an object corresponding to a JavaPOS device service, and is an object provided for each printer model or other such device.
  • CCL generates a service object instance based on service object identification information and service object location information. The service object identification information is provided by the application to the CCL. The service object location information is directory information representing the location of the service object in the assembly, and is stored in the registry.
  • When a trace service, which is a service object for tracing, is separately provided, the same problem presented by the trace function in the JavaPOS architecture occurs. More specifically, service object identification information or service object location information must be changed according to the enable/disable setting of the trace function in order to turn the trace function on and off. Furthermore, when the identification information for the service object passed from the application to the CCL changes, the application must be changed according to whether the trace function is on or off.
  • FIG. 11 describes the problem implementing a service object trace function in the POS for NET framework using a trace service. As indicated by the arrows in FIG. 11, when the application asks the CCL to generate an instance of a service object represented by identification information A ((1) in FIG. 11), the CCL gets the directory information for the assembly storing the service object from the registry (2). Note that identification information A is the identification information for the service object, and the directory information for the assembly storing the service object is the service object location information.
  • Based on the service object identification information and service object location information, CCL determines if the trace function is enabled or disabled. If the CCL determines that the trace function is enabled, CCL generates an instance of the trace service (3), the trace service generates an instance of a normal service object (4), and the CCL returns the trace service instance to the application (5).
  • However, because the CCL is a Microsoft module the service object identification information or service object location information must be changed according to whether the trace function is enabled or disabled in order to turn the trace function on and off.
  • A trace function can also be built in to a normal service object without providing a service object for tracing. FIG. 12 shows sample code for building a trace function into the service object.
  • As shown in FIG. 12, whether tracing is enabled must be determined multiple times during the process. As a result, whether the trace function is enabled is also determined during normal operation when the trace function is disabled, and this lowers performance.
  • In addition, all errors are thrown as exceptions in the POS for .NET framework. The information reported as an exception includes information identifying where the error is. When the invoking object runs a process that gets all exceptions and then invokes the code again, the information showing where the error is gets overwritten with information showing where the code was reinvoked.
  • The present invention is directed to solving these problems, and an object of the invention is to provide a device control system, a device control method, and a device control program for implementing a trace function for service objects providing a device interface to the software application based on the .NET Framework.
  • SUMMARY OF THE INVENTION
  • The present invention solving these problems is described below.
  • To achieve this object, a device control system according to a first embodiment of the invention is a system for controlling a plurality of devices by means of an application. The plurality of devices referring to one or more devices. The system comprising a first object corresponding to each device for providing to the software application an interface to the device based on a predetermined specification; a second object corresponding to each device for providing the software application with added functionality for the first object; a storage for storing configuration information specifying whether the added functionality is enabled or disabled; and an object generator for generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on the configuration information.
  • The storage of the device control system thus comprised stores configuration information declaring whether the added functionality is enabled or disabled. Based on the configuration information, the object generator generates a first object that provides the software application with an interface to a particular device based on a predetermined specification, or generates a second object that provides the software application with additional functionality added to the first object for a particular device. More particularly, the second object is generated when the added functionality is enabled, and the first object is generated when the added functionality is disabled.
  • Added functionality can thus be rendered in the first object providing the software application with an interface to a particular device. This added functionality can be implemented in the first object without changing the software application according to whether the added functionality is disabled or enabled. Furthermore, because the added functionality is not programmed directly into the first object, added functionality can be achieved in the first object without suffering a drop in performance during normal operation when the added functionality is disabled.
  • A device control system according to another embodiment of the invention further comprises an editor for changing the added functionality from enabled to disabled or from disabled to enabled by changing the configuration information stored in the storage.
  • The device control system according to this embodiment of the invention thus enables using the editor to change the configuration information to reset the added functionality from enabled to disabled or from disabled to enabled.
  • If the user wants to apply the added functionality to the first object, this embodiment of the invention enables applying the added functionality to the first object that provides the software application with an interface to a particular device based on the predetermined specification by simply changing the configuration information from disabled to enabled.
  • In a device control system according to another embodiment of the invention the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and is information describing a location where the first object is defined when the added functionality is disabled.
  • If the user wants to apply the added functionality to the first object, this embodiment of the invention enables applying the added functionality to the first object that provides the software application with an interface to a particular device based on the predetermined specification by simply changing the configuration information from disabled to enabled.
  • In a device control system according to another embodiment of the invention the second object corresponding to a device acquires information describing the location where the first object corresponding to the same device is defined, and based on the acquired information generates the first object.
  • Additional functionality can thus be rendered in the first object that provides the software application with an interface to a particular device based on a predetermined specification.
  • In a device control system according to another embodiment of the invention the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object.
  • Additional functionality can thus be rendered in the first object that provides the software application with an interface to a particular device based on a predetermined specification.
  • In a device control system according to another embodiment of the invention the added functionality is a function for tracing operation of the first object.
  • A trace function can thus be provided for a first object that provides a software application with an interface to a device based on a predetermined specification. This trace function can be implemented in the first object without changing the software application according to whether the trace function is disabled or enabled. Furthermore, because the trace function is not programmed directly into the first object, a trace function can be achieved in the first object without suffering a drop in performance during normal operation when the trace function is disabled.
  • In a device control system according to another embodiment of the invention the predetermined specification is the .NET Framework, and the first object is a service object.
  • A trace function can thus be provided for a service object that provides a software application with an interface to a device based on the .NET Framework. This trace function can be implemented in the service object without changing the software application according to whether the trace function is disabled or enabled. Furthermore, because the trace function is not programmed directly into the service object, a trace function can be achieved in the service object without suffering a drop in performance during normal operation when the trace function is disabled.
  • Furthermore, if the user wants to apply the trace function to the service object, this embodiment of the invention enables adding a trace function to the service object that provides the software application with an interface to a particular device based on the .NET Framework by simply changing the configuration information from disabled to enabled.
  • A device control method according to a further embodiment of the invention is a device control method for controlling one or a plurality of devices by means of a software application, the device control method comprising: a first object corresponding to each device for providing to the software application an interface to the device based on a predetermined specification; a second object corresponding to each device for providing the software application with added functionality for the first object; and an object generation step of generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on the configuration information. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • The device control method preferably also has an editing step for changing the added functionality from enabled to disabled or from disabled to enabled by changing the configuration information. The object generation step generates the first object or the second object based on the configuration information changed by the editing step. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • In a device control method according to another embodiment of the invention, the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and is information describing a location where the first object is defined when the added functionality is disabled. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • In a device control method according to another embodiment of the invention, the second object corresponding to a device acquires information describing the location where the first object corresponding to the same device is defined, and based on the acquired information generates the first object. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • In a device control method according to another embodiment of the invention, the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • In a device control method according to another embodiment of the invention, the added functionality is a function for tracing operation of the first object. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • In a device control method according to another embodiment of the invention, the predetermined specification is the .NET Framework, and the first object is a service object. The device control method thus comprised achieves the same effect as the device control system of this invention.
  • Another embodiment of the invention is a device control program for executing on a computer a process for controlling one or a plurality of devices, wherein the device control program executes on a computer a process for rendering the means of the device control system according to the present invention and the function of each object.
  • When the computer reads the program and executes the steps of the program, the computer achieves the same operation and effects as the device control system according to the present invention.
  • EFFECT OF THE INVENTION
  • The present invention enables implementing a trace function for service objects providing a device interface to software applications based on the .NET Framework. The trace function can be provided for service objects without changing the software application according to whether the trace function is enabled or disabled. Because the program does not build the trace function into service object itself, the trace function can be implemented for service objects without degrading performance during normal operation when the trace function is not enabled.
  • Furthermore, if the trace function is to be enabled for a service object in response to a user request, the trace function can be implemented for service objects providing a device interface to the software application based on the .NET Framework by only changing the configuration information to switch from the disabled to the enabled mode.
  • Other objects and attainments together with a fuller understanding of the invention will become apparent and appreciated by referring to the following description and claims taken in conjunction with the accompanying drawings.
  • BRIEF DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a schematic diagram showing an example of the configuration of a POS terminal system;
  • FIG. 2 is a schematic block diagram of the host computer 12 contained in the block diagram shown in FIG. 1;
  • FIG. 3 shows the location of the POS for .NET service object in the POS terminal system;
  • FIG. 4 describes a tracing service object;
  • FIG. 5 describes generating a tracing service object;
  • FIG. 6 describes a method of implementing a trace function for service objects in the POS for .NET Framework;
  • FIG. 7 shows an example of a dialog box for enabling and disabling the trace function in a setup utility;
  • FIG. 8 is a flow chart of the process for generating a normal service object from the tracing service object;
  • FIG. 9 describes a method of implementing a service object trace function in the POS for .NET Framework when a Plug-and-Play report is the trigger;
  • FIG. 10 describes implementing a trace function for device objects in the JavaPOS architecture;
  • FIG. 11 describes problems with implementing a service object trace function in the POS for .NET Framework using the trace service; and
  • FIG. 12 shows an example of a program incorporating a trace function in the service object.
  • DESCRIPTION OF THE PREFERRED EMBODIMENTS
  • Preferred embodiments of the present invention are described below with reference to the accompanying figures. The following embodiments are only used to describe the present invention and do not limit the scope of the invention. It will be obvious to one with ordinary skill in the related art that these embodiments can be varied in many ways by modifying one or more of the elements described below, and all such variations are included in the scope of the accompanying claims.
  • FIG. 1 shows an example of the configuration of a POS terminal system. As shown in FIG. 1 the POS terminal system 10 comprises a host computer 12, printer 14, customer display 16, and cash drawer 18.
  • The host computer 12 stores a software application for implementing the functions of the POS terminal system 10. The host computer 12 is connected by way of a communication bus 20 to a printer 14 for printing receipts and a journal, for example, a customer display 16 for displaying product information for a customer to view, and a cash drawer 18 for storing money and other instruments. The communication bus 20 uses the communication protocol of the selected communication medium, which could be a serial cable, a parallel cable, a network cable, a Universal Serial Bus (USB), or other medium.
  • FIG. 2 is a schematic block diagram of the host computer 12 shown in the block diagram shown in FIG. 1. As shown in FIG. 2, the host computer 12 has an interface 32 for connecting to the communication bus 20, a CPU (central processing unit 34, RAM (random access memory) 36 used as working memory for storing the program run by the CPU 34 and temporary work content, a hard disk 38 for storing the program run by the CPU 34 and other data, a display monitor 40 for presenting messages and prompts to the user, an input device 42 such as a mouse or keyboard for getting user input, and a bus 44 to which these parts are connected.
  • FIG. 3 shows where a POS for .NET service object is positioned in the POS terminal system. As shown in FIG. 3, a POS for .NET service object is between the software application controlling the POS terminal system devices and the operating system, and provides a standard interface between the host computer and the devices based on predetermined specifications.
  • A separate service object is provided for each device such as a specific printer model, and controls the device through the operating system. The location information for the service object that is referenced to generate a service object is stored in the registry, and the registry is managed by the operating system.
  • The software application desirably controls the device being controlled by means of methods and properties, and gets the result of controlling the device by means of events and properties.
  • FIG. 4 describes service objects for tracing. As shown in FIG. 4, the tracing service object identification information is the same as the identification information for the corresponding normal service object, and the tracing service object is generated substantially identically to the normal service object.
  • The assembly containing the tracing service objects is defined separately from the assembly containing the normal service objects, and the assembly containing the normal service objects and the assembly containing the tracing service objects are stored in different places. For example, when a service object is installed by an installer, the assembly containing the normal service objects and the assembly containing the tracing service objects are installed in different directories. If the assembly containing the normal service objects is installed in the directory “C:\Program . . . \OPOS for .NET,” the assembly containing the tracing service objects is installed in the directory “C:\Program . . . \OPOS for .NET\Trace.”
  • A tracing service object internally generates a normal service object ((2) in FIG. 4). The assembly containing the tracing service objects can therefore get the directory where the assembly containing the normal service objects is installed. A specific rule could control the relationship between the directory where the assembly containing the tracing service objects is installed and the directory where the assembly containing the normal service objects is installed, and the assembly containing the tracing service objects can know the directory where the assembly containing the normal service objects is installed based on this rule. This rule could, for example, declare that “the directory where the assembly containing the normal service objects is installed is the parent directory of the directory where the assembly containing the tracing service objects is installed.” Alternatively, the location of the directory where the assembly containing the normal service objects is installed could be written in the registry. The tracing service object then reads the registry to get the directory where the assembly containing the normal service objects is installed.
  • Generating a tracing service object when the trace function is enabled is described next. FIG. 5 describes generating a tracing service object when the trace function is turned on.
  • As shown in FIG. 5, the location of the assembly containing the tracing service objects is first written in the registry ((1) in FIG. 5). In this example the directory where the assembly containing the tracing service objects is installed, that is, “C:\Program . . . \OPOS for .NET\Trace,” is stored in the registry.
  • When the application sends a request to the CCL for the service object referenced by identification information A ((2) in FIG. 5), the CCL gets the location of the assembly containing the tracing service objects from the registry (3). A tracing service object identified as A is then generated from the assembly stored at the acquired address (4), and the resulting tracing service object is returned to the application (5).
  • A method of implementing a trace function for service objects in the POS for .NET architecture using the tracing service object thus generated is described next. FIG. 6 describes a method of implementing a trace function for service objects in the POS for .NET architecture.
  • As shown in FIG. 6, whether the trace function is enabled or disabled is configured using the setup utility ((1) in FIG. 6)). If the trace function is enabled, the location (b) of the assembly containing the tracing service objects is stored as the location information in the registry. If the trace function is disabled, the location (a) of the assembly containing the normal service objects is stored in the registry.
  • FIG. 7 shows an example of a dialog box presented by the setup utility for turning the trace function on and off. When checkbox 50 is selected as shown in FIG. 7, the trace function is enabled. When the checkbox 50 is deselected and empty, the trace function is turned off. When the trace function is enabled, the filename and file size of the trace file for storing a log are entered in the name box 52 and file size box 54, respectively.
  • Returning to FIG. 6, when the application sends a request to the CCL for the service object referenced by identification information A ((2) in FIG. 6), the CCL gets the location of the assembly containing the tracing service objects from the registry (3). A service object identified as A is then generated from the assembly stored at the acquired address (4), and the resulting service object is returned to the application (5).
  • When the trace function is turned off, the location acquired by the CCL is (a), and a normal service object is generated from the assembly containing the normal service objects stored at location (a).
  • When the trace function is turned on, the location acquired by the CCL is (b), and a tracing service object is generated from the assembly containing the tracing service objects stored at location (b). In this embodiment the tracing service object gets the location (a) of the assembly containing the normal service objects based on a predefined rule, such as “the directory where the assembly containing the normal service objects is installed is the parent directory of the directory where the assembly containing the tracing service objects is installed,” and then generates a normal service object from the assembly stored at location (a) (6).
  • The process of generating a normal service object from a tracing service object is described in detail next. FIG. 8 is a flow chart of the process for generating a normal service object from a tracing service object.
  • As shown in FIG. 8, when a tracing service object “A” is generated, the location where the assembly containing the tracing service object is stored is acquired (S102). The location where the assembly containing the normal service object is stored is then acquired based on the location where the assembly containing the tracing service object is stored (S104). The assembly stored at the acquired address is then read, and a normal service object “A” is generated (S106). The generated normal service object “A” is then held (S108) and the process ends.
  • The method whereby the CCL is triggered by a request from an application to generate a service object is described in FIG. 6, but the CCL can also be triggered to generate a service object by a report from the Plug-and-Play function. FIG. 9 describes a method of implementing a trace function for service objects in the POS for .NET Framework using Plug-and-Play reports as the trigger.
  • The registration entry file stores the trace function setting, that is, whether the trace function is enabled or disabled, in the registry ((1′) in FIG. 9). When the operating system controlling the Plug and Play feature posts an event reporting detection of a new device (2′), the CCL reads the registry to get the location information (3). The CCL then generates a service object from the assembly stored at the acquired location (4), and returns the generated service object to the application (5).
  • The trace function is implemented in this embodiment of the invention by running a device control program stored on the hard disk 38 of the host computer 12, but this program can be read into and run from RAM 36 from a data storage medium storing a program for executing the steps of this method.
  • The data storage medium could be semiconductor memory such as RAM or ROM, a magnetic storage medium such as a floppy disk or hard disk, an optical read-only storage medium such as a CD, CDV, LD, or DVD disc, a magnetically-writable, optically readable storage medium such as a magneto-optical disc, or any other computer-readable data storage medium that can be read electronically, magnetically, optically, or otherwise. The program could also be downloaded over a network and executed.
  • Although the present invention has been described in connection with the preferred embodiments thereof with reference to the accompanying drawings, it is to be noted that various changes and modifications will be apparent to those skilled in the art. Such changes and modifications are to be understood as included within the scope of the present invention as defined by the appended claims, unless they depart therefrom.

Claims (20)

1. A system for controlling a plurality of devices using an application, comprising:
a first object corresponding to each device among the plurality of devices for providing to the application an interface to the device based on a predetermined specification;
a second object corresponding to each device among the plurality of devices for providing the software application with added functionality for the first object;
a storage for storing configuration information specifying whether the added functionality is enabled or disabled; and
an object generator for generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on the configuration information.
2. The system described in claim 1, further comprising an editor for changing the added functionality from enabled to disabled or from disabled to enabled by changing the configuration information stored in the storage.
3. The system described in claim 1, wherein the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and is information describing a location where the first object is defined when the added functionality is disabled.
4. The system described in claim 1, wherein the second object corresponding to a particular device among the plurality of devices acquires information describing a location where the first object corresponding to the particular device is defined, and based on the acquired information generates the first object.
5. The system described in claim 4, wherein the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object.
6. The system described in claim 1, wherein the added functionality is a function for a tracing operation of the first object.
7. The system described in claim 1, wherein the predetermined specification is the .NET Framework, and the first object is a service object.
8. A method for controlling a plurality of devices using an application, the device control method comprising:
a first object corresponding to each device that provides an interface between the application and each device among the plurality of devices based on a predetermined specification;
a second object that provides the application with added functionality with respect to the first object; and
generating the second object when the added functionality is enabled, and generating the first object when the added functionality is disabled, based on configuration information.
9. The method described in claim 8, further comprising:
editing the configuration information by changing the added functionality from enabled to disabled or from disabled to enabled; and
wherein generating the first object or the second object is based on the configuration information changed by editing the configuration information.
10. The method described in claim 8, wherein the configuration information is information describing a location where the second object is defined when the added functionality is enabled, and the configuration information is information describing a location where the first object is defined when the added functionality is disabled.
11. The method described in claim 8, wherein the second object corresponding to a particular device among the plurality of devices acquires information describing the location where the first object corresponding to the particular device is defined, and based on the acquired information generates the first object.
12. The method described in claim 11, wherein the second object acquires information describing the location where the first object is defined based on the configuration information and a predetermined rule, and based on the acquired information generates the first object.
13. The method described in claim 8, wherein the added functionality is a function for a tracing operation of the first object.
14. The method described in claim 8, wherein the predetermined specification is the .NET Framework, and the first object is a service object.
15. A computer readable medium encoded with a computer program for executing the method described in claim 8.
16. A method of controlling a plurality of devices via an application comprising:
determining if a second object is enabled from stored configuration information;
controlling each device among the plurality of devices via a first object if the second object is not enabled, the first object providing an interface to the application, and
controlling the first object via the second object if the second object is enabled, the second object providing added functionality to the application,
17. The method of claim 16, wherein the each device among the plurality of devices has a corresponding fist object.
18. The method of claim 16, wherein the added functionality is a tracing function of the first object.
19. The method of claim 16, further comprising generating the second object if the second object is enabled.
20. The method of claim 16, further comprising:
acquiring information by the second object corresponding to a particular device that describes a location where the first object corresponding to the particular device is defined; and
generating the first object based on the information acquired by the second object.
US11/457,073 2005-07-14 2006-07-12 Device control system, device control method, and device control program Expired - Fee Related US7930708B2 (en)

Applications Claiming Priority (3)

Application Number Priority Date Filing Date Title
JP2005-205176 2005-07-14
JP2005205176A JP4967266B2 (en) 2005-07-14 2005-07-14 Device control system and device control processing method
JP2005205176 2005-07-14

Publications (2)

Publication Number Publication Date
US20070027560A1 true US20070027560A1 (en) 2007-02-01
US7930708B2 US7930708B2 (en) 2011-04-19

Family

ID=37695379

Family Applications (1)

Application Number Title Priority Date Filing Date
US11/457,073 Expired - Fee Related US7930708B2 (en) 2005-07-14 2006-07-12 Device control system, device control method, and device control program

Country Status (2)

Country Link
US (1) US7930708B2 (en)
JP (1) JP4967266B2 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070050751A1 (en) * 2005-08-31 2007-03-01 Microsoft Corporation Automatic interoperation with legacy POS service and control objects
US20110023018A1 (en) * 2009-07-21 2011-01-27 Electronics And Telecommunications Research Institute Software platform and method of managing application individuals in the software platform
US20130197742A1 (en) * 2008-04-23 2013-08-01 Service Solutions U.S. Llc Customizable Initiation of Data Recordings
WO2015022542A1 (en) * 2013-08-16 2015-02-19 Sparkle Coupon Services Ltd A data processing method and system for intercepting signals between a peripheral device and a software application
US10855781B2 (en) 2013-08-16 2020-12-01 Sparkle Cs Ltd Data transmission method and system

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101950258B (en) * 2010-09-29 2013-08-14 用友软件股份有限公司 Word processing system-based plug-in generating method and device

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6047124A (en) * 1997-10-31 2000-04-04 Sun Microsystems, Inc. System and method for tracing device drivers using a computer
US20020095310A1 (en) * 2001-01-09 2002-07-18 Atsushi Kobayashi Device environment configuration system, device environment configuration method, and data storage medium therefor
US20020199172A1 (en) * 2001-06-07 2002-12-26 Mitchell Bunnell Dynamic instrumentation event trace system and methods
US6526567B1 (en) * 1999-03-24 2003-02-25 International Business Machines Corporation System and method for optimizing a device driver by incorporating debugging and tracing

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3767276B2 (en) * 1999-09-30 2006-04-19 富士通株式会社 System call information recording method and recording apparatus
JP2002318703A (en) 2001-04-20 2002-10-31 Seiko Epson Corp Control system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6047124A (en) * 1997-10-31 2000-04-04 Sun Microsystems, Inc. System and method for tracing device drivers using a computer
US6526567B1 (en) * 1999-03-24 2003-02-25 International Business Machines Corporation System and method for optimizing a device driver by incorporating debugging and tracing
US20020095310A1 (en) * 2001-01-09 2002-07-18 Atsushi Kobayashi Device environment configuration system, device environment configuration method, and data storage medium therefor
US20020199172A1 (en) * 2001-06-07 2002-12-26 Mitchell Bunnell Dynamic instrumentation event trace system and methods

Cited By (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20070050751A1 (en) * 2005-08-31 2007-03-01 Microsoft Corporation Automatic interoperation with legacy POS service and control objects
US20130197742A1 (en) * 2008-04-23 2013-08-01 Service Solutions U.S. Llc Customizable Initiation of Data Recordings
US9588018B2 (en) * 2008-04-23 2017-03-07 Bosch Automotive Service Solutions Inc. Customizable initiation of data recordings
US20110023018A1 (en) * 2009-07-21 2011-01-27 Electronics And Telecommunications Research Institute Software platform and method of managing application individuals in the software platform
WO2015022542A1 (en) * 2013-08-16 2015-02-19 Sparkle Coupon Services Ltd A data processing method and system for intercepting signals between a peripheral device and a software application
US10203965B2 (en) 2013-08-16 2019-02-12 Sparkle Cs Ltd Data processing method and system for intercepting signals between a peripheral device and a software application
US10855781B2 (en) 2013-08-16 2020-12-01 Sparkle Cs Ltd Data transmission method and system
US10908921B2 (en) 2013-08-16 2021-02-02 Sparkle Cs Ltd Data processing method and system for intercepting signals between a peripheral device and a software application
US11240323B2 (en) 2013-08-16 2022-02-01 Sparkle Cs Ltd. Data transmission method and system
US11487554B2 (en) 2013-08-16 2022-11-01 Sparkle Cs Ltd Data processing method and system for intercepting signals between a peripheral device and a software application
US11570265B2 (en) 2013-08-16 2023-01-31 Sparkle Cs Ltd Data transmission method and system

Also Published As

Publication number Publication date
US7930708B2 (en) 2011-04-19
JP4967266B2 (en) 2012-07-04
JP2007025928A (en) 2007-02-01

Similar Documents

Publication Publication Date Title
US9063725B2 (en) Portable management
US5893106A (en) Object oriented server process framework with interdependent-object creation
EP2270655B1 (en) Compatibility evaluation apparatus, compatibility evaluation method, and recording medium
KR100563823B1 (en) Generation method of compatibility order of computer system and system
JP4810282B2 (en) Module installation method, module installation device, and program
US7251724B2 (en) Device environment configuration system and method, and data storage therefor
JP2002024020A (en) Screen control program, dynamic display information acquisition program, screen display transaction program, screen component interface program and screen program preparing method
US20080320071A1 (en) Method, apparatus and program product for creating a test framework for testing operating system components in a cluster system
US20060265702A1 (en) System for creating a customized software distribution based on user requirements
US7930708B2 (en) Device control system, device control method, and device control program
US20070050751A1 (en) Automatic interoperation with legacy POS service and control objects
US8260897B2 (en) System and method for automatically managing IT-resources in a heterogeneous environment
US20060225028A1 (en) Managing evelopment of an Enterprise Application
US7478380B2 (en) Dynamically updatable and easily scalable command line parser using a centralized data schema
US7043715B1 (en) Method and apparatus for customizing software
JP2002215477A (en) System and processing method for monitoring device state, and information recording medium
WO2008130759A1 (en) Using code analysis for requirements management
US20050039193A1 (en) Method and apparatus for generating device driver and user interface screen
JP2013518321A (en) Pattern-based user interface
CN116301596A (en) Software RAID construction method, device, equipment and storage medium
US20030144997A1 (en) Patent marking system
CN113342590B (en) NVMe device debugging function implementation method, device, equipment and storage medium
KR20060120670A (en) System and method for building software suite
US7028173B2 (en) Device environment configuration systems, device environment configuration methods, and data storage media therefor
EP1710698A2 (en) Generic software requirements analyser

Legal Events

Date Code Title Description
AS Assignment

Owner name: SEIKO EPSON CORPORATION, JAPAN

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:NAKAZAWA, MASATOSHI;SAKAI, ATSUSHI;KATAGIRI, MASAHIRO;SIGNING DATES FROM 20060614 TO 20060620;REEL/FRAME:017922/0879

Owner name: SEIKO EPSON CORPORATION, JAPAN

Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:NAKAZAWA, MASATOSHI;SAKAI, ATSUSHI;KATAGIRI, MASAHIRO;REEL/FRAME:017922/0879;SIGNING DATES FROM 20060614 TO 20060620

STCF Information on status: patent grant

Free format text: PATENTED CASE

FEPP Fee payment procedure

Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

FPAY Fee payment

Year of fee payment: 4

MAFP Maintenance fee payment

Free format text: PAYMENT OF MAINTENANCE FEE, 8TH YEAR, LARGE ENTITY (ORIGINAL EVENT CODE: M1552); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

Year of fee payment: 8

FEPP Fee payment procedure

Free format text: MAINTENANCE FEE REMINDER MAILED (ORIGINAL EVENT CODE: REM.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

LAPS Lapse for failure to pay maintenance fees

Free format text: PATENT EXPIRED FOR FAILURE TO PAY MAINTENANCE FEES (ORIGINAL EVENT CODE: EXP.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

STCH Information on status: patent discontinuation

Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362

FP Lapsed due to failure to pay maintenance fee

Effective date: 20230419