Line data Source code
1 : // Copyright (C) 2015 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.mime; 16 : 17 : import com.google.gerrit.server.ioutil.HostPlatform; 18 : import com.google.inject.AbstractModule; 19 : import com.google.inject.Provides; 20 : import com.google.inject.Singleton; 21 : import eu.medsea.mimeutil.MimeUtil2; 22 : import eu.medsea.mimeutil.detector.ExtensionMimeDetector; 23 : import eu.medsea.mimeutil.detector.MagicMimeMimeDetector; 24 : 25 138 : public class MimeUtil2Module extends AbstractModule { 26 : @Override 27 138 : protected void configure() {} 28 : 29 : @Provides 30 : @Singleton 31 : MimeUtil2 provideMimeUtil2() { 32 138 : MimeUtil2 m = new MimeUtil2(); 33 138 : m.registerMimeDetector(ExtensionMimeDetector.class.getName()); 34 138 : m.registerMimeDetector(MagicMimeMimeDetector.class.getName()); 35 138 : if (HostPlatform.isWin32()) { 36 0 : m.registerMimeDetector("eu.medsea.mimeutil.detector.WindowsRegistryMimeDetector"); 37 : } 38 138 : m.registerMimeDetector(DefaultFileExtensionRegistry.class.getName()); 39 138 : return m; 40 : } 41 : }