123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167 |
- goog.provide('goog.i18n.DateTimeParse');
- goog.require('goog.asserts');
- goog.require('goog.date');
- goog.require('goog.i18n.DateTimeFormat');
- goog.require('goog.i18n.DateTimeSymbols');
- goog.i18n.DateTimeParse = function(pattern, opt_dateTimeSymbols) {
- goog.asserts.assert(
- goog.isDef(opt_dateTimeSymbols) || goog.isDef(goog.i18n.DateTimeSymbols),
- 'goog.i18n.DateTimeSymbols or explicit symbols must be defined');
- this.patternParts_ = [];
-
- this.dateTimeSymbols_ = (
- opt_dateTimeSymbols || goog.i18n.DateTimeSymbols);
- if (typeof pattern == 'number') {
- this.applyStandardPattern_(pattern);
- } else {
- this.applyPattern_(pattern);
- }
- };
- goog.i18n.DateTimeParse.ambiguousYearCenturyStart = 80;
- goog.i18n.DateTimeParse.prototype.applyPattern_ = function(pattern) {
- var inQuote = false;
- var buf = '';
- for (var i = 0; i < pattern.length; i++) {
- var ch = pattern.charAt(i);
-
- if (ch == ' ') {
- if (buf.length > 0) {
- this.patternParts_.push({text: buf, count: 0, abutStart: false});
- buf = '';
- }
- this.patternParts_.push({text: ' ', count: 0, abutStart: false});
- while (i < pattern.length - 1 && pattern.charAt(i + 1) == ' ') {
- i++;
- }
- } else if (inQuote) {
-
- if (ch == '\'') {
- if (i + 1 < pattern.length && pattern.charAt(i + 1) == '\'') {
-
- buf += '\'';
- i++;
- } else {
-
- inQuote = false;
- }
- } else {
-
- buf += ch;
- }
- } else if (goog.i18n.DateTimeParse.PATTERN_CHARS_.indexOf(ch) >= 0) {
-
- if (buf.length > 0) {
- this.patternParts_.push({text: buf, count: 0, abutStart: false});
- buf = '';
- }
- var count = this.getNextCharCount_(pattern, i);
- this.patternParts_.push({text: ch, count: count, abutStart: false});
- i += count - 1;
- } else if (ch == '\'') {
-
- if (i + 1 < pattern.length && pattern.charAt(i + 1) == '\'') {
- buf += '\'';
- i++;
- } else {
- inQuote = true;
- }
- } else {
- buf += ch;
- }
- }
- if (buf.length > 0) {
- this.patternParts_.push({text: buf, count: 0, abutStart: false});
- }
- this.markAbutStart_();
- };
- goog.i18n.DateTimeParse.prototype.applyStandardPattern_ = function(formatType) {
- var pattern;
-
-
-
- if (formatType > goog.i18n.DateTimeFormat.Format.SHORT_DATETIME) {
- formatType = goog.i18n.DateTimeFormat.Format.MEDIUM_DATETIME;
- }
- if (formatType < 4) {
- pattern = this.dateTimeSymbols_.DATEFORMATS[formatType];
- } else if (formatType < 8) {
- pattern = this.dateTimeSymbols_.TIMEFORMATS[formatType - 4];
- } else {
- pattern = this.dateTimeSymbols_.DATETIMEFORMATS[formatType - 8];
- pattern = pattern.replace(
- '{1}', this.dateTimeSymbols_.DATEFORMATS[formatType - 8]);
- pattern = pattern.replace(
- '{0}', this.dateTimeSymbols_.TIMEFORMATS[formatType - 8]);
- }
- this.applyPattern_(pattern);
- };
- goog.i18n.DateTimeParse.prototype.parse = function(text, date, opt_start) {
- var start = opt_start || 0;
- return this.internalParse_(text, date, start, false );
- };
- goog.i18n.DateTimeParse.prototype.strictParse = function(
- text, date, opt_start) {
- var start = opt_start || 0;
- return this.internalParse_(text, date, start, true );
- };
- goog.i18n.DateTimeParse.prototype.internalParse_ = function(
- text, date, start, validation) {
- var cal = new goog.i18n.DateTimeParse.MyDate_();
- var parsePos = [start];
-
-
-
-
-
- var abutPat = -1;
- var abutStart = 0;
- var abutPass = 0;
- for (var i = 0; i < this.patternParts_.length; i++) {
- if (this.patternParts_[i].count > 0) {
- if (abutPat < 0 && this.patternParts_[i].abutStart) {
- abutPat = i;
- abutStart = start;
- abutPass = 0;
- }
-
-
-
-
-
-
-
- if (abutPat >= 0) {
-
-
-
-
- var count = this.patternParts_[i].count;
- if (i == abutPat) {
- count -= abutPass;
- abutPass++;
- if (count == 0) {
-
- return 0;
- }
- }
- if (!this.subParse_(
- text, parsePos, this.patternParts_[i], count, cal)) {
-
-
- i = abutPat - 1;
- parsePos[0] = abutStart;
- continue;
- }
- }
-
- else {
- abutPat = -1;
- if (!this.subParse_(text, parsePos, this.patternParts_[i], 0, cal)) {
- return 0;
- }
- }
- } else {
-
-
-
- abutPat = -1;
-
-
- if (this.patternParts_[i].text.charAt(0) == ' ') {
-
- var s = parsePos[0];
- this.skipSpace_(text, parsePos);
-
- if (parsePos[0] > s) {
- continue;
- }
- } else if (
- text.indexOf(this.patternParts_[i].text, parsePos[0]) ==
- parsePos[0]) {
- parsePos[0] += this.patternParts_[i].text.length;
- continue;
- }
-
- return 0;
- }
- }
-
- return cal.calcDate_(date, validation) ? parsePos[0] - start : 0;
- };
- goog.i18n.DateTimeParse.prototype.getNextCharCount_ = function(pattern, start) {
- var ch = pattern.charAt(start);
- var next = start + 1;
- while (next < pattern.length && pattern.charAt(next) == ch) {
- next++;
- }
- return next - start;
- };
- goog.i18n.DateTimeParse.PATTERN_CHARS_ = 'GyMdkHmsSEDahKzZvQL';
- goog.i18n.DateTimeParse.NUMERIC_FORMAT_CHARS_ = 'MydhHmsSDkK';
- goog.i18n.DateTimeParse.prototype.isNumericField_ = function(part) {
- if (part.count <= 0) {
- return false;
- }
- var i = goog.i18n.DateTimeParse.NUMERIC_FORMAT_CHARS_.indexOf(
- part.text.charAt(0));
- return i > 0 || i == 0 && part.count < 3;
- };
- goog.i18n.DateTimeParse.prototype.markAbutStart_ = function() {
-
-
- var abut = false;
- for (var i = 0; i < this.patternParts_.length; i++) {
- if (this.isNumericField_(this.patternParts_[i])) {
-
- if (!abut && i + 1 < this.patternParts_.length &&
- this.isNumericField_(this.patternParts_[i + 1])) {
- abut = true;
- this.patternParts_[i].abutStart = true;
- }
- } else {
- abut = false;
- }
- }
- };
- goog.i18n.DateTimeParse.prototype.skipSpace_ = function(text, pos) {
- var m = text.substring(pos[0]).match(/^\s+/);
- if (m) {
- pos[0] += m[0].length;
- }
- };
- goog.i18n.DateTimeParse.prototype.subParse_ = function(
- text, pos, part, digitCount, cal) {
- this.skipSpace_(text, pos);
- var start = pos[0];
- var ch = part.text.charAt(0);
-
- var value = -1;
- if (this.isNumericField_(part)) {
- if (digitCount > 0) {
- if ((start + digitCount) > text.length) {
- return false;
- }
- value = this.parseInt_(text.substring(0, start + digitCount), pos);
- } else {
- value = this.parseInt_(text, pos);
- }
- }
- switch (ch) {
- case 'G':
- value = this.matchString_(text, pos, this.dateTimeSymbols_.ERAS);
- if (value >= 0) {
- cal.era = value;
- }
- return true;
- case 'M':
- case 'L':
- return this.subParseMonth_(text, pos, cal, value);
- case 'E':
- return this.subParseDayOfWeek_(text, pos, cal);
- case 'a':
- value = this.matchString_(text, pos, this.dateTimeSymbols_.AMPMS);
- if (value >= 0) {
- cal.ampm = value;
- }
- return true;
- case 'y':
- return this.subParseYear_(text, pos, start, value, part, cal);
- case 'Q':
- return this.subParseQuarter_(text, pos, cal, value);
- case 'd':
- if (value >= 0) {
- cal.day = value;
- }
- return true;
- case 'S':
- return this.subParseFractionalSeconds_(value, pos, start, cal);
- case 'h':
- if (value == 12) {
- value = 0;
- }
- case 'K':
- case 'H':
- case 'k':
- if (value >= 0) {
- cal.hours = value;
- }
- return true;
- case 'm':
- if (value >= 0) {
- cal.minutes = value;
- }
- return true;
- case 's':
- if (value >= 0) {
- cal.seconds = value;
- }
- return true;
- case 'z':
- case 'Z':
- case 'v':
- return this.subparseTimeZoneInGMT_(text, pos, cal);
- default:
- return false;
- }
- };
- goog.i18n.DateTimeParse.prototype.subParseYear_ = function(
- text, pos, start, value, part, cal) {
- var ch;
- if (value < 0) {
-
- ch = text.charAt(pos[0]);
- if (ch != '+' && ch != '-') {
- return false;
- }
- pos[0]++;
- value = this.parseInt_(text, pos);
- if (value < 0) {
- return false;
- }
- if (ch == '-') {
- value = -value;
- }
- }
-
- if (!ch && pos[0] - start == 2 && part.count == 2) {
- cal.setTwoDigitYear_(value);
- } else {
- cal.year = value;
- }
- return true;
- };
- goog.i18n.DateTimeParse.prototype.subParseMonth_ = function(
- text, pos, cal, value) {
-
- if (value < 0) {
-
-
- var months = this.dateTimeSymbols_.MONTHS
- .concat(this.dateTimeSymbols_.STANDALONEMONTHS)
- .concat(this.dateTimeSymbols_.SHORTMONTHS)
- .concat(this.dateTimeSymbols_.STANDALONESHORTMONTHS);
- value = this.matchString_(text, pos, months);
- if (value < 0) {
- return false;
- }
-
-
- cal.month = (value % 12);
- return true;
- } else {
- cal.month = value - 1;
- return true;
- }
- };
- goog.i18n.DateTimeParse.prototype.subParseQuarter_ = function(
- text, pos, cal, value) {
-
- if (value < 0) {
-
-
- value = this.matchString_(text, pos, this.dateTimeSymbols_.QUARTERS);
- if (value < 0) {
- value = this.matchString_(text, pos, this.dateTimeSymbols_.SHORTQUARTERS);
- }
- if (value < 0) {
- return false;
- }
- cal.month = value * 3;
- cal.day = 1;
- return true;
- }
- return false;
- };
- goog.i18n.DateTimeParse.prototype.subParseDayOfWeek_ = function(
- text, pos, cal) {
-
-
- var value = this.matchString_(text, pos, this.dateTimeSymbols_.WEEKDAYS);
- if (value < 0) {
- value = this.matchString_(text, pos, this.dateTimeSymbols_.SHORTWEEKDAYS);
- }
- if (value < 0) {
- return false;
- }
- cal.dayOfWeek = value;
- return true;
- };
- goog.i18n.DateTimeParse.prototype.subParseFractionalSeconds_ = function(
- value, pos, start, cal) {
-
- var len = pos[0] - start;
- cal.milliseconds = len < 3 ? value * Math.pow(10, 3 - len) :
- Math.round(value / Math.pow(10, len - 3));
- return true;
- };
- goog.i18n.DateTimeParse.prototype.subparseTimeZoneInGMT_ = function(
- text, pos, cal) {
-
-
-
-
-
-
-
-
-
- if (text.indexOf('GMT', pos[0]) == pos[0]) {
- pos[0] += 3;
- return this.parseTimeZoneOffset_(text, pos, cal);
- }
-
-
-
-
-
-
-
-
- return this.parseTimeZoneOffset_(text, pos, cal);
- };
- goog.i18n.DateTimeParse.prototype.parseTimeZoneOffset_ = function(
- text, pos, cal) {
- if (pos[0] >= text.length) {
- cal.tzOffset = 0;
- return true;
- }
- var sign = 1;
- switch (text.charAt(pos[0])) {
- case '-':
- sign = -1;
- case '+':
- pos[0]++;
- }
-
- var st = pos[0];
- var value = this.parseInt_(text, pos);
- if (value < 0) {
- return false;
- }
- var offset;
- if (pos[0] < text.length && text.charAt(pos[0]) == ':') {
-
- offset = value * 60;
- pos[0]++;
- value = this.parseInt_(text, pos);
- if (value < 0) {
- return false;
- }
- offset += value;
- } else {
-
- offset = value;
-
- if (offset < 24 && (pos[0] - st) <= 2) {
- offset *= 60;
- } else {
-
- offset = offset % 100 + offset / 100 * 60;
- }
- }
- offset *= sign;
- cal.tzOffset = -offset;
- return true;
- };
- goog.i18n.DateTimeParse.prototype.parseInt_ = function(text, pos) {
-
-
-
- if (this.dateTimeSymbols_.ZERODIGIT) {
- var parts = [];
- for (var i = pos[0]; i < text.length; i++) {
- var c = text.charCodeAt(i) - this.dateTimeSymbols_.ZERODIGIT;
- parts.push(
- (0 <= c && c <= 9) ? String.fromCharCode(c + 0x30) : text.charAt(i));
- }
- text = parts.join('');
- } else {
- text = text.substring(pos[0]);
- }
- var m = text.match(/^\d+/);
- if (!m) {
- return -1;
- }
- pos[0] += m[0].length;
- return parseInt(m[0], 10);
- };
- goog.i18n.DateTimeParse.prototype.matchString_ = function(text, pos, data) {
-
-
-
-
- var bestMatchLength = 0;
- var bestMatch = -1;
- var lower_text = text.substring(pos[0]).toLowerCase();
- for (var i = 0; i < data.length; i++) {
- var len = data[i].length;
-
-
- if (len > bestMatchLength &&
- lower_text.indexOf(data[i].toLowerCase()) == 0) {
- bestMatch = i;
- bestMatchLength = len;
- }
- }
- if (bestMatch >= 0) {
- pos[0] += bestMatchLength;
- }
- return bestMatch;
- };
- goog.i18n.DateTimeParse.MyDate_ = function() {};
- goog.i18n.DateTimeParse.MyDate_.prototype.era;
- goog.i18n.DateTimeParse.MyDate_.prototype.year;
- goog.i18n.DateTimeParse.MyDate_.prototype.month;
- goog.i18n.DateTimeParse.MyDate_.prototype.day;
- goog.i18n.DateTimeParse.MyDate_.prototype.hours;
- goog.i18n.DateTimeParse.MyDate_.prototype.ampm;
- goog.i18n.DateTimeParse.MyDate_.prototype.minutes;
- goog.i18n.DateTimeParse.MyDate_.prototype.seconds;
- goog.i18n.DateTimeParse.MyDate_.prototype.milliseconds;
- goog.i18n.DateTimeParse.MyDate_.prototype.tzOffset;
- goog.i18n.DateTimeParse.MyDate_.prototype.dayOfWeek;
- goog.i18n.DateTimeParse.MyDate_.prototype.setTwoDigitYear_ = function(year) {
- var now = new Date();
- var defaultCenturyStartYear =
- now.getFullYear() - goog.i18n.DateTimeParse.ambiguousYearCenturyStart;
- var ambiguousTwoDigitYear = defaultCenturyStartYear % 100;
- this.ambiguousYear = (year == ambiguousTwoDigitYear);
- year += Math.floor(defaultCenturyStartYear / 100) * 100 +
- (year < ambiguousTwoDigitYear ? 100 : 0);
- return this.year = year;
- };
- goog.i18n.DateTimeParse.MyDate_.prototype.calcDate_ = function(
- date, validation) {
-
- if (date == null) {
- throw Error('Parameter \'date\' should not be null.');
- }
-
- if (this.era != undefined && this.year != undefined && this.era == 0 &&
- this.year > 0) {
- this.year = -(this.year - 1);
- }
- if (this.year != undefined) {
- date.setFullYear(this.year);
- }
-
-
-
-
-
- var orgDate = date.getDate();
-
- date.setDate(1);
- if (this.month != undefined) {
- date.setMonth(this.month);
- }
- if (this.day != undefined) {
- date.setDate(this.day);
- } else {
- var maxDate =
- goog.date.getNumberOfDaysInMonth(date.getFullYear(), date.getMonth());
- date.setDate(orgDate > maxDate ? maxDate : orgDate);
- }
- if (goog.isFunction(date.setHours)) {
- if (this.hours == undefined) {
- this.hours = date.getHours();
- }
-
- if (this.ampm != undefined && this.ampm > 0 && this.hours < 12) {
- this.hours += 12;
- }
- date.setHours(this.hours);
- }
- if (goog.isFunction(date.setMinutes) && this.minutes != undefined) {
- date.setMinutes(this.minutes);
- }
- if (goog.isFunction(date.setSeconds) && this.seconds != undefined) {
- date.setSeconds(this.seconds);
- }
- if (goog.isFunction(date.setMilliseconds) && this.milliseconds != undefined) {
- date.setMilliseconds(this.milliseconds);
- }
-
-
-
-
-
-
- if (validation &&
- (this.year != undefined && this.year != date.getFullYear() ||
- this.month != undefined && this.month != date.getMonth() ||
- this.day != undefined && this.day != date.getDate() ||
- this.hours >= 24 || this.minutes >= 60 || this.seconds >= 60 ||
- this.milliseconds >= 1000)) {
- return false;
- }
-
- if (this.tzOffset != undefined) {
- var offset = date.getTimezoneOffset();
- date.setTime(date.getTime() + (this.tzOffset - offset) * 60 * 1000);
- }
-
- if (this.ambiguousYear) {
- var defaultCenturyStart = new Date();
- defaultCenturyStart.setFullYear(
- defaultCenturyStart.getFullYear() -
- goog.i18n.DateTimeParse.ambiguousYearCenturyStart);
- if (date.getTime() < defaultCenturyStart.getTime()) {
- date.setFullYear(defaultCenturyStart.getFullYear() + 100);
- }
- }
-
- if (this.dayOfWeek != undefined) {
- if (this.day == undefined) {
-
- var adjustment = (7 + this.dayOfWeek - date.getDay()) % 7;
- if (adjustment > 3) {
- adjustment -= 7;
- }
- var orgMonth = date.getMonth();
- date.setDate(date.getDate() + adjustment);
-
- if (date.getMonth() != orgMonth) {
- date.setDate(date.getDate() + (adjustment > 0 ? -7 : 7));
- }
- } else if (this.dayOfWeek != date.getDay()) {
- return false;
- }
- }
- return true;
- };
|