220797e8fda2429c43eaaab6c19f98063c1bf309
[mir.git] / source / mircoders / localizer / MirCachingLocalizerDecorator.java
1 /*
2  * Copyright (C) 2001, 2002 The Mir-coders group
3  *
4  * This file is part of Mir.
5  *
6  * Mir is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * Mir is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Mir; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  * In addition, as a special exception, The Mir-coders gives permission to link
21  * the code of this program with  any library licensed under the Apache Software License,
22  * The Sun (tm) Java Advanced Imaging library (JAI), The Sun JIMI library
23  * (or with modified versions of the above that use the same license as the above),
24  * and distribute linked combinations including the two.  You must obey the
25  * GNU General Public License in all respects for all of the code used other than
26  * the above mentioned libraries.  If you modify this file, you may extend this
27  * exception to your version of the file, but you are not obligated to do so.
28  * If you do not wish to do so, delete this exception statement from your version.
29  */
30
31 package mircoders.localizer;
32
33 import mir.entity.adapter.EntityAdapterModel;
34 import mir.generator.Generator;
35 import mir.generator.WriterEngine;
36
37 public class MirCachingLocalizerDecorator implements MirLocalizer {
38   private MirLocalizer localizer;
39   private MirProducerLocalizer producerLocalizer;
40   private MirGeneratorLocalizer generatorLocalizer;
41   private MirOpenPostingLocalizer openPostingsLocalizer;
42   private MirProducerAssistantLocalizer producerAssistantLocalizer;
43   private MirDataModelLocalizer dataModelLocalizer;
44   private MirAdminInterfaceLocalizer adminInterfaceLocalizer;
45
46   public MirCachingLocalizerDecorator(MirLocalizer aLocalizer) {
47     localizer = aLocalizer;
48   }
49
50   public MirProducerLocalizer producers() throws MirLocalizerFailure, MirLocalizerExc {
51     if (producerLocalizer==null) {
52       producerLocalizer = localizer.producers();
53     }
54
55     return producerLocalizer;
56   }
57
58   public MirGeneratorLocalizer generators() throws MirLocalizerFailure, MirLocalizerExc {
59     if (generatorLocalizer==null) {
60       generatorLocalizer = new MirCachingGeneratorLocalizer(localizer.generators());
61     }
62
63     return generatorLocalizer;
64   }
65
66   public MirOpenPostingLocalizer openPostings() throws MirLocalizerFailure, MirLocalizerExc {
67     if (openPostingsLocalizer==null) {
68       openPostingsLocalizer = localizer.openPostings();
69     }
70
71     return openPostingsLocalizer;
72   }
73
74   public MirProducerAssistantLocalizer producerAssistant() throws MirLocalizerFailure, MirLocalizerExc {
75     if (producerAssistantLocalizer==null) {
76       producerAssistantLocalizer = localizer.producerAssistant();
77     }
78
79     return producerAssistantLocalizer;
80   }
81
82   public MirDataModelLocalizer dataModel() throws MirLocalizerFailure, MirLocalizerExc {
83     if (dataModelLocalizer==null) {
84       dataModelLocalizer = new MirCachingDatamodelLocalizer(localizer.dataModel());
85     }
86
87     return dataModelLocalizer;
88   }
89
90   public MirAdminInterfaceLocalizer adminInterface() throws MirLocalizerFailure, MirLocalizerExc {
91     if (adminInterfaceLocalizer==null) {
92       adminInterfaceLocalizer = localizer.adminInterface();
93     }
94
95     return adminInterfaceLocalizer;
96   };
97
98   private static class MirCachingDatamodelLocalizer implements MirDataModelLocalizer {
99     private MirDataModelLocalizer master;
100     private EntityAdapterModel adapterModel;
101
102     public MirCachingDatamodelLocalizer(MirDataModelLocalizer aMaster) {
103       master = aMaster;
104       adapterModel = null;
105     }
106
107     public EntityAdapterModel adapterModel() throws MirLocalizerExc, MirLocalizerFailure {
108       if (adapterModel==null) {
109         adapterModel = master.adapterModel();
110       }
111
112       return adapterModel;
113     };
114
115   }
116
117   private static class MirCachingGeneratorLocalizer implements MirGeneratorLocalizer {
118     private MirGeneratorLocalizer master;
119     private WriterEngine writerEngine;
120     private Generator.GeneratorLibrary producerGeneratorLibrary;
121     private Generator.GeneratorLibrary adminGeneratorLibrary;
122     private Generator.GeneratorLibrary openPostingGeneratorLibrary;
123
124     public MirCachingGeneratorLocalizer(MirGeneratorLocalizer aMaster) {
125       master = aMaster;
126     }
127
128     public WriterEngine makeWriterEngine() throws MirLocalizerExc, MirLocalizerFailure {
129       if (writerEngine==null) {
130         writerEngine = master.makeWriterEngine();
131       }
132
133       return writerEngine;
134     };
135
136     public Generator.GeneratorLibrary makeProducerGeneratorLibrary() throws MirLocalizerExc, MirLocalizerFailure {
137       if (producerGeneratorLibrary==null) {
138         producerGeneratorLibrary = master.makeProducerGeneratorLibrary();
139       }
140
141       return producerGeneratorLibrary;
142     };
143
144     public Generator.GeneratorLibrary makeAdminGeneratorLibrary() throws MirLocalizerExc, MirLocalizerFailure {
145       if (adminGeneratorLibrary==null) {
146         adminGeneratorLibrary = master.makeAdminGeneratorLibrary();
147       }
148
149       return adminGeneratorLibrary;
150     };
151
152     public Generator.GeneratorLibrary makeOpenPostingGeneratorLibrary() throws MirLocalizerExc, MirLocalizerFailure {
153       if (openPostingGeneratorLibrary==null) {
154         openPostingGeneratorLibrary = master.makeOpenPostingGeneratorLibrary();
155       }
156
157       return openPostingGeneratorLibrary;
158     };
159   }
160
161 }