1*122c3632SJürgen Schmidt#**************************************************************
2*122c3632SJürgen Schmidt#
3*122c3632SJürgen Schmidt#  Licensed to the Apache Software Foundation (ASF) under one
4*122c3632SJürgen Schmidt#  or more contributor license agreements.  See the NOTICE file
5*122c3632SJürgen Schmidt#  distributed with this work for additional information
6*122c3632SJürgen Schmidt#  regarding copyright ownership.  The ASF licenses this file
7*122c3632SJürgen Schmidt#  to you under the Apache License, Version 2.0 (the
8*122c3632SJürgen Schmidt#  "License"); you may not use this file except in compliance
9*122c3632SJürgen Schmidt#  with the License.  You may obtain a copy of the License at
10*122c3632SJürgen Schmidt#
11*122c3632SJürgen Schmidt#    http://www.apache.org/licenses/LICENSE-2.0
12*122c3632SJürgen Schmidt#
13*122c3632SJürgen Schmidt#  Unless required by applicable law or agreed to in writing,
14*122c3632SJürgen Schmidt#  software distributed under the License is distributed on an
15*122c3632SJürgen Schmidt#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*122c3632SJürgen Schmidt#  KIND, either express or implied.  See the License for the
17*122c3632SJürgen Schmidt#  specific language governing permissions and limitations
18*122c3632SJürgen Schmidt#  under the License.
19cdf0e10cSrcweir#
20*122c3632SJürgen Schmidt#**************************************************************
21cdf0e10cSrcweir
22cdf0e10cSrcweir# Builds the C++ DocumentLoader example of the SDK.
23cdf0e10cSrcweir
24cdf0e10cSrcweirPRJ=../../..
25cdf0e10cSrcweirSETTINGS=$(PRJ)/settings
26cdf0e10cSrcweir
27cdf0e10cSrcweirinclude $(SETTINGS)/settings.mk
28cdf0e10cSrcweirinclude $(SETTINGS)/std.mk
29cdf0e10cSrcweirinclude $(SETTINGS)/dk.mk
30cdf0e10cSrcweir
31cdf0e10cSrcweir# Define non-platform/compiler specific settings
32cdf0e10cSrcweirCOMPONENT_NAME=DocumentLoader
33cdf0e10cSrcweir
34cdf0e10cSrcweirOUT_COMP_INC = $(OUT_INC)/$(COMPONENT_NAME)
35cdf0e10cSrcweirOUT_COMP_GEN = $(OUT_MISC)/$(COMPONENT_NAME)
36cdf0e10cSrcweirOUT_COMP_OBJ=$(OUT_OBJ)/$(COMPONENT_NAME)
37cdf0e10cSrcweir
38cdf0e10cSrcweirCXXFILES = DocumentLoader.cxx
39cdf0e10cSrcweir
40cdf0e10cSrcweirOBJFILES = $(patsubst %.cxx,$(OUT_SLO_COMP)/%.$(OBJ_EXT),$(CXXFILES))
41cdf0e10cSrcweir
42cdf0e10cSrcweirENV_OFFICE_TYPES=-env:URE_MORE_TYPES=$(URLPREFIX)$(OFFICE_TYPES)
43cdf0e10cSrcweir
44cdf0e10cSrcweir# Targets
45cdf0e10cSrcweir.PHONY: ALL
46cdf0e10cSrcweirALL : \
47cdf0e10cSrcweir	CppDocumentLoaderExample
48cdf0e10cSrcweir
49cdf0e10cSrcweirinclude $(SETTINGS)/stdtarget.mk
50cdf0e10cSrcweir
51cdf0e10cSrcweir$(OUT_COMP_OBJ)/%.$(OBJ_EXT) : %.cxx $(SDKTYPEFLAG)
52cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
53cdf0e10cSrcweir	$(CC) $(CC_FLAGS) $(CC_INCLUDES) -I$(OUT_COMP_INC) $(CC_DEFINES) $(CC_OUTPUT_SWITCH)$(subst /,$(PS),$@) $<
54cdf0e10cSrcweir
55cdf0e10cSrcweir$(OUT_BIN)/DocumentLoader$(EXE_EXT) : $(OUT_COMP_OBJ)/DocumentLoader.$(OBJ_EXT)
56cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(@D))
57cdf0e10cSrcweir	-$(MKDIR) $(subst /,$(PS),$(OUT_COMP_GEN))
58cdf0e10cSrcweirifeq "$(OS)" "WIN"
59cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) /OUT:$@ /MAP:$(OUT_COMP_GEN)/$(basename $(@F)).map \
60cdf0e10cSrcweir	  $< $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB)
61cdf0e10cSrcweirelse
62cdf0e10cSrcweir	$(LINK) $(EXE_LINK_FLAGS) $(LINK_LIBS) -o $@ $< \
63cdf0e10cSrcweir	  $(CPPUHELPERLIB) $(CPPULIB) $(SALHELPERLIB) $(SALLIB) $(STLPORTLIB) $(STDC++LIB) $(CPPUHELPERDYLIB) $(CPPUDYLIB) $(SALHELPERDYLIB) $(SALDYLIB)
64cdf0e10cSrcweirifeq "$(OS)" "MACOSX"
65cdf0e10cSrcweir	$(INSTALL_NAME_URELIBS_BIN)  $@
66cdf0e10cSrcweirendif
67cdf0e10cSrcweirendif
68cdf0e10cSrcweir
69cdf0e10cSrcweirCppDocumentLoaderExample : $(OUT_BIN)/DocumentLoader$(EXE_EXT)
70cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
71cdf0e10cSrcweir	@echo The example loads the "$(QM)test.odt$(QM)" document in the DocumentLoader example directory.
72cdf0e10cSrcweir	@echo If you want to load your own document, please use:
73cdf0e10cSrcweir	@echo $(SQM)  $(SQM)DocumentLoader -env:URE_MORE_TYPES="$(QM)<fileurl_office_types_rdb>$(QM)" "$(QM)filename$(QM)" [connection_url]
74cdf0e10cSrcweir	@echo -
75cdf0e10cSrcweir	@echo Use the following command to execute the example!
76cdf0e10cSrcweir	@echo -
77cdf0e10cSrcweir	@echo $(MAKE) DocumentLoader.run
78cdf0e10cSrcweir	@echo -
79cdf0e10cSrcweir	@echo NOTE: This example does not use the new UNO bootstrap mechanism, it uses still a socket
80cdf0e10cSrcweir	@echo $(SQM)      $(SQM)connection. The example use the defaultBootstrap_InitialComponentContext method and provides
81cdf0e10cSrcweir	@echo $(SQM)      $(SQM)the additional office types via the UNO environment variable -env:URE_MORE_TYPES=...
82cdf0e10cSrcweir	@echo $(SQM)      $(SQM)Before you can run this example you have to start your office in listening mode.
83cdf0e10cSrcweir	@echo -
84cdf0e10cSrcweir	@echo $(SQM)  $(SQM)soffice "$(QM)-accept=socket,host=localhost,port=2083;urp;StarOffice.ServiceManager$(QM)"
85cdf0e10cSrcweir	@echo --------------------------------------------------------------------------------
86cdf0e10cSrcweir
87cdf0e10cSrcweir%.run: $(OUT_BIN)/DocumentLoader$(EXE_EXT)
88cdf0e10cSrcweir	cd $(subst /,$(PS),$(OUT_BIN)) && $(basename $@) $(ENV_OFFICE_TYPES) $(subst \\,/,$(subst /,$(PS),"$(OO_SDK_HOME)/examples/cpp/DocumentLoader/test.odt"))
89cdf0e10cSrcweir
90cdf0e10cSrcweir.PHONY: clean
91cdf0e10cSrcweirclean :
92cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_INC))
93cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_GEN))
94cdf0e10cSrcweir	-$(DELRECURSIVE) $(subst /,$(PS),$(OUT_COMP_OBJ))
95cdf0e10cSrcweir	-$(DEL) $(subst \\,\,$(subst /,$(PS),$(OUT_BIN)/DocumentLoader*))
96