S2OJ/web/app/libs/uoj-rand-lib.php
Masco Skray 96d4a3ecf7 style(judger,web): move code out from subfolder "1"
Due to historical reasons, the code is in subfolder "1".
With SVN removal, we place the code back and remove the annoying "1" folder.
2019-06-14 23:34:41 +08:00

34 lines
831 B
PHP

<?php
function uojRand($l, $r) {
return mt_rand($l, $r);
}
function uojRandString($len, $charset = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') {
$n_chars = strlen($charset);
$str = '';
for ($i = 0; $i < $len; $i++) {
$str .= $charset[uojRand(0, $n_chars - 1)];
}
return $str;
}
function uojRandAvaiableFileName($dir) {
do {
$fileName = $dir . uojRandString(20);
} while (file_exists(UOJContext::storagePath().$fileName));
return $fileName;
}
function uojRandAvaiableTmpFileName() {
return uojRandAvaiableFileName('/tmp/');
}
function uojRandAvaiableSubmissionFileName() {
$num = uojRand(1, 10000);
if (!file_exists(UOJContext::storagePath()."/submission/$num")) {
system("mkdir ".UOJContext::storagePath()."/submission/$num");
}
return uojRandAvaiableFileName("/submission/$num/");
}