Remove @Deprecated ClassLoaderUtils as it's now in yangtools.util
[mdsal.git] / binding / mdsal-binding-generator-util / src / test / java / org / opendaylight / yangtools / binding / generator / util / RetestUtils.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.yangtools.binding.generator.util;
10
11 import java.util.Collection;
12
13 import java.io.FileNotFoundException;
14 import java.io.FileInputStream;
15 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangStatementSourceImpl;
16 import java.io.File;
17 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
18 import org.opendaylight.yangtools.yang.parser.spi.source.StatementStreamSource;
19 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
20 import org.opendaylight.yangtools.yang.parser.spi.source.SourceException;
21 import org.opendaylight.yangtools.yang.parser.stmt.reactor.CrossSourceStatementReactor;
22 import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.YangInferencePipeline;
23
24 public class RetestUtils {
25
26     private RetestUtils() {
27         throw new UnsupportedOperationException("Utility class");
28     }
29
30     public static SchemaContext parseYangSources(StatementStreamSource... sources)
31             throws SourceException, ReactorException {
32
33         CrossSourceStatementReactor.BuildAction reactor = YangInferencePipeline.RFC6020_REACTOR
34                 .newBuild();
35         reactor.addSources(sources);
36
37         return reactor.buildEffective();
38     }
39
40     public static SchemaContext parseYangSources(File... files) throws SourceException, ReactorException, FileNotFoundException {
41
42         StatementStreamSource[] sources = new StatementStreamSource[files.length];
43
44         for(int i = 0; i<files.length; i++) {
45             sources[i] = new YangStatementSourceImpl(new FileInputStream(files[i]));
46         }
47
48         return parseYangSources(sources);
49     }
50
51     public static SchemaContext parseYangSources(Collection<File> files) throws SourceException, ReactorException, FileNotFoundException {
52         return parseYangSources(files.toArray(new File[files.size()]));
53     }
54 }