CN110955520A - Multi-task scheduling method and system for electric energy meter - Google Patents

Multi-task scheduling method and system for electric energy meter Download PDF

Info

Publication number
CN110955520A
CN110955520A CN201911071217.0A CN201911071217A CN110955520A CN 110955520 A CN110955520 A CN 110955520A CN 201911071217 A CN201911071217 A CN 201911071217A CN 110955520 A CN110955520 A CN 110955520A
Authority
CN
China
Prior art keywords
coroutine
queue
trigger information
information
coroutines
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.)
Pending
Application number
CN201911071217.0A
Other languages
Chinese (zh)
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.)
State Grid Corp of China SGCC
China Electric Power Research Institute Co Ltd CEPRI
Original Assignee
State Grid Corp of China SGCC
China Electric Power Research Institute Co Ltd CEPRI
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 State Grid Corp of China SGCC, China Electric Power Research Institute Co Ltd CEPRI filed Critical State Grid Corp of China SGCC
Priority to CN201911071217.0A priority Critical patent/CN110955520A/en
Publication of CN110955520A publication Critical patent/CN110955520A/en
Pending legal-status Critical Current

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/46Multiprogramming arrangements
    • G06F9/50Allocation of resources, e.g. of the central processing unit [CPU]
    • G06F9/5005Allocation of resources, e.g. of the central processing unit [CPU] to service a request
    • G06F9/5027Allocation of resources, e.g. of the central processing unit [CPU] to service a request the resource being a machine, e.g. CPUs, Servers, Terminals
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F2209/00Indexing scheme relating to G06F9/00
    • G06F2209/50Indexing scheme relating to G06F9/50
    • G06F2209/5017Task decomposition

Abstract

The invention provides a multitask scheduling method and a multitask scheduling system for an electric energy meter. The method and the system generate the coroutine and the trigger information, distribute the trigger information received by the system to the coroutine based on the trigger information registered by the coroutine when the system runs, generate a coroutine queue in an activated state, and execute the coroutine according to the sequence of the coroutine queue. The electric energy meter-oriented multi-task scheduling method and system divide the whole function of one service application into a plurality of sub-function modules through coroutine, and the sub-function modules are used as 'tasks' running in the coroutine, so that the service application of the electric energy meter is effectively divided in a modularization mode, the service logic is simplified, and the task switching efficiency is improved. Finally, according to different functions required by tasks, the size of the coroutine stack can be independently set, and flexible adjustment of object resources and coroutine stack resources required by service application is realized.

Description

