Detailed description of the structure of the Combination Mode and Its Application in Ruby Design Mode Programming, ruby Design Mode

Source: Internet
Author: User

Detailed description of the structure of the Combination Mode and Its Application in Ruby Design Mode Programming, ruby Design Mode

Definition:It is also called the merging mode or partial-overall mode. It is mainly used to describe the relationship between parts and the whole, define and combine objects into a tree structure to represent the "partial-whole" hierarchy, this ensures consistency between the use of a single object and a composite object.

Class diagram:

Role description:

Componnent abstract component role: defines the common methods and attributes of the composite object, and defines some default behaviors or attributes.
Leaf component: the Leaf object with no other branches under it, that is, the smallest unit of traversal.
Composite tree branches: A tree object. It combines tree branches and leaf nodes to form a tree structure.

Instance:
I heard that your company has recently launched a new E-book reading application. The market is very responsive. There are also book malls in the application, where users can choose their favorite books at will. Your company also attaches great importance to this project, increases investment, and decides to add more features to this application.
Well, you also know that you are not able to escape this attack. It wasn't long before your leader found you. He told you that the current application has made statistics on the page views and sales volume of each book, but now I want to increase the page views and sales volume of each book category, as well as the overall page views and sales volume of all books. I hope you can complete this function.
Of course, the jobs arranged by the leaders cannot be put off. You can only put your head on it, but fortunately this function does not look very complicated.
If you prefer novels, start with the statistical functions of novels. First, the get_all_novels method can be used to obtain all novel names, and then the novel name is passed into the get_browse_count method to obtain the book's page views. The new novel name is passed into the get_sale_count method to obtain the book's sales volume. You can only use these known APIs!

def get_novels_browse_count   browse_count = 0   all_novels = get_all_novels()   all_novels.each do |novel|     browse_count += get_browse_count(novel)   end   browse_count end  def get_novels_sale_count   sale_count = 0   all_novels = get_all_novels()   all_novels.each do |novel|     sale_count += get_browse_count(novel)   end   sale_count end 

Soon you will write down the above two methods, both of which are obtained by getting all the novel names, then calculating the page views and sales volume of each novel one by one, and finally adding the results to get the total amount.
The novel statistics are complete, and then you start to do the statistical function of computer books, the Code is as follows:

def get_computer_books_browse_count   browse_count = 0   all_computer_books = get_all_computer_books()   all_computer_books.each do |computer_book|     browse_count += get_browse_count(computer_book)   end   browse_count end  def get_computer_books_sale_count   sale_count = 0   all_computer_books = get_all_computer_books()   all_computer_books.each do |computer_book|     sale_count += get_browse_count(computer_book)   end   sale_count end 

Except that the get_all_computer_books method is used to obtain the names of all computer classes, other codes are basically the same as those in the novel statistics.
Now you have completed the statistical functions of two types of books, followed by books such as medicine, nature, history, law, politics, philosophy, tourism, and food. You suddenly realized the seriousness of some problems, and the heavy workload is nothing, but if you write it like this, your method will be exploding. So many methods can't be seen, don't mention how to use it.
At this time, you have to ask your leader for help and explain your confusion to him. I saw your leader think for a moment, and then confidently told you that using the combination mode not only can easily eliminate your confusion, but also achieve outstanding functionality.
He immediately showed you the encoding operation. First, he defined a Statistics class, which has two methods:

class Statistics      def get_browse_count     raise "You should override this method in subclass."   end      def get_sale_count     raise "You should override this method in subclass."   end    end 

Both methods simply throw an exception because the two methods need to be rewritten in the subclass.
Then define a NovelStatistics class used to count novel books, inherit the just-defined Statistics class, and override the two methods in Statistics:

class NovelStatistics < Statistics    def get_browse_count     browse_count = 0     all_novels = get_all_novels()     all_novels.each do |novel|       browse_count += get_browse_count(novel)     end     browse_count   end      def get_sale_count     sale_count = 0     all_novels = get_all_novels()     all_novels.each do |novel|       sale_count += get_browse_count(novel)     end     sale_count   end  end 

The two methods respectively calculate the page views and sales volume of novel books. In the same way, your leader defines a ComputerBookStatistics class to count the page views and sales volume of computer books:

class ComputerBookStatistics < Statistics    def get_browse_count     browse_count = 0     all_computer_books = get_all_computer_books()     all_computer_books.each do |computer_book|       browse_count += get_browse_count(computer_book)     end     browse_count   end      def get_sale_count     sale_count = 0     all_computer_books = get_all_computer_books()     all_computer_books.each do |computer_book|       sale_count += get_browse_count(computer_book)     end     sale_count   end  end 

