GCSBucketUtil

public class GCSBucketUtil
extends Object

java.lang.Object
   ↳ com.android.tradefed.util.GCSBucketUtil


כלי לניהול קבצים להורדה ולהעלאה של קבצים מ-Google Cloud Storage‏ (GCS).

אסור להשתמש בכיתה הזו בהיקף של בדיקה (כלומר, IRemoteTest). האפשרות הזו הוצאה משימוש. במקומה צריך להשתמש ב-GCSFileDownloader.

סיכום

כיתות בתצוגת עץ

class GCSBucketUtil.GCSFileMetadata

חבילה פשוטה של פרטי קובץ ב-GCS. 

יוצרים ציבוריים

GCSBucketUtil(String bucketName)

שיטות ציבוריות

CommandResult copy(String source, String dest)

העתקת קובץ או ספרייה אל הקטגוריה או ממנה.

int getAttempts()
String getBotoConfig()
String getBotoPath()
String getBucketName()
boolean getNoClobber()
boolean getParallel()
boolean getRecursive()
long getRetryInterval()
long getTimeout()
boolean isFile(String path)

בדיקה אם קובץ GCS הוא קובץ או לא קובץ (תיקייה).

ls(Path bucketPath)

הצגת רשימת קבצים בנתיב GCS.

CommandResult makeBucket(String projectId)

יוצרים את הקטגוריה ב-GCS.

String md5Hash(File localFile)

מחשבים את גיבוב ה-MD5 של הקובץ המקומי.

CommandResult pull(Path bucketPath, File localFile)

הורדת קובץ או ספרייה מקטגוריה ב-GCS.

CommandResult pull(Path bucketPath)

הורדת קובץ או ספרייה מקטגוריית GCS לספרייה הנוכחית.

String pullContents(Path bucketPath)

הורדת קובץ מקטגוריה ב-GCS וחילוץ התוכן שלו.

CommandResult push(File localFile)

העלאה של קובץ או ספרייה מקומיים לקטגוריה ב-GCS.

CommandResult push(File localFile, Path bucketPath)

העלאת קובץ או ספרייה מקומיים לקטגוריה ב-GCS עם נתיב ספציפי.

CommandResult pushString(String contents, Path bucketPath)

העלאת מחרוזת לקטגוריה ב-GCS.

CommandResult remove(Path path)

מסירים קובץ או ספרייה מהקטגוריה.

CommandResult remove(Path path, boolean force)

מסירים קובץ או ספרייה מהקטגוריה.

CommandResult removeBucket()

הסרת הקטגוריה ב-GCS

void setAttempts(int attempts)
void setBotoConfig(String botoConfig)
void setBotoPath(String botoPath)
void setBucketName(String bucketName)
void setNoClobber(boolean noClobber)
void setParallel(boolean parallel)
void setRecursive(boolean recursive)
void setRetryInterval(long retryInterval)
void setTimeout(long timeout, TimeUnit unit)
void setTimeoutMs(long timeout)
GCSBucketUtil.GCSFileMetadata stat(Path bucketPath)

אחזור המצב של הקובץ בנתיב GCS.

שיטות מוגנות

IRunUtil getRunUtil()

יוצרים ציבוריים

GCSBucketUtil

public GCSBucketUtil (String bucketName)

פרמטרים
bucketName String

שיטות ציבוריות

העתק

public CommandResult copy (String source, 
                String dest)

העתקת קובץ או ספרייה אל הקטגוריה או ממנה.

פרמטרים
source String: קובץ מקור או דפוס

dest String: קובץ או דפוס יעד

החזרות
CommandResult CommandResult תוצאת הפעולה.

getAttempts

public int getAttempts ()

החזרות
int

getBotoConfig

public String getBotoConfig ()

החזרות
String

getBotoPath

public String getBotoPath ()

החזרות
String

getBucketName

public String getBucketName ()

החזרות
String

getNoClobber

public boolean getNoClobber ()

החזרות
boolean

getParallel

public boolean getParallel ()

החזרות
boolean

getRecursive

public boolean getRecursive ()

החזרות
boolean

getRetryInterval

public long getRetryInterval ()

החזרות
long

getTimeout

public long getTimeout ()

החזרות
long

isFile

public boolean isFile (String path)

בדיקה אם קובץ GCS הוא קובץ או לא קובץ (תיקייה).

אם שם הקובץ מסתיים ב-'/', סימן שמדובר בתיקייה. הפקודה gsutil ls gs://filename אמורה להחזיר את gs://filename אם מדובר בקובץ. הפקודה gsutil ls gs://folder name אמורה להחזיר את הקבצים בתיקייה אם יש קבצים בתיקייה. אם אין קבצים בתיקייה, הפונקציה תחזיר את הערך gs://folder/.

פרמטרים
path String: הנתיב ביחס לקטגוריה.