Multi-task scheduling method and system for electric energy meter
Technical Field
The invention relates to the field of electric energy meter application, in particular to a multitask scheduling method and a multitask scheduling system for an electric energy meter.
Background
Along with the popularization of intelligent electric energy meters, the demand of electric energy meter metering services is continuously increased, the functions required by the electric energy meters are more and more complex, the requirements for realizing the functions are higher and higher, and on the premise of ensuring the complete realization of the functions, the urgent need is met if the efficiency for realizing the functions of the electric energy meters is improved and the stable operation of the electric energy meter service application is ensured.
Disclosure of Invention
In order to solve the technical problems that the service function of an electric energy meter is complex and the realization efficiency of the function of the electric energy meter is low in the prior art, the invention provides a multi-task scheduling method for the electric energy meter, which comprises the following steps:
the electric energy meter system generates a plurality of coroutines according to the service requirement, numbers the coroutines, generates trigger information which can be called by the coroutines, and numbers the trigger information;
when the electric energy meter is started, initializing the coroutines into an idle state, and registering triggering information required by the running of each coroutine in a system;
when the system runs, distributing the received trigger information to the corresponding coroutines based on the trigger information registered by the coroutines, enabling the coroutines receiving the trigger information to enter an activated state, and generating a coroutine queue of the activated state by the coroutines in the activated state according to the time sequence of receiving the trigger information;
when the system detects that the coroutine queue in the activated state is not empty, taking out the coroutine from the head of the coroutine queue in the activated state to enter an operating state, executing the coroutine, and entering an idle state after the operation is finished, wherein the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state; and when all the information queues of the coroutines in the system are empty, the system is idle.
Further, the trigger information that the protocol can call includes a message, a waiting flag number, and a waiting lock, where the message includes an external hardware message of the electric energy meter and an internal message of the electric energy meter, the external hardware message includes a communication message, a metering message, and a key message, and the internal message includes a timer message and a custom message of the electric energy meter service application.
Further, when the electric energy meter is started, initializing the coroutines to be in an idle state, and registering the trigger information required by the operation of each coroutine in the system refers to establishing an information registration table and storing the coroutine number of the coroutine registering the trigger information.
Further, when the system runs, the received information is allocated to the corresponding coroutine based on the coroutine registration information, that is, when the system runs, the trigger information is received and then cached, and the information is allocated to the coroutine registering the trigger information based on the corresponding relationship between the trigger information number and the coroutine number registering the trigger information.
Further, when the system detects that the coroutine queue in the activated state is not empty, taking out the coroutine from the head of the coroutine queue in the activated state to enter an operating state, executing the coroutine, and entering an idle state after the operation is finished, wherein the step of taking the next coroutine in the coroutine queue in the activated state by the system in sequence to enable the next coroutine queue to enter the operating state comprises the steps of:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running.
According to another aspect of the present invention, the present invention provides a multi-task scheduling system for electric energy meters, the system comprising:
the initialization unit is used for generating a plurality of coroutines by the electric energy meter system according to the service requirement, numbering the coroutines, generating trigger information which can be called by the coroutines and numbering the trigger information;
the coroutine information registration unit is used for initializing coroutines to be in an idle state after the electric energy meter is started, and registering triggering information required by the running of each coroutine in the system;
the information management unit is used for distributing the received trigger information to the corresponding coroutines based on the trigger information registered by the coroutines when the system runs, the coroutines receiving the trigger information enter an activated state, and the coroutines in the activated state generate a coroutine queue in the activated state according to the time sequence of receiving the trigger information;
and the task scheduling unit is used for taking out the coroutines from the head of the coroutine queue in the activated state to enter an operating state when the system detects that the coroutine queue in the activated state is not empty, executing the coroutine, and entering an idle state after the operation is finished.
Further, the trigger information that the protocol generated by the initialization unit can call includes a message, a waiting flag number and a waiting lock, where the message includes an external hardware message of the electric energy meter and an internal message of the electric energy meter, the external hardware message includes a communication message, a metering message and a key message, and the internal message includes a timer message and a custom message of the electric energy meter service application.
Further, the coroutine registration unit initializes the coroutine to an idle state after the electric energy meter is started, and registering the trigger information required by the operation of each coroutine in the system means establishing an information registration table and storing a coroutine number of the coroutine registering the trigger information.
Further, the queue generating unit allocates the received information to the corresponding coroutine based on the coroutine registration information when the system runs, that is, after receiving the trigger information when the system runs, the queue generating unit caches the trigger information, and allocates the information to the coroutine registering the trigger information based on the corresponding relationship between the trigger information number in the coroutine registration unit and the coroutine number registering the trigger information.
Further, when the system detects that the coroutine queue in the activated state is not empty, the task scheduling unit takes out the coroutine from the head of the coroutine queue in the activated state to enter an operating state, the coroutine executes the operation and enters an idle state after the operation is finished, and the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state includes:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running.
The electric energy meter-oriented multitask scheduling method and the electric energy meter-oriented multitask scheduling system generate the coroutine and the trigger information, distribute the trigger information received by the system to the coroutine based on the trigger information registered by the coroutine when the system runs, generate a coroutine queue in an activated state, and execute the coroutine according to the sequence of the coroutine queue. The electric energy meter-oriented multi-task scheduling method and system divide the whole function of one service application into a plurality of sub-function modules through coroutine, and the sub-function modules are used as 'tasks' running in the coroutine, so that the service application of the electric energy meter is effectively divided in a modularization mode, the service logic is simplified, and the task switching efficiency is improved. Finally, according to different functions required by tasks, the size of the coroutine stack can be independently set, and flexible adjustment of object resources and coroutine stack resources required by service application is realized.
Drawings
A more complete understanding of exemplary embodiments of the present invention may be had by reference to the following drawings in which:
FIG. 1 is a flow chart of a method for multi-tasking an electric energy meter according to a preferred embodiment of the invention;
FIG. 2 is a diagram illustrating multitasking scheduling in accordance with a preferred embodiment of the present invention;
fig. 3 is a schematic structural diagram of a multitask scheduling system facing an electric energy meter according to a preferred embodiment of the present invention.
Detailed Description
The exemplary embodiments of the present invention will now be described with reference to the accompanying drawings, however, the present invention may be embodied in many different forms and is not limited to the embodiments described herein, which are provided for complete and complete disclosure of the present invention and to fully convey the scope of the present invention to those skilled in the art. The terminology used in the exemplary embodiments illustrated in the accompanying drawings is not intended to be limiting of the invention. In the drawings, the same units/elements are denoted by the same reference numerals.
Unless otherwise defined, terms (including technical and scientific terms) used herein have the same meaning as commonly understood by one of ordinary skill in the art to which this invention belongs. Further, it will be understood that terms, such as those defined in commonly used dictionaries, should be interpreted as having a meaning that is consistent with their meaning in the context of the relevant art and will not be interpreted in an idealized or overly formal sense.
Fig. 1 is a flowchart of a method for multi-task scheduling for electric energy meters according to a preferred embodiment of the present invention. As shown in fig. 1, the method 100 for scheduling multiple tasks for an electric energy meter according to the preferred embodiment starts with step 101.
In step 101, the electric energy meter system generates a plurality of coroutines according to the service requirement, numbers the coroutines, generates trigger information that the coroutines can call, and numbers the trigger information.
In step 102, when the electric energy meter is started, the protocol is initialized to an idle state, and trigger information required by the operation of each protocol is registered in the system.
In step 103, when the system runs, based on the trigger information registered by the coroutine, allocating the received trigger information to the corresponding coroutine, and enabling the coroutine receiving the trigger information to enter an activation state, wherein the coroutine in the activation state generates a coroutine queue in the activation state according to the time sequence of receiving the trigger information;
in step 104, when the system detects that the coroutine queue in the activated state is not empty, the coroutine is taken out from the head of the coroutine queue in the activated state to enter an operating state, the coroutine executes operation and enters an idle state after the operation is finished, the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state, and when the information queues of all the coroutines in the system are empty, the system is idle.
Preferably, the trigger information that the protocol can call includes a message, a waiting flag number, and a waiting lock, where the message includes an external hardware message of the electric energy meter and an internal message of the electric energy meter, the external hardware message includes a communication message, a metering message, and a key message, and the internal message includes a timer message and a custom message of the electric energy meter service application.
Preferably, when the electric energy meter is started, initializing the coroutines to be in an idle state, and registering the trigger information required by the running of each coroutine in the system refers to establishing an information registration table and storing the coroutine number of the coroutine registering the trigger information.
Preferably, when the system runs, the step of allocating the received information to the corresponding coroutine based on the coroutine registration information means that when the system runs, the triggering information is cached after the triggering information is received, and the information is allocated to the coroutine registering the triggering information based on the corresponding relationship between the triggering information number and the coroutine number registering the triggering information.
Preferably, when the system detects that the coroutine queue in the activated state is not empty, taking out the coroutine from the coroutine queue head in the activated state to enter an operating state, executing the coroutine, and entering an idle state after the operation is finished, where the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state includes:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running. And storing information such as a PC pointer in the current coroutine running process, the offset of the current using stack, the frame position of a function stack, the packet information of the current execution method, the maximum register number and the parameter number used by the current method and the like in the virtual machine stack of the coroutine. When the system carries out coroutine scheduling, the currently used virtual machine stack is switched, thereby realizing coroutine scheduling. Considering that the execution tasks of the coroutine stacks are different and the resource requirements of the coroutine stacks are also different, the system designs a mechanism for adjusting the coroutine stack space, and can adjust the size of the coroutine stacks according to the requirements. By adjusting the coroutine stack space, the flexibility of the use of system resources is ensured, the size of the coroutine stack can be set according to the application requirement, and the use of the coroutine stack and the application to the system resources is balanced.
Fig. 2 is a diagram illustrating multitask scheduling according to a preferred embodiment of the present invention. As shown in fig. 2, after the function of the business application is divided into a plurality of sub-function modules, the business application is executed as a plurality of tasks through the coroutines, the tasks are executed independently, and the task of the next coroutine can be executed only after all the tasks of one coroutine are completed through the scheduling of the coroutines. Scheduling of coroutines occurs primarily when messages wait, sleep, flag, or coroutine actively releases control. By using the coroutine mechanism, each task is switched by a program when being switched, and the multitask mechanism of the platform can be efficiently realized. Aiming at the application scene of the electric energy meter, on one hand, unnecessary frequent system scheduling can be effectively avoided; on the other hand, when the service application runs the key data combination calculation, the protection of partial critical data can be realized without releasing the kernel control right, and the scheduling prohibition or the mutual exclusion lock and the like do not need to be independently opened, so that the effective execution time of the CPU is improved.
Fig. 3 is a schematic structural diagram of a multitask scheduling system facing an electric energy meter according to a preferred embodiment of the present invention. As shown in fig. 3, the electric energy meter-oriented multitask scheduling system 300 according to the preferred embodiment includes:
the initialization unit 301 is used for the electric energy meter system to generate a plurality of coroutines according to service requirements, number the coroutines, generate trigger information which can be called by the coroutines, and number the trigger information;
the coroutine information registration unit 302 is used for initializing a coroutine to be in an idle state after the electric energy meter is started, and registering triggering information required by the running of each coroutine in the system;
the information management unit 303 is configured to, during system operation, allocate the received trigger information to a corresponding coroutine based on trigger information registered by the coroutine, where the coroutine receiving the trigger information enters an activated state, and the coroutine in the activated state generates a coroutine queue in the activated state according to a time sequence of receiving the trigger information;
and the task scheduling unit 304 is configured to, when the system detects that the coroutine queue in the activated state is not empty, take out a coroutine from the head of the coroutine queue in the activated state to enter an operating state, execute the coroutine, and enter an idle state after the operation is completed, the system sequentially takes a next coroutine in the coroutine queue in the activated state to enter the operating state, and when information queues of all the coroutines in the system are empty, the system is idle.
Preferably, the trigger information that the protocol generated by the initialization unit can call includes a message, a waiting flag number, and a waiting lock, where the message includes an external hardware message of the electric energy meter and an internal message of the electric energy meter, the external hardware message includes a communication message, a metering message, and a key message, and the internal message includes a timer message and a custom message of the electric energy meter service application.
Preferably, the coroutine registration unit initializes the coroutine to an idle state after the electric energy meter is started, and registering the trigger information required by the operation of each coroutine in the system means establishing an information registration table and storing a coroutine number of the coroutine registering the trigger information.
Preferably, the queue generating unit allocates the received information to the corresponding coroutine based on the coroutine registration information when the system runs, that is, after receiving the trigger information when the system runs, the queue generating unit caches the trigger information, and allocates the information to the coroutine registering the trigger information based on the corresponding relationship between the trigger information number in the coroutine registration unit and the coroutine number registering the trigger information.
Preferably, when the system detects that the coroutine queue in the activated state is not empty, the task scheduling unit takes out the coroutine from the head of the coroutine queue in the activated state to enter an operating state, the coroutine executes the operation and enters an idle state after the operation is finished, and the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state includes:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running.
Fig. 1 of the present invention is a method for scheduling a plurality of tasks of an electric energy meter by using a multitask scheduling system for an electric energy meter according to a preferred embodiment of the present invention, which has the same principle as the multitask scheduling method for an electric energy meter according to the present invention, and achieves the same technical effects, and thus, details are not repeated herein.
The invention has been described with reference to a few embodiments. However, other embodiments of the invention than the one disclosed above are equally possible within the scope of the invention, as would be apparent to a person skilled in the art from the appended patent claims.
Generally, all terms used in the claims are to be interpreted according to their ordinary meaning in the technical field, unless explicitly defined otherwise herein. All references to "a/an/the [ device, component, etc ]" are to be interpreted openly as referring to at least one instance of said device, component, etc., unless explicitly stated otherwise. The steps of any method disclosed herein do not have to be performed in the exact order disclosed, unless explicitly stated.
As will be appreciated by one skilled in the art, embodiments of the present application may be provided as a method, system, or computer program product. Accordingly, the present application may take the form of an entirely hardware embodiment, an entirely software embodiment or an embodiment combining software and hardware aspects. Furthermore, the present application may take the form of a computer program product embodied on one or more computer-usable storage media (including, but not limited to, disk storage, CD-ROM, optical storage, and the like) having computer-usable program code embodied therein.
The present application is described with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the application. It will be understood that each flow and/or block of the flow diagrams and/or block diagrams, and combinations of flows and/or blocks in the flow diagrams and/or block diagrams, can be implemented by computer program instructions. These computer program instructions may be provided to a processor of a general purpose computer, special purpose computer, embedded processor, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be stored in a computer-readable memory that can direct a computer or other programmable data processing apparatus to function in a particular manner, such that the instructions stored in the computer-readable memory produce an article of manufacture including instruction means which implement the function specified in the flowchart flow or flows and/or block diagram block or blocks.
These computer program instructions may also be loaded onto a computer or other programmable data processing apparatus to cause a series of operational steps to be performed on the computer or other programmable apparatus to produce a computer implemented process such that the instructions which execute on the computer or other programmable apparatus provide steps for implementing the functions specified in the flowchart flow or flows and/or block diagram block or blocks.
Finally, it should be noted that: the above embodiments are only for illustrating the technical solutions of the present invention and not for limiting the same, and although the present invention is described in detail with reference to the above embodiments, those of ordinary skill in the art should understand that: modifications and equivalents may be made to the embodiments of the invention without departing from the spirit and scope of the invention, which is to be covered by the claims.

