CN111722888B - Operation execution method, device, equipment and readable storage medium - Google Patents

Operation execution method, device, equipment and readable storage medium Download PDF

Info

Publication number
CN111722888B
CN111722888B CN202010567624.7A CN202010567624A CN111722888B CN 111722888 B CN111722888 B CN 111722888B CN 202010567624 A CN202010567624 A CN 202010567624A CN 111722888 B CN111722888 B CN 111722888B
Authority
CN
China
Prior art keywords
target
state
logic
target operation
class
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.)
Active
Application number
CN202010567624.7A
Other languages
Chinese (zh)
Other versions
CN111722888A (en
Inventor
朱玉猛
朱波
刘正伟
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.)
Inspur Electronic Information Industry Co Ltd
Guangdong Inspur Smart Computing Technology Co Ltd
Original Assignee
Inspur Electronic Information Industry Co Ltd
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 Inspur Electronic Information Industry Co Ltd filed Critical Inspur Electronic Information Industry Co Ltd
Priority to CN202010567624.7A priority Critical patent/CN111722888B/en
Publication of CN111722888A publication Critical patent/CN111722888A/en
Application granted granted Critical
Publication of CN111722888B publication Critical patent/CN111722888B/en
Active legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F9/00Arrangements for program control, e.g. control units
    • G06F9/06Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
    • G06F9/44Arrangements for executing specific programs
    • G06F9/448Execution paradigms, e.g. implementations of programming paradigms
    • G06F9/4488Object-oriented
    • G06F9/449Object-oriented method invocation or resolution
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F8/00Arrangements for software engineering
    • G06F8/70Software maintenance or management

Landscapes

  • Engineering & Computer Science (AREA)
  • Software Systems (AREA)
  • Theoretical Computer Science (AREA)
  • General Engineering & Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Stored Programmes (AREA)

Abstract

The invention discloses an operation execution method, which comprises the following steps: before executing target operation, determining a target state class corresponding to current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class; determining processing logic corresponding to the target operation in the target state class; if the processing logic is allowed to be executed, calling the corresponding target operation logic to execute the target operation; and if the processing logic refuses to execute, refusing to execute the target operation. It can be seen that the present application can execute various operations through a unified scheduling mode, the unified scheduling mode can solve the problem of repeated codes for executing the operations, the original code logic does not need to be changed when the state and the operation are increased, and a new service logic is directly added and maintained, so that the problem of code maintenance workload is reduced; the invention also discloses an operation execution device, equipment and a readable storage medium, which can also realize the technical problem.

Description

