Paul Martin
2016-04-16 eecaad8b8e2c447429c31a01d49260ddd6b4ee03
commit | author | age
bd0e83 1 /*
PM 2  * Copyright 2015 gitblit.com.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package com.gitblit.manager;
17
18 import java.io.File;
19 import java.io.InputStream;
20 import java.io.OutputStream;
21 import java.util.List;
22
23 import com.gitblit.models.FilestoreModel;
24 import com.gitblit.models.RepositoryModel;
25 import com.gitblit.models.UserModel;
26
27
28 public interface IFilestoreManager extends IManager {
29
30     boolean isValidOid(String oid);
31     
32     FilestoreModel.Status addObject(String oid, long size, UserModel user, RepositoryModel repo);
33     
34     FilestoreModel getObject(String oid, UserModel user, RepositoryModel repo);
35     
36     FilestoreModel.Status uploadBlob(String oid, long size, UserModel user, RepositoryModel repo, InputStream streamIn );
37     
38     FilestoreModel.Status downloadBlob(String oid, UserModel user, RepositoryModel repo, OutputStream streamOut );
39     
eecaad 40     List<FilestoreModel> getAllObjects(List<RepositoryModel> viewableRepositories);
bd0e83 41     
PM 42     File getStorageFolder();
43     
44     File getStoragePath(String oid);
45     
46     long getMaxUploadSize();
47     
48     void clearFilestoreCache();
49     
50     long getFilestoreUsedByteCount();
51     
52     long getFilestoreAvailableByteCount();
53
54 }