Claims (10)

1. A multitask scheduling method for an electric energy meter is characterized by comprising the following steps:
the electric energy meter system generates a plurality of coroutines according to the service requirement, numbers the coroutines, generates trigger information which can be called by the coroutines, and numbers the trigger information;
when the electric energy meter is started, initializing the coroutines into an idle state, and registering triggering information required by the running of each coroutine in a system;
when the system runs, distributing the received trigger information to the corresponding coroutines based on the trigger information registered by the coroutines, enabling the coroutines receiving the trigger information to enter an activated state, and generating a coroutine queue of the activated state by the coroutines in the activated state according to the time sequence of receiving the trigger information;
when the system detects that the coroutine queue in the activated state is not empty, taking out the coroutine from the head of the coroutine queue in the activated state to enter an operating state, executing the coroutine, and entering an idle state after the operation is finished, wherein the system sequentially takes the next coroutine in the coroutine queue in the activated state to enter the operating state; and when all the information queues of the coroutines in the system are empty, the system is idle.
2. The method of claim 1, wherein the trigger information that the protocol can call comprises a message, a wait flag number, and a wait lock, wherein the message comprises a power meter external hardware message and a power meter internal message, wherein the external hardware message comprises a communication message, a metering message, and a key message, and wherein the internal message comprises a timer message and a custom message for a power meter service application.
3. The method according to claim 1, wherein initializing the coroutines to an idle state after the electric energy meter is started, and registering the trigger information required by the operation of each coroutine in the system means establishing an information registry and storing a coroutine number of the coroutine registering the trigger information.
4. The method according to claim 3, wherein the step of distributing the received information to the corresponding coroutines based on the coroutine registration information during the system running process means that the trigger information is cached after receiving the trigger information during the system running process, and the information is distributed to the coroutines registering the trigger information based on the corresponding relationship between the trigger information number and the coroutine number registering the trigger information.
5. The method of claim 4, wherein when the system detects that the coroutine queue in the active state is not empty, taking out the coroutine from the coroutine queue head in the active state to enter a running state, wherein the coroutine executes the running and enters an idle state after the running is finished, and wherein the system sequentially takes the next coroutine in the coroutine queue in the active state to enter the running state comprises:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running.
6. A multi-tasking system for electric energy meters, the system comprising:
the initialization unit is used for generating a plurality of coroutines by the electric energy meter system according to the service requirement, numbering the coroutines, generating trigger information which can be called by the coroutines and numbering the trigger information;
the coroutine information registration unit is used for initializing coroutines to be in an idle state after the electric energy meter is started, and registering triggering information required by the running of each coroutine in the system;
the information management unit is used for distributing the received trigger information to the corresponding coroutines based on the trigger information registered by the coroutines when the system runs, the coroutines receiving the trigger information enter an activated state, and the coroutines in the activated state generate a coroutine queue in the activated state according to the time sequence of receiving the trigger information;
and the task scheduling unit is used for taking out the coroutines from the head of the coroutine queue in the activated state to enter an operating state when the system detects that the coroutine queue in the activated state is not empty, executing the coroutine, and entering an idle state after the operation is finished.
7. The system of claim 6, wherein the trigger information generated by the initialization unit and callable by the protocol comprises a message, a waiting flag number and a waiting lock, wherein the message comprises an external power meter hardware message and an internal power meter hardware message, the external hardware message comprises a communication message, a metering message and a key message, and the internal message comprises a timer message and a custom message of the power meter service application.
8. The system of claim 6, wherein the coroutine registration unit initializes the coroutine to an idle state after the electric energy meter is started, and registers the trigger information required by each coroutine operation in the system means to establish an information registration table and store a coroutine number of the coroutine registering the trigger information.
9. The system according to claim 8, wherein the queue generating unit allocates the received information to the corresponding coroutine based on coroutine registration information when the system is running, that is, after receiving the trigger information when the system is running, the queue generating unit buffers the trigger information, and allocates the information to the coroutine that registers the trigger information based on a correspondence between a trigger information number in the coroutine registration unit and a coroutine number that registers the trigger information.
10. The system of claim 6, wherein the task scheduling unit, when the system detects that the coroutine queue in the active state is not empty, takes out the coroutine from the head of the coroutine queue in the active state to enter the running state, the coroutine executes the running, and enters the idle state after the running is finished, and the system sequentially takes the next coroutine in the coroutine queue in the active state to enter the running state, and the task scheduling unit includes:
when the system detects that the protocol queue in the activated state is not empty, taking out the protocol from the protocol queue head in the activated state to enter an operating state, executing the protocol, and entering an idle state after the operation is finished, wherein the completion of the protocol operation comprises the completion of the execution of the information queue in the protocol or the non-completion of the execution of the information queue in the protocol, but the protocol actively releases the control right;
and the system switches the virtual machine stack of the coroutine to the virtual machine stack of the next coroutine in the coroutine queue in the activated state according to the sequence of the coroutine queue in the activated state, so that the coroutine virtual machine stack enters a running state, wherein the virtual machine stack of the coroutine is a space for storing temporary variables during coroutine running.
CN201911071217.0A 2019-11-05 2019-11-05 Multi-task scheduling method and system for electric energy meter Pending CN110955520A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201911071217.0A CN110955520A (en) 2019-11-05 2019-11-05 Multi-task scheduling method and system for electric energy meter

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201911071217.0A CN110955520A (en) 2019-11-05 2019-11-05 Multi-task scheduling method and system for electric energy meter