In this way, the specific statistical implementation will be dispersed in various classes, and there will be no more explosion in the method you just created. However, you have not started to use the combination mode yet, And your leader boasted that a good show is still coming soon.

Define a new maid class to inherit Statistics, used to count the browsing volume and sales volume of medical books. The Code is as follows:

class MedicalBookStatistics < Statistics    def get_browse_count     browse_count = 0     all_medical_books = get_all_medical_books()     all_medical_books.each do |medical_book|       browse_count += get_browse_count(medical_book)     end     browse_count   end      def get_sale_count     sale_count = 0     all_medical_books = get_all_medical_books()     all_medical_books.each do |medical_book|       sale_count += get_browse_count(medical_book)     end     sale_count   end  end 

I don't know if you have found out. Computer books and medical books are actually scientific books. They can be combined. At this time, your leader defines a TechnicalStatistics class for statistics on the combination of science and technology books:

class TechnicalStatistics < Statistics    def initialize     @statistics = []     @statistics << ComputerBookStatistics.new     @statistics << MedicalBookStatistics.new   end    def get_browse_count     browse_count = 0     @statistics.each do |s|       browse_count += s.get_browse_count     end     browse_count   end      def get_sale_count     sale_count = 0     @statistics.each do |s|       sale_count += s.get_sale_count     end     sale_count   end  end 

As you can see, because this class is a combination class, it is quite different from the previous classes. First, TechnicalStatistics has a constructor. In the constructor, computer books and medical books are added to the statistics array as subcategories, and then all subcategories are traversed in the get_browse_count and get_sale_count methods respectively, calculate their respective page views and sales volume, and then sum them to get the total value.
The combination mode has excellent scalability. There are no rules or rules, and you can combine them as you want. For example, all books are composed of different categories, your leader immediately showed off how to count the page views and sales volume of all books.
Defines an AllStatistics class to inherit Statistics. The specific code is as follows:

class AllStatistics < Statistics    def initialize     @statistics = []     @statistics << NovelStatistics.new     @statistics << TechnicalStatistics.new   end    def get_browse_count     browse_count = 0     @statistics.each do |s|       browse_count += s.get_browse_count     end     browse_count   end      def get_sale_count     sale_count = 0     @statistics.each do |s|       sale_count += s.get_sale_count     end     sale_count   end  end 

In the AllStatistics constructor, novel books and scientific books are added to the statistics array as subcategories. Currently, you have only written these categories. Use the same method to calculate the page views and sales volume of all books in the get_browse_count and get_sale_count methods.
The current combination structure is as follows:

Now you can easily get the page views and sales of any classified books. For example, to get the page views of Science and Technology Books, you only need to call:

TechnicalStatistics.new.get_browse_count 

To obtain the total sales volume of all books, you only need to call:

AllStatistics.new.get_sale_count 

Of course, you can also randomly change the combination structure, add books of various seed categories, and the hierarchy of sub-categories can be any deeper. As mentioned above, the combination mode is highly scalable.
Your leader tells you that the Code he has written has a high degree of repetition. In fact, you can optimize it and remove redundant code. Of course, this task will be handed over to you. Your leader is a busy man and has been running away for a long time.

Summary

Advantages of the combination mode:
It can flexibly combine the concerns between the local object and the whole object. for the client, there is no difference between the call of the local object and the whole object, making the call simple.

Disadvantages of the combination mode:
1. The cost of combined operations is very high. If an object tree contains many sub-objects, a simple call may crash the system;
2. Object Persistence. The combination mode is a tree structure. It cannot store data well in relational databases, but is very suitable for xml persistence.

Applicable scenarios of the combination mode:
1. Maintain and display partial-overall link scenarios, such as tree menus, files, and folders.
2. scenarios where some modules or functions can be isolated from a whole.

Articles you may be interested in:
  • The template method in the design mode applies two examples in Ruby.
  • Example parsing: Use of Strategy Mode in Ruby Design Mode Programming
  • The example explains how Ruby uses the decorator mode in the design mode.
  • Example of using Builder mode in Ruby Design Mode Programming
  • Detailed description of the Application of Singleton mode in Ruby Design Mode Programming
  • Programming in Ruby design mode-Introduction to adapter Mode
  • Ruby uses code instances in the proxy mode and decoration mode in the Design Mode
  • Ruby uses the simple factory mode and factory method mode in the Design Mode
  • Application instance analysis of appearance mode in Ruby Design Mode Programming

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.