]> git.uio.no Git - u/mrichter/AliRoot.git/blob - cmake/FindDATE.cmake
Final TOF DAs
[u/mrichter/AliRoot.git] / cmake / FindDATE.cmake
1 # **************************************************************************
2 # * Copyright(c) 1998-2014, ALICE Experiment at CERN, All rights reserved. *
3 # *                                                                        *
4 # * Author: The ALICE Off-line Project.                                    *
5 # * Contributors are mentioned in the code where appropriate.              *
6 # *                                                                        *
7 # * Permission to use, copy, modify and distribute this software and its   *
8 # * documentation strictly for non-commercial purposes is hereby granted   *
9 # * without fee, provided that the above copyright notice appears in all   *
10 # * copies and that both the copyright notice and this permission notice   *
11 # * appear in the supporting documentation. The authors make no claims     *
12 # * about the suitability of this software for any purpose. It is          *
13 # * provided "as is" without express or implied warranty.                  *
14 # **************************************************************************
15
16 # Find DATE DAQ installation using date-config
17 # Requires: 
18 #       - date-config has to be found in the PATH
19 #       - Environment variables
20 #               - DATE_ROOT // try to not use
21 #               - DATE_COMMON_DEFS // try to not use
22 #               - DATE_MONITOR_DIR //try not to use
23 # - DATE_VERSION - DATE version as reported by date-config
24 # - DATE_VERSION_MAJOR
25 # - DATE_VERSIOM_MINOR
26 # - DATE_CONFIG - path to date-config script
27 # - DATE_CFLAGS - cflags reported by date-config
28 # - DATE_LDFLAGS - ldflags reported by date-config
29 # - DATE_LIBS - DATE libs to be linked against to reported by date-config --libs
30 # - DATE_LIBRARIES - DATE libs as as list as extracted from date-config --libs
31 # - DATE_MONLIBS - static monitorlibs reported by date-config --monitorlibs without shift
32 # - DATE_DYNMONLIBS - dynamic monitorlibs reported by date-config --monitorlibs without shift
33 # - DATE_MONLIBRARIES - DATE monitor libs as a list extracted from the date-config --monitorlibs
34 # - DATE_STATICMON - DATE static monitor libs needed by the DA
35 # - DATE_RCPROXYLIBS - rcproxylibs reported by date-config --rcproxylibs
36 # - DATE_RCPROXYLIBRARIES - rcproxylibs as a list as extracted from date-config --rcproxylibs
37
38 #########################
39 # Functions definitions
40 #########################
41
42 # A function to find all the libraries listed in library_list. The list contains the short
43 # names of libraries (ie. Db instead of libDb.so). 
44 # Libraries are search in library_paths. 
45 # It returns the list of libraries, with full path and full name.
46 # Author: Barthelemy Von Haller
47 function(find_date_libraries _output library_list library_paths)
48     FOREACH (LIB ${library_list})
49         # Find first static, this is used by the DA
50         find_library(DATE_LIBRARY_${LIB} NAMES "lib${LIB}.a" PATHS ${library_paths})
51         
52         if(NOT DATE_LIBRARY_${LIB})
53             find_library(DATE_LIBRARY_${LIB} NAMES ${LIB}  PATHS ${library_paths})
54         endif()
55         
56         mark_as_advanced(DATE_LIBRARY_${LIB})
57         set(_output_tmp ${_output_tmp} ${DATE_LIBRARY_${LIB}})
58     ENDFOREACH (LIB ${library_list})
59     
60     set(${_output} ${_output_tmp} PARENT_SCOPE)
61 endfunction(find_date_libraries _output library_list library_paths)
62
63 # DATE_CONFIG set from the configuration
64 if(DATE_CONFIG)
65     # Checking DATE version
66     execute_process(COMMAND ${DATE_CONFIG} --version OUTPUT_VARIABLE DATE_VERSION ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
67     if(error)
68         message(FATAL_ERROR "Error retrieving DATE version : ${error}")
69     endif(error)
70     string(STRIP ${DATE_VERSION} DATE_VERSION)
71
72     # Extract major, minor, and patch versions from
73     string(REGEX REPLACE "^([0-9]+)\\.[0-9]+" "\\1" DATE_VERSION_MAJOR "${DATE_VERSION}")
74     string(REGEX REPLACE "^[0-9]+\\.([0-9]+)" "\\1" DATE_VERSION_MINOR "${DATE_VERSION}")
75     message(STATUS "DATE version ${DATE_VERSION_MAJOR}.${DATE_VERSION_MINOR} found.")
76     
77     # setting the cflags
78     execute_process(COMMAND ${DATE_CONFIG} --cflags OUTPUT_VARIABLE DATE_CFLAGS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
79     if(error)
80         message(FATAL_ERROR "Error retrieving DATE cflags : ${error}")
81     endif(error)
82     
83     # If flags not empty we strip them
84     if(DATE_CFLAGS)
85         string(STRIP ${DATE_CFLAGS} DATE_CFLAGS)
86     endif()
87     
88     set(DATE_CFLAGS "-DALI_DATE ${DATE_CFLAGS}")
89
90     # setting the ldflags
91     execute_process(COMMAND ${DATE_CONFIG} --ldflags OUTPUT_VARIABLE DATE_LDFLAGS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
92     if(error)
93         message(FATAL_ERROR "Error retrieving DATE ldflags : ${error}")
94     endif(error)
95     
96     # If the flags are not empty we strip them
97     if(DATE_LDFLAGS)
98         string(STRIP ${DATE_LDFLAGS} DATE_LDFLAGS)
99     endif()
100
101     # setting the libs
102     execute_process(COMMAND ${DATE_CONFIG} --libs OUTPUT_VARIABLE DATE_LIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
103     if(error)
104         message(FATAL_ERROR "Error retrieving DATE libs : ${error}")
105     endif(error)
106     
107     # If the flags are not empty we strip them
108     if(DATE_LIBS)
109         string(STRIP ${DATE_LIBS} DATE_LIBS)
110     endif()
111     
112     # DATE_LIBRARIES
113     # Extracting the list of dynamic and static libraries from the --libs 
114     # The list is needed during the generation of the DAs
115     # using a find_library in order to get the full path and not need to use -L during linking of the DAs
116     string(REGEX MATCHALL "[-]l[^- ]+" DATE_LIBRARIES_TMP ${DATE_LIBS})
117     string(REGEX REPLACE "[-]l" ";" DATE_LIBRARIES_TMP ${DATE_LIBRARIES_TMP})
118     # Get the list of search path using -Lyyy -> yyy
119     string(REGEX MATCHALL "[-]L[^- ]+" DATE_LIBRARIES_PATH_TMP ${DATE_LIBS})
120     string(REGEX REPLACE "[-]L" ";" DATE_LIBRARIES_PATH_TMP ${DATE_LIBRARIES_PATH_TMP})
121     find_date_libraries(DATE_LIBRARIES "${DATE_LIBRARIES_TMP}" "${DATE_LIBRARIES_PATH_TMP}")
122     
123     # Fix for mysql bug https://bugs.launchpad.net/percona-server/+bug/1287374
124     set(DATE_LIBS "${DATE_LIBS} -L/usr/lib64/mysql/")
125     
126     # setting the monlibs
127     execute_process(COMMAND ${DATE_CONFIG} --monitorlibs=noshift OUTPUT_VARIABLE DATE_MONLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
128     if(error)
129         message(FATAL_ERROR "Error retrieving DATE monitorlibs : ${error}")
130     endif(error)
131     
132     # If the flags are not empty we strip them
133     if(DATE_MONLIBS)
134         string(STRIP ${DATE_MONLIBS} DATE_MONLIBS)
135     endif()
136
137     # DATE_MONLIBRARIES
138     # Extracting the list of dynamic and static libraries from the --libs 
139     # The list is needed during the generation of the DAs
140     # Removing everything that starts with - to leave all the static libraries
141     # Replacing space with ; to create a list that will be sent to the linked 
142     string(REGEX REPLACE "-[^ \r\n\t].+( |$)?" "" DATE_STATICMON ${DATE_MONLIBS})
143     if(DATE_STATICMON)
144         string(REPLACE " " ";"  DATE_STATICMON ${DATE_STATICMON})
145     endif(DATE_STATICMON)
146     
147     # Extracting all the shared libraries 
148     # using a find_library in order to get the full path and not need to use -L during linking of the DAs
149     string(REGEX MATCHALL "[-]l[^- ]+" DATE_MONLIBRARIES_TMP ${DATE_MONLIBS})
150     string(REGEX REPLACE "[-]l" ";" DATE_MONLIBRARIES_TMP ${DATE_MONLIBRARIES_TMP})
151     # Get the list of search path using -Lyyy -> yyy
152     string(REGEX MATCHALL "[-]L[^- ]+" DATE_MONLIBRARIES_PATH_TMP ${DATE_MONLIBS})
153     string(REGEX REPLACE "[-]L" ";" DATE_MONLIBRARIES_PATH_TMP ${DATE_MONLIBRARIES_PATH_TMP})
154     find_date_libraries(DATE_MONLIBRARIES "${DATE_MONLIBRARIES_TMP}" "${DATE_MONLIBRARIES_PATH_TMP}")
155     set(DATE_MONLIBRARIES ${DATE_STATICMON} ${DATE_MONLIBRARIES})
156     
157     # Fix for mysql bug https://bugs.launchpad.net/percona-server/+bug/1287374
158     set(DATE_MONLIBS "${DATE_MONLIBS} -L/usr/lib64/mysql/")
159
160     # setting the rclibs
161     execute_process(COMMAND ${DATE_CONFIG} --rcproxylibs OUTPUT_VARIABLE DATE_RCPROXYLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
162     if(error)
163         message(FATAL_ERROR "Error retrieving DATE rcproxylibs")
164     endif(error)
165
166     # If the flags are not empty we strip them
167     if(DATE_RCPROXYLIBS)
168         string(STRIP ${DATE_RCPROXYLIBS} DATE_RCPROXYLIBS)
169     endif()
170
171     # DATE_LIBRARIES
172     # Extracting the list of dynamic and static libraries from the --libs 
173     # The list is needed during the generation of the DAs
174     string(REGEX MATCHALL "[-]l[^- ]+" DATE_RCPROXYLIBRARIES_TMP ${DATE_RCPROXYLIBS})
175     string(REGEX REPLACE "[-]l" ";" DATE_RCPROXYLIBRARIES_TMP ${DATE_RCPROXYLIBRARIES_TMP})
176     # Get the list of search path using -Lyyy -> yyy
177     string(REGEX MATCHALL "[-]L[^- ]+" DATE_RCPROXYLIBRARIES_PATH_TMP ${DATE_RCPROXYLIBS})
178     string(REGEX REPLACE "[-]L" ";" DATE_RCPROXYLIBRARIES_PATH_TMP ${DATE_RCPROXYLIBRARIES_PATH_TMP})
179     find_date_libraries(DATE_RCPROXYLIBRARIES "${DATE_RCPROXYLIBRARIES_TMP}" "${DATE_RCPROXYLIBRARIES_PATH_TMP}")
180
181     # setting the monlibs
182     execute_process(COMMAND ${DATE_CONFIG} --monitorlibs=dyn OUTPUT_VARIABLE DATE_DYNMONLIBS ERROR_VARIABLE error OUTPUT_STRIP_TRAILING_WHITESPACE )
183     if(error)
184         message(FATAL_ERROR "Error retrieving DATE monitorlibs : ${error}")
185     endif(error)
186     
187     # If the flags are not empty we strip them
188     if(DATE_DYNMONLIBS)
189         string(STRIP ${DATE_DYNMONLIBS} DATE_DYNMONLIBS)
190     endif()
191
192     set(DATE_FOUND TRUE)
193 else()
194     message(STATUS "DATE not found")
195 endif(DATE_CONFIG)
196