Publications (1)

Publication Number Publication Date
CN110955520A true CN110955520A (en) 2020-04-03

Family

ID=69976574

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201911071217.0A Pending CN110955520A (en) 2019-11-05 2019-11-05 Multi-task scheduling method and system for electric energy meter

Country Status (1)

Country Link
CN (1) CN110955520A (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111583622A (en) * 2020-04-28 2020-08-25 南方电网数字电网研究院有限公司 Metering information distribution processing system and method of double-core intelligent ammeter management unit

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN111583622A (en) * 2020-04-28 2020-08-25 南方电网数字电网研究院有限公司 Metering information distribution processing system and method of double-core intelligent ammeter management unit
CN111583622B (en) * 2020-04-28 2021-01-22 南方电网数字电网研究院有限公司 Metering information distribution processing system and method of double-core intelligent ammeter management unit

Similar Documents

Publication Publication Date Title
EP2701074B1 (en) Method, device, and system for performing scheduling in multi-processor core system
CN103999051B (en) Strategy for tinter resource allocation in the minds of shader core
CN105045658B (en) A method of realizing that dynamic task scheduling is distributed using multinuclear DSP embedded
US9703595B2 (en) Multi-core system with central transaction control
US20080104296A1 (en) Interrupt handling using simultaneous multi-threading
CN106506393A (en) A kind of data flow processing method, device and system
CA2536037A1 (en) Fast and memory protected asynchronous message scheme in a multi-process and multi-thread environment
CN104102548A (en) Task resource scheduling processing method and task resource scheduling processing system
US20030177164A1 (en) Method and apparatus for serving a request queue
CN113434284B (en) Privacy computation server side equipment, system and task scheduling method
CN107122233A (en) A kind of adaptive real-time scheduling methods of many VCPU towards TSN business
US9424101B2 (en) Method and apparatus for synchronous processing based on multi-core system
CN115237556A (en) Scheduling method and device, chip, electronic equipment and storage medium
CN110955520A (en) Multi-task scheduling method and system for electric energy meter
CN115480904B (en) Concurrent calling method for system service in microkernel
AU714853B2 (en) Job scheduling for instruction processor
CN112749020A (en) Microkernel optimization method of Internet of things operating system
Chishiro et al. Extended RT-component framework for RT-middleware
EP3066568A1 (en) System and method for supporting efficient packet processing model and optimized buffer utilization for packet processing in a network environment
CN107991930A (en) A kind of coffee machine system software controls method
Labrosse Inside real-time kernels
EP1341092A1 (en) Method and arrangement for virtual direct memory access
CN110445729B (en) Queue scheduling method, device, equipment and storage medium
Chandane Real time operating systems: a complete overview
Lu et al. Constructing ECU Software Architecture Based on OSEK

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