Operation execution method, device, equipment and readable storage medium
Technical Field
The present invention relates to the field of data processing technologies, and in particular, to an operation execution method, apparatus, device, and readable storage medium.
Background
With the advent of the cloud computing and big data era, a lot of services are not deployed in a certain server of a machine room of the machine room, but the server is virtualized into a lot of virtual resources, and the evolution enables the resources to be non-configured as required, so that the resource waste is reduced, and the operation and maintenance visualization is realized. To achieve this, the cloud platform is not required to manage these resources, and therefore, various cloud resource management technologies are used, such as: vmware, openstack, kvm also has many companies self-packaged original platforms. Currently, when these virtualization technologies are managed in a unified manner, cloud hosts virtualized by a variety of technologies appear in a system, and the states of the cloud hosts virtualized by different virtualization technologies are generally consistent but have inconsistent places. Referring to fig. 1, a logic diagram of changing a name of a cloud host in a conventional scheme is shown, specifically, an operation of changing the name of the cloud host may be changed in vmware boot, shutdown, suspend, and busy states, while in kvm boot, shutdown, suspend, and busy states, and in kvm there is no suspend state, so that five states are to be determined to be referred to in executing an operation logic of changing the name. If other virtualization technologies are accessed at the moment or the name can be modified by a new state, the code logic is changed, the operation is complex, and the code modification workload is increased.
Moreover, the above operation process is only a simple name modifying operation, many operations in the cloud management platform require state judgment, and different operations all have corresponding source codes, so that more repeated source codes are generated, and more maintenance workload is also generated during code maintenance, such as: when the service requirement changes, the source code of each operation needs to be modified, so that the workload of modifying the source code is increased, and the switching principle of program design is not met; moreover, the above problems also occur when different operations are performed on different types and specifications of cloud resources or other resources.
Disclosure of Invention
The invention aims to provide an operation execution method, an operation execution device, an operation execution equipment and a readable storage medium, which aim to solve the defect of repeated codes for executing operation and reduce the problem of maintenance workload.
To achieve the above object, the present invention provides an operation execution method, including:
determining current state information before executing the target operation;
determining a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logics of different operations are stored in the basic class;
determining processing logic corresponding to the target operation in the target state class;
if the processing logic is allowed to be executed, calling corresponding target operation logic to execute the target operation; and if the processing logic refuses to execute, refusing to execute the target operation.
If the processing logic is allowed to be executed, calling a corresponding target operation logic to execute the target operation, including:
if the processing logic is inheritance, determining that the target operation is allowed to be executed;
judging whether a target operation logic corresponding to the target operation exists in the target state class or not;
if yes, calling the target operation logic to execute the target operation; if not, calling a target operation logic corresponding to the target operation from the basic class to execute the target operation.
Wherein, if the processing logic refuses to execute, refusing to execute the target operation includes:
and if the processing logic is throw error, determining that the target operation is refused to be executed.
Wherein the determining the target state class corresponding to the current state information includes:
and determining a target state class corresponding to the current state information by using the corresponding relation between the states and the state classes recorded in the configuration file.
Wherein, still include:
receiving a state newly-added instruction for adding a new state;
and creating a new state class corresponding to the new state, and setting the processing logic of each operation in the new state class.
Wherein, still include:
receiving an operation adding instruction for adding new operation;
adding new operation logic corresponding to the new operation in the basic class;
and adding the processing logic of the new operation in the current state in each state class.
To achieve the above object, the present invention further provides an operation execution apparatus comprising:
the state determining module is used for determining current state information before executing target operation;
a target state class determining module, configured to determine a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class;
a processing logic determination module, configured to determine a processing logic corresponding to the target operation in the target state class;
the execution module is used for calling the corresponding target operation logic to execute the target operation when the processing logic is allowed to execute; denying execution of the target operation when the processing logic is denying execution.
Wherein, this scheme still includes:
the first instruction receiving module is used for receiving a state adding instruction for adding a new state;
and the setting module is used for creating a new state class corresponding to the new state and setting the processing logic of each operation in the new state class.
To achieve the above object, the present invention further provides an electronic device comprising:
a memory for storing a computer program;
a processor for implementing the steps of the operation execution method when executing the computer program.
To achieve the above object, the present invention further provides a computer-readable storage medium having a computer program stored thereon, where the computer program is executed by a processor to implement the steps of the operation execution method described above.
According to the above scheme, an operation execution method provided by the embodiment of the present invention includes: determining current state information before executing the target operation; determining a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class; determining processing logic corresponding to the target operation in the target state class; if the processing logic is allowed to be executed, calling corresponding target operation logic to execute the target operation; and if the processing logic refuses to execute, refusing to execute the target operation.
It can be seen that, the present application can execute various operations in a unified scheduling manner, and when executing the operations, the original logic for determining the states in each operation is changed to determine the operations in each state, that is: determining a corresponding state class according to the current state, and judging whether to execute operation according to the corresponding state class; moreover, the unified scheduling mode can solve the problem of repeated codes for executing operation, and the original code logic is not needed to be changed when the states are increased and decreased, and new service logic is directly added and maintained, so that the problem of code maintenance workload is reduced; the invention also discloses an operation execution device, equipment and a readable storage medium, which can also realize the technical problem.
Drawings
In order to more clearly illustrate the embodiments of the present invention or the technical solutions in the prior art, the drawings used in the description of the embodiments or the prior art will be briefly described below, it is obvious that the drawings in the following description are only some embodiments of the present invention, and for those skilled in the art, other drawings can be obtained according to the drawings without creative efforts.
FIG. 1 is a logic diagram illustrating a prior art approach for modifying cloud host names;
FIG. 2 is a flowchart illustrating an operation execution method according to an embodiment of the present invention;
FIG. 3 is a schematic diagram of an execution flow of a name change operation according to an embodiment of the present invention
FIG. 4 is a schematic diagram of an operation execution device according to an embodiment of the present invention;
fig. 5 is a schematic structural diagram of an electronic device according to an embodiment of the present invention.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments. All other embodiments, which can be derived by a person skilled in the art from the embodiments given herein without making any creative effort, shall fall within the protection scope of the present invention.
The embodiment of the invention discloses an operation execution method, an operation execution device, operation execution equipment and a readable storage medium, which aim to solve the defect of repeated codes for executing operation and reduce the maintenance workload.
Referring to fig. 2, an operation execution method provided by an embodiment of the present invention includes:
s101, before target operation is executed, current state information is determined;
specifically, the target operation in the present application may be an operation performed based on various states of the cloud resource, such as: the cloud host status, different types, different specifications of cloud resources, and the like may also be operations executed based on other resource statuses, and are not specifically limited herein. In this embodiment, the target operation is described by taking a name change operation as an example and taking a state as a cloud host state as an example.
Before the target operation needs to be executed, the present application first needs to determine the current state information, such as: when the name changing operation is executed, the current cloud host state is determined, and the state can be a power-on state, a power-off state or the like.
S102, determining a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class;
s103, determining processing logic corresponding to the target operation in the target state class;
it can be understood that various operation logics of the cloud host can be maintained in one basic class, state judgment is not needed, and a processing mode is unified. Then, each state of the cloud host maintains a subclass, and inherits the method of the basic class, and the subclass is called as a state class in the scheme. The state class includes processing logic for each operation in the present state, such as: the power-on state class maintains the processing logic of each operation in the power-on state, and the power-off state class maintains the processing logic of each operation in the power-off state. The processing logic includes two types: inheriting and throwing errors, if the operation logic in the basic class is inherited, directly inheriting the operation logic in the basic class, and if the operation logic is thrown errors, not executing the corresponding operation logic.
It should be noted that, according to the present application, a configuration file that records a correspondence between a state of a cloud host and a state class may be maintained in advance, so that when determining a target state class corresponding to current state information, the target state class corresponding to the current state information is specifically determined by using a correspondence between states and state classes recorded in the configuration file. Such as: and if the current state information is the startup state, the corresponding state class is the startup state class, and if the current state information is the shutdown state, the corresponding state class is the shutdown state class.
S104, if the processing logic is allowed to be executed, calling a corresponding target operation logic to execute the target operation; and if the processing logic refuses to execute, refusing to execute the target operation.
After determining the corresponding processing logic from the determined target state class, the application needs to search the corresponding processing logic from the target state class, and determine whether the target operation can be executed through the searched processing logic. Such as: when the operation of changing the name of the cloud host is executed, the name of the corresponding state class is obtained from the configuration file according to the current state of the cloud host, then the state class is obtained by utilizing the spring ioc principle, and the corresponding operation of changing the name can be called after the processing logic is found. Referring to fig. 3, which is a schematic diagram of an execution flow of a name change operation disclosed in the present invention, it can be seen that, when any operation in the basic class is executed, the corresponding operation logic can be invoked to execute the corresponding operation only by determining the current state, so that a uniform operation execution mode is provided.
In the application, if the processing logic is throw error, the target operation is judged to be refused to be executed; if the processing logic is inheritance, the target operation is judged to be allowed to be executed; judging whether a target operation logic corresponding to the target operation exists in the target state class or not; if yes, calling a target operation logic to execute the target operation; if not, calling a target operation logic corresponding to the target operation from the basic class to execute the target operation. Specifically, the execution processes of the same operation in different states may be different, so that the operation logic of each operation stored in the base class of the present application is only the base operation logic of the operation, and if the specific execution process of the operation in a certain state is the same as the base operation logic, the operation logic of the parent class is directly inherited, so that the operation logic of the operation can be directly inherited from the base class, and when the operation logic is called, the corresponding base operation logic can be directly called from the base class. If the specific execution process of the operation in a certain state is different from the basic operation logic, the basic operation logic can be modified on the basis of inheriting the logic of the parent class and stored in the state class, and at this time, the corresponding basic operation logic is not called from the basic class, and the corresponding modified operation logic is directly called from the state class. Namely: according to the scheme, when the target operation logic is called to execute the target operation, if the target operation logic corresponding to the target operation exists in the target state class, the target operation logic in the target state class is called to execute the target operation, and otherwise, the target operation logic corresponding to the target operation is called from the basic class to execute the target operation.
In summary, the present application can be seen in that, based on a state mode, operation logic is maintained in one basic class, each state class inherits the basic class, if the operation is allowed in the state, operation logic of a parent class is run, and if the operation logic needs to be modified, operation logic codes in the basic class can be rewritten in the state class. In addition, the unified scheduling mode can solve the defect of code repetition of execution operation, and the problem of code maintenance workload is reduced by directly adding new service logic and maintaining without moving the original code logic when states are increased and decreased.
Based on the foregoing embodiment, in this embodiment, the present solution further includes:
receiving a state newly-added instruction for adding a new state; and creating a new state class corresponding to the new state, and setting the processing logic of each operation in the new state class.
Receiving an operation adding instruction for adding new operation; adding new operation logic corresponding to the new operation in the basic class; and adding the processing logic of the new operation in the current state in each state class.
Specifically, if a new state is required, a corresponding state class needs to be maintained, and the processing logic of each operation needs to be set. Such as: if a new cloud host state is suspended, various operations in the suspended state can be controlled independently only by maintaining a suspended state class. If the operation has no special processing logic in the suspended state, the operation logic of the basic class can be directly inherited, and if other logic operations exist, the operation logic of the basic class can be rewritten. Similarly, when an operation is newly added, corresponding operation logic needs to be added in the basic class, and processing logic of the operation is set in each state class. Such as: the added operation is to change the cpu information of the cloud host, the unified logic for changing the cpu information of the cloud host is directly maintained in the basic class, and the processing logic for the operation is maintained in each state class.
In conclusion, by the scheme, various logics for cloud resource operation in the system can be clearer, various logic judgments in the traditional judging state are avoided, and a lot of if.. else. The problems that the operation and the judgment are mixed in the prior art, the addition, deletion and modification of the operation and the judgment all affect the original service in service logic, and a plurality of logic errors caused by modification are caused are solved. Finally, the invention is only explained by taking various states of the cloud resources as an example, and in practical application, the cloud host state can be not only the cloud host state, but also the cloud resources of different types and specifications or other resources can be logically decoupled by using the idea, so that a new idea is brought to system design. For example: the different types of cloud resources may be servers, clusters, network switches, and the like, the cloud resources with different specifications may be the number specifications of the servers, and the like, and the other resources may be attendance records of an office system, and the above may be abstracted into different states and set up different state classes, which are not specifically described herein.
In the following, the operation execution device provided by the embodiment of the present invention is introduced, and the operation execution device described below and the operation execution method described above may be referred to each other.
Referring to fig. 4, an operation execution apparatus provided in an embodiment of the present invention includes:
a state determination module 100, configured to determine current state information before performing a target operation;
a target state class determining module 200, configured to determine a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class;
a processing logic determining module 300, configured to determine processing logic corresponding to the target operation in the target state class;
an execution module 400, configured to, when the processing logic is allowed to execute, invoke corresponding target operation logic to execute the target operation; denying execution of the target operation when the processing logic is denying execution.
Wherein the execution module comprises:
a first determination unit configured to determine that the target operation is allowed to be executed when the processing logic is inheritance;
the judging module is used for judging whether a target operation logic corresponding to the target operation exists in the target state class;
the first execution unit is used for calling the target operation logic to execute the target operation when the target operation logic corresponding to the target operation exists in the target state class;
and the second execution unit is used for calling the target operation logic corresponding to the target operation from the basic class to execute the target operation when the target operation logic corresponding to the target operation does not exist in the target state class.
Wherein the execution module comprises:
and the second judgment unit is used for judging that the target operation is refused to be executed when the processing logic is error throwing.
Wherein the target state class determination module is specifically configured to: and determining a target state class corresponding to the current state information by using the corresponding relation between the states and the state classes recorded in the configuration file.
Wherein, this scheme still includes:
the first instruction receiving module is used for receiving a state adding instruction for adding a new state;
and the setting module is used for creating a new state class corresponding to the new state and setting the processing logic of each operation in the new state class.
Wherein, this scheme still includes:
the second instruction receiving module is used for receiving an operation adding instruction for adding new operation;
a first adding unit, configured to add a new operation logic corresponding to the new operation in the base class;
and the second adding unit is used for adding the processing logic of the new operation in the current state in each state class.
Referring to fig. 5, an embodiment of the present invention further discloses an electronic device, including:
a memory 11 for storing a computer program;
a processor 12 for implementing the steps of the operation execution method according to any of the above-described method embodiments when executing the computer program.
In this embodiment, the device may be a PC (Personal Computer), or may be a terminal device such as a smart phone, a tablet Computer, a palmtop Computer, or a portable Computer.
The device may include a memory 11, a processor 12, and a bus 13.
The memory 11 includes at least one type of readable storage medium, which includes a flash memory, a hard disk, a multimedia card, a card type memory (e.g., SD or DX memory, etc.), a magnetic memory, a magnetic disk, an optical disk, and the like. The memory 11 may in some embodiments be an internal storage unit of the device, for example a hard disk of the device. The memory 11 may also be an external storage device of the device in other embodiments, such as a plug-in hard disk, a Smart Media Card (SMC), a Secure Digital (SD) Card, a Flash memory Card (Flash Card), etc. provided on the device. Further, the memory 11 may also include both an internal storage unit of the device and an external storage device. The memory 11 can be used not only for storing application software installed in the device and various types of data such as program codes for executing the operation execution method, etc., but also for temporarily storing data that has been output or is to be output.
The processor 12 may be a Central Processing Unit (CPU), a controller, a microcontroller, a microprocessor or other data Processing chip in some embodiments, and is used for executing program codes stored in the memory 11 or Processing data, such as program codes for executing operation execution methods.
The bus 13 may be a Peripheral Component Interconnect (PCI) bus, an Extended Industry Standard Architecture (EISA) bus, or the like. The bus may be divided into an address bus, a data bus, a control bus, etc. For ease of illustration, only one thick line is shown in FIG. 5, but this is not intended to represent only one bus or type of bus.
Further, the device may further include a network interface 14, and the network interface 14 may optionally include a wired interface and/or a wireless interface (e.g., WI-FI interface, bluetooth interface, etc.), which are generally used to establish a communication connection between the device and other electronic devices.
Optionally, the device may further comprise a user interface, which may comprise a Display (Display), an input unit such as a Keyboard (Keyboard), and optionally a standard wired interface, a wireless interface. Alternatively, in some embodiments, the display may be an LED display, a liquid crystal display, a touch-sensitive liquid crystal display, an OLED (Organic Light-Emitting Diode) touch device, or the like. The display, which may also be referred to as a display screen or display unit, is suitable for displaying information processed in the device and for displaying a visualized user interface.
Fig. 5 shows only the device with the components 11-14, and it will be understood by those skilled in the art that the structure shown in fig. 5 does not constitute a limitation of the device, and may comprise fewer or more components than those shown, or some components may be combined, or a different arrangement of components.
The embodiment of the invention also discloses a computer readable storage medium, wherein a computer program is stored on the computer readable storage medium, and when the computer program is executed by a processor, the steps of the operation execution method of any method embodiment are realized.
Wherein the storage medium may include: a U-disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, an optical disk, or other various media capable of storing program codes.
The embodiments in the present description are described in a progressive manner, each embodiment focuses on differences from other embodiments, and the same and similar parts among the embodiments are referred to each other.
The previous description of the disclosed embodiments is provided to enable any person skilled in the art to make or use the present invention. Various modifications to these embodiments will be readily apparent to those skilled in the art, and the generic principles defined herein may be applied to other embodiments without departing from the spirit or scope of the invention. Thus, the present invention is not intended to be limited to the embodiments shown herein but is to be accorded the widest scope consistent with the principles and novel features disclosed herein.

