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# Builds the Java InstanceInspector component example of the SDK.
23
24PRJ=../../..
25SETTINGS=$(PRJ)/settings
26
27include $(SETTINGS)/settings.mk
28include $(SETTINGS)/std.mk
29include $(SETTINGS)/dk.mk
30
31# Define non-platform/compiler specific settings
32
33# we use the sample directory name dor separating this example
34# from others in the output directory
35SAMPLE_NAME=InstanceInspector
36SAMPLE_CLASS_OUT=$(OUT_CLASS)/$(SAMPLE_NAME)
37SAMPLE_GEN_OUT=$(OUT_MISC)/$(SAMPLE_NAME)
38
39# some special macro names for separating the component jar stuff
40COMP_NAME=Inspector
41COMP_CLASS_OUT=$(SAMPLE_CLASS_OUT)/$(COMP_NAME)
42COMP_GEN_OUT=$(SAMPLE_GEN_OUT)/$(COMP_NAME)
43COMP_RDB_NAME=$(COMP_NAME).uno.rdb
44COMP_RDB=$(COMP_GEN_OUT)/$(COMP_RDB_NAME)
45COMP_PACKAGE=$(OUT_BIN)/$(COMP_NAME).$(UNOOXT_EXT)
46COMP_PACKAGE_URL=$(subst \\,\,"$(COMP_PACKAGE_DIR)$(PS)$(COMP_NAME).$(UNOOXT_EXT)")
47COMP_JAR_NAME=$(COMP_NAME).uno.jar
48COMP_JAR=$(SAMPLE_CLASS_OUT)/$(COMP_JAR_NAME)
49COMP_JAR_MANIFEST=$(COMP_GEN_OUT)/$(COMP_NAME).uno.Manifest
50COMP_UNOPKG_MANIFEST = $(COMP_GEN_OUT)/META-INF/manifest.xml
51COMP_REGISTERFLAG=$(COMP_GEN_OUT)$(PS)java_$(COMP_NAME)_register_component.flag
52
53IDLFILES = InstanceInspector.idl \
54	XInstanceInspector.idl
55
56# normally the idl file should be stored in a directory tree fitting the
57# module structure, for the example we know the module structure
58PACKAGE = org/openoffice
59
60COMP_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
61COMP_CLASSFILES = $(patsubst %.java,$(COMP_CLASS_OUT)/%.class,$(COMP_JAVAFILES))
62
63GEN_CLASSFILES = $(patsubst %.idl,$(SAMPLE_CLASS_OUT)/$(PACKAGE)/%.class,$(IDLFILES))
64GEN_TYPELIST = $(subst /,.,$(patsubst %.idl,-T$(PACKAGE)/% ,$(IDLFILES)))
65GEN_URDFILES = $(patsubst %.idl,$(SAMPLE_GEN_OUT)/%.urd,$(IDLFILES))
66
67# the generated types are necessary for the component jar
68GEN_CLASSFILENAMES = $(subst $(SAMPLE_CLASS_OUT)/,,$(GEN_CLASSFILES))
69
70SDK_CLASSPATH = $(subst $(EMPTYSTRING) $(PATH_SEPARATOR),$(PATH_SEPARATOR),$(CLASSPATH)\
71		$(PATH_SEPARATOR)$(SAMPLE_CLASS_OUT)\
72		$(PATH_SEPARATOR)$(COMP_CLASS_OUT))
73
74COMP_IMAGE_FILES= images/containers_16.png \
75		images/content_16.png \
76		images/interfaces_16.png \
77		images/methods_16.png \
78		images/properties_16.png \
79		images/services_16.png
80
81# Targets
82.PHONY: ALL
83ALL : JavaInspectorExample
84
85include $(SETTINGS)/stdtarget.mk
86
87# rule for component manifest file
88$(COMP_GEN_OUT)/%.Manifest :
89	-$(MKDIR) $(subst /,$(PS),$(@D))
90	@echo RegistrationClassName: $(basename $(basename $(@F)))> $@
91
92# rule for compiling the IDL files
93$(SAMPLE_GEN_OUT)/%.urd : %.idl
94	-$(MKDIR) $(subst /,$(PS),$(@D))
95	$(IDLC) -C -I. -I$(IDL_DIR) -O$(SAMPLE_GEN_OUT) $<
96
97# rule for creating the component rdb file
98$(COMP_GEN_OUT)/%.rdb : $(GEN_URDFILES)
99	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
100	-$(MKDIR) $(subst /,$(PS),$(@D))
101	$(REGMERGE) $@ /UCR $(GEN_URDFILES)
102
103# rule for creating IDL dependent class files
104$(GEN_CLASSFILES) : $(COMP_RDB)
105	-$(MKDIR) $(subst /,$(PS),$(@D))
106	$(JAVAMAKER) -BUCR -nD $(GEN_TYPELIST) -O$(SAMPLE_CLASS_OUT) $(COMP_RDB) -X$(URE_TYPES) -X$(OFFICE_TYPES)
107
108# component as well as application are dependent from the generated types
109# rule for component class files
110$(COMP_CLASS_OUT)/%.class : %.java $(GEN_CLASSFILES)
111	-$(MKDIR) $(subst /,$(PS),$(@D))
112	$(SDK_JAVAC) $(JAVAC_FLAGS) -classpath "$(SDK_CLASSPATH)" -sourcepath . -d $(COMP_CLASS_OUT) $<
113
114# rule for component jar file
115$(COMP_JAR) : $(COMP_JAR_MANIFEST) $(COMP_CLASSFILES) $(COMP_IMAGE_FILES)
116	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
117	-$(MKDIR) $(subst /,$(PS),$(@D))
118	$(SDK_JAR) cvfm $@  $< -C $(COMP_CLASS_OUT) .
119	+cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_JAR) uvf $(@F) $(GEN_CLASSFILENAMES)
120	+$(SDK_JAR) uvf $@ $(COMP_IMAGE_FILES)
121
122# rule for component package manifest
123$(COMP_GEN_OUT)/%/manifest.xml :
124	-$(MKDIR) $(subst /,$(PS),$(@D))
125	@echo $(OSEP)?xml version="$(QM)1.0$(QM)" encoding="$(QM)UTF-8$(QM)"?$(CSEP) > $@
126	@echo $(OSEP)!DOCTYPE manifest:manifest PUBLIC "$(QM)-//OpenOffice.org//DTD Manifest 1.0//EN$(QM)" "$(QM)Manifest.dtd$(QM)"$(CSEP) >> $@
127	@echo $(OSEP)manifest:manifest xmlns:manifest="$(QM)http://openoffice.org/2001/manifest$(QM)"$(CSEP) >> $@
128	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
129	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)Addons.xcu$(QM)"/$(CSEP) >> $@
130	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
131	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ProtocolHandler.xcu$(QM)"/$(CSEP) >> $@
132	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-schema$(QM)" >> $@
133	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ObjectInspector.xcs$(QM)"/$(CSEP) >> $@
134	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.configuration-data$(QM)" >> $@
135	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)ObjectInspector.xcu$(QM)"/$(CSEP) >> $@
136	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-typelibrary;type=RDB$(QM)" >> $@
137	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.rdb$(QM)"/$(CSEP) >> $@
138	@echo $(SQM)  $(SQM)$(OSEP)manifest:file-entry manifest:media-type="$(QM)application/vnd.sun.star.uno-component;type=Java$(QM)" >> $@
139	@echo $(SQM)                       $(SQM)manifest:full-path="$(QM)$(subst /META-INF,,$(subst $(SAMPLE_GEN_OUT)/,,$(@D))).uno.jar$(QM)"/$(CSEP) >> $@
140	@echo $(OSEP)/manifest:manifest$(CSEP) >> $@
141
142# rule for component package file
143$(COMP_PACKAGE) : $(COMP_RDB) $(COMP_JAR) Addons.xcu ProtocolHandler.xcu  ObjectInspector.xcu ObjectInspector.xcs $(COMP_UNOPKG_MANIFEST)
144	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
145	-$(MKDIR) $(subst /,$(PS),$(@D))
146	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) ../../../bin/$(@F) $(COMP_RDB_NAME)
147
148	cd $(subst /,$(PS),$(SAMPLE_CLASS_OUT)) && $(SDK_ZIP) -u ../../bin/$(@F) $(COMP_JAR_NAME)
149	$(SDK_ZIP) -u $@ Addons.xcu ProtocolHandler.xcu ObjectInspector.xcu ObjectInspector.xcs
150	cd $(subst /,$(PS),$(COMP_GEN_OUT)) && $(SDK_ZIP) -u ../../../bin/$(@F) META-INF/manifest.xml
151
152$(COMP_REGISTERFLAG) : $(COMP_PACKAGE)
153ifeq "$(SDK_AUTO_DEPLOYMENT)" "YES"
154	-$(DEL) $(subst \\,\,$(subst /,$(PS),$@))
155	-$(MKDIR) $(subst /,$(PS),$(@D))
156	$(DEPLOYTOOL) $(COMP_PACKAGE_URL)
157	@echo flagged > $(subst /,$(PS),$@)
158else
159	@echo --------------------------------------------------------------------------------
160	@echo  If you want to install your component automatically, please set the environment
161	@echo  variable SDK_AUTO_DEPLOYMENT = YES. But note that auto deployment is only
162	@echo  possible if no office instance is running.
163	@echo --------------------------------------------------------------------------------
164endif
165
166JavaInspectorExample : $(COMP_REGISTERFLAG)
167	@echo --------------------------------------------------------------------------------
168	@echo The InstanceInspector component was installed if SDK_AUTO_DEPLOYMENT = YES.
169	@echo You can use this component inside your office installation, see the example
170	@echo document.
171	@echo -
172	@echo $(MAKE) InstanceInspectorTest.odt.load
173	@echo --------------------------------------------------------------------------------
174
175InstanceInspectorTest.odt.load : $(COMP_REGISTERFLAG)
176	"$(OFFICE_PROGRAM_PATH)$(PS)soffice" $(basename $@)
177
178.PHONY: clean
179clean :
180	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_CLASS_OUT))
181	-$(DELRECURSIVE) $(subst /,$(PS),$(SAMPLE_GEN_OUT))
182	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(COMP_PACKAGE_URL)))
183