החזרות
boolean אם זהו קובץ או לא.

זריקות
IOException

ls

public  ls (Path bucketPath)

הצגת רשימת קבצים בנתיב GCS.

פרמטרים
bucketPath Path: הנתיב ב-GCS

החזרות
רשימה של Strings שהם קבצים בנתיב GCS

זריקות
IOException

makeBucket

public CommandResult makeBucket (String projectId)

יוצרים את הקטגוריה ב-GCS.

פרמטרים
projectId String

החזרות
CommandResult CommandResult תוצאת הפעולה.

זריקות
IOException

md5Hash

public String md5Hash (File localFile)

מחשבים את גיבוב ה-MD5 של הקובץ המקומי.

פרמטרים
localFile File: קובץ מקומי

החזרות
String גיבוב ה-MD5 של הקובץ המקומי.

זריקות
IOException

שליפה

public CommandResult pull (Path bucketPath, 
                File localFile)

הורדת קובץ או ספרייה מקטגוריה ב-GCS.

פרמטרים
bucketPath Path: נתיב הקובץ בקטגוריה של GCS

localFile File: נתיב היעד המקומי

החזרות
CommandResult CommandResult תוצאת הפעולה.

שליפה

public CommandResult pull (Path bucketPath)

הורדת קובץ או ספרייה מקטגוריית GCS לספרייה הנוכחית.

פרמטרים
bucketPath Path: נתיב הקובץ בקטגוריה של GCS

החזרות
CommandResult CommandResult תוצאת הפעולה.

pullContents

public String pullContents (Path bucketPath)

הורדת קובץ מקטגוריה ב-GCS וחילוץ התוכן שלו.

פרמטרים
bucketPath Path: נתיב הקובץ בקטגוריה של GCS

החזרות
String תוכן המחרוזת בקובץ

דחיפה

public CommandResult push (File localFile)

העלאה של קובץ או ספרייה מקומיים לקטגוריה ב-GCS.

פרמטרים
localFile File: קובץ או ספרייה מקומיים

החזרות
CommandResult CommandResult תוצאת הפעולה.

דחיפה

public CommandResult push (File localFile, 
                Path bucketPath)

העלאת קובץ או ספרייה מקומיים לקטגוריה ב-GCS עם נתיב ספציפי.

פרמטרים
localFile File: קובץ או ספרייה מקומיים

bucketPath Path: נתיב הקובץ בקטגוריה של GCS

החזרות
CommandResult CommandResult תוצאת הפעולה.

pushString

public CommandResult pushString (String contents, 
                Path bucketPath)

העלאת מחרוזת לקטגוריה ב-GCS.

פרמטרים
contents String: תוכן הקובץ, כמחרוזת

bucketPath Path: נתיב הקובץ בקטגוריה של GCS

החזרות
CommandResult CommandResult תוצאת הפעולה.

הסר

public CommandResult remove (Path path)

מסירים קובץ או ספרייה מהקטגוריה.

פרמטרים
path Path: הנתיב להסרה

החזרות
CommandResult

הסר

public CommandResult remove (Path path, 
                boolean force)

מסירים קובץ או ספרייה מהקטגוריה.

פרמטרים
path Path: הנתיב להסרה

force boolean: האם להיכשל אם הקובץ לא קיים

החזרות
CommandResult

removeBucket

public CommandResult removeBucket ()

הסרת הקטגוריה ב-GCS

החזרות
CommandResult

זריקות
IOException

setAttempts

public void setAttempts (int attempts)

פרמטרים
attempts int

setBotoConfig

public void setBotoConfig (String botoConfig)

פרמטרים
botoConfig String

setBotoPath

public void setBotoPath (String botoPath)

פרמטרים
botoPath String

setBucketName

public void setBucketName (String bucketName)

פרמטרים
bucketName String

setNoClobber

public void setNoClobber (boolean noClobber)

פרמטרים
noClobber boolean

setParallel

public void setParallel (boolean parallel)

פרמטרים
parallel boolean

setRecursive

public void setRecursive (boolean recursive)

פרמטרים
recursive boolean

setRetryInterval

public void setRetryInterval (long retryInterval)

פרמטרים
retryInterval long

setTimeout

public void setTimeout (long timeout, 
                TimeUnit unit)

פרמטרים
timeout long

unit TimeUnit

setTimeoutMs

public void setTimeoutMs (long timeout)

פרמטרים
timeout long

stat

public GCSBucketUtil.GCSFileMetadata stat (Path bucketPath)

אחזור המצב של הקובץ בנתיב GCS.

פרמטרים
bucketPath Path: הנתיב ב-GCS

החזרות
GCSBucketUtil.GCSFileMetadata GCSFileMetadata לנתיב GCS

זריקות
IOException

שיטות מוגנות

getRunUtil

protected IRunUtil getRunUtil ()

החזרות
IRunUtil