Claims (8)

1. An operation execution method, comprising:
determining current state information before executing the target operation;
determining a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class;
determining processing logic corresponding to the target operation in the target state class;
if the processing logic is allowed to be executed, calling corresponding target operation logic to execute the target operation; if the processing logic refuses to execute, refusing to execute the target operation;
if the processing logic is allowed to be executed, calling a corresponding target operation logic to execute the target operation, including:
if the processing logic is inheritance, determining that the target operation is allowed to be executed;
judging whether a target operation logic corresponding to the target operation exists in the target state class or not;
if yes, calling the target operation logic to execute the target operation; if not, calling a target operation logic corresponding to the target operation from the basic class to execute the target operation;
wherein, if the processing logic refuses to execute, refusing to execute the target operation includes:
and if the processing logic is throw error, determining that the target operation is refused to be executed.
2. The operation execution method according to claim 1, wherein the determining the target state class corresponding to the current state information comprises:
and determining a target state class corresponding to the current state information by using the corresponding relation between the states and the state classes recorded in the configuration file.
3. The operation execution method according to claim 1 or 2, further comprising:
receiving a state newly-added instruction for adding a new state;
and creating a new state class corresponding to the new state, and setting the processing logic of each operation in the new state class.
4. The operation execution method according to claim 1 or 2, further comprising:
receiving an operation adding instruction for adding new operation;
adding new operation logic corresponding to the new operation in the basic class;
and adding the processing logic of the new operation in the current state in each state class.
5. An operation execution apparatus, comprising:
the state determining module is used for determining current state information before executing target operation;
a target state class determining module, configured to determine a target state class corresponding to the current state information; each state class comprises processing logic of each operation in the state, and the operation logic of different operations is stored in the basic class;
a processing logic determination module, configured to determine a processing logic corresponding to the target operation in the target state class;
the execution module is used for calling the corresponding target operation logic to execute the target operation when the processing logic is allowed to execute; refusing to execute the target operation when the processing logic is refusing execution;
wherein the execution module comprises:
a first determination unit configured to determine that the target operation is allowed to be executed when the processing logic is inheritance;
the judging module is used for judging whether a target operation logic corresponding to the target operation exists in the target state class;
a first execution unit, configured to, when a target operation logic corresponding to the target operation exists in the target state class, invoke the target operation logic to execute the target operation;
a second execution unit, configured to, when there is no target operation logic corresponding to the target operation in the target state class, invoke, from the base class, a target operation logic corresponding to the target operation to execute the target operation;
wherein the execution module comprises:
and the second judgment unit is used for judging that the target operation is refused to be executed when the processing logic is error throwing.
6. The operation execution apparatus according to claim 5, further comprising:
the first instruction receiving module is used for receiving a state adding instruction for adding a new state;
and the setting module is used for creating a new state class corresponding to the new state and setting the processing logic of each operation in the new state class.
7. An electronic device, comprising:
a memory for storing a computer program;
a processor for implementing the steps of the operation execution method according to any one of claims 1 to 4 when executing the computer program.
8. A computer-readable storage medium, having stored thereon a computer program which, when being executed by a processor, carries out the steps of the operation execution method according to any one of claims 1 to 4.
CN202010567624.7A 2020-06-19 2020-06-19 Operation execution method, device, equipment and readable storage medium Active CN111722888B (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202010567624.7A CN111722888B (en) 2020-06-19 2020-06-19 Operation execution method, device, equipment and readable storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202010567624.7A CN111722888B (en) 2020-06-19 2020-06-19 Operation execution method, device, equipment and readable storage medium

Publications (2)

Publication Number Publication Date
CN111722888A CN111722888A (en) 2020-09-29
CN111722888B true CN111722888B (en) 2022-06-10

Family

ID=72568199

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202010567624.7A Active CN111722888B (en) 2020-06-19 2020-06-19 Operation execution method, device, equipment and readable storage medium

Country Status (1)

Country Link
CN (1) CN111722888B (en)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112272218B (en) * 2020-10-16 2023-01-06 苏州浪潮智能科技有限公司 Cloud platform instance resource operation method and device, computer equipment and storage medium

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108337289A (en) * 2017-12-15 2018-07-27 中金数据(武汉)超算技术有限公司 A kind of operational order processing method and system
CN109144701A (en) * 2018-09-05 2019-01-04 郑州云海信息技术有限公司 A kind of task flow management method, device, equipment and system
CN111258721A (en) * 2020-01-19 2020-06-09 苏州浪潮智能科技有限公司 Cloud host operating system user management method, device, equipment and storage medium

Family Cites Families (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP4912452B2 (en) * 2009-11-27 2012-04-11 インターナショナル・ビジネス・マシーンズ・コーポレーション Method of converting and executing source code described in dynamically typed language into target code described in statically typed language, and computer program and computer system thereof
US9021180B2 (en) * 2011-06-10 2015-04-28 International Business Machines Corporation Clearing blocks of storage class memory

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN108337289A (en) * 2017-12-15 2018-07-27 中金数据(武汉)超算技术有限公司 A kind of operational order processing method and system
CN109144701A (en) * 2018-09-05 2019-01-04 郑州云海信息技术有限公司 A kind of task flow management method, device, equipment and system
CN111258721A (en) * 2020-01-19 2020-06-09 苏州浪潮智能科技有限公司 Cloud host operating system user management method, device, equipment and storage medium

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
一种基于State模式的惯导系统软件设计方法;许静等;《导航定位与授时》;20170531(第03期);全文 *

Also Published As

Publication number Publication date
CN111722888A (en) 2020-09-29

Similar Documents

Publication Publication Date Title
CN102027453B (en) System and method for optimizing interrupt processing in virtualized environments
JP2022023772A (en) Method for sharing gpu, device, electronic device, computer readable storage medium and computer program
US20040255286A1 (en) Method for distributed update of firmware across a clustered platform infrastructure
WO2020151306A1 (en) Self-adaptive scaling method for container, and server and storage medium
US20110219373A1 (en) Virtual machine management apparatus and virtualization method for virtualization-supporting terminal platform
CN109474467B (en) Network automation management method and device, storage medium and electronic equipment
JP2011103093A (en) Computer that boots up fast
JP2021099879A (en) Development machine operation task processing method, electronic apparatus, computer-readable storage medium, and computer program
EP3633507B1 (en) Technologies for secure and efficient native code invocation for firmware services
CN111722888B (en) Operation execution method, device, equipment and readable storage medium
CN105677481A (en) Method and system for processing data and electronic equipment
CN111459510A (en) Cross-network operating system installation method and device, electronic equipment and medium
CN112286633A (en) Virtual machine creating method, device, equipment and storage medium based on CloudStack platform
US7577814B1 (en) Firmware memory management
CN114489941B (en) Virtual machine management method and system operating in host mode user mode
CN108121572B (en) Web application starting method and device
CN114003238A (en) Transcoding card-based container deployment method, device, equipment and storage medium
CN113535215A (en) Virtual machine hot upgrading method, device, equipment and storage medium
CN107291512B (en) Application program multi-opening method and device, terminal equipment and storage medium
CN114090329A (en) Server restarting method under full-unloading architecture and related equipment
KR20100122431A (en) Sharing input/output(i/o) resources across multiple computing systems and/or environments
CN111752682A (en) Network port resource management method and device, electronic equipment and storage medium
CN103455342A (en) Theme calling method and device
CN117908914A (en) Component deployment upgrading method and device, computer equipment and storage medium
CN106951264A (en) A kind of available machine time optimization method and device

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination
GR01 Patent grant
GR01 Patent grant
TR01 Transfer of patent right

Effective date of registration: 20231120

Address after: Room 2301, No. 395 Linjiang Avenue, Tianhe District, Guangzhou City, Guangdong Province, 510655 (Location: Self made Unit 01)

Patentee after: Guangdong Inspur Intelligent Computing Technology Co.,Ltd.

Patentee after: INSPUR ELECTRONIC INFORMATION INDUSTRY Co.,Ltd.

Address before: No. 1036, Shandong high tech Zone wave road, Ji'nan, Shandong

Patentee before: INSPUR ELECTRONIC INFORMATION INDUSTRY Co.,Ltd.

TR01 Transfer of patent right