xref: /aoo41x/main/odk/examples/java/Inspector/Makefile (revision 34dd1e25)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22#*************************************************************************
23#
24#  The Contents of this file are made available subject to the terms of
25#  the BSD license.
26#
27#  Copyright 2000, 2010 Oracle and/or its affiliates.
28#  All rights reserved.
29#
30#  Redistribution and use in source and binary forms, with or without
31#  modification, are permitted provided that the following conditions
32#  are met:
33#  1. Redistributions of source code must retain the above copyright
34#     notice, this list of conditions and the following disclaimer.
35#  2. Redistributions in binary form must reproduce the above copyright
36#     notice, this list of conditions and the following disclaimer in the
37#     documentation and/or other materials provided with the distribution.
38#  3. Neither the name of Sun Microsystems, Inc. nor the names of its
39#     contributors may be used to endorse or promote products derived
40#     from this software without specific prior written permission.
41#
42#  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
43#  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
44#  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
45#  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
46#  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
47#  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
48#  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
49#  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
50#  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
51#  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
52#  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
53#
54#**************************************************************************
55
56# Builds the Java InstanceInspector component example of the SDK.
57
58PRJ=../../..
59SETTINGS=$(PRJ)/settings
60
61include $(SETTINGS)/settings.mk
62include $(SETTINGS)/std.mk
63include $(SETTINGS)/dk.mk
64
65# Define non-platform/compiler specific settings
66
67# we use the sample directory name dor separating this example
68# from others in the output directory
69SAMPLE_NAME=InstanceInspector
70SAMPLE_CLASS_OUT=$(OUT_CLASS)/$(SAMPLE_NAME)
71SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME)
72
73# some special macro names for separating the component jar stuff
74COMP_NAME=Inspector
75COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME)
76COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME)
77COMP_RDB_NAME=$(COMP_NAME).uno.rdb
78COMP_RDB=$(COMP_GEN_OUT)/$(COMP_RDB_NAME)
79COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
80COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
81COMP_JAR_NAME=$(COMP_NAME).uno.jar
82COMP_JAR=$(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME)
83COMP_JAR_MANIFEST=$(COMP_GEN_OUT)/$(COMP_NAME).uno.Manifest
84COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml
85COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag
86
87IDLFILES = InstanceInspector.idl \
88	XInstanceInspector.idl
89
90# normally the idl file should be stored in a directory tree fitting the
91# module structure, for the example we know the module structure
92PACKAGE = org/openoffice
93
94COMP_JAVAFILES = XDialogProvider.java XTreeControlProvider.java XTreePathProvider.java MethodParametersDialog.java HideableMutableTreeNode.java HideableTreeModel.java Introspector.java XUnoNode.java SwingUnoNode.java UnoNode.java XUnoMethodNode.java SwingUnoMethodNode.java UnoMethodNode.java XUnoPropertyNode.java SwingUnoPropertyNode.java UnoPropertyNode.java XUnoFacetteNode.java SwingUnoFacetteNode.java TDocSupplier.java UnoTreeRenderer.java InspectorAddon.java XLanguageSourceCodeGenerator.java SourceCodeGenerator.java InspectorPane.java SwingDialogProvider.java SwingTreeControlProvider.java SwingTreePathProvider.java Inspector.java
95COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES))
96
97GEN_CLASSFILES = $(patsubst %.idl,$(SAMPLE_CLASS_OUT)/$(PACKAGE)/%.class,$(IDLFILES))
98GEN_TYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES)))
99GEN_URDFILES = $(patsubst %.idl,$(SAMPLE_GEN_OUT)/%.urd,$(IDLFILES))
100
101# the generated types are necessary for the component jar
102GEN_CLASSFILENAMES = $(subst $(SAMPLE_CLASS_OUT)/,,$(GEN_CLASSFILES))
103
104SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
105		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\
106		$(PATH_SEPARATOR)$(COMP_CLASS_OUT))
107
108COMP_IMAGE_FILES= images/containers_16.png \
109		images/content_16.png \
110		images/interfaces_16.png \
111		images/methods_16.png \
112		images/properties_16.png \
113		images/services_16.png
114
115# Targets
116.PHONY: ALL
117ALL : JavaInspectorExample
118
119include $(SETTINGS)/stdtarget.mk
120
121# rule for component manifest file
122$(COMP_GEN_OUT)/%.Manifest :
123	-$(MKDIR) $(subst /,$(PS),$(@D))
124	@echo RegistrationClassName: $(basename $(basename $(@F)))> $@
125
126# rule for compiling the IDL files
127$(SAMPLE_GEN_OUT)/%.urd : %.idl
128	-$(MKDIR) $(subst /,$(PS),$(@D))
129	$(IDLC) -C -I. -I$(IDL_DIR) -O$(SAMPLE_GEN_OUT) $<
130
131# rule for creating the component rdb file
132$(COMP_GEN_OUT)/%.rdb : $(GEN_URDFILES)
133	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
134	-$(MKDIR) $(subst /,$(PS),$(@D))
135	$(REGMERGE) $@ /UCR $(GEN_URDFILES)
136
137# rule for creating IDL dependent class files
138$(GEN_CLASSFILES) : $(COMP_RDB)
139	-$(MKDIR) $(subst /,$(PS),$(@D))
140	$(JAVAMAKER) -BUCR -nD $(GEN_TYPELIST) -O$(SAMPLE_CLASS_OUT) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES)
141
142# component as well as application are dependent from the generated types
143# rule for component class files
144$(COMP_CLASS_OUT)/%.class : %.java $(GEN_CLASSFILES)
145	-$(MKDIR) $(subst /,$(PS),$(@D))
146	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -sourcepath . -d $(COMP_CLASS_OUT) $<
147
148# rule for component jar file
149$(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES) $(COMP_IMAGE_FILES)
150	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
151	-$(MKDIR) $(subst /,$(PS),$(@D))
152	$(SDK_JAR) cvfm $@  $< -C $(COMP_CLASS_OUT) .
153	+cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) uvf $(@F) $(GEN_CLASSFILENAMES)
154	+$(SDK_JAR) uvf $@ $(COMP_IMAGE_FILES)
155
156# rule for component package manifest
157$(COMP_GEN_OUT)/%/manifest.xml :
158	-$(MKDIR) $(subst /,$(PS),$(@D))
159	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
160	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
161	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
162	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
163	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@
164	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
165	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ProtocolHandler.xcu$(QM)"/$(CSEP) >> $@
166	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-schema$(QM)" >> $@
167	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ObjectInspector.xcs$(QM)"/$(CSEP) >> $@
168	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
169	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ObjectInspector.xcu$(QM)"/$(CSEP) >> $@
170	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)" >> $@
171	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.rdb$(QM)"/$(CSEP) >> $@
172	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-component;type=Java$(QM)" >> $@
173	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.jar$(QM)"/$(CSEP) >> $@
174	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
175
176# rule for component package file
177$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) Addons.xcu ProtocolHandler.xcu  ObjectInspector.xcu ObjectInspector.xcs $(COMP_UNOPKG_MANIFEST)
178	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
179	-$(MKDIR) $(subst /,$(PS),$(@D))
180	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) ../../../bin/$(@F) $(COMP_RDB_NAME)
181
182	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_JAR_NAME)
183	$(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu ObjectInspector.xcu ObjectInspector.xcs
184	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
185
186$(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
187ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
188	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
189	-$(MKDIR) $(subst /,$(PS),$(@D))
190	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
191	@echo flagged > $(subst /,$(PS),$@)
192else
193	@echo --------------------------------------------------------------------------------
194	@echo  If you want to install your component automatically, please set the environment
195	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
196	@echo  possible if no office instance is running.
197	@echo --------------------------------------------------------------------------------
198endif
199
200JavaInspectorExample : $(COMP_REGISTERFLAG)
201	@echo --------------------------------------------------------------------------------
202	@echo The InstanceInspector component was installed if SDK_AUTO_DEPLOYMENT = YES.
203	@echo You can use this component inside your office installation, see the example
204	@echo document.
205	@echo -
206	@echo $(MAKE) InstanceInspectorTest.odt.load
207	@echo --------------------------------------------------------------------------------
208
209InstanceInspectorTest.odt.load : $(COMP_REGISTERFLAG)
210	"$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@)
211
212.PHONY: clean
213clean :
214	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
215	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
216	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
217