blob: 130c5b6f1af8bfe2f685b5dd4b4776744701535d [file] [log] [blame]
San Mehata19b2502010-01-06 10:33:53 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
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
17#ifndef _LOOP_H
18#define _LOOP_H
19
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060020#include <string>
San Mehata19b2502010-01-06 10:33:53 -080021#include <unistd.h>
22#include <linux/loop.h>
23
24class Loop {
25public:
San Mehatb78a32c2010-01-10 13:02:12 -080026 static const int LOOP_MAX = 4096;
San Mehata19b2502010-01-06 10:33:53 -080027public:
Jeff Sharkeyfa1c6772017-03-25 22:49:13 -060028 static int create(const std::string& file, std::string& out_device);
San Mehata19b2502010-01-06 10:33:53 -080029 static int destroyByDevice(const char *loopDevice);
Jeff Sharkey11c2d382017-09-11 10:32:01 -060030 static int destroyAll();
Mateusz Nowaka4f48d02015-08-03 18:06:39 +020031 static int createImageFile(const char *file, unsigned long numSectors);
32 static int resizeImageFile(const char *file, unsigned long numSectors);
San Mehata19b2502010-01-06 10:33:53 -080033};
34